9 lines
188 B
JavaScript
9 lines
188 B
JavaScript
"use strict"
|
|
|
|
module.exports = function (store) {
|
|
return {
|
|
get: function() { return store },
|
|
toJSON: function() { return store },
|
|
set: function(value) { return store = value }
|
|
}
|
|
}
|