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

reify

Package Overview
Dependencies
Maintainers
1
Versions
167
Alerts
File Explorer

Advanced tools

Socket logo

Install Socket

Detect and block malicious and high-risk dependencies

Install

reify - npm Package Compare versions

Comparing version 0.22.1 to 0.22.2

10

lib/runtime/entry.js

@@ -302,3 +302,3 @@ "use strict";

if (name === "*") {
safeKeys(newValue).forEach(keyOfValue => {
safeKeys(newValue).forEach(function (keyOfValue) {
// Evaluating value[key] is risky because the property might be

@@ -325,3 +325,5 @@ // defined by a getter function that logs a deprecation warning (or

oldSnapshot &&
newKeys.every(key => oldSnapshot[key] === newSnapshot[key]) &&
newKeys.every(function (key) {
return oldSnapshot[key] === newSnapshot[key]
}) &&
newKeys.length === Object.keys(oldSnapshot).length

@@ -377,3 +379,3 @@ ) {

names.forEach(name => {
names.forEach(function (name) {
// Ignore setters asking for module.exports.__esModule.

@@ -406,3 +408,3 @@ if (name === "__esModule") return;

keys.forEach(key => {
keys.forEach(function (key) {
var setter = settersByKey[key];

@@ -409,0 +411,0 @@ if (!setter) {

6

package.json
{
"name": "reify",
"version": "0.22.1",
"version": "0.22.2",
"main": "node/index.js",

@@ -42,8 +42,8 @@ "browser": "lib/empty.js",

"@babel/parser": "7.15.3",
"@babel/plugin-transform-runtime": "7.14.5",
"@babel/plugin-transform-runtime": "7.15.0",
"@babel/preset-env": "7.15.0",
"lodash": "4.17.21",
"mocha": "9.1.0",
"mocha": "9.1.1",
"recast": "0.20.5"
}
}
# The case for nested `import` declarations
Official ECMA262 [proposal](https://github.com/benjamn/reify/blob/master/PROPOSAL.md).
Official ECMA262 [proposal](https://github.com/benjamn/reify/blob/main/PROPOSAL.md).

@@ -453,3 +453,3 @@ ## Context

**Edit:** [Here](https://github.com/benjamn/reify/blob/master/PROPOSAL.md) is my
**Edit:** [Here](https://github.com/benjamn/reify/blob/main/PROPOSAL.md) is my
official proposal, and [here](https://github.com/tc39/ecma262/pull/646) is the

@@ -456,0 +456,0 @@ pull request I have submitted to https://github.com/tc39/ecma262. The rest of

Sorry, the diff of this file is not supported yet

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