parent
75626b30db
commit
6042b001f0
8 changed files with 203 additions and 1 deletions
9
util/prop.js
Normal file
9
util/prop.js
Normal file
|
|
@ -0,0 +1,9 @@
|
|||
"use strict"
|
||||
|
||||
module.exports = function (store) {
|
||||
return {
|
||||
get: function() { return store },
|
||||
toJSON: function() { return store },
|
||||
set: function(value) { return store = value }
|
||||
}
|
||||
}
|
||||
Loading…
Add table
Add a link
Reference in a new issue