UNPKG

prop-factory

Version:
15 lines (11 loc) 245 B
'use strict'; module.exports = function(store) { var prop = function() { if (arguments.length) { store = arguments[0]; } return store; }; prop.toJSON = function() { return store; }; return prop; };