estraverse
Advanced tools
Comparing version 4.1.0 to 4.1.1
@@ -509,3 +509,3 @@ /* | ||
node = element.node; | ||
nodeType = element.wrap || node.type; | ||
nodeType = node.type || element.wrap; | ||
candidates = this.__keys[nodeType]; | ||
@@ -664,3 +664,3 @@ if (!candidates) { | ||
nodeType = element.wrap || node.type; | ||
nodeType = node.type || element.wrap; | ||
candidates = this.__keys[nodeType]; | ||
@@ -667,0 +667,0 @@ if (!candidates) { |
@@ -6,3 +6,3 @@ { | ||
"main": "estraverse.js", | ||
"version": "4.1.0", | ||
"version": "4.1.1", | ||
"engines": { | ||
@@ -34,8 +34,3 @@ "node": ">=0.10.0" | ||
}, | ||
"licenses": [ | ||
{ | ||
"type": "BSD", | ||
"url": "http://github.com/estools/estraverse/raw/master/LICENSE.BSD" | ||
} | ||
], | ||
"license": "BSD-2-Clause", | ||
"scripts": { | ||
@@ -42,0 +37,0 @@ "test": "npm run-script lint && npm run-script unit-test", |
@@ -69,3 +69,3 @@ ### Estraverse [![Build Status](https://secure.travis-ci.org/estools/estraverse.png)](http://travis-ci.org/estools/estraverse) | ||
// Extending the exising traversing rules. | ||
// Extending the existing traversing rules. | ||
keys: { | ||
@@ -72,0 +72,0 @@ // TargetNodeName: [ 'keys', 'containing', 'the', 'other', '**node**' ] |
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
36862