which-typed-array
Advanced tools
Comparing version 1.1.12 to 1.1.13
@@ -8,2 +8,8 @@ # Changelog | ||
## [v1.1.13](https://github.com/inspect-js/which-typed-array/compare/v1.1.12...v1.1.13) - 2023-10-19 | ||
### Commits | ||
- [Refactor] avoid call-binding entirely when there is no method to bind [`9ff452b`](https://github.com/inspect-js/which-typed-array/commit/9ff452b88fbd8e4419bd768d86d0ea9a87d7e310) | ||
## [v1.1.12](https://github.com/inspect-js/which-typed-array/compare/v1.1.11...v1.1.12) - 2023-10-19 | ||
@@ -10,0 +16,0 @@ |
@@ -43,3 +43,6 @@ 'use strict'; | ||
var arr = new g[typedArray](); | ||
cache['$' + typedArray] = callBind(arr.slice || arr.set); | ||
var fn = arr.slice || arr.set; | ||
if (fn) { | ||
cache['$' + typedArray] = callBind(fn); | ||
} | ||
}); | ||
@@ -46,0 +49,0 @@ } |
{ | ||
"name": "which-typed-array", | ||
"version": "1.1.12", | ||
"version": "1.1.13", | ||
"author": { | ||
@@ -5,0 +5,0 @@ "name": "Jordan Harband", |
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
34673
171