blob-polyfill
Advanced tools
Comparing version 6.0.20211015 to 7.0.20220408
@@ -358,3 +358,3 @@ /* Blob.js | ||
function Blob (chunks, opts) { | ||
chunks = chunks || []; | ||
chunks = chunks ? chunks.slice() : []; | ||
opts = opts == null ? {} : opts; | ||
@@ -361,0 +361,0 @@ for (var i = 0, len = chunks.length; i < len; i++) { |
# `blob-polyfill` CHANGELOG | ||
## v7.0.20220408 | ||
* [Blob.js] Do not modify array that is passed into constructor (@zyrong) | ||
* [.github] Start automated tests on github (@bjornstar) | ||
* [.travis.yml] Remove travis-ci integration (@bjornstar) | ||
* [.npmignore] Ignore .github, remove .travis.yml (@bjornstar) | ||
* [devDependencies] Update test dependencies (@bjornstar) | ||
## v6.0.20211015 | ||
@@ -4,0 +11,0 @@ * [Blob.js] Check object class names when determining Object types (@coclauso) |
{ | ||
"name": "blob-polyfill", | ||
"version": "6.0.20211015", | ||
"version": "7.0.20220408", | ||
"description": "Blob.js implements the W3C Blob interface in browsers that do not natively support it.", | ||
@@ -25,6 +25,6 @@ "main": "Blob.js", | ||
"devDependencies": { | ||
"@sindresorhus/is": "^4.0.0", | ||
"eslint": "^7.19.0", | ||
"mocha": "^8.2.1" | ||
"@sindresorhus/is": "^4.6.0", | ||
"eslint": "^8.12.0", | ||
"mocha": "^9.2.2" | ||
} | ||
} |
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
26024
120299