@babel/traverse
Advanced tools
Comparing version 7.4.0 to 7.4.3
@@ -79,3 +79,3 @@ "use strict"; | ||
this.contexts = []; | ||
this.data = {}; | ||
this.data = Object.create(null); | ||
this.shouldSkip = false; | ||
@@ -153,3 +153,3 @@ this.shouldStop = false; | ||
let val = this.data[key]; | ||
if (!val && def) val = this.data[key] = def; | ||
if (val === undefined && def !== undefined) val = this.data[key] = def; | ||
return val; | ||
@@ -156,0 +156,0 @@ } |
{ | ||
"name": "@babel/traverse", | ||
"version": "7.4.0", | ||
"version": "7.4.3", | ||
"description": "The Babel Traverse module maintains the overall tree state, and is responsible for replacing, removing, and adding nodes", | ||
@@ -18,3 +18,3 @@ "author": "Sebastian McKenzie <sebmck@gmail.com>", | ||
"@babel/helper-split-export-declaration": "^7.4.0", | ||
"@babel/parser": "^7.4.0", | ||
"@babel/parser": "^7.4.3", | ||
"@babel/types": "^7.4.0", | ||
@@ -28,3 +28,3 @@ "debug": "^4.1.0", | ||
}, | ||
"gitHead": "f1328fb913b5a93d54dfc6e3728b1f56c8f4a804" | ||
"gitHead": "508fde4009f31883f318b9e6546459ac1b086a91" | ||
} |
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
144783
Updated@babel/parser@^7.4.3