summaryrefslogtreecommitdiff
path: root/lib/unmemoize.js
blob: e7f0941eba2e0373b4360a6eb09780046691a3b6 (plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
'use strict';

/**
 * Undoes a [`memoize`](#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);
    };
}