var cache = function (fn) {
var called = false,
store;
if (!(fn instanceof Function)) {
called = true;
store = fn;
fn = null;
}
return function () {
if (!called) {
called = true;
store = fn.apply(this, arguments);
fn = null;
}
return store;
};
};
module.exports = cache;