Comparing version 0.22.1 to 0.22.2
@@ -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) { |
{ | ||
"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
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
170681
3020