v3.3 push 7 (added autoclose)
This commit is contained in:
@@ -47,6 +47,17 @@ exports.get = (category,key) => {
|
||||
const result = tempresult ? tempresult.value : false
|
||||
return result
|
||||
}
|
||||
|
||||
/**
|
||||
* @param {String} category
|
||||
* @returns {[{key:String,value:String}]|false}
|
||||
*/
|
||||
exports.getCategory = (category) => {
|
||||
const currentData = getData()
|
||||
const result = currentData.filter((v) => v.category == category)
|
||||
return result
|
||||
}
|
||||
|
||||
/**
|
||||
* @param {String} category
|
||||
* @param {String} key
|
||||
|
||||
Reference in New Issue
Block a user