mightyplow 7 år sedan
förälder
incheckning
f582a5baf4
1 ändrade filer med 1 tillägg och 1 borttagningar
  1. 1 1
      src/function/memoize.js

+ 1 - 1
src/function/memoize.js

@@ -7,7 +7,7 @@ import removeProp from '../object/removeProp';
  *
  * @param {function} fn - the function of which the result should be cached
  * @param {number} [timeout] - the time in ms which tells the time after which the results should be deleted from the cache
- * @returns {function(...[*]=)}
+ * @returns {function}
  */
 const memoize = (fn, timeout) => {
     const cache = {};