Update memoize.md

This commit is contained in:
Angelos Chalaris
2017-12-31 14:04:44 +02:00
committed by GitHub
parent 7bb5865b70
commit 555743e0c5

View File

@ -2,11 +2,8 @@
Returns the memoized (cached) function.
Use `Object.create(null)` to create an empty object without Object.prototype
(so that those properties are not resolved if the input value is something like 'hasOwnProperty').
Return a function which takes a single argument to be supplied to the memoized function
by first checking if the function's output for that specific input value is already cached, or
store and return it if not.
Use `Object.create(null)` to create an empty object without `Object.prototype` (so that those properties are not resolved if the input value is something like `'hasOwnProperty'`).
Return a function which takes a single argument to be supplied to the memoized function by first checking if the function's output for that specific input value is already cached, or store and return it if not.
```js
const memoize = fn => {