@chriscdn/memoize 1.0.4 → 1.0.5

This diff represents the content of publicly available package versions that have been released to one of the supported registries. The information contained in this diff is provided for informational purposes only and reflects changes between package versions as they appear in their respective public registries.
Files changed (2) hide show
  1. package/README.md +0 -4
  2. package/package.json +1 -1
package/README.md CHANGED
@@ -97,10 +97,6 @@ console.log(addCachedAsync.cache.size === 1);
97
97
  // true
98
98
  ```
99
99
 
100
- Here is the revised version with a note about TypeScript compatibility:
101
-
102
- ---
103
-
104
100
  ## Class Methods
105
101
 
106
102
  Class methods can also be memoized, though this requires overriding the method within the constructor. When doing so, it's important to bind the method to the instance to ensure it maintains the correct context.
package/package.json CHANGED
@@ -1,6 +1,6 @@
1
1
  {
2
2
  "name": "@chriscdn/memoize",
3
- "version": "1.0.4",
3
+ "version": "1.0.5",
4
4
  "description": "Memoize a synchronous or asynchronous function.",
5
5
  "repository": "https://github.com/chriscdn/memoize",
6
6
  "author": "Christopher Meyer <chris@schwiiz.org>",