Skip to content

Commit

Permalink
Merge pull request #2717 from peoplenarthax/patch-1
Browse files Browse the repository at this point in the history
Update docs for memoizeWith
  • Loading branch information
CrossEye committed Nov 26, 2018
2 parents c44a544 + 562beda commit ed3c3b5
Showing 1 changed file with 4 additions and 5 deletions.
9 changes: 4 additions & 5 deletions source/memoizeWith.js
Expand Up @@ -4,11 +4,10 @@ import _has from './internal/_has';


/**
* A customisable version of [`R.memoize`](#memoize). `memoizeWith` takes an
* additional function that will be applied to a given argument set and used to
* create the cache key under which the results of the function to be memoized
* will be stored. Care must be taken when implementing key generation to avoid
* clashes that may overwrite previous entries erroneously.
* Takes an additional function that will be applied to a given argument set
* and used to create the cache key under which the results of the function to be
* memoized will be stored. Care must be taken when implementing key generation
* to avoid clashes that may overwrite previous entries erroneously.
*
*
* @func
Expand Down

0 comments on commit ed3c3b5

Please sign in to comment.