summaryrefslogtreecommitdiff
path: root/lib/unmemoize.js
blob: 676e7c03681a1332eb64da090faffae940d085a4 (plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
/**
 * Undoes a {@link async.memoize}d function, reverting it to the original,
 * unmemoized form. Handy for testing.
 *
 * @name unmemoize
 * @static
 * @memberOf async
 * @see async.memoize
 * @category Util
 * @param {Function} fn - the memoized function
 */
export default  function unmemoize(fn) {
    return function () {
        return (fn.unmemoized || fn).apply(null, arguments);
    };
}