update modules

This commit is contained in:
s2
2020-06-08 08:50:28 +02:00
parent ae4aaf2668
commit 27635904a6
477 changed files with 20385 additions and 35036 deletions

View File

@@ -245,12 +245,13 @@ try {
function iterator(self, callback) {
var items = [];
self.forEach(callback, items);
/* istanbul ignore next */
return iterable ?
items[Symbol.iterator]() :
{
next: function() {
var value = items.shift();
return {done: value === undefined, value: value};
return {done: value === void 0, value: value};
}
};
}

View File

@@ -0,0 +1 @@
{"type":"commonjs"}

View File

@@ -245,12 +245,13 @@ try {
function iterator(self, callback) {
var items = [];
self.forEach(callback, items);
/* istanbul ignore next */
return iterable ?
items[Symbol.iterator]() :
{
next: function() {
var value = items.shift();
return {done: value === undefined, value: value};
return {done: value === void 0, value: value};
}
};
}

View File

@@ -245,12 +245,13 @@ try {
function iterator(self, callback) {
var items = [];
self.forEach(callback, items);
/* istanbul ignore next */
return iterable ?
items[Symbol.iterator]() :
{
next: function() {
var value = items.shift();
return {done: value === undefined, value: value};
return {done: value === void 0, value: value};
}
};
}

View File

@@ -1,44 +1,45 @@
{
"_args": [
[
"@ungap/url-search-params@0.1.4",
"D:\\Projects\\siag\\vanillajs-seed"
]
],
"_from": "@ungap/url-search-params@0.1.4",
"_id": "@ungap/url-search-params@0.1.4",
"_from": "@ungap/url-search-params@^0.2.0",
"_id": "@ungap/url-search-params@0.2.0",
"_inBundle": false,
"_integrity": "sha512-RLwrxCTDNiNev9hpr9rDq8NyeQ8Nn0X1we4Wu7Tlf368I8r+7hBj3uObhifhuLk74egaYaSX5nUsBlWz6kjj+A==",
"_integrity": "sha512-KVPTXfdofx9g/1OnO4js0Sos/ITghfNxw+DHJUyXG+X83KEMyJV+fQ6zyd2jTUwqall/SCJlV7p/HDqJbbF5WQ==",
"_location": "/@ungap/url-search-params",
"_phantomChildren": {},
"_requested": {
"type": "version",
"type": "range",
"registry": true,
"raw": "@ungap/url-search-params@0.1.4",
"raw": "@ungap/url-search-params@^0.2.0",
"name": "@ungap/url-search-params",
"escapedName": "@ungap%2furl-search-params",
"scope": "@ungap",
"rawSpec": "0.1.4",
"rawSpec": "^0.2.0",
"saveSpec": null,
"fetchSpec": "0.1.4"
"fetchSpec": "^0.2.0"
},
"_requiredBy": [
"/"
],
"_resolved": "https://registry.npmjs.org/@ungap/url-search-params/-/url-search-params-0.1.4.tgz",
"_spec": "0.1.4",
"_where": "D:\\Projects\\siag\\vanillajs-seed",
"_resolved": "https://registry.npmjs.org/@ungap/url-search-params/-/url-search-params-0.2.0.tgz",
"_shasum": "8942763e5d31330fcd5a04fdbf1c66a5eb97c20e",
"_spec": "@ungap/url-search-params@^0.2.0",
"_where": "D:\\Projects\\vanillajs-seed",
"author": {
"name": "Andrea Giammarchi"
},
"bugs": {
"url": "https://github.com/ungap/url-search-params/issues"
},
"bundleDependencies": false,
"deprecated": false,
"description": "The URLSearchParams polyfill.",
"devDependencies": {
"coveralls": "^3.0.9",
"istanbul": "^0.4.5",
"uglify-js": "^3.7.0"
"coveralls": "^3.1.0",
"nyc": "^15.0.1",
"uglify-js": "^3.9.1"
},
"exports": {
"import": "./esm/index.js",
"default": "./cjs/index.js"
},
"homepage": "https://github.com/ungap/url-search-params#readme",
"keywords": [
@@ -47,8 +48,8 @@
"ungap"
],
"license": "ISC",
"main": "cjs/index.js",
"module": "esm/index.js",
"main": "./cjs/index.js",
"module": "./esm/index.js",
"name": "@ungap/url-search-params",
"repository": {
"type": "git",
@@ -57,12 +58,13 @@
"scripts": {
"build": "npm run cjs && npm run esm && npm run min && npm run test && npm run size",
"cjs": "cp index.js cjs/ && echo 'module.exports = self.URLSearchParams;' >> cjs/index.js",
"coveralls": "cat ./coverage/lcov.info | coveralls",
"coveralls": "nyc report --reporter=text-lcov | coveralls",
"esm": "cp index.js esm/ && echo 'export default self.URLSearchParams;' >> esm/index.js",
"min": "uglifyjs index.js --support-ie8 --comments=/^!/ -c -m -o min.js",
"size": "cat index.js | wc -c && cat min.js | wc -c && gzip -c9 min.js | wc -c && cat min.js | brotli | wc -c",
"test": "istanbul cover test/index.js"
"test": "nyc node test/index.js"
},
"type": "module",
"unpkg": "min.js",
"version": "0.1.4"
"version": "0.2.0"
}