Socket
Socket
Sign inDemoInstall

which-typed-array

Package Overview
Dependencies
Maintainers
1
Versions
18
Alerts
File Explorer

Advanced tools

Socket logo

Install Socket

Detect and block malicious and high-risk dependencies

Install

which-typed-array - npm Package Compare versions

Comparing version 1.1.12 to 1.1.13

6

CHANGELOG.md

@@ -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 @@

5

index.js

@@ -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 @@ }

2

package.json
{
"name": "which-typed-array",
"version": "1.1.12",
"version": "1.1.13",
"author": {

@@ -5,0 +5,0 @@ "name": "Jordan Harband",

SocketSocket SOC 2 Logo

Product

  • Package Alerts
  • Integrations
  • Docs
  • Pricing
  • FAQ
  • Roadmap
  • Changelog

Packages

npm

Stay in touch

Get open source security insights delivered straight into your inbox.


  • Terms
  • Privacy
  • Security

Made with ⚡️ by Socket Inc