fast-memoize
Advanced tools
Comparing version 2.3.2 to 2.4.0
# Changelog | ||
All notable changes to this project will be documented in this file. | ||
### 2.0 (2016-07-07) | ||
- Makes 2nd+ arguments into one options object | ||
The format is based on [Keep a Changelog](http://keepachangelog.com/en/1.0.0/) | ||
and this project adheres to [Semantic Versioning](http://semver.org/spec/v2.0.0.html). | ||
## 2.4.0 | ||
### Added | ||
- TypeScript annotations |
{ | ||
"name": "fast-memoize", | ||
"version": "2.3.2", | ||
"version": "2.4.0", | ||
"description": "Fastest memoization lib that supports N arguments", | ||
"main": "src/index.js", | ||
"typings": "typings/fast-memoize.d.ts", | ||
"scripts": { | ||
@@ -21,4 +22,5 @@ "benchmark": "node benchmark", | ||
"test": "jest", | ||
"test:all": "npm run lint && npm run test", | ||
"test:coverage": "covert test/*.js" | ||
"test:all": "npm run lint && npm run test:typescript && npm run test", | ||
"test:coverage": "covert test/*.js", | ||
"test:typescript": "tsc --project ./typings/tests" | ||
}, | ||
@@ -51,7 +53,8 @@ "files": [ | ||
"memoizee": "^0.4.1", | ||
"nano-memoize": "^0.1.0", | ||
"ora": "^0.3.0", | ||
"ramda": "^0.22.1", | ||
"standard": "^10.0.2", | ||
"underscore": "^1.8.3", | ||
"nano-memoize": "^0.1.0" | ||
"typescript": "^2.9.1", | ||
"underscore": "^1.8.3" | ||
}, | ||
@@ -58,0 +61,0 @@ "jest": { |
License Policy Violation
LicenseThis package is not allowed per your license policy. Review the package's license to ensure compliance.
Found 1 instance in 1 package
License Policy Violation
LicenseThis package is not allowed per your license policy. Review the package's license to ensure compliance.
Found 1 instance in 1 package
17154
17