Huge News!Announcing our $40M Series B led by Abstract Ventures.Learn More
Socket
Sign inDemoInstall
Socket

reflect.getprototypeof

Package Overview
Dependencies
Maintainers
1
Versions
10
Alerts
File Explorer

Advanced tools

Socket logo

Install Socket

Detect and block malicious and high-risk dependencies

Install

reflect.getprototypeof - npm Package Compare versions

Comparing version 1.0.8 to 1.0.9

7

CHANGELOG.md

@@ -8,2 +8,9 @@ # Changelog

## [v1.0.9](https://github.com/es-shims/Reflect.getPrototypeOf/compare/v1.0.8...v1.0.9) - 2024-12-18
### Commits
- [Fix] avoid a crash with node `--disable-proto=throw` flag [`73f449d`](https://github.com/es-shims/Reflect.getPrototypeOf/commit/73f449dff08fe574a4cd937d7265aceb1774de05)
- [Deps] update `dunder-proto`, `es-abstract`, `get-intrinsic`, `which-builtin-type` [`80c8227`](https://github.com/es-shims/Reflect.getPrototypeOf/commit/80c8227aac6cef446ac8460f8bbdd9a83bd1d131)
## [v1.0.8](https://github.com/es-shims/Reflect.getPrototypeOf/compare/v1.0.7...v1.0.8) - 2024-12-06

@@ -10,0 +17,0 @@

10

package.json
{
"name": "reflect.getprototypeof",
"version": "1.0.8",
"version": "1.0.9",
"description": "An ES2015 mostly-spec-compliant `Reflect.getPrototypeOf` sham/polyfill/replacement that works in as many engines as possible",

@@ -61,8 +61,8 @@ "main": "index.js",

"define-properties": "^1.2.1",
"dunder-proto": "^1.0.0",
"es-abstract": "^1.23.5",
"dunder-proto": "^1.0.1",
"es-abstract": "^1.23.6",
"es-errors": "^1.3.0",
"get-intrinsic": "^1.2.4",
"get-intrinsic": "^1.2.6",
"gopd": "^1.2.0",
"which-builtin-type": "^1.2.0"
"which-builtin-type": "^1.2.1"
},

@@ -69,0 +69,0 @@ "devDependencies": {

@@ -9,3 +9,10 @@ 'use strict';

var hasProto = [].__proto__ === Array.prototype; // eslint-disable-line no-proto
var hasProto;
try {
hasProto = [].__proto__ === Array.prototype; // eslint-disable-line no-proto
} catch (e) {
if (!e || typeof e !== 'object' || !('code' in e) || e.code !== 'ERR_PROTO_ACCESS') {
throw e;
}
}

@@ -12,0 +19,0 @@ var getDunder = require('dunder-proto/get');

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