Package Exports
- fullstore
This package does not declare an exports field, so the exports above have been automatically detected and optimized by JSPM instead. If any package subpath is missing, it is recommended to post an issue to the original package (fullstore) to support the "exports" field. If that is not possible, create a JSPM override to customize the exports field for this package.
Readme
Fullstore

Functional variables.
Install
npm i fullstore --saveHow to use?
const fullstore = require('fullstore');
const user = fullstore();
const getValue = () => {
return 'name';
};
user(getValue());
console.log(user());
// output
'name'const fullstore = require('fullstore');
const user = fullstore('hello');
console.log(user());
// output
'hello'Related
zames - converts callback-based functions to Promises and apply currying to arguments
wraptile - translate the evaluation of a function that takes multiple arguments into evaluating a sequence of 2 functions, each with a any count of arguments.
currify - translate the evaluation of a function that takes multiple arguments into evaluating a sequence of functions, each with a single or more arguments.
License
MIT