node-html-parser
Advanced tools
Comparing version 4.1.1 to 4.1.2
@@ -13,3 +13,3 @@ import { decode, encode } from 'he'; | ||
configurable: true, | ||
value: range ?? [-1, -1] | ||
value: range !== null && range !== void 0 ? range : [-1, -1] | ||
}); | ||
@@ -16,0 +16,0 @@ } |
{ | ||
"name": "node-html-parser", | ||
"version": "4.1.1", | ||
"version": "4.1.2", | ||
"description": "A very fast HTML parser, generating a simplified DOM, with basic element query support.", | ||
@@ -14,3 +14,3 @@ "main": "dist/index.js", | ||
"ts:amd": "tsc -t es5 -m amd -d false --outFile ./dist/main.js", | ||
"ts:esm": "tsc -t esnext -m es2015 -d false --outDir ./dist/esm/", | ||
"ts:esm": "tsc -t es2019 -m esnext -d false --outDir ./dist/esm/", | ||
"build": "npm run lint && npm run clean && npm run ts:cjs && npm run ts:amd && npm run ts:esm", | ||
@@ -17,0 +17,0 @@ "dev": "tsc -w & mocha -w ./test/*.js", |
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
189786