mithril-vndb/util/prop.js
2016-05-21 01:48:11 -04:00

8 lines
No EOL
138 B
JavaScript

"use strict"
module.exports = function(store) {
return function() {
if (arguments.length > 0) store = arguments[0]
return store
}
}