updated npm modules

This commit is contained in:
2019-05-20 20:43:45 -05:00
parent 2319197b81
commit f166b72b7d
1113 changed files with 8758 additions and 12227 deletions

12
node_modules/accepts/HISTORY.md generated vendored
View File

@@ -1,3 +1,15 @@
1.3.7 / 2019-04-29
==================
* deps: negotiator@0.6.2
- Fix sorting charset, encoding, and language with extra parameters
1.3.6 / 2019-04-28
==================
* deps: mime-types@~2.1.24
- deps: mime-db@~1.40.0
1.3.5 / 2018-02-28 1.3.5 / 2018-02-28
================== ==================

19
node_modules/accepts/README.md generated vendored
View File

@@ -1,7 +1,7 @@
# accepts # accepts
[![NPM Version][npm-image]][npm-url] [![NPM Version][npm-version-image]][npm-url]
[![NPM Downloads][downloads-image]][downloads-url] [![NPM Downloads][npm-downloads-image]][npm-url]
[![Node.js Version][node-version-image]][node-version-url] [![Node.js Version][node-version-image]][node-version-url]
[![Build Status][travis-image]][travis-url] [![Build Status][travis-image]][travis-url]
[![Test Coverage][coveralls-image]][coveralls-url] [![Test Coverage][coveralls-image]][coveralls-url]
@@ -131,13 +131,12 @@ curl -I -H'Accept: text/html' http://localhost:3000/
[MIT](LICENSE) [MIT](LICENSE)
[npm-image]: https://img.shields.io/npm/v/accepts.svg [coveralls-image]: https://badgen.net/coveralls/c/github/jshttp/accepts/master
[coveralls-url]: https://coveralls.io/r/jshttp/accepts?branch=master
[node-version-image]: https://badgen.net/npm/node/accepts
[node-version-url]: https://nodejs.org/en/download
[npm-downloads-image]: https://badgen.net/npm/dm/accepts
[npm-url]: https://npmjs.org/package/accepts [npm-url]: https://npmjs.org/package/accepts
[node-version-image]: https://img.shields.io/node/v/accepts.svg [npm-version-image]: https://badgen.net/npm/v/accepts
[node-version-url]: https://nodejs.org/en/download/ [travis-image]: https://badgen.net/travis/jshttp/accepts/master
[travis-image]: https://img.shields.io/travis/jshttp/accepts/master.svg
[travis-url]: https://travis-ci.org/jshttp/accepts [travis-url]: https://travis-ci.org/jshttp/accepts
[coveralls-image]: https://img.shields.io/coveralls/jshttp/accepts/master.svg
[coveralls-url]: https://coveralls.io/r/jshttp/accepts
[downloads-image]: https://img.shields.io/npm/dm/accepts.svg
[downloads-url]: https://npmjs.org/package/accepts

37
node_modules/accepts/package.json generated vendored
View File

@@ -1,8 +1,8 @@
{ {
"_from": "accepts@~1.3.5", "_from": "accepts@~1.3.5",
"_id": "accepts@1.3.5", "_id": "accepts@1.3.7",
"_inBundle": false, "_inBundle": false,
"_integrity": "sha1-63d99gEXI6OxTopywIBcjoZ0a9I=", "_integrity": "sha512-Il80Qs2WjYlJIBNzNkK6KYqlVMTbZLXgHx2oT0pU/fjRHyEp+PEfEPY0R3WCwAGVOtauxh1hOxNgIf5bv7dQpA==",
"_location": "/accepts", "_location": "/accepts",
"_phantomChildren": {}, "_phantomChildren": {},
"_requested": { "_requested": {
@@ -20,8 +20,8 @@
"/express", "/express",
"/serve-index" "/serve-index"
], ],
"_resolved": "https://registry.npmjs.org/accepts/-/accepts-1.3.5.tgz", "_resolved": "https://registry.npmjs.org/accepts/-/accepts-1.3.7.tgz",
"_shasum": "eb777df6011723a3b14e8a72c0805c8e86746bd2", "_shasum": "531bc726517a3b2b41f850021c6cc15eaab507cd",
"_spec": "accepts@~1.3.5", "_spec": "accepts@~1.3.5",
"_where": "C:\\xampp\\htdocs\\w4rpservices\\node_modules\\compression", "_where": "C:\\xampp\\htdocs\\w4rpservices\\node_modules\\compression",
"bugs": { "bugs": {
@@ -40,21 +40,22 @@
} }
], ],
"dependencies": { "dependencies": {
"mime-types": "~2.1.18", "mime-types": "~2.1.24",
"negotiator": "0.6.1" "negotiator": "0.6.2"
}, },
"deprecated": false, "deprecated": false,
"description": "Higher-level content negotiation", "description": "Higher-level content negotiation",
"devDependencies": { "devDependencies": {
"eslint": "4.18.1", "deep-equal": "1.0.1",
"eslint-config-standard": "11.0.0", "eslint": "5.16.0",
"eslint-plugin-import": "2.9.0", "eslint-config-standard": "12.0.0",
"eslint-plugin-markdown": "1.0.0-beta.6", "eslint-plugin-import": "2.17.2",
"eslint-plugin-node": "6.0.1", "eslint-plugin-markdown": "1.0.0",
"eslint-plugin-promise": "3.6.0", "eslint-plugin-node": "8.0.1",
"eslint-plugin-standard": "3.0.1", "eslint-plugin-promise": "4.1.1",
"istanbul": "0.4.5", "eslint-plugin-standard": "4.0.0",
"mocha": "~1.21.5" "mocha": "6.1.4",
"nyc": "14.0.0"
}, },
"engines": { "engines": {
"node": ">= 0.6" "node": ">= 0.6"
@@ -80,8 +81,8 @@
"scripts": { "scripts": {
"lint": "eslint --plugin markdown --ext js,md .", "lint": "eslint --plugin markdown --ext js,md .",
"test": "mocha --reporter spec --check-leaks --bail test/", "test": "mocha --reporter spec --check-leaks --bail test/",
"test-cov": "istanbul cover node_modules/mocha/bin/_mocha -- --reporter dot --check-leaks test/", "test-cov": "nyc --reporter=html --reporter=text npm test",
"test-travis": "istanbul cover node_modules/mocha/bin/_mocha --report lcovonly -- --reporter spec --check-leaks test/" "test-travis": "nyc --reporter=text npm test"
}, },
"version": "1.3.5" "version": "1.3.7"
} }

View File

@@ -1,6 +1,13 @@
# Change Log # Change Log
This project adheres to [Semantic Versioning](http://semver.org/). This project adheres to [Semantic Versioning](http://semver.org/).
## 9.5.1
* Fix `backdrop-filter` for Edge (by Oleh Aloshkin).
* Fix `min-resolution` media query support in Firefox < 16.
## 9.5 “Draco dormiens nunquam titillandus”
* Add `mask-composite` support (by Semen Levenson).
## 9.4.10 ## 9.4.10
* Add warning for named Grid rows. * Add warning for named Grid rows.

View File

@@ -1042,3 +1042,11 @@ JS API is also available:
var info = autoprefixer().info(); var info = autoprefixer().info();
console.log(info); console.log(info);
``` ```
## Security Contact
To report a security vulnerability, please use the [Tidelift security contact].
Tidelift will coordinate the fix and disclosure.
[Tidelift security contact]: https://tidelift.com/security

View File

@@ -1,5 +1,6 @@
"use strict"; "use strict";
/* eslint-disable import-helpers/order-imports */
var unpack = require('caniuse-lite').feature; var unpack = require('caniuse-lite').feature;
function browsersSort(a, b) { function browsersSort(a, b) {
@@ -196,7 +197,11 @@ f(require('caniuse-lite/data/features/css-filter-function'), function (browsers)
}); });
}); // Backdrop-filter }); // Backdrop-filter
f(require('caniuse-lite/data/features/css-backdrop-filter'), function (browsers) { var backdrop = require('caniuse-lite/data/features/css-backdrop-filter');
f(backdrop, {
match: /y\sx|y\s#2/
}, function (browsers) {
return prefix(['backdrop-filter'], { return prefix(['backdrop-filter'], {
feature: 'css-backdrop-filter', feature: 'css-backdrop-filter',
browsers: browsers browsers: browsers
@@ -498,7 +503,7 @@ f(require('caniuse-lite/data/features/css-deviceadaptation'), function (browsers
var resolut = require('caniuse-lite/data/features/css-media-resolution'); var resolut = require('caniuse-lite/data/features/css-media-resolution');
f(resolut, { f(resolut, {
match: /( x($| )|a #3)/ match: /( x($| )|a #2)/
}, function (browsers) { }, function (browsers) {
return prefix(['@resolution'], { return prefix(['@resolution'], {
feature: 'css-media-resolution', feature: 'css-media-resolution',

View File

@@ -47,13 +47,10 @@ _defineProperty(BorderRadius, "toMozilla", {});
_defineProperty(BorderRadius, "toNormal", {}); _defineProperty(BorderRadius, "toNormal", {});
var _arr = ['top', 'bottom']; for (var _i = 0, _arr = ['top', 'bottom']; _i < _arr.length; _i++) {
for (var _i = 0; _i < _arr.length; _i++) {
var ver = _arr[_i]; var ver = _arr[_i];
var _arr2 = ['left', 'right'];
for (var _i2 = 0; _i2 < _arr2.length; _i2++) { for (var _i2 = 0, _arr2 = ['left', 'right']; _i2 < _arr2.length; _i2++) {
var hor = _arr2[_i2]; var hor = _arr2[_i2];
var normal = "border-" + ver + "-" + hor + "-radius"; var normal = "border-" + ver + "-" + hor + "-radius";
var mozilla = "border-radius-" + ver + hor; var mozilla = "border-radius-" + ver + hor;

View File

@@ -6,10 +6,10 @@ function _inheritsLoose(subClass, superClass) { subClass.prototype = Object.crea
function _defineProperty(obj, key, value) { if (key in obj) { Object.defineProperty(obj, key, { value: value, enumerable: true, configurable: true, writable: true }); } else { obj[key] = value; } return obj; } function _defineProperty(obj, key, value) { if (key in obj) { Object.defineProperty(obj, key, { value: value, enumerable: true, configurable: true, writable: true }); } else { obj[key] = value; } return obj; }
var Value = require('../value');
var list = require('postcss').list; var list = require('postcss').list;
var Value = require('../value');
var CrossFade = var CrossFade =
/*#__PURE__*/ /*#__PURE__*/
function (_Value) { function (_Value) {

View File

@@ -6,12 +6,12 @@ function _inheritsLoose(subClass, superClass) { subClass.prototype = Object.crea
function _defineProperty(obj, key, value) { if (key in obj) { Object.defineProperty(obj, key, { value: value, enumerable: true, configurable: true, writable: true }); } else { obj[key] = value; } return obj; } function _defineProperty(obj, key, value) { if (key in obj) { Object.defineProperty(obj, key, { value: value, enumerable: true, configurable: true, writable: true }); } else { obj[key] = value; } return obj; }
var list = require('postcss').list;
var flexSpec = require('./flex-spec'); var flexSpec = require('./flex-spec');
var Declaration = require('../declaration'); var Declaration = require('../declaration');
var list = require('postcss').list;
var Flex = var Flex =
/*#__PURE__*/ /*#__PURE__*/
function (_Declaration) { function (_Declaration) {

View File

@@ -8,16 +8,16 @@ function _inheritsLoose(subClass, superClass) { subClass.prototype = Object.crea
function _defineProperty(obj, key, value) { if (key in obj) { Object.defineProperty(obj, key, { value: value, enumerable: true, configurable: true, writable: true }); } else { obj[key] = value; } return obj; } function _defineProperty(obj, key, value) { if (key in obj) { Object.defineProperty(obj, key, { value: value, enumerable: true, configurable: true, writable: true }); } else { obj[key] = value; } return obj; }
var parser = require('postcss-value-parser');
var range = require('normalize-range');
var OldValue = require('../old-value'); var OldValue = require('../old-value');
var Value = require('../value'); var Value = require('../value');
var utils = require('../utils'); var utils = require('../utils');
var parser = require('postcss-value-parser');
var range = require('normalize-range');
var IS_DIRECTION = /top|left|right|bottom/gi; var IS_DIRECTION = /top|left|right|bottom/gi;
var Gradient = var Gradient =
@@ -398,8 +398,8 @@ function (_Value) {
this.colorStops(params); this.colorStops(params);
node.nodes = []; node.nodes = [];
for (var _i5 = 0; _i5 < params.length; _i5++) { for (var _i5 = 0, _params = params; _i5 < _params.length; _i5++) {
var param = params[_i5]; var param = _params[_i5];
node.nodes = node.nodes.concat(param); node.nodes = node.nodes.concat(param);
} }

View File

@@ -1,10 +1,10 @@
"use strict"; "use strict";
var vendor = require('postcss').vendor;
var Browsers = require('./browsers'); var Browsers = require('./browsers');
var utils = require('./utils'); var utils = require('./utils');
var vendor = require('postcss').vendor;
/** /**
* Recursively clone objects * Recursively clone objects
*/ */
@@ -13,10 +13,8 @@ var vendor = require('postcss').vendor;
function _clone(obj, parent) { function _clone(obj, parent) {
var cloned = new obj.constructor(); var cloned = new obj.constructor();
var _arr = Object.keys(obj || {}); for (var _i = 0, _Object$keys = Object.keys(obj || {}); _i < _Object$keys.length; _i++) {
var i = _Object$keys[_i];
for (var _i = 0; _i < _arr.length; _i++) {
var i = _arr[_i];
var value = obj[i]; var value = obj[i];
if (i === 'parent' && typeof value === 'object') { if (i === 'parent' && typeof value === 'object') {

View File

@@ -1,5 +1,7 @@
"use strict"; "use strict";
var vendor = require('postcss').vendor;
var Declaration = require('./declaration'); var Declaration = require('./declaration');
var Resolution = require('./resolution'); var Resolution = require('./resolution');
@@ -20,8 +22,6 @@ var Value = require('./value');
var utils = require('./utils'); var utils = require('./utils');
var vendor = require('postcss').vendor;
Selector.hack(require('./hacks/fullscreen')); Selector.hack(require('./hacks/fullscreen'));
Selector.hack(require('./hacks/placeholder')); Selector.hack(require('./hacks/placeholder'));
Declaration.hack(require('./hacks/flex')); Declaration.hack(require('./hacks/flex'));
@@ -39,6 +39,7 @@ Declaration.hack(require('./hacks/align-self'));
Declaration.hack(require('./hacks/appearance')); Declaration.hack(require('./hacks/appearance'));
Declaration.hack(require('./hacks/flex-basis')); Declaration.hack(require('./hacks/flex-basis'));
Declaration.hack(require('./hacks/mask-border')); Declaration.hack(require('./hacks/mask-border'));
Declaration.hack(require('./hacks/mask-composite'));
Declaration.hack(require('./hacks/align-items')); Declaration.hack(require('./hacks/align-items'));
Declaration.hack(require('./hacks/flex-shrink')); Declaration.hack(require('./hacks/flex-shrink'));
Declaration.hack(require('./hacks/break-props')); Declaration.hack(require('./hacks/break-props'));
@@ -54,6 +55,7 @@ Declaration.hack(require('./hacks/grid-row-align'));
Declaration.hack(require('./hacks/transform-decl')); Declaration.hack(require('./hacks/transform-decl'));
Declaration.hack(require('./hacks/flex-direction')); Declaration.hack(require('./hacks/flex-direction'));
Declaration.hack(require('./hacks/image-rendering')); Declaration.hack(require('./hacks/image-rendering'));
Declaration.hack(require('./hacks/backdrop-filter'));
Declaration.hack(require('./hacks/background-clip')); Declaration.hack(require('./hacks/background-clip'));
Declaration.hack(require('./hacks/text-decoration')); Declaration.hack(require('./hacks/text-decoration'));
Declaration.hack(require('./hacks/justify-content')); Declaration.hack(require('./hacks/justify-content'));

View File

@@ -4,12 +4,12 @@ function _defaults(obj, defaults) { var keys = Object.getOwnPropertyNames(defaul
function _inheritsLoose(subClass, superClass) { subClass.prototype = Object.create(superClass.prototype); subClass.prototype.constructor = subClass; _defaults(subClass, superClass); } function _inheritsLoose(subClass, superClass) { subClass.prototype = Object.create(superClass.prototype); subClass.prototype.constructor = subClass; _defaults(subClass, superClass); }
var n2f = require('num2fraction');
var Prefixer = require('./prefixer'); var Prefixer = require('./prefixer');
var utils = require('./utils'); var utils = require('./utils');
var n2f = require('num2fraction');
var REGEXP = /(min|max)-resolution\s*:\s*\d*\.?\d+(dppx|dpi)/gi; var REGEXP = /(min|max)-resolution\s*:\s*\d*\.?\d+(dppx|dpi)/gi;
var SPLIT = /(min|max)-resolution(\s*:\s*)(\d*\.?\d+)(dppx|dpi)/i; var SPLIT = /(min|max)-resolution(\s*:\s*)(\d*\.?\d+)(dppx|dpi)/i;

View File

@@ -1,5 +1,9 @@
"use strict"; "use strict";
var postcss = require('postcss');
var data = require('caniuse-lite').feature(require('caniuse-lite/data/features/css-featurequeries.js'));
var Browsers = require('./browsers'); var Browsers = require('./browsers');
var brackets = require('./brackets'); var brackets = require('./brackets');
@@ -8,12 +12,8 @@ var Value = require('./value');
var utils = require('./utils'); var utils = require('./utils');
var postcss = require('postcss');
var supported = []; var supported = [];
var data = require('caniuse-lite').feature(require('caniuse-lite/data/features/css-featurequeries.js'));
for (var browser in data.stats) { for (var browser in data.stats) {
var versions = data.stats[browser]; var versions = data.stats[browser];

View File

@@ -4,14 +4,14 @@ function _defaults(obj, defaults) { var keys = Object.getOwnPropertyNames(defaul
function _inheritsLoose(subClass, superClass) { subClass.prototype = Object.create(superClass.prototype); subClass.prototype.constructor = subClass; _defaults(subClass, superClass); } function _inheritsLoose(subClass, superClass) { subClass.prototype = Object.create(superClass.prototype); subClass.prototype.constructor = subClass; _defaults(subClass, superClass); }
var vendor = require('postcss').vendor;
var Prefixer = require('./prefixer'); var Prefixer = require('./prefixer');
var OldValue = require('./old-value'); var OldValue = require('./old-value');
var utils = require('./utils'); var utils = require('./utils');
var vendor = require('postcss').vendor;
var Value = var Value =
/*#__PURE__*/ /*#__PURE__*/
function (_Prefixer) { function (_Prefixer) {

View File

@@ -1,8 +1,8 @@
{ {
"_from": "autoprefixer@^9.4.2", "_from": "autoprefixer@^9.4.2",
"_id": "autoprefixer@9.4.10", "_id": "autoprefixer@9.5.1",
"_inBundle": false, "_inBundle": false,
"_integrity": "sha512-XR8XZ09tUrrSzgSlys4+hy5r2/z4Jp7Ag3pHm31U4g/CTccYPOVe19AkaJ4ey/vRd1sfj+5TtuD6I0PXtutjvQ==", "_integrity": "sha512-KJSzkStUl3wP0D5sdMlP82Q52JLy5+atf2MHAre48+ckWkXgixmfHyWmA77wFDy6jTHU6mIgXv6hAQ2mf1PjJQ==",
"_location": "/autoprefixer", "_location": "/autoprefixer",
"_phantomChildren": {}, "_phantomChildren": {},
"_requested": { "_requested": {
@@ -18,8 +18,8 @@
"_requiredBy": [ "_requiredBy": [
"/laravel-mix" "/laravel-mix"
], ],
"_resolved": "https://registry.npmjs.org/autoprefixer/-/autoprefixer-9.4.10.tgz", "_resolved": "https://registry.npmjs.org/autoprefixer/-/autoprefixer-9.5.1.tgz",
"_shasum": "e1be61fc728bacac8f4252ed242711ec0dcc6a7b", "_shasum": "243b1267b67e7e947f28919d786b50d3bb0fb357",
"_spec": "autoprefixer@^9.4.2", "_spec": "autoprefixer@^9.4.2",
"_where": "C:\\xampp\\htdocs\\w4rpservices\\node_modules\\laravel-mix", "_where": "C:\\xampp\\htdocs\\w4rpservices\\node_modules\\laravel-mix",
"author": { "author": {
@@ -34,8 +34,8 @@
}, },
"bundleDependencies": false, "bundleDependencies": false,
"dependencies": { "dependencies": {
"browserslist": "^4.4.2", "browserslist": "^4.5.4",
"caniuse-lite": "^1.0.30000940", "caniuse-lite": "^1.0.30000957",
"normalize-range": "^0.1.2", "normalize-range": "^0.1.2",
"num2fraction": "^1.2.2", "num2fraction": "^1.2.2",
"postcss": "^7.0.14", "postcss": "^7.0.14",
@@ -61,5 +61,5 @@
"type": "git", "type": "git",
"url": "git+https://github.com/postcss/autoprefixer.git" "url": "git+https://github.com/postcss/autoprefixer.git"
}, },
"version": "9.4.10" "version": "9.5.1"
} }

2
node_modules/babel-loader/LICENSE generated vendored
View File

@@ -1,4 +1,4 @@
Copyright (c) 2014-2016 Luís Couto <hello@luiscouto.pt> Copyright (c) 2014-2019 Luís Couto <hello@luiscouto.pt>
MIT License MIT License

18
node_modules/babel-loader/README.md generated vendored
View File

@@ -29,12 +29,6 @@ This package allows transpiling JavaScript files using [Babel](https://github.co
npm install -D babel-loader @babel/core @babel/preset-env webpack npm install -D babel-loader @babel/core @babel/preset-env webpack
``` ```
> webpack 4.x | babel-loader 7.x | babel 6.x
```bash
npm install -D babel-loader@7 babel-core babel-preset-env webpack
```
<h2 align="center">Usage</h2> <h2 align="center">Usage</h2>
webpack documentation: [Loaders](https://webpack.js.org/loaders/) webpack documentation: [Loaders](https://webpack.js.org/loaders/)
@@ -84,9 +78,9 @@ module: {
This loader also supports the following loader-specific option: This loader also supports the following loader-specific option:
* `cacheDirectory`: Default `false`. When set, the given directory will be used to cache the results of the loader. Future webpack builds will attempt to read from the cache to avoid needing to run the potentially expensive Babel recompilation process on each run. If the value is blank (`loader: 'babel-loader?cacheDirectory'`) or `true` (`loader: 'babel-loader?cacheDirectory=true'`), the loader will use the default cache directory in `node_modules/.cache/babel-loader` or fallback to the default OS temporary file directory if no `node_modules` folder could be found in any root directory. * `cacheDirectory`: Default `false`. When set, the given directory will be used to cache the results of the loader. Future webpack builds will attempt to read from the cache to avoid needing to run the potentially expensive Babel recompilation process on each run. If the value is set to `true` in options (`{cacheDirectory: true}`), the loader will use the default cache directory in `node_modules/.cache/babel-loader` or fallback to the default OS temporary file directory if no `node_modules` folder could be found in any root directory.
* `cacheIdentifier`: Default is a string composed by the `babel-core`'s version, the `babel-loader`'s version, the contents of `.babelrc` file if it exists, and the value of the environment variable `BABEL_ENV` with a fallback to the `NODE_ENV` environment variable. This can be set to a custom value to force cache busting if the identifier changes. * `cacheIdentifier`: Default is a string composed by the `@babel/core`'s version, the `babel-loader`'s version, the contents of `.babelrc` file if it exists, and the value of the environment variable `BABEL_ENV` with a fallback to the `NODE_ENV` environment variable. This can be set to a custom value to force cache busting if the identifier changes.
* `cacheCompression`: Default `true`. When set, each Babel transform output will be compressed with Gzip. If you want to opt-out of cache compression, set it to `false` -- your project may benefit from this if it transpiles thousands of files. * `cacheCompression`: Default `true`. When set, each Babel transform output will be compressed with Gzip. If you want to opt-out of cache compression, set it to `false` -- your project may benefit from this if it transpiles thousands of files.
@@ -108,11 +102,11 @@ Babel uses very small helpers for common functions such as `_extend`. By default
You can instead require the Babel runtime as a separate module to avoid the duplication. You can instead require the Babel runtime as a separate module to avoid the duplication.
The following configuration disables automatic per-file runtime injection in Babel, requiring `babel-plugin-transform-runtime` instead and making all helper references use it. The following configuration disables automatic per-file runtime injection in Babel, requiring `@babel/plugin-transform-runtime` instead and making all helper references use it.
See the [docs](https://babeljs.io/docs/plugins/transform-runtime/) for more information. See the [docs](https://babeljs.io/docs/plugins/transform-runtime/) for more information.
**NOTE**: You must run `npm install -D @babel/plugin-transform-runtime` to include this in your project and `babel-runtime` itself as a dependency with `npm install @babel/runtime`. **NOTE**: You must run `npm install -D @babel/plugin-transform-runtime` to include this in your project and `@babel/runtime` itself as a dependency with `npm install @babel/runtime`.
```javascript ```javascript
rules: [ rules: [
@@ -134,7 +128,7 @@ rules: [
#### **NOTE**: transform-runtime & custom polyfills (e.g. Promise library) #### **NOTE**: transform-runtime & custom polyfills (e.g. Promise library)
Since [babel-plugin-transform-runtime](https://github.com/babel/babel/tree/master/packages/babel-plugin-transform-runtime) includes a polyfill that includes a custom [regenerator-runtime](https://github.com/facebook/regenerator/blob/master/packages/regenerator-runtime/runtime.js) and [core-js](https://github.com/zloirock/core-js), the following usual shimming method using `webpack.ProvidePlugin` will not work: Since [@babel/plugin-transform-runtime](https://github.com/babel/babel/tree/master/packages/babel-plugin-transform-runtime) includes a polyfill that includes a custom [regenerator-runtime](https://github.com/facebook/regenerator/blob/master/packages/regenerator-runtime/runtime.js) and [core-js](https://github.com/zloirock/core-js), the following usual shimming method using `webpack.ProvidePlugin` will not work:
```javascript ```javascript
// ... // ...
@@ -190,7 +184,7 @@ If you receive this message, it means that you have the npm package `babel` inst
webpack then tries to load the `babel` package instead of the `babel-loader`. webpack then tries to load the `babel` package instead of the `babel-loader`.
To fix this, you should uninstall the npm package `babel`, as it is deprecated in Babel v6. (Instead, install `babel-cli` or `babel-core`.) To fix this, you should uninstall the npm package `babel`, as it is deprecated in Babel v6. (Instead, install `@babel/cli` or `@babel/core`.)
In the case one of your dependencies is installing `babel` and you cannot uninstall it yourself, use the complete name of the loader in the webpack config: In the case one of your dependencies is installing `babel` and you cannot uninstall it yourself, use the complete name of the loader in the webpack config:
```javascript ```javascript
{ {

View File

@@ -22,7 +22,9 @@ if (/^6\./.test(babel.version)) {
throw new Error("\n babel-loader@8 will not work with the '@babel/core@6' bridge package. " + "If you want to use Babel 6.x, install 'babel-loader@7'."); throw new Error("\n babel-loader@8 will not work with the '@babel/core@6' bridge package. " + "If you want to use Babel 6.x, install 'babel-loader@7'.");
} }
const pkg = require("../package.json"); const {
version
} = require("../package.json");
const cache = require("./cache"); const cache = require("./cache");
@@ -30,7 +32,9 @@ const transform = require("./transform");
const injectCaller = require("./injectCaller"); const injectCaller = require("./injectCaller");
const path = require("path"); const {
isAbsolute
} = require("path");
const loaderUtils = require("loader-utils"); const loaderUtils = require("loader-utils");
@@ -66,7 +70,7 @@ function _loader() {
throw new Error("Customized loaders must be implemented as standalone modules."); throw new Error("Customized loaders must be implemented as standalone modules.");
} }
if (!path.isAbsolute(loaderOptions.customize)) { if (!isAbsolute(loaderOptions.customize)) {
throw new Error("Customized loaders must be passed as absolute paths, since " + "babel-loader has no way to know what they would be relative to."); throw new Error("Customized loaders must be passed as absolute paths, since " + "babel-loader has no way to know what they would be relative to.");
} }
@@ -165,7 +169,7 @@ function _loader() {
cacheIdentifier = JSON.stringify({ cacheIdentifier = JSON.stringify({
options, options,
"@babel/core": transform.version, "@babel/core": transform.version,
"@babel/loader": pkg.version "@babel/loader": version
}), }),
cacheCompression = true, cacheCompression = true,
metadataSubscribers = [] metadataSubscribers = []

View File

@@ -1,8 +1,8 @@
{ {
"_from": "babel-loader@^8.0.4", "_from": "babel-loader@^8.0.4",
"_id": "babel-loader@8.0.5", "_id": "babel-loader@8.0.6",
"_inBundle": false, "_inBundle": false,
"_integrity": "sha512-NTnHnVRd2JnRqPC0vW+iOQWU5pchDbYXsG2E6DMXEpMfUcQKclF9gmf3G3ZMhzG7IG9ji4coL0cm+FxeWxDpnw==", "_integrity": "sha512-4BmWKtBOBm13uoUwd08UwjZlaw3O9GWf456R9j+5YykFZ6LUIjIKLc0zEZf+hauxPOJs96C8k6FvYD09vWzhYw==",
"_location": "/babel-loader", "_location": "/babel-loader",
"_phantomChildren": {}, "_phantomChildren": {},
"_requested": { "_requested": {
@@ -18,8 +18,8 @@
"_requiredBy": [ "_requiredBy": [
"/laravel-mix" "/laravel-mix"
], ],
"_resolved": "https://registry.npmjs.org/babel-loader/-/babel-loader-8.0.5.tgz", "_resolved": "https://registry.npmjs.org/babel-loader/-/babel-loader-8.0.6.tgz",
"_shasum": "225322d7509c2157655840bba52e46b6c2f2fe33", "_shasum": "e33bdb6f362b03f4bb141a0c21ab87c501b70dfb",
"_spec": "babel-loader@^8.0.4", "_spec": "babel-loader@^8.0.4",
"_where": "C:\\xampp\\htdocs\\w4rpservices\\node_modules\\laravel-mix", "_where": "C:\\xampp\\htdocs\\w4rpservices\\node_modules\\laravel-mix",
"author": { "author": {
@@ -44,7 +44,7 @@
"find-cache-dir": "^2.0.0", "find-cache-dir": "^2.0.0",
"loader-utils": "^1.0.2", "loader-utils": "^1.0.2",
"mkdirp": "^0.5.1", "mkdirp": "^0.5.1",
"util.promisify": "^1.0.0" "pify": "^4.0.1"
}, },
"deprecated": false, "deprecated": false,
"description": "babel module loader for webpack", "description": "babel module loader for webpack",
@@ -52,19 +52,19 @@
"@babel/cli": "^7.2.0", "@babel/cli": "^7.2.0",
"@babel/core": "^7.2.0", "@babel/core": "^7.2.0",
"@babel/preset-env": "^7.2.0", "@babel/preset-env": "^7.2.0",
"ava": "1.0.1", "ava": "^1.1.0",
"babel-eslint": "^10.0.1", "babel-eslint": "^10.0.1",
"babel-plugin-istanbul": "^5.1.0", "babel-plugin-istanbul": "^5.1.0",
"babel-plugin-react-intl": "^3.0.1", "babel-plugin-react-intl": "^3.0.1",
"cross-env": "^5.2.0", "cross-env": "^5.2.0",
"eslint": "^5.9.0", "eslint": "^5.9.0",
"eslint-config-babel": "^8.0.2", "eslint-config-babel": "^9.0.0",
"eslint-config-prettier": "^3.3.0", "eslint-config-prettier": "^4.1.0",
"eslint-plugin-flowtype": "^3.2.0", "eslint-plugin-flowtype": "^3.2.0",
"eslint-plugin-prettier": "^3.0.0", "eslint-plugin-prettier": "^3.0.0",
"husky": "^1.2.0", "husky": "^1.2.0",
"lint-staged": "^8.1.0", "lint-staged": "^8.1.0",
"nyc": "^13.1.0", "nyc": "^14.1.1",
"prettier": "^1.15.3", "prettier": "^1.15.3",
"react": "^16.0.0", "react": "^16.0.0",
"react-intl": "^2.1.2", "react-intl": "^2.1.2",
@@ -143,5 +143,5 @@
"test": "yarn run lint && cross-env BABEL_ENV=test yarn run build && yarn run test-only", "test": "yarn run lint && cross-env BABEL_ENV=test yarn run build && yarn run test-only",
"test-only": "nyc ava" "test-only": "nyc ava"
}, },
"version": "8.0.5" "version": "8.0.6"
} }

View File

@@ -23,7 +23,7 @@
* *
*/ */
/** /**
* bluebird build version 3.5.3 * bluebird build version 3.5.4
* Features enabled: core * Features enabled: core
* Features disabled: race, call_get, generators, map, nodeify, promisify, props, reduce, settle, some, using, timers, filter, any, each * Features disabled: race, call_get, generators, map, nodeify, promisify, props, reduce, settle, some, using, timers, filter, any, each
*/ */
@@ -2871,7 +2871,7 @@ _dereq_("./synchronous_inspection")(Promise);
_dereq_("./join")( _dereq_("./join")(
Promise, PromiseArray, tryConvertToPromise, INTERNAL, async, getDomain); Promise, PromiseArray, tryConvertToPromise, INTERNAL, async, getDomain);
Promise.Promise = Promise; Promise.Promise = Promise;
Promise.version = "3.5.3"; Promise.version = "3.5.4";
util.toFastProperties(Promise); util.toFastProperties(Promise);
util.toFastProperties(Promise.prototype); util.toFastProperties(Promise.prototype);
@@ -3792,7 +3792,12 @@ var ret = {
domainBind: domainBind domainBind: domainBind
}; };
ret.isRecentNode = ret.isNode && (function() { ret.isRecentNode = ret.isNode && (function() {
var version = process.versions.node.split(".").map(Number); var version;
if (process.versions && process.versions.node) {
version = process.versions.node.split(".").map(Number);
} else if (process.version) {
version = process.version.split(".").map(Number);
}
return (version[0] === 0 && version[1] > 10) || (version[0] > 0); return (version[0] === 0 && version[1] > 10) || (version[0] > 0);
})(); })();

File diff suppressed because one or more lines are too long

View File

@@ -23,7 +23,7 @@
* *
*/ */
/** /**
* bluebird build version 3.5.3 * bluebird build version 3.5.4
* Features enabled: core, race, call_get, generators, map, nodeify, promisify, props, reduce, settle, some, using, timers, filter, any, each * Features enabled: core, race, call_get, generators, map, nodeify, promisify, props, reduce, settle, some, using, timers, filter, any, each
*/ */
!function(e){if("object"==typeof exports&&"undefined"!=typeof module)module.exports=e();else if("function"==typeof define&&define.amd)define([],e);else{var f;"undefined"!=typeof window?f=window:"undefined"!=typeof global?f=global:"undefined"!=typeof self&&(f=self),f.Promise=e()}}(function(){var define,module,exports;return (function e(t,n,r){function s(o,u){if(!n[o]){if(!t[o]){var a=typeof _dereq_=="function"&&_dereq_;if(!u&&a)return a(o,!0);if(i)return i(o,!0);var f=new Error("Cannot find module '"+o+"'");throw f.code="MODULE_NOT_FOUND",f}var l=n[o]={exports:{}};t[o][0].call(l.exports,function(e){var n=t[o][1][e];return s(n?n:e)},l,l.exports,e,t,n,r)}return n[o].exports}var i=typeof _dereq_=="function"&&_dereq_;for(var o=0;o<r.length;o++)s(r[o]);return s})({1:[function(_dereq_,module,exports){ !function(e){if("object"==typeof exports&&"undefined"!=typeof module)module.exports=e();else if("function"==typeof define&&define.amd)define([],e);else{var f;"undefined"!=typeof window?f=window:"undefined"!=typeof global?f=global:"undefined"!=typeof self&&(f=self),f.Promise=e()}}(function(){var define,module,exports;return (function e(t,n,r){function s(o,u){if(!n[o]){if(!t[o]){var a=typeof _dereq_=="function"&&_dereq_;if(!u&&a)return a(o,!0);if(i)return i(o,!0);var f=new Error("Cannot find module '"+o+"'");throw f.code="MODULE_NOT_FOUND",f}var l=n[o]={exports:{}};t[o][0].call(l.exports,function(e){var n=t[o][1][e];return s(n?n:e)},l,l.exports,e,t,n,r)}return n[o].exports}var i=typeof _dereq_=="function"&&_dereq_;for(var o=0;o<r.length;o++)s(r[o]);return s})({1:[function(_dereq_,module,exports){
@@ -3519,7 +3519,7 @@ _dereq_("./synchronous_inspection")(Promise);
_dereq_("./join")( _dereq_("./join")(
Promise, PromiseArray, tryConvertToPromise, INTERNAL, async, getDomain); Promise, PromiseArray, tryConvertToPromise, INTERNAL, async, getDomain);
Promise.Promise = Promise; Promise.Promise = Promise;
Promise.version = "3.5.3"; Promise.version = "3.5.4";
_dereq_('./map.js')(Promise, PromiseArray, apiRejection, tryConvertToPromise, INTERNAL, debug); _dereq_('./map.js')(Promise, PromiseArray, apiRejection, tryConvertToPromise, INTERNAL, debug);
_dereq_('./call_get.js')(Promise); _dereq_('./call_get.js')(Promise);
_dereq_('./using.js')(Promise, apiRejection, tryConvertToPromise, createContext, INTERNAL, debug); _dereq_('./using.js')(Promise, apiRejection, tryConvertToPromise, createContext, INTERNAL, debug);
@@ -5634,7 +5634,12 @@ var ret = {
domainBind: domainBind domainBind: domainBind
}; };
ret.isRecentNode = ret.isNode && (function() { ret.isRecentNode = ret.isNode && (function() {
var version = process.versions.node.split(".").map(Number); var version;
if (process.versions && process.versions.node) {
version = process.versions.node.split(".").map(Number);
} else if (process.version) {
version = process.version.split(".").map(Number);
}
return (version[0] === 0 && version[1] > 10) || (version[0] > 0); return (version[0] === 0 && version[1] > 10) || (version[0] > 0);
})(); })();

File diff suppressed because one or more lines are too long

View File

@@ -734,7 +734,7 @@ require("./synchronous_inspection")(Promise);
require("./join")( require("./join")(
Promise, PromiseArray, tryConvertToPromise, INTERNAL, async, getDomain); Promise, PromiseArray, tryConvertToPromise, INTERNAL, async, getDomain);
Promise.Promise = Promise; Promise.Promise = Promise;
Promise.version = "3.5.3"; Promise.version = "3.5.4";
require('./map.js')(Promise, PromiseArray, apiRejection, tryConvertToPromise, INTERNAL, debug); require('./map.js')(Promise, PromiseArray, apiRejection, tryConvertToPromise, INTERNAL, debug);
require('./call_get.js')(Promise); require('./call_get.js')(Promise);
require('./using.js')(Promise, apiRejection, tryConvertToPromise, createContext, INTERNAL, debug); require('./using.js')(Promise, apiRejection, tryConvertToPromise, createContext, INTERNAL, debug);

View File

@@ -374,7 +374,12 @@ var ret = {
domainBind: domainBind domainBind: domainBind
}; };
ret.isRecentNode = ret.isNode && (function() { ret.isRecentNode = ret.isNode && (function() {
var version = process.versions.node.split(".").map(Number); var version;
if (process.versions && process.versions.node) {
version = process.versions.node.split(".").map(Number);
} else if (process.version) {
version = process.version.split(".").map(Number);
}
return (version[0] === 0 && version[1] > 10) || (version[0] > 0); return (version[0] === 0 && version[1] > 10) || (version[0] > 0);
})(); })();

10
node_modules/bluebird/package.json generated vendored
View File

@@ -1,8 +1,8 @@
{ {
"_from": "bluebird@^3.5.3", "_from": "bluebird@^3.5.3",
"_id": "bluebird@3.5.3", "_id": "bluebird@3.5.4",
"_inBundle": false, "_inBundle": false,
"_integrity": "sha512-/qKPUQlaW1OyR51WeCPBvRnAlnZFUJkCSG5HzGnuIqhgyJtF+T94lFnn33eiazjRm2LAHVy2guNnaq48X9SJuw==", "_integrity": "sha512-FG+nFEZChJrbQ9tIccIfZJBz3J7mLrAhxakAbnrJWn8d7aKOC+LWifa0G+p4ZqKp4y13T7juYvdhq9NzKdsrjw==",
"_location": "/bluebird", "_location": "/bluebird",
"_phantomChildren": {}, "_phantomChildren": {},
"_requested": { "_requested": {
@@ -19,8 +19,8 @@
"/cacache", "/cacache",
"/consolidate" "/consolidate"
], ],
"_resolved": "https://registry.npmjs.org/bluebird/-/bluebird-3.5.3.tgz", "_resolved": "https://registry.npmjs.org/bluebird/-/bluebird-3.5.4.tgz",
"_shasum": "7d01c6f9616c9a51ab0f8c549a79dfe6ec33efa7", "_shasum": "d6cc661595de30d5b3af5fcedd3c0b3ef6ec5714",
"_spec": "bluebird@^3.5.3", "_spec": "bluebird@^3.5.3",
"_where": "C:\\xampp\\htdocs\\w4rpservices\\node_modules\\cacache", "_where": "C:\\xampp\\htdocs\\w4rpservices\\node_modules\\cacache",
"author": { "author": {
@@ -98,6 +98,6 @@
"prepublish": "npm run generate-browser-core && npm run generate-browser-full", "prepublish": "npm run generate-browser-core && npm run generate-browser-full",
"test": "node --expose-gc tools/test.js" "test": "node --expose-gc tools/test.js"
}, },
"version": "3.5.3", "version": "3.5.4",
"webpack": "./js/release/bluebird.js" "webpack": "./js/release/bluebird.js"
} }

21
node_modules/body-parser/HISTORY.md generated vendored
View File

@@ -1,3 +1,24 @@
1.19.0 / 2019-04-25
===================
* deps: bytes@3.1.0
- Add petabyte (`pb`) support
* deps: http-errors@1.7.2
- Set constructor name when possible
- deps: setprototypeof@1.1.1
- deps: statuses@'>= 1.5.0 < 2'
* deps: iconv-lite@0.4.24
- Added encoding MIK
* deps: qs@6.7.0
- Fix parsing array brackets after index
* deps: raw-body@2.4.0
- deps: bytes@3.1.0
- deps: http-errors@1.7.2
- deps: iconv-lite@0.4.24
* deps: type-is@~1.6.17
- deps: mime-types@~2.1.24
- perf: prevent internal `throw` on invalid type
1.18.3 / 2018-05-14 1.18.3 / 2018-05-14
=================== ===================

2
node_modules/body-parser/README.md generated vendored
View File

@@ -399,13 +399,11 @@ var urlencodedParser = bodyParser.urlencoded({ extended: false })
// POST /login gets urlencoded bodies // POST /login gets urlencoded bodies
app.post('/login', urlencodedParser, function (req, res) { app.post('/login', urlencodedParser, function (req, res) {
if (!req.body) return res.sendStatus(400)
res.send('welcome, ' + req.body.username) res.send('welcome, ' + req.body.username)
}) })
// POST /api/users gets JSON bodies // POST /api/users gets JSON bodies
app.post('/api/users', jsonParser, function (req, res) { app.post('/api/users', jsonParser, function (req, res) {
if (!req.body) return res.sendStatus(400)
// create user in req.body // create user in req.body
}) })
``` ```

View File

@@ -266,7 +266,7 @@ function simpleparser (options) {
} }
debug('parse urlencoding') debug('parse urlencoding')
return parse(body, undefined, undefined, {maxKeys: parameterLimit}) return parse(body, undefined, undefined, { maxKeys: parameterLimit })
} }
} }

View File

@@ -1,8 +1,8 @@
{ {
"_from": "body-parser@1.18.3", "_from": "body-parser@1.19.0",
"_id": "body-parser@1.18.3", "_id": "body-parser@1.19.0",
"_inBundle": false, "_inBundle": false,
"_integrity": "sha1-WykhmP/dVTs6DyDe0FkrlWlVyLQ=", "_integrity": "sha512-dhEPs72UPbDnAQJ9ZKMNTP6ptJaionhP5cBb541nXPlW60Jepo9RV/a4fX4XWW9CuFNK22krhrj1+rgzifNCsw==",
"_location": "/body-parser", "_location": "/body-parser",
"_phantomChildren": { "_phantomChildren": {
"ms": "2.0.0" "ms": "2.0.0"
@@ -10,19 +10,19 @@
"_requested": { "_requested": {
"type": "version", "type": "version",
"registry": true, "registry": true,
"raw": "body-parser@1.18.3", "raw": "body-parser@1.19.0",
"name": "body-parser", "name": "body-parser",
"escapedName": "body-parser", "escapedName": "body-parser",
"rawSpec": "1.18.3", "rawSpec": "1.19.0",
"saveSpec": null, "saveSpec": null,
"fetchSpec": "1.18.3" "fetchSpec": "1.19.0"
}, },
"_requiredBy": [ "_requiredBy": [
"/express" "/express"
], ],
"_resolved": "https://registry.npmjs.org/body-parser/-/body-parser-1.18.3.tgz", "_resolved": "https://registry.npmjs.org/body-parser/-/body-parser-1.19.0.tgz",
"_shasum": "5b292198ffdd553b3a0f20ded0592b956955c8b4", "_shasum": "96b2709e57c9c4e09a6fd66a8fd979844f69f08a",
"_spec": "body-parser@1.18.3", "_spec": "body-parser@1.19.0",
"_where": "C:\\xampp\\htdocs\\w4rpservices\\node_modules\\express", "_where": "C:\\xampp\\htdocs\\w4rpservices\\node_modules\\express",
"bugs": { "bugs": {
"url": "https://github.com/expressjs/body-parser/issues" "url": "https://github.com/expressjs/body-parser/issues"
@@ -40,32 +40,32 @@
} }
], ],
"dependencies": { "dependencies": {
"bytes": "3.0.0", "bytes": "3.1.0",
"content-type": "~1.0.4", "content-type": "~1.0.4",
"debug": "2.6.9", "debug": "2.6.9",
"depd": "~1.1.2", "depd": "~1.1.2",
"http-errors": "~1.6.3", "http-errors": "1.7.2",
"iconv-lite": "0.4.23", "iconv-lite": "0.4.24",
"on-finished": "~2.3.0", "on-finished": "~2.3.0",
"qs": "6.5.2", "qs": "6.7.0",
"raw-body": "2.3.3", "raw-body": "2.4.0",
"type-is": "~1.6.16" "type-is": "~1.6.17"
}, },
"deprecated": false, "deprecated": false,
"description": "Node.js body parsing middleware", "description": "Node.js body parsing middleware",
"devDependencies": { "devDependencies": {
"eslint": "4.19.1", "eslint": "5.16.0",
"eslint-config-standard": "11.0.0", "eslint-config-standard": "12.0.0",
"eslint-plugin-import": "2.11.0", "eslint-plugin-import": "2.17.2",
"eslint-plugin-markdown": "1.0.0-beta.6", "eslint-plugin-markdown": "1.0.0",
"eslint-plugin-node": "6.0.1", "eslint-plugin-node": "8.0.1",
"eslint-plugin-promise": "3.7.0", "eslint-plugin-promise": "4.1.1",
"eslint-plugin-standard": "3.1.0", "eslint-plugin-standard": "4.0.0",
"istanbul": "0.4.5", "istanbul": "0.4.5",
"methods": "1.1.2", "methods": "1.1.2",
"mocha": "2.5.3", "mocha": "6.1.4",
"safe-buffer": "5.1.2", "safe-buffer": "5.1.2",
"supertest": "1.1.0" "supertest": "4.0.2"
}, },
"engines": { "engines": {
"node": ">= 0.8" "node": ">= 0.8"
@@ -89,5 +89,5 @@
"test-cov": "istanbul cover node_modules/mocha/bin/_mocha -- --require test/support/env --reporter dot --check-leaks test/", "test-cov": "istanbul cover node_modules/mocha/bin/_mocha -- --require test/support/env --reporter dot --check-leaks test/",
"test-travis": "istanbul cover node_modules/mocha/bin/_mocha --report lcovonly -- --require test/support/env --reporter spec --check-leaks test/" "test-travis": "istanbul cover node_modules/mocha/bin/_mocha --report lcovonly -- --require test/support/env --reporter spec --check-leaks test/"
}, },
"version": "1.18.3" "version": "1.19.0"
} }

View File

@@ -1,6 +1,31 @@
# Change Log # Change Log
This project adheres to [Semantic Versioning](http://semver.org/). This project adheres to [Semantic Versioning](http://semver.org/).
## 4.6
* Add `mobileToDesktop` option (by Nicolò Ribaudo).
## 4.5.6
* Make `Node > 5` and `node > 5` queries case insensitive.
## 4.5.5
* Fix CLI help (by Marcel Gerber).
* Add KaiOS browser to docs.
## 4.5.4
* Update docs (by Andrew Leedham and Dan Onoshko).
## 4.5.3
* Fix splitting string to queries.
## 4.5.2
* Show default browsers in CLI on project without config.
## 4.5.1
* Improve text for the warning about outdated `caniuse-lite`.
## 4.5
* Add `>=`, `>`, and `<=` support for Node.js version (by Mathspy Terabithian).
## 4.4.2 ## 4.4.2
* Allow to have string in `package.json` (by @dmarkhas). * Allow to have string in `package.json` (by @dmarkhas).

76
node_modules/browserslist/README.md generated vendored
View File

@@ -73,10 +73,12 @@ You can test Browserslist queries in [online demo].
* [`browserslist-ga`] downloads your website browsers statistics * [`browserslist-ga`] downloads your website browsers statistics
to use it in `> 0.5% in my stats` query. to use it in `> 0.5% in my stats` query.
* [`browserslist-useragent`] checks browser by user agent string * [`browserslist-useragent-regexp`] compiles Browserslist query to a RegExp
to match Browserslist target browsers query. to test browser useragent.
* [`browserslist-useragent-ruby`] is a Ruby library to checks browser * [`browserslist-useragent-ruby`] is a Ruby library to checks browser
by user agent string to match Browserslist. by user agent string to match Browserslist.
* [`browserslist-browserstack`] runs BrowserStack tests for all browsers
in Browserslist config.
* [`caniuse-api`] returns browsers which support some specific feature. * [`caniuse-api`] returns browsers which support some specific feature.
* Run `npx browserslist` in your project directory to see projects * Run `npx browserslist` in your project directory to see projects
target browsers. This CLI tool is built-in and available in any project target browsers. This CLI tool is built-in and available in any project
@@ -84,8 +86,38 @@ You can test Browserslist queries in [online demo].
[`browserslist-useragent-ruby`]: https://github.com/browserslist/browserslist-useragent-ruby [`browserslist-useragent-ruby`]: https://github.com/browserslist/browserslist-useragent-ruby
[`browserslist-useragent`]: https://github.com/pastelsky/browserslist-useragent [`browserslist-useragent`]: https://github.com/pastelsky/browserslist-useragent
[`browserslist-useragent-regexp`]: https://github.com/browserslist/browserslist-useragent-regexp
[`browserslist-ga`]: https://github.com/browserslist/browserslist-ga [`browserslist-ga`]: https://github.com/browserslist/browserslist-ga
[`caniuse-api`]: https://github.com/Nyalab/caniuse-api [`caniuse-api`]: https://github.com/Nyalab/caniuse-api
[`browserslist-browserstack`]: https://github.com/xeroxinteractive/browserslist-browserstack
## Best Practices
* Select browsers directly (`last 2 Chrome versions`) only if you are making
a web app for a kiosk with one browser. There are a lot of browsers
on the market. If you are making general web app you should respect
browsers diversity.
* There is a `defaults` query, which gives a reasonable configuration
for most users:
```json
"browserslist": [
"defaults"
]
```
* If you want to change the default set of browsers we recommend to combine
`last 1 version`, `not dead` with `> 0.2%` (or `> 1% in US`,
`> 1% in my stats`). `last n versions` adds too many dead browsers
and does not add popular old versions. Choosing a percentage above `0.2%`
will in the long run make popular browsers even more popular. We might run
into a monopoly and stagnation situation, as we had with Internet Explorer 6.
Please use this setting with caution.
* Dont remove browsers just because you dont know them. Opera Mini has
100 million users in Africa and it is more popular in the global market
than Microsoft Edge. Chinese QQ Browsers has more market share than Firefox
and desktop Safari altogether.
## Queries ## Queries
@@ -128,25 +160,6 @@ _A quick way to test your query is to do `npx browserslist '> 0.5%, not IE 11'`
in your terminal._ in your terminal._
### Best Practices
* Select browsers directly (`last 2 Chrome versions`) only if you are making
a web app for a kiosk with one browser. There are a lot of browsers
on the market. If you are making general web app you should respect
browsers diversity.
* If you want to change the default set of browsers we recommend to combine
`last 1 version`, `not dead` with `> 0.2%` (or `> 1% in US`,
`> 1% in my stats`). `last n versions` adds too many dead browsers
and does not add popular old versions. Choosing a percentage above `0.2%`
will in the long run make popular browsers even more popular. We might run
into a monopoly and stagnation situation, as we had with Internet Explorer 6.
Please use this setting with caution.
* Dont remove browsers just because you dont know them. Opera Mini has
100 million users in Africa and it is more popular in the global market
than Microsoft Edge. Chinese QQ Browsers has more market share than Firefox
and desktop Safari altogether.
### Full List ### Full List
You can specify the browser and Node.js versions by queries (case insensitive): You can specify the browser and Node.js versions by queries (case insensitive):
@@ -169,7 +182,7 @@ You can specify the browser and Node.js versions by queries (case insensitive):
`browserslist-config-mycompany` npm package. `browserslist-config-mycompany` npm package.
* `ie 6-8`: selects an inclusive range of versions. * `ie 6-8`: selects an inclusive range of versions.
* `Firefox > 20`: versions of Firefox newer than 20. * `Firefox > 20`: versions of Firefox newer than 20.
`>=`, `<` and `<=` work too. `>=`, `<` and `<=` work too. It also works with Node.js.
* `iOS 7`: the iOS browser version 7 directly. * `iOS 7`: the iOS browser version 7 directly.
* `Firefox ESR`: the latest [Firefox ESR] version. * `Firefox ESR`: the latest [Firefox ESR] version.
* `unreleased versions` or `unreleased Chrome versions`: * `unreleased versions` or `unreleased Chrome versions`:
@@ -256,6 +269,7 @@ Names are case insensitive:
* `Safari` for desktop Safari. * `Safari` for desktop Safari.
* `Samsung` for Samsung Internet. * `Samsung` for Samsung Internet.
* `UCAndroid` or `and_uc` for UC Browser for Android. * `UCAndroid` or `and_uc` for UC Browser for Android.
* `kaios` for KaiOS Browser.
## `package.json` ## `package.json`
@@ -485,6 +499,10 @@ Options:
Default is `false.` Default is `false.`
* `dangerousExtend`: Disable security checks for `extend` query. * `dangerousExtend`: Disable security checks for `extend` query.
Default is `false.` Default is `false.`
* `mobileToDesktop`: Use desktop browsers if Can I Use doesnt have data
about this mobile version. For instance, Browserslist will return
`chrome 20` on `and_chr 20` query (Can I Use has only data only about
latest versions of mobile browsers). Default is `false`.
For non-JS environment and debug purpose you can use CLI tool: For non-JS environment and debug purpose you can use CLI tool:
@@ -556,13 +574,9 @@ To disable the caching altogether, set the `BROWSERSLIST_DISABLE_CACHE`
environment variable. environment variable.
## Contributors ## Security Contact
<img src="https://sourcerer.io/fame/ai/browserslist/browserslist/images/0" alt="" width="76" height="90" align="left"> To report a security vulnerability, please use the [Tidelift security contact].
<img src="https://sourcerer.io/fame/ai/browserslist/browserslist/images/1" alt="" width="76" height="90" align="left"> Tidelift will coordinate the fix and disclosure.
<img src="https://sourcerer.io/fame/ai/browserslist/browserslist/images/2" alt="" width="76" height="90" align="left">
<img src="https://sourcerer.io/fame/ai/browserslist/browserslist/images/3" alt="" width="76" height="90" align="left"> [Tidelift security contact]: https://tidelift.com/security
<img src="https://sourcerer.io/fame/ai/browserslist/browserslist/images/4" alt="" width="76" height="90" align="left">
<img src="https://sourcerer.io/fame/ai/browserslist/browserslist/images/5" alt="" width="76" height="90" align="left">
<img src="https://sourcerer.io/fame/ai/browserslist/browserslist/images/6" alt="" width="76" height="90" align="left">
<img src="https://sourcerer.io/fame/ai/browserslist/browserslist/images/7" alt="" width="76" height="90" align="left">

13
node_modules/browserslist/cli.js generated vendored
View File

@@ -13,7 +13,7 @@ var USAGE = 'Usage:\n' +
' ' + pkg.name + ' --config="path/to/browserlist/file"\n' + ' ' + pkg.name + ' --config="path/to/browserlist/file"\n' +
' ' + pkg.name + ' --coverage "QUERIES"\n' + ' ' + pkg.name + ' --coverage "QUERIES"\n' +
' ' + pkg.name + ' --coverage=US "QUERIES"\n' + ' ' + pkg.name + ' --coverage=US "QUERIES"\n' +
' ' + pkg.name + ' --coverage=US,RU,world "QUERIES"\n' + ' ' + pkg.name + ' --coverage=US,RU,global "QUERIES"\n' +
' ' + pkg.name + ' --env="environment name defined in config"\n' + ' ' + pkg.name + ' --env="environment name defined in config"\n' +
' ' + pkg.name + ' --stats="path/to/browserlist/stats/file"' ' ' + pkg.name + ' --stats="path/to/browserlist/stats/file"'
@@ -72,17 +72,6 @@ if (isArg('--help') || isArg('-h')) {
var browsers var browsers
try { try {
if (!queries && !opts.config) {
if (browserslist.findConfig(process.cwd())) {
opts.path = process.cwd()
} else {
error(
'Browserslist config was not found. ' +
'Define queries or config path.' +
'\n\n' + USAGE
)
}
}
browsers = browserslist(queries, opts) browsers = browserslist(queries, opts)
} catch (e) { } catch (e) {
if (e.name === 'BrowserslistError') { if (e.name === 'BrowserslistError') {

111
node_modules/browserslist/index.js generated vendored
View File

@@ -91,17 +91,73 @@ function generateFilter (sign, version) {
} }
} }
function compareStrings (a, b) { function generateSemverFilter (sign, version) {
version = version.split('.').map(parseSimpleInt)
version[1] = version[1] || 0
version[2] = version[2] || 0
if (sign === '>') {
return function (v) {
v = v.split('.').map(parseSimpleInt)
return compareSemver(v, version) > 0
}
} else if (sign === '>=') {
return function (v) {
v = v.split('.').map(parseSimpleInt)
return compareSemver(v, version) >= 0
}
} else if (sign === '<') {
return function (v) {
v = v.split('.').map(parseSimpleInt)
return compareSemver(version, v) > 0
}
} else {
return function (v) {
v = v.split('.').map(parseSimpleInt)
return compareSemver(version, v) >= 0
}
}
}
function parseSimpleInt (x) {
return parseInt(x)
}
function compare (a, b) {
if (a < b) return -1 if (a < b) return -1
if (a > b) return +1 if (a > b) return +1
return 0 return 0
} }
function normalizeVersion (data, version) { function compareSemver (a, b) {
return (
compare(a[0], b[0]) ||
compare(a[1], b[1]) ||
compare(a[2], b[2])
)
}
function resolveVersion (data, version) {
if (data.versions.indexOf(version) !== -1) { if (data.versions.indexOf(version) !== -1) {
return version return version
} else if (browserslist.versionAliases[data.name][version]) { } else if (browserslist.versionAliases[data.name][version]) {
return browserslist.versionAliases[data.name][version] return browserslist.versionAliases[data.name][version]
} else {
return false
}
}
function normalizeVersion (data, version, context) {
var resolved = resolveVersion(data, version)
if (
!resolved &&
context.mobileToDesktop &&
browserslist.desktopNames[data.name]
) {
var alias = checkName(browserslist.desktopNames[data.name])
resolved = resolveVersion(alias, version)
}
if (resolved) {
return resolved
} else if (data.versions.length === 1) { } else if (data.versions.length === 1) {
return data.versions[0] return data.versions[0]
} else { } else {
@@ -235,6 +291,9 @@ function resolve (queries, context) {
* version in direct query. * version in direct query.
* @param {boolean} [opts.dangerousExtend] Disable security checks * @param {boolean} [opts.dangerousExtend] Disable security checks
* for extend query. * for extend query.
* @param {boolean} [opts.mobileToDesktop] Alias mobile browsers to the desktop
* version when Can I Use doesn't have
* data about the specified version.
* @returns {string[]} Array with browser names in Can I Use. * @returns {string[]} Array with browser names in Can I Use.
* *
* @example * @example
@@ -263,7 +322,8 @@ function browserslist (queries, opts) {
var context = { var context = {
ignoreUnknownVersions: opts.ignoreUnknownVersions, ignoreUnknownVersions: opts.ignoreUnknownVersions,
dangerousExtend: opts.dangerousExtend dangerousExtend: opts.dangerousExtend,
mobileToDesktop: opts.mobileToDesktop
} }
env.oldDataWarning(browserslist.data) env.oldDataWarning(browserslist.data)
@@ -282,10 +342,10 @@ function browserslist (queries, opts) {
if (FLOAT_RANGE.test(name1[1]) && FLOAT_RANGE.test(name2[1])) { if (FLOAT_RANGE.test(name1[1]) && FLOAT_RANGE.test(name2[1])) {
return parseFloat(name2[1]) - parseFloat(name1[1]) return parseFloat(name2[1]) - parseFloat(name1[1])
} else { } else {
return compareStrings(name2[1], name1[1]) return compare(name2[1], name1[1])
} }
} else { } else {
return compareStrings(name1[0], name2[0]) return compare(name1[0], name2[0])
} }
}) })
@@ -325,9 +385,7 @@ function doMatch (string, qs) {
var or = /^(?:,\s*|\s+OR\s+)(.*)/i var or = /^(?:,\s*|\s+OR\s+)(.*)/i
var and = /^\s+AND\s+(.*)/i var and = /^\s+AND\s+(.*)/i
return find( return find(string, function (parsed, n, max) {
string,
function (parsed, n, max) {
if (and.test(parsed)) { if (and.test(parsed)) {
qs.unshift({ type: QUERY_AND, queryString: parsed.match(and)[1] }) qs.unshift({ type: QUERY_AND, queryString: parsed.match(and)[1] })
return true return true
@@ -339,15 +397,14 @@ function doMatch (string, qs) {
return true return true
} }
return false return false
} })
)
} }
function find (string, predicate) { function find (string, predicate) {
for (var n = 1, max = string.length; n <= max; n++) { for (var n = 1, max = string.length; n <= max; n++) {
var parsed = string.substr(-n, n) var parsed = string.substr(-n, n)
if (predicate(parsed, n, max)) { if (predicate(parsed, n, max)) {
return string.replace(parsed, '') return string.slice(0, -n)
} }
} }
return '' return ''
@@ -391,6 +448,15 @@ browserslist.aliases = {
qqandroid: 'and_qq' qqandroid: 'and_qq'
} }
// Can I Use only provides a few versions for some browsers (e.g. and_chr).
// Fallback to a similar browser for unknown versions
browserslist.desktopNames = {
and_chr: 'chrome',
and_ff: 'firefox',
ie_mob: 'ie',
op_mob: 'opera'
}
// Aliases to work with joined versions like `ios_saf 7.0-7.1` // Aliases to work with joined versions like `ios_saf 7.0-7.1`
browserslist.versionAliases = { } browserslist.versionAliases = { }
@@ -724,8 +790,8 @@ var QUERIES = [
regexp: /^(\w+)\s+([\d.]+)\s*-\s*([\d.]+)$/i, regexp: /^(\w+)\s+([\d.]+)\s*-\s*([\d.]+)$/i,
select: function (context, name, from, to) { select: function (context, name, from, to) {
var data = checkName(name) var data = checkName(name)
from = parseFloat(normalizeVersion(data, from) || from) from = parseFloat(normalizeVersion(data, from, context) || from)
to = parseFloat(normalizeVersion(data, to) || to) to = parseFloat(normalizeVersion(data, to, context) || to)
function filter (v) { function filter (v) {
var parsed = parseFloat(v) var parsed = parseFloat(v)
@@ -745,6 +811,21 @@ var QUERIES = [
}) })
} }
}, },
{
regexp: /^node\s*(>=?|<=?)\s*([\d.]+)$/i,
select: function (context, sign, version) {
var nodeVersions = jsReleases.filter(function (i) {
return i.name === 'nodejs'
}).map(function (i) {
return i.version
})
return nodeVersions
.filter(generateSemverFilter(sign, version))
.map(function (v) {
return 'node ' + v
})
}
},
{ {
regexp: /^(\w+)\s*(>=?|<=?)\s*([\d.]+)$/, regexp: /^(\w+)\s*(>=?|<=?)\s*([\d.]+)$/,
select: function (context, name, sign, version) { select: function (context, name, sign, version) {
@@ -828,7 +909,7 @@ var QUERIES = [
select: function (context, name, version) { select: function (context, name, version) {
if (/^tp$/i.test(version)) version = 'TP' if (/^tp$/i.test(version)) version = 'TP'
var data = checkName(name) var data = checkName(name)
var alias = normalizeVersion(data, version) var alias = normalizeVersion(data, version, context)
if (alias) { if (alias) {
version = alias version = alias
} else { } else {
@@ -837,7 +918,7 @@ var QUERIES = [
} else { } else {
alias = version.replace(/\.0$/, '') alias = version.replace(/\.0$/, '')
} }
alias = normalizeVersion(data, alias) alias = normalizeVersion(data, alias, context)
if (alias) { if (alias) {
version = alias version = alias
} else if (context.ignoreUnknownVersions) { } else if (context.ignoreUnknownVersions) {

4
node_modules/browserslist/node.js generated vendored
View File

@@ -291,6 +291,7 @@ module.exports = {
oldDataWarning: function oldDataWarning (agentsObj) { oldDataWarning: function oldDataWarning (agentsObj) {
if (dataTimeChecked) return if (dataTimeChecked) return
dataTimeChecked = true dataTimeChecked = true
if (process.env.BROWSERSLIST_IGNORE_OLD_DATA) return
var latest = latestReleaseTime(agentsObj) var latest = latestReleaseTime(agentsObj)
var halfYearAgo = Date.now() - TIME_TO_UPDATE_CANIUSE var halfYearAgo = Date.now() - TIME_TO_UPDATE_CANIUSE
@@ -306,7 +307,8 @@ module.exports = {
}) })
console.warn( console.warn(
'Browserslist: caniuse-lite is outdated. ' + 'Browserslist: caniuse-lite is outdated. ' +
'Please run next command `' + command + ' caniuse-lite browserslist`') 'Please run next command `' + command + '`'
)
} }
}, },

View File

@@ -1,24 +1,25 @@
{ {
"_from": "browserslist@^4.3.4", "_from": "browserslist@^4.5.2",
"_id": "browserslist@4.4.2", "_id": "browserslist@4.6.0",
"_inBundle": false, "_inBundle": false,
"_integrity": "sha512-ISS/AIAiHERJ3d45Fz0AVYKkgcy+F/eJHzKEvv1j0wwKGKD9T3BrwKr/5g45L+Y4XIK5PlTqefHciRFcfE1Jxg==", "_integrity": "sha512-Jk0YFwXBuMOOol8n6FhgkDzn3mY9PYLYGk29zybF05SbRTsMgPqmTNeQQhOghCxq5oFqAXE3u4sYddr4C0uRhg==",
"_location": "/browserslist", "_location": "/browserslist",
"_phantomChildren": {}, "_phantomChildren": {},
"_requested": { "_requested": {
"type": "range", "type": "range",
"registry": true, "registry": true,
"raw": "browserslist@^4.3.4", "raw": "browserslist@^4.5.2",
"name": "browserslist", "name": "browserslist",
"escapedName": "browserslist", "escapedName": "browserslist",
"rawSpec": "^4.3.4", "rawSpec": "^4.5.2",
"saveSpec": null, "saveSpec": null,
"fetchSpec": "^4.3.4" "fetchSpec": "^4.5.2"
}, },
"_requiredBy": [ "_requiredBy": [
"/@babel/preset-env", "/@babel/preset-env",
"/autoprefixer", "/autoprefixer",
"/caniuse-api", "/caniuse-api",
"/core-js-compat",
"/postcss-colormin", "/postcss-colormin",
"/postcss-merge-rules", "/postcss-merge-rules",
"/postcss-minify-params", "/postcss-minify-params",
@@ -26,9 +27,9 @@
"/postcss-reduce-initial", "/postcss-reduce-initial",
"/stylehacks" "/stylehacks"
], ],
"_resolved": "https://registry.npmjs.org/browserslist/-/browserslist-4.4.2.tgz", "_resolved": "https://registry.npmjs.org/browserslist/-/browserslist-4.6.0.tgz",
"_shasum": "6ea8a74d6464bb0bd549105f659b41197d8f0ba2", "_shasum": "5274028c26f4d933d5b1323307c1d1da5084c9ff",
"_spec": "browserslist@^4.3.4", "_spec": "browserslist@^4.5.2",
"_where": "C:\\xampp\\htdocs\\w4rpservices\\node_modules\\@babel\\preset-env", "_where": "C:\\xampp\\htdocs\\w4rpservices\\node_modules\\@babel\\preset-env",
"author": { "author": {
"name": "Andrey Sitnik", "name": "Andrey Sitnik",
@@ -46,18 +47,13 @@
}, },
"bundleDependencies": false, "bundleDependencies": false,
"dependencies": { "dependencies": {
"caniuse-lite": "^1.0.30000939", "caniuse-lite": "^1.0.30000967",
"electron-to-chromium": "^1.3.113", "electron-to-chromium": "^1.3.133",
"node-releases": "^1.1.8" "node-releases": "^1.1.19"
}, },
"deprecated": false, "deprecated": false,
"description": "Share target browsers between different front-end tools, like Autoprefixer, Stylelint and babel-env-preset", "description": "Share target browsers between different front-end tools, like Autoprefixer, Stylelint and babel-env-preset",
"homepage": "https://github.com/browserslist/browserslist#readme", "homepage": "https://github.com/browserslist/browserslist#readme",
"husky": {
"hooks": {
"pre-commit": "lint-staged"
}
},
"keywords": [ "keywords": [
"caniuse", "caniuse",
"browsers", "browsers",
@@ -69,5 +65,5 @@
"type": "git", "type": "git",
"url": "git+https://github.com/browserslist/browserslist.git" "url": "git+https://github.com/browserslist/browserslist.git"
}, },
"version": "4.4.2" "version": "4.6.0"
} }

12
node_modules/camelcase/index.js generated vendored
View File

@@ -20,9 +20,9 @@ const preserveCamelCase = string => {
isLastCharUpper = false; isLastCharUpper = false;
isLastCharLower = true; isLastCharLower = true;
} else { } else {
isLastCharLower = character.toLowerCase() === character; isLastCharLower = character.toLowerCase() === character && character.toUpperCase() !== character;
isLastLastCharUpper = isLastCharUpper; isLastLastCharUpper = isLastCharUpper;
isLastCharUpper = character.toUpperCase() === character; isLastCharUpper = character.toUpperCase() === character && character.toLowerCase() !== character;
} }
} }
@@ -56,10 +56,6 @@ const camelCase = (input, options) => {
return options.pascalCase ? input.toUpperCase() : input.toLowerCase(); return options.pascalCase ? input.toUpperCase() : input.toLowerCase();
} }
if (/^[a-z\d]+$/.test(input)) {
return postProcess(input);
}
const hasUpperCase = input !== input.toLowerCase(); const hasUpperCase = input !== input.toLowerCase();
if (hasUpperCase) { if (hasUpperCase) {
@@ -69,10 +65,12 @@ const camelCase = (input, options) => {
input = input input = input
.replace(/^[_.\- ]+/, '') .replace(/^[_.\- ]+/, '')
.toLowerCase() .toLowerCase()
.replace(/[_.\- ]+(\w|$)/g, (m, p1) => p1.toUpperCase()); .replace(/[_.\- ]+(\w|$)/g, (_, p1) => p1.toUpperCase())
.replace(/\d+(\w|$)/g, m => m.toUpperCase());
return postProcess(input); return postProcess(input);
}; };
module.exports = camelCase; module.exports = camelCase;
// TODO: Remove this for the next major release
module.exports.default = camelCase; module.exports.default = camelCase;

16
node_modules/camelcase/package.json generated vendored
View File

@@ -1,8 +1,8 @@
{ {
"_from": "camelcase@^5.0.0", "_from": "camelcase@^5.0.0",
"_id": "camelcase@5.2.0", "_id": "camelcase@5.3.1",
"_inBundle": false, "_inBundle": false,
"_integrity": "sha512-IXFsBS2pC+X0j0N/GE7Dm7j3bsEBp+oTpb7F50dwEVX7rf3IgwO9XatnegTsDtniKCUtEJH4fSU6Asw7uoVLfQ==", "_integrity": "sha512-L28STB170nwWS63UjtlEOE3dldQApaJXZkOI1uMFfzf3rRuPegHaHesyee+YxQ+W6SvRDQV6UrdOdRiR153wJg==",
"_location": "/camelcase", "_location": "/camelcase",
"_phantomChildren": {}, "_phantomChildren": {},
"_requested": { "_requested": {
@@ -18,8 +18,8 @@
"_requiredBy": [ "_requiredBy": [
"/yargs-parser" "/yargs-parser"
], ],
"_resolved": "https://registry.npmjs.org/camelcase/-/camelcase-5.2.0.tgz", "_resolved": "https://registry.npmjs.org/camelcase/-/camelcase-5.3.1.tgz",
"_shasum": "e7522abda5ed94cc0489e1b8466610e88404cf45", "_shasum": "e3c9b31569e106811df242f715725a1f4c494320",
"_spec": "camelcase@^5.0.0", "_spec": "camelcase@^5.0.0",
"_where": "C:\\xampp\\htdocs\\w4rpservices\\node_modules\\yargs-parser", "_where": "C:\\xampp\\htdocs\\w4rpservices\\node_modules\\yargs-parser",
"author": { "author": {
@@ -34,8 +34,8 @@
"deprecated": false, "deprecated": false,
"description": "Convert a dash/dot/underscore/space separated string to camelCase or PascalCase: `foo-bar` → `fooBar`", "description": "Convert a dash/dot/underscore/space separated string to camelCase or PascalCase: `foo-bar` → `fooBar`",
"devDependencies": { "devDependencies": {
"ava": "^1.2.1", "ava": "^1.4.1",
"tsd-check": "^0.3.0", "tsd": "^0.7.1",
"xo": "^0.24.0" "xo": "^0.24.0"
}, },
"engines": { "engines": {
@@ -69,7 +69,7 @@
"url": "git+https://github.com/sindresorhus/camelcase.git" "url": "git+https://github.com/sindresorhus/camelcase.git"
}, },
"scripts": { "scripts": {
"test": "xo && ava && tsd-check" "test": "xo && ava && tsd"
}, },
"version": "5.2.0" "version": "5.3.1"
} }

View File

@@ -3,6 +3,30 @@
The contents of this section have been generated automatically; each version The contents of this section have been generated automatically; each version
tracks the `caniuse-db` package at the same version. tracks the `caniuse-db` package at the same version.
- **1.0.30000969** was released on May 16th, 2019 at 03:32.
- **1.0.30000967** was released on May 7th, 2019 at 05:32.
- **1.0.30000966** was released on May 3rd, 2019 at 05:32.
- **1.0.30000965** was released on May 3rd, 2019 at 04:32.
- **1.0.30000963** was released on April 24th, 2019 at 04:32.
- **1.0.30000962** was released on April 19th, 2019 at 04:32.
- **1.0.30000960** was released on April 16th, 2019 at 06:32.
- **1.0.30000959** was released on April 15th, 2019 at 03:32.
- **1.0.30000958** was released on April 14th, 2019 at 21:32.
- **1.0.30000957** was released on April 3rd, 2019 at 06:32.
- **1.0.30000956** was released on April 3rd, 2019 at 04:32.
- **1.0.30000955** was released on March 28th, 2019 at 06:32.
- **1.0.30000954** was released on March 27th, 2019 at 05:32.
- **1.0.30000953** was released on March 26th, 2019 at 05:32.
- **1.0.30000952** was released on March 26th, 2019 at 02:32.
- **1.0.30000951** was released on March 20th, 2019 at 04:32.
- **1.0.30000950** was released on March 17th, 2019 at 06:32.
- **1.0.30000949** was released on March 16th, 2019 at 03:32.
- **1.0.30000948** was released on March 15th, 2019 at 06:32.
- **1.0.30000947** was released on March 14th, 2019 at 05:32.
- **1.0.30000946** was released on March 13th, 2019 at 05:32.
- **1.0.30000945** was released on March 12th, 2019 at 06:32.
- **1.0.30000944** was released on March 12th, 2019 at 05:32.
- **1.0.30000943** was released on March 10th, 2019 at 03:32.
- **1.0.30000942** was released on March 7th, 2019 at 04:32. - **1.0.30000942** was released on March 7th, 2019 at 04:32.
- **1.0.30000941** was released on March 5th, 2019 at 04:32. - **1.0.30000941** was released on March 5th, 2019 at 04:32.
- **1.0.30000940** was released on March 3rd, 2019 at 20:32. - **1.0.30000940** was released on March 3rd, 2019 at 20:32.

File diff suppressed because one or more lines are too long

View File

@@ -1 +1 @@
module.exports={"0":"57","1":"58","2":"13","3":"64","4":"67","5":"12.1","6":"34","7":"60","8":"11.5","9":"62",A:"10",B:"11",C:"12",D:"7",E:"9",F:"4",G:"8",H:"17",I:"18",J:"15",K:"6",L:"46",M:"16",N:"5",O:"19",P:"20",Q:"21",R:"22",S:"23",T:"24",U:"25",V:"26",W:"27",X:"28",Y:"29",Z:"30",a:"31",b:"32",c:"33",d:"14",e:"35",f:"36",g:"37",h:"38",i:"39",j:"40",k:"41",l:"42",m:"43",n:"44",o:"45",p:"11.1",q:"47",r:"48",s:"49",t:"50",u:"51",v:"52",w:"53",x:"54",y:"55",z:"56",AB:"63",BB:"3",CB:"65",DB:"66",EB:"4.2-4.3",FB:"61",GB:"59",HB:"3.2",IB:"71",JB:"6.0-6.1",KB:"70",LB:"72",MB:"73",NB:"74",OB:"75",PB:"3.1",QB:"68",RB:"5.1",SB:"6.1",TB:"7.1",UB:"9.1",VB:"10.1",WB:"3.6",XB:"3.5",YB:"TP",ZB:"9.5-9.6",aB:"10.0-10.1",bB:"10.5",cB:"10.6",dB:"2",eB:"11.6",fB:"4.0-4.1",gB:"5.5",hB:"5.0-5.1",iB:"69",jB:"7.0-7.1",kB:"8.1-8.4",lB:"9.0-9.2",mB:"9.3",nB:"10.0-10.2",oB:"10.3",pB:"11.0-11.2",qB:"11.3-11.4",rB:"12.0-12.1",sB:"12.2",tB:"all",uB:"2.1",vB:"2.2",wB:"2.3",xB:"4.1",yB:"4.4",zB:"4.4.3-4.4.4","0B":"11.8","1B":"5.0-5.4","2B":"6.2-6.4","3B":"7.2-7.4","4B":"8.2","5B":"1.2","6B":"7.12"}; module.exports={"0":"57","1":"58","2":"13","3":"66","4":"67","5":"12.1","6":"34","7":"60","8":"61","9":"62",A:"10",B:"11",C:"12",D:"7",E:"9",F:"4",G:"8",H:"17",I:"18",J:"15",K:"6",L:"46",M:"16",N:"5",O:"19",P:"20",Q:"21",R:"22",S:"23",T:"24",U:"25",V:"26",W:"27",X:"28",Y:"29",Z:"30",a:"31",b:"32",c:"33",d:"14",e:"35",f:"36",g:"37",h:"38",i:"39",j:"40",k:"41",l:"42",m:"43",n:"44",o:"45",p:"11.1",q:"47",r:"48",s:"49",t:"50",u:"51",v:"52",w:"53",x:"54",y:"55",z:"56",AB:"11.5",BB:"64",CB:"65",DB:"3",EB:"4.2-4.3",FB:"68",GB:"63",HB:"59",IB:"3.2",JB:"74",KB:"6.0-6.1",LB:"71",MB:"73",NB:"70",OB:"75",PB:"76",QB:"77",RB:"3.1",SB:"69",TB:"5.1",UB:"6.1",VB:"7.1",WB:"9.1",XB:"10.1",YB:"3.6",ZB:"3.5",aB:"TP",bB:"9.5-9.6",cB:"10.0-10.1",dB:"10.5",eB:"10.6",fB:"2",gB:"11.6",hB:"4.0-4.1",iB:"5.5",jB:"5.0-5.1",kB:"72",lB:"7.0-7.1",mB:"8.1-8.4",nB:"9.0-9.2",oB:"9.3",pB:"10.0-10.2",qB:"10.3",rB:"11.0-11.2",sB:"11.3-11.4",tB:"12.0-12.1",uB:"12.2",vB:"all",wB:"2.1",xB:"2.2",yB:"2.3",zB:"4.1","0B":"4.4","1B":"4.4.3-4.4.4","2B":"11.8","3B":"5.0-5.4","4B":"6.2-6.4","5B":"7.2-7.4","6B":"8.2","7B":"9.2","8B":"1.2","9B":"7.12",AC:"2.5"};

View File

@@ -1 +1 @@
module.exports={A:"ie",B:"edge",C:"firefox",D:"chrome",E:"safari",F:"opera",G:"ios_saf",H:"op_mini",I:"android",J:"bb",K:"op_mob",L:"and_chr",M:"and_ff",N:"ie_mob",O:"and_uc",P:"samsung",Q:"and_qq",R:"baidu"}; module.exports={A:"ie",B:"edge",C:"firefox",D:"chrome",E:"safari",F:"opera",G:"ios_saf",H:"op_mini",I:"android",J:"bb",K:"op_mob",L:"and_chr",M:"and_ff",N:"ie_mob",O:"and_uc",P:"samsung",Q:"and_qq",R:"baidu",S:"kaios"};

File diff suppressed because one or more lines are too long

View File

@@ -1 +1 @@
module.exports={A:{A:{"1":"E A B","2":"K D G gB"},B:{"1":"2 C d J M H I"},C:{"2":"2 dB BB F N K D G E A B C d J M H I O P Q XB WB","132":"0 1 3 4 6 7 9 R S T U V W X Y Z a b c e f g h i j k l m n o L q r s t u v w x y z GB FB AB CB DB"},D:{"1":"0 1 2 3 4 6 7 9 C d J M H I O P Q R S T U V W X Y Z a b c e f g h i j k l m n o L q r s t u v w x y z GB FB AB CB DB QB iB KB IB LB MB NB OB","2":"F N K D G E","16":"A B"},E:{"1":"5 F N K D G E A B C RB SB TB UB VB p YB","2":"PB HB"},F:{"1":"0 1 6 J M H I O P Q R S T U V W X Y Z a b c e f g h i j k l m n o L q r s t u v w x y z","2":"5 8 E B C ZB aB bB cB p eB"},G:{"1":"G fB EB hB JB jB kB lB mB nB oB pB qB rB sB","16":"HB"},H:{"2":"tB"},I:{"1":"4 BB F xB EB yB zB","2":"uB vB wB"},J:{"1":"A","2":"D"},K:{"1":"L","2":"5 8 A B C p"},L:{"1":"IB"},M:{"132":"3"},N:{"1":"A","2":"B"},O:{"1":"0B"},P:{"1":"F 1B 2B 3B 4B"},Q:{"1":"5B"},R:{"1":"6B"}},B:6,C:"AAC audio file format"}; module.exports={A:{A:{"1":"E A B","2":"K D G iB"},B:{"1":"2 C d J M H I"},C:{"2":"2 fB DB F N K D G E A B C d J M H I O P Q ZB YB","132":"0 1 3 4 6 7 8 9 R S T U V W X Y Z a b c e f g h i j k l m n o L q r s t u v w x y z HB GB BB CB FB"},D:{"1":"0 1 2 3 4 6 7 8 9 C d J M H I O P Q R S T U V W X Y Z a b c e f g h i j k l m n o L q r s t u v w x y z HB GB BB CB FB SB NB LB kB MB JB OB PB QB","2":"F N K D G E","16":"A B"},E:{"1":"5 F N K D G E A B C TB UB VB WB XB p aB","2":"RB IB"},F:{"1":"0 1 6 J M H I O P Q R S T U V W X Y Z a b c e f g h i j k l m n o L q r s t u v w x y z","2":"5 E B C bB cB dB eB p AB gB"},G:{"1":"G hB EB jB KB lB mB nB oB pB qB rB sB tB uB","16":"IB"},H:{"2":"vB"},I:{"1":"4 DB F zB EB 0B 1B","2":"wB xB yB"},J:{"1":"A","2":"D"},K:{"1":"L","2":"5 A B C p AB"},L:{"1":"JB"},M:{"132":"3"},N:{"1":"A","2":"B"},O:{"1":"2B"},P:{"1":"F 3B 4B 5B 6B 7B"},Q:{"1":"8B"},R:{"1":"9B"},S:{"132":"AC"}},B:6,C:"AAC audio file format"};

View File

@@ -1 +1 @@
module.exports={A:{A:{"2":"K D G E A B gB"},B:{"1":"M H I","2":"2 C d J"},C:{"1":"0 1 3 4 7 9 GB FB AB CB DB","2":"2 6 dB BB F N K D G E A B C d J M H I O P Q R S T U V W X Y Z a b c e f g h i j k l m n o L q r s t u v w x y z XB WB"},D:{"1":"4 DB QB iB KB IB LB MB NB OB","2":"0 1 2 3 6 7 9 F N K D G E A B C d J M H I O P Q R S T U V W X Y Z a b c e f g h i j k l m n o L q r s t u v w x y z GB FB AB CB"},E:{"1":"5 YB","2":"F N K D G E A B PB HB RB SB TB UB VB","130":"C p"},F:{"1":"0 1 w x y z","2":"5 6 8 E B C J M H I O P Q R S T U V W X Y Z a b c e f g h i j k l m n o L q r s t u v ZB aB bB cB p eB"},G:{"1":"qB rB sB","2":"G HB fB EB hB JB jB kB lB mB nB oB pB"},H:{"2":"tB"},I:{"1":"4","2":"BB F uB vB wB xB EB yB zB"},J:{"2":"D A"},K:{"2":"5 8 A B C L p"},L:{"1":"IB"},M:{"1":"3"},N:{"2":"A B"},O:{"2":"0B"},P:{"2":"F 1B 2B 3B 4B"},Q:{"2":"5B"},R:{"2":"6B"}},B:1,C:"AbortController & AbortSignal"}; module.exports={A:{A:{"2":"K D G E A B iB"},B:{"1":"M H I","2":"2 C d J"},C:{"1":"0 1 3 4 7 8 9 HB GB BB CB FB","2":"2 6 fB DB F N K D G E A B C d J M H I O P Q R S T U V W X Y Z a b c e f g h i j k l m n o L q r s t u v w x y z ZB YB"},D:{"1":"3 4 FB SB NB LB kB MB JB OB PB QB","2":"0 1 2 6 7 8 9 F N K D G E A B C d J M H I O P Q R S T U V W X Y Z a b c e f g h i j k l m n o L q r s t u v w x y z HB GB BB CB"},E:{"1":"5 aB","2":"F N K D G E A B RB IB TB UB VB WB XB","130":"C p"},F:{"1":"0 1 w x y z","2":"5 6 E B C J M H I O P Q R S T U V W X Y Z a b c e f g h i j k l m n o L q r s t u v bB cB dB eB p AB gB"},G:{"1":"sB tB uB","2":"G IB hB EB jB KB lB mB nB oB pB qB rB"},H:{"2":"vB"},I:{"1":"4","2":"DB F wB xB yB zB EB 0B 1B"},J:{"2":"D A"},K:{"2":"5 A B C L p AB"},L:{"1":"JB"},M:{"1":"3"},N:{"2":"A B"},O:{"2":"2B"},P:{"1":"7B","2":"F 3B 4B 5B 6B"},Q:{"2":"8B"},R:{"2":"9B"},S:{"2":"AC"}},B:1,C:"AbortController & AbortSignal"};

View File

@@ -1 +1 @@
module.exports={A:{A:{"2":"K D G E A B gB"},B:{"1":"2 C d J M H I"},C:{"2":"0 1 2 3 4 6 7 9 dB BB F N K D G E A B C d J M H I O P Q R S T U V W X Y Z a b c e f g h i j k l m n o L q r s t u v w x y z GB FB AB CB DB XB WB"},D:{"2":"0 1 2 3 4 6 7 9 F N K D G E A B C d J M H I O P Q R S T U V W X Y Z a b c e f g h i j k l m n o L q r s t u v w x y z GB FB AB CB DB QB iB KB IB LB MB NB OB"},E:{"2":"5 F N K D G E A B C PB HB RB SB TB UB VB p YB"},F:{"2":"0 1 5 6 8 E B C J M H I O P Q R S T U V W X Y Z a b c e f g h i j k l m n o L q r s t u v w x y z ZB aB bB cB p eB"},G:{"2":"G HB fB EB hB JB jB kB","132":"lB mB nB oB pB qB rB sB"},H:{"2":"tB"},I:{"2":"4 BB F uB vB wB xB EB yB zB"},J:{"2":"D","132":"A"},K:{"2":"8 A B C L p","132":"5"},L:{"2":"IB"},M:{"2":"3"},N:{"2":"A B"},O:{"132":"0B"},P:{"2":"F 1B 2B 3B 4B"},Q:{"2":"5B"},R:{"2":"6B"}},B:6,C:"AC-3 (Dolby Digital) and EC-3 (Dolby Digital Plus) codecs"}; module.exports={A:{A:{"2":"K D G E A B iB"},B:{"1":"2 C d J M H I"},C:{"2":"0 1 2 3 4 6 7 8 9 fB DB F N K D G E A B C d J M H I O P Q R S T U V W X Y Z a b c e f g h i j k l m n o L q r s t u v w x y z HB GB BB CB FB ZB YB"},D:{"2":"0 1 2 3 4 6 7 8 9 F N K D G E A B C d J M H I O P Q R S T U V W X Y Z a b c e f g h i j k l m n o L q r s t u v w x y z HB GB BB CB FB SB NB LB kB MB JB OB PB QB"},E:{"2":"5 F N K D G E A B C RB IB TB UB VB WB XB p aB"},F:{"2":"0 1 5 6 E B C J M H I O P Q R S T U V W X Y Z a b c e f g h i j k l m n o L q r s t u v w x y z bB cB dB eB p AB gB"},G:{"2":"G IB hB EB jB KB lB mB","132":"nB oB pB qB rB sB tB uB"},H:{"2":"vB"},I:{"2":"4 DB F wB xB yB zB EB 0B 1B"},J:{"2":"D","132":"A"},K:{"2":"A B C L p AB","132":"5"},L:{"2":"JB"},M:{"2":"3"},N:{"2":"A B"},O:{"132":"2B"},P:{"2":"F 3B 4B 5B 6B 7B"},Q:{"2":"8B"},R:{"2":"9B"},S:{"2":"AC"}},B:6,C:"AC-3 (Dolby Digital) and EC-3 (Dolby Digital Plus) codecs"};

View File

@@ -1 +1 @@
module.exports={A:{A:{"2":"K D G E A B gB"},B:{"2":"2 C d J M H I"},C:{"2":"0 1 2 3 4 6 7 9 dB BB F N K D G E A B C d J M H I O P Q R S T U V W X Y Z a b c e f g h i j k l m n o L q r s t u v w x y z GB FB AB CB DB XB WB"},D:{"1":"4 QB iB KB IB LB MB NB OB","2":"0 2 6 F N K D G E A B C d J M H I O P Q R S T U V W X Y Z a b c e f g h i j k l m n o L q r s t u v w x y z","194":"1 3 7 9 GB FB AB CB DB"},E:{"2":"5 F N K D G E A B C PB HB RB SB TB UB VB p YB"},F:{"1":"0 1 x y z","2":"5 6 8 E B C J M H I O P Q R S T U V W X Y Z a b c e f g h i j k l m n o L q r s t u v w ZB aB bB cB p eB"},G:{"2":"G HB fB EB hB JB jB kB lB mB nB oB pB qB rB sB"},H:{"2":"tB"},I:{"1":"4","2":"BB F uB vB wB xB EB yB zB"},J:{"2":"D A"},K:{"2":"5 8 A B C L p"},L:{"1":"IB"},M:{"2":"3"},N:{"2":"A B"},O:{"2":"0B"},P:{"2":"F 1B 2B 3B 4B"},Q:{"2":"5B"},R:{"2":"6B"}},B:4,C:"Accelerometer"}; module.exports={A:{A:{"2":"K D G E A B iB"},B:{"2":"2 C d J M H I"},C:{"2":"0 1 2 3 4 6 7 8 9 fB DB F N K D G E A B C d J M H I O P Q R S T U V W X Y Z a b c e f g h i j k l m n o L q r s t u v w x y z HB GB BB CB FB ZB YB"},D:{"1":"4 FB SB NB LB kB MB JB OB PB QB","2":"0 2 6 F N K D G E A B C d J M H I O P Q R S T U V W X Y Z a b c e f g h i j k l m n o L q r s t u v w x y z","194":"1 3 7 8 9 HB GB BB CB"},E:{"2":"5 F N K D G E A B C RB IB TB UB VB WB XB p aB"},F:{"1":"0 1 x y z","2":"5 6 E B C J M H I O P Q R S T U V W X Y Z a b c e f g h i j k l m n o L q r s t u v w bB cB dB eB p AB gB"},G:{"2":"G IB hB EB jB KB lB mB nB oB pB qB rB sB tB uB"},H:{"2":"vB"},I:{"1":"4","2":"DB F wB xB yB zB EB 0B 1B"},J:{"2":"D A"},K:{"2":"5 A B C L p AB"},L:{"1":"JB"},M:{"2":"3"},N:{"2":"A B"},O:{"2":"2B"},P:{"2":"F 3B 4B 5B 6B 7B"},Q:{"2":"8B"},R:{"2":"9B"},S:{"2":"AC"}},B:4,C:"Accelerometer"};

View File

@@ -1 +1 @@
module.exports={A:{A:{"1":"E A B","130":"K D G gB"},B:{"1":"2 C d J M H I"},C:{"1":"0 1 2 3 4 6 7 9 D G E A B C d J M H I O P Q R S T U V W X Y Z a b c e f g h i j k l m n o L q r s t u v w x y z GB FB AB CB DB","257":"dB BB F N K XB WB"},D:{"1":"0 1 2 3 4 6 7 9 F N K D G E A B C d J M H I O P Q R S T U V W X Y Z a b c e f g h i j k l m n o L q r s t u v w x y z GB FB AB CB DB QB iB KB IB LB MB NB OB"},E:{"1":"5 F N K D G E A B C PB HB RB SB TB UB VB p YB"},F:{"1":"0 1 5 6 8 E B C J M H I O P Q R S T U V W X Y Z a b c e f g h i j k l m n o L q r s t u v w x y z ZB aB bB cB p eB"},G:{"1":"G HB fB EB hB JB jB kB lB mB nB oB pB qB rB sB"},H:{"1":"tB"},I:{"1":"4 BB F uB vB wB xB EB yB zB"},J:{"1":"D A"},K:{"1":"5 8 A B C L p"},L:{"1":"IB"},M:{"1":"3"},N:{"1":"A B"},O:{"1":"0B"},P:{"1":"F 1B 2B 3B 4B"},Q:{"1":"5B"},R:{"1":"6B"}},B:1,C:"EventTarget.addEventListener()"}; module.exports={A:{A:{"1":"E A B","130":"K D G iB"},B:{"1":"2 C d J M H I"},C:{"1":"0 1 2 3 4 6 7 8 9 D G E A B C d J M H I O P Q R S T U V W X Y Z a b c e f g h i j k l m n o L q r s t u v w x y z HB GB BB CB FB","257":"fB DB F N K ZB YB"},D:{"1":"0 1 2 3 4 6 7 8 9 F N K D G E A B C d J M H I O P Q R S T U V W X Y Z a b c e f g h i j k l m n o L q r s t u v w x y z HB GB BB CB FB SB NB LB kB MB JB OB PB QB"},E:{"1":"5 F N K D G E A B C RB IB TB UB VB WB XB p aB"},F:{"1":"0 1 5 6 E B C J M H I O P Q R S T U V W X Y Z a b c e f g h i j k l m n o L q r s t u v w x y z bB cB dB eB p AB gB"},G:{"1":"G IB hB EB jB KB lB mB nB oB pB qB rB sB tB uB"},H:{"1":"vB"},I:{"1":"4 DB F wB xB yB zB EB 0B 1B"},J:{"1":"D A"},K:{"1":"5 A B C L p AB"},L:{"1":"JB"},M:{"1":"3"},N:{"1":"A B"},O:{"1":"2B"},P:{"1":"F 3B 4B 5B 6B 7B"},Q:{"1":"8B"},R:{"1":"9B"},S:{"1":"AC"}},B:1,C:"EventTarget.addEventListener()"};

View File

@@ -1 +1 @@
module.exports={A:{A:{"1":"G E A B","2":"K D gB"},B:{"2":"2 C d J M H I"},C:{"1":"0 1 2 3 4 6 7 9 dB BB F N K D G E A B C d J M H I O P Q R S T U V W X Y Z a b c e f g h i j k l m n o L q r s t u v w x y z GB FB AB CB DB XB WB"},D:{"2":"0 1 2 3 4 6 7 9 F N K D G E A B C d J M H I O P Q R S T U V W X Y Z a b c e f g h i j k l m n o L q r s t u v w x y z GB FB AB CB DB QB iB KB IB LB MB NB OB"},E:{"2":"5 F N K D G E A B C PB HB RB SB TB UB VB p YB"},F:{"1":"5 8 E B C ZB aB bB cB p eB","16":"0 1 6 J M H I O P Q R S T U V W X Y Z a b c e f g h i j k l m n o L q r s t u v w x y z"},G:{"2":"G HB fB EB hB JB jB kB lB mB nB oB pB qB rB sB"},H:{"16":"tB"},I:{"2":"4 BB F uB vB wB xB EB yB zB"},J:{"16":"D A"},K:{"16":"5 8 A B C L p"},L:{"16":"IB"},M:{"16":"3"},N:{"16":"A B"},O:{"16":"0B"},P:{"16":"F 1B 2B 3B 4B"},Q:{"2":"5B"},R:{"16":"6B"}},B:1,C:"Alternate stylesheet"}; module.exports={A:{A:{"1":"G E A B","2":"K D iB"},B:{"2":"2 C d J M H I"},C:{"1":"0 1 2 3 4 6 7 8 9 fB DB F N K D G E A B C d J M H I O P Q R S T U V W X Y Z a b c e f g h i j k l m n o L q r s t u v w x y z HB GB BB CB FB ZB YB"},D:{"2":"0 1 2 3 4 6 7 8 9 F N K D G E A B C d J M H I O P Q R S T U V W X Y Z a b c e f g h i j k l m n o L q r s t u v w x y z HB GB BB CB FB SB NB LB kB MB JB OB PB QB"},E:{"2":"5 F N K D G E A B C RB IB TB UB VB WB XB p aB"},F:{"1":"5 E B C bB cB dB eB p AB gB","16":"0 1 6 J M H I O P Q R S T U V W X Y Z a b c e f g h i j k l m n o L q r s t u v w x y z"},G:{"2":"G IB hB EB jB KB lB mB nB oB pB qB rB sB tB uB"},H:{"16":"vB"},I:{"2":"4 DB F wB xB yB zB EB 0B 1B"},J:{"16":"D A"},K:{"16":"5 A B C L p AB"},L:{"16":"JB"},M:{"16":"3"},N:{"16":"A B"},O:{"16":"2B"},P:{"16":"F 3B 4B 5B 6B 7B"},Q:{"2":"8B"},R:{"16":"9B"},S:{"1":"AC"}},B:1,C:"Alternate stylesheet"};

View File

@@ -1 +1 @@
module.exports={A:{A:{"2":"K D G E A B gB"},B:{"2":"2 C","132":"d J M H I"},C:{"2":"2 dB BB F N K D G E A B C d J M H I O P Q XB WB","132":"0 1 6 R S T U V W X Y Z a b c e f g h i j k l m n o L q r s t u v w x y z GB","194":"3 4 7 9 FB AB CB DB"},D:{"2":"0 2 6 F N K D G E A B C d J M H I O P Q R S T U V W X Y Z a b c e f g h i j k l m n o L q r s t u v w x y z","322":"1 3 4 7 9 GB FB AB CB DB QB iB KB IB LB MB NB OB"},E:{"2":"5 F N K D G E A B C PB HB RB SB TB UB VB p YB"},F:{"2":"0 1 5 6 8 E B C J M H I O P Q R S T U V W X Y Z a b c e f g h i j k l m n o L q r s t u v w x y z ZB aB bB cB p eB"},G:{"2":"G HB fB EB hB JB jB kB lB mB nB oB pB qB rB sB"},H:{"2":"tB"},I:{"2":"4 BB F uB vB wB xB EB yB zB"},J:{"2":"D A"},K:{"2":"5 8 A B C L p"},L:{"2":"IB"},M:{"1":"3"},N:{"2":"A B"},O:{"2":"0B"},P:{"2":"F 1B 2B 3B 4B"},Q:{"2":"5B"},R:{"2":"6B"}},B:4,C:"Ambient Light Sensor"}; module.exports={A:{A:{"2":"K D G E A B iB"},B:{"2":"2 C","132":"d J M H I"},C:{"2":"2 fB DB F N K D G E A B C d J M H I O P Q ZB YB","132":"0 1 6 R S T U V W X Y Z a b c e f g h i j k l m n o L q r s t u v w x y z HB","194":"3 4 7 8 9 GB BB CB FB"},D:{"2":"0 2 6 F N K D G E A B C d J M H I O P Q R S T U V W X Y Z a b c e f g h i j k l m n o L q r s t u v w x y z","322":"1 3 4 7 8 9 HB GB BB CB FB SB NB LB kB MB JB OB PB QB"},E:{"2":"5 F N K D G E A B C RB IB TB UB VB WB XB p aB"},F:{"2":"0 1 5 6 E B C J M H I O P Q R S T U V W X Y Z a b c e f g h i j k l m n o L q r s t u v w x y z bB cB dB eB p AB gB"},G:{"2":"G IB hB EB jB KB lB mB nB oB pB qB rB sB tB uB"},H:{"2":"vB"},I:{"2":"4 DB F wB xB yB zB EB 0B 1B"},J:{"2":"D A"},K:{"2":"5 A B C L p AB"},L:{"2":"JB"},M:{"1":"3"},N:{"2":"A B"},O:{"2":"2B"},P:{"2":"F 3B 4B 5B 6B 7B"},Q:{"2":"8B"},R:{"2":"9B"},S:{"132":"AC"}},B:4,C:"Ambient Light Sensor"};

View File

@@ -1 +1 @@
module.exports={A:{A:{"2":"K D G E A B gB"},B:{"2":"2 C d J M H I"},C:{"1":"0 1 2 3 4 6 7 9 BB F N K D G E A B C d J M H I O P Q R S T U V W X Y Z a b c e f g h i j k l m n o L q r s t u v w x y z GB FB AB CB DB XB WB","2":"dB"},D:{"1":"3 4 7 9 GB FB AB CB DB QB iB KB IB LB MB NB OB","2":"0 1 2 6 F N K D G E A B C d J M H I O P Q R S T U V W X Y Z a b c e f g h i j k l m n o L q r s t u v w x y z"},E:{"1":"5 G E A B C UB VB p YB","2":"F N K D PB HB RB SB TB"},F:{"1":"0 1 5 8 B C L q r s t u v w x y z ZB aB bB cB p eB","2":"6 E J M H I O P Q R S T U V W X Y Z a b c e f g h i j k l m n o"},G:{"1":"G kB lB mB nB oB pB qB rB sB","2":"HB fB EB hB JB jB"},H:{"2":"tB"},I:{"2":"4 BB F uB vB wB xB EB yB zB"},J:{"2":"D A"},K:{"1":"5 8 A B C L p"},L:{"1":"IB"},M:{"1":"3"},N:{"2":"A B"},O:{"2":"0B"},P:{"1":"3B 4B","2":"F 1B 2B"},Q:{"2":"5B"},R:{"2":"6B"}},B:7,C:"Animated PNG (APNG)"}; module.exports={A:{A:{"2":"K D G E A B iB"},B:{"2":"2 C d J M H I"},C:{"1":"0 1 2 3 4 6 7 8 9 DB F N K D G E A B C d J M H I O P Q R S T U V W X Y Z a b c e f g h i j k l m n o L q r s t u v w x y z HB GB BB CB FB ZB YB","2":"fB"},D:{"1":"3 4 7 8 9 HB GB BB CB FB SB NB LB kB MB JB OB PB QB","2":"0 1 2 6 F N K D G E A B C d J M H I O P Q R S T U V W X Y Z a b c e f g h i j k l m n o L q r s t u v w x y z"},E:{"1":"5 G E A B C WB XB p aB","2":"F N K D RB IB TB UB VB"},F:{"1":"0 1 5 B C L q r s t u v w x y z bB cB dB eB p AB gB","2":"6 E J M H I O P Q R S T U V W X Y Z a b c e f g h i j k l m n o"},G:{"1":"G mB nB oB pB qB rB sB tB uB","2":"IB hB EB jB KB lB"},H:{"2":"vB"},I:{"1":"4","2":"DB F wB xB yB zB EB 0B 1B"},J:{"2":"D A"},K:{"1":"5 A B C L p AB"},L:{"1":"JB"},M:{"1":"3"},N:{"2":"A B"},O:{"2":"2B"},P:{"1":"5B 6B 7B","2":"F 3B 4B"},Q:{"2":"8B"},R:{"2":"9B"},S:{"1":"AC"}},B:7,C:"Animated PNG (APNG)"};

View File

@@ -1 +1 @@
module.exports={A:{A:{"2":"K D G E A B gB"},B:{"1":"J M H I","16":"2 C d"},C:{"1":"0 1 3 4 6 7 9 U V W X Y Z a b c e f g h i j k l m n o L q r s t u v w x y z GB FB AB CB DB","2":"2 dB BB F N K D G E A B C d J M H I O P Q R S T XB WB"},D:{"1":"0 1 3 4 7 9 o L q r s t u v w x y z GB FB AB CB DB QB iB KB IB LB MB NB OB","2":"2 6 F N K D G E A B C d J M H I O P Q R S T U V W X Y Z a b c e f g h i j k l m n"},E:{"1":"5 G E A B C TB UB VB p YB","2":"F N K D PB HB RB SB"},F:{"1":"0 1 6 b c e f g h i j k l m n o L q r s t u v w x y z","2":"5 8 E B C J M H I O P Q R S T U V W X Y Z a ZB aB bB cB p eB"},G:{"1":"G kB lB mB nB oB pB qB rB sB","2":"HB fB EB hB JB jB"},H:{"2":"tB"},I:{"1":"4","2":"BB F uB vB wB xB EB yB zB"},J:{"2":"D","16":"A"},K:{"1":"L","2":"5 8 A B C p"},L:{"1":"IB"},M:{"1":"3"},N:{"2":"A B"},O:{"1":"0B"},P:{"1":"1B 2B 3B 4B","2":"F"},Q:{"1":"5B"},R:{"1":"6B"}},B:6,C:"Array.prototype.find"}; module.exports={A:{A:{"2":"K D G E A B iB"},B:{"1":"J M H I","16":"2 C d"},C:{"1":"0 1 3 4 6 7 8 9 U V W X Y Z a b c e f g h i j k l m n o L q r s t u v w x y z HB GB BB CB FB","2":"2 fB DB F N K D G E A B C d J M H I O P Q R S T ZB YB"},D:{"1":"0 1 3 4 7 8 9 o L q r s t u v w x y z HB GB BB CB FB SB NB LB kB MB JB OB PB QB","2":"2 6 F N K D G E A B C d J M H I O P Q R S T U V W X Y Z a b c e f g h i j k l m n"},E:{"1":"5 G E A B C VB WB XB p aB","2":"F N K D RB IB TB UB"},F:{"1":"0 1 6 b c e f g h i j k l m n o L q r s t u v w x y z","2":"5 E B C J M H I O P Q R S T U V W X Y Z a bB cB dB eB p AB gB"},G:{"1":"G mB nB oB pB qB rB sB tB uB","2":"IB hB EB jB KB lB"},H:{"2":"vB"},I:{"1":"4","2":"DB F wB xB yB zB EB 0B 1B"},J:{"2":"D","16":"A"},K:{"1":"L","2":"5 A B C p AB"},L:{"1":"JB"},M:{"1":"3"},N:{"2":"A B"},O:{"1":"2B"},P:{"1":"3B 4B 5B 6B 7B","2":"F"},Q:{"1":"8B"},R:{"1":"9B"},S:{"1":"AC"}},B:6,C:"Array.prototype.find"};

View File

@@ -1 +1 @@
module.exports={A:{A:{"2":"K D G E A B gB"},B:{"1":"d J M H I","2":"2 C"},C:{"1":"0 1 3 4 7 9 m n o L q r s t u v w x y z GB FB AB CB DB","2":"2 6 dB BB F N K D G E A B C d J M H I O P Q R S T U V W X Y Z a b c e f g h i j k l XB WB"},D:{"1":"0 1 3 4 7 9 q r s t u v w x y z GB FB AB CB DB QB iB KB IB LB MB NB OB","2":"2 6 F N K D G E A B C d J M H I O P Q R S T U V W X Y Z a b c e f g h i j k l m n o L"},E:{"1":"5 E A B C UB VB p YB","2":"F N K D G PB HB RB SB TB"},F:{"1":"0 1 6 e f g h i j k l m n o L q r s t u v w x y z","2":"5 8 E B C J M H I O P Q R S T U V W X Y Z a b c ZB aB bB cB p eB"},G:{"1":"lB mB nB oB pB qB rB sB","2":"G HB fB EB hB JB jB kB"},H:{"2":"tB"},I:{"1":"4","2":"BB F uB vB wB xB EB yB zB"},J:{"2":"D A"},K:{"1":"L","2":"5 8 A B C p"},L:{"1":"IB"},M:{"1":"3"},N:{"2":"A B"},O:{"1":"0B"},P:{"1":"1B 2B 3B 4B","2":"F"},Q:{"1":"5B"},R:{"1":"6B"}},B:6,C:"Array.prototype.includes"}; module.exports={A:{A:{"2":"K D G E A B iB"},B:{"1":"d J M H I","2":"2 C"},C:{"1":"0 1 3 4 7 8 9 m n o L q r s t u v w x y z HB GB BB CB FB","2":"2 6 fB DB F N K D G E A B C d J M H I O P Q R S T U V W X Y Z a b c e f g h i j k l ZB YB"},D:{"1":"0 1 3 4 7 8 9 q r s t u v w x y z HB GB BB CB FB SB NB LB kB MB JB OB PB QB","2":"2 6 F N K D G E A B C d J M H I O P Q R S T U V W X Y Z a b c e f g h i j k l m n o L"},E:{"1":"5 E A B C WB XB p aB","2":"F N K D G RB IB TB UB VB"},F:{"1":"0 1 6 e f g h i j k l m n o L q r s t u v w x y z","2":"5 E B C J M H I O P Q R S T U V W X Y Z a b c bB cB dB eB p AB gB"},G:{"1":"nB oB pB qB rB sB tB uB","2":"G IB hB EB jB KB lB mB"},H:{"2":"vB"},I:{"1":"4","2":"DB F wB xB yB zB EB 0B 1B"},J:{"2":"D A"},K:{"1":"L","2":"5 A B C p AB"},L:{"1":"JB"},M:{"1":"3"},N:{"2":"A B"},O:{"1":"2B"},P:{"1":"3B 4B 5B 6B 7B","2":"F"},Q:{"1":"8B"},R:{"1":"9B"},S:{"1":"AC"}},B:6,C:"Array.prototype.includes"};

View File

@@ -1 +1 @@
module.exports={A:{A:{"2":"K D G E A B gB"},B:{"1":"2 C d J M H I"},C:{"1":"0 1 3 4 6 7 9 R S T U V W X Y Z a b c e f g h i j k l m n o L q r s t u v w x y z GB FB AB CB DB","2":"2 dB BB F N K D G E A B C d J M H I O P Q XB WB"},D:{"1":"0 1 3 4 7 9 o L q r s t u v w x y z GB FB AB CB DB QB iB KB IB LB MB NB OB","2":"2 6 F N K D G E A B C d J M H I O P Q R S T U V W X Y Z a b c e f g h i j k l m n"},E:{"1":"5 A B C VB p YB","2":"F N K D G E PB HB RB SB TB UB"},F:{"1":"0 1 6 b c e f g h i j k l m n o L q r s t u v w x y z","2":"5 8 E B C J M H I O P Q R S T U V W X Y Z a ZB aB bB cB p eB"},G:{"1":"nB oB pB qB rB sB","2":"G HB fB EB hB JB jB kB lB mB"},H:{"2":"tB"},I:{"1":"4","2":"BB F uB vB wB xB EB yB zB"},J:{"2":"D A"},K:{"1":"L","2":"5 8 A B C p"},L:{"1":"IB"},M:{"1":"3"},N:{"2":"A B"},O:{"1":"0B"},P:{"1":"1B 2B 3B 4B","2":"F"},Q:{"2":"5B"},R:{"1":"6B"}},B:6,C:"Arrow functions"}; module.exports={A:{A:{"2":"K D G E A B iB"},B:{"1":"2 C d J M H I"},C:{"1":"0 1 3 4 6 7 8 9 R S T U V W X Y Z a b c e f g h i j k l m n o L q r s t u v w x y z HB GB BB CB FB","2":"2 fB DB F N K D G E A B C d J M H I O P Q ZB YB"},D:{"1":"0 1 3 4 7 8 9 o L q r s t u v w x y z HB GB BB CB FB SB NB LB kB MB JB OB PB QB","2":"2 6 F N K D G E A B C d J M H I O P Q R S T U V W X Y Z a b c e f g h i j k l m n"},E:{"1":"5 A B C XB p aB","2":"F N K D G E RB IB TB UB VB WB"},F:{"1":"0 1 6 b c e f g h i j k l m n o L q r s t u v w x y z","2":"5 E B C J M H I O P Q R S T U V W X Y Z a bB cB dB eB p AB gB"},G:{"1":"pB qB rB sB tB uB","2":"G IB hB EB jB KB lB mB nB oB"},H:{"2":"vB"},I:{"1":"4","2":"DB F wB xB yB zB EB 0B 1B"},J:{"2":"D A"},K:{"1":"L","2":"5 A B C p AB"},L:{"1":"JB"},M:{"1":"3"},N:{"2":"A B"},O:{"1":"2B"},P:{"1":"3B 4B 5B 6B 7B","2":"F"},Q:{"2":"8B"},R:{"1":"9B"},S:{"1":"AC"}},B:6,C:"Arrow functions"};

View File

@@ -1 +1 @@
module.exports={A:{A:{"2":"K D G E A B gB"},B:{"1":"2 d J M H I","322":"C"},C:{"1":"0 1 3 4 6 7 9 R S T U V W X Y Z a b c e f g h i j k l m n o L q r s t u v w x y z GB FB AB CB DB","2":"2 dB BB F N K D G E A B C d J M H I O P Q XB WB"},D:{"2":"2 F N K D G E A B C d J M H I O P Q R S T U V W","132":"0 1 3 4 6 7 9 X Y Z a b c e f g h i j k l m n o L q r s t u v w x y z GB FB AB CB DB QB iB KB IB LB MB NB OB"},E:{"2":"5 F N K D G E A B C PB HB RB SB TB UB VB p YB"},F:{"2":"5 8 E B C ZB aB bB cB p eB","132":"0 1 6 J M H I O P Q R S T U V W X Y Z a b c e f g h i j k l m n o L q r s t u v w x y z"},G:{"2":"G HB fB EB hB JB jB kB lB mB nB oB pB qB rB sB"},H:{"2":"tB"},I:{"2":"BB F uB vB wB xB EB yB zB","132":"4"},J:{"2":"D A"},K:{"2":"5 8 A B C p","132":"L"},L:{"132":"IB"},M:{"1":"3"},N:{"2":"A B"},O:{"2":"0B"},P:{"2":"F","132":"1B 2B 3B 4B"},Q:{"132":"5B"},R:{"132":"6B"}},B:6,C:"asm.js"}; module.exports={A:{A:{"2":"K D G E A B iB"},B:{"1":"2 d J M H I","322":"C"},C:{"1":"0 1 3 4 6 7 8 9 R S T U V W X Y Z a b c e f g h i j k l m n o L q r s t u v w x y z HB GB BB CB FB","2":"2 fB DB F N K D G E A B C d J M H I O P Q ZB YB"},D:{"2":"2 F N K D G E A B C d J M H I O P Q R S T U V W","132":"0 1 3 4 6 7 8 9 X Y Z a b c e f g h i j k l m n o L q r s t u v w x y z HB GB BB CB FB SB NB LB kB MB JB OB PB QB"},E:{"2":"5 F N K D G E A B C RB IB TB UB VB WB XB p aB"},F:{"2":"5 E B C bB cB dB eB p AB gB","132":"0 1 6 J M H I O P Q R S T U V W X Y Z a b c e f g h i j k l m n o L q r s t u v w x y z"},G:{"2":"G IB hB EB jB KB lB mB nB oB pB qB rB sB tB uB"},H:{"2":"vB"},I:{"2":"DB F wB xB yB zB EB 0B 1B","132":"4"},J:{"2":"D A"},K:{"2":"5 A B C p AB","132":"L"},L:{"132":"JB"},M:{"1":"3"},N:{"2":"A B"},O:{"2":"2B"},P:{"2":"F","132":"3B 4B 5B 6B 7B"},Q:{"132":"8B"},R:{"132":"9B"},S:{"1":"AC"}},B:6,C:"asm.js"};

View File

@@ -1 +1 @@
module.exports={A:{A:{"2":"K D G E A B gB"},B:{"2":"2 C d J M H I"},C:{"2":"0 1 2 3 4 6 7 9 dB BB F N K D G E A B C d J M H I O P Q R S T U V W X Y Z a b c e f g h i j k l m n o L q r s t u v w x y z GB FB AB CB DB XB WB"},D:{"1":"3 4 9 AB CB DB QB iB KB IB LB MB NB OB","2":"0 2 6 F N K D G E A B C d J M H I O P Q R S T U V W X Y Z a b c e f g h i j k l m n o L q r s t u v w x y z","66":"1 7 GB FB"},E:{"2":"5 F N K D G E A B C PB HB RB SB TB UB VB p YB"},F:{"2":"5 6 8 E B C J M H I O P Q R S T U V W X Y Z a b c e f g h i j k l m n o L q ZB aB bB cB p eB","16":"0 1 r s t u v w x y z"},G:{"2":"G fB EB hB JB jB kB lB mB nB oB pB qB rB sB","16":"HB"},H:{"2":"tB"},I:{"2":"4 BB F uB vB wB xB EB yB zB"},J:{"2":"D A"},K:{"2":"5 8 A B C L p"},L:{"2":"IB"},M:{"2":"3"},N:{"2":"A B"},O:{"2":"0B"},P:{"2":"F 1B 2B 3B 4B"},Q:{"2":"5B"},R:{"2":"6B"}},B:5,C:"Asynchronous Clipboard API"}; module.exports={A:{A:{"2":"K D G E A B iB"},B:{"2":"2 C d J M H I"},C:{"2":"0 1 2 3 4 6 7 8 9 fB DB F N K D G E A B C d J M H I O P Q R S T U V W X Y Z a b c e f g h i j k l m n o L q r s t u v w x y z HB GB BB CB FB ZB YB"},D:{"1":"3 4 9 GB BB CB FB SB NB LB kB MB JB OB PB QB","2":"0 2 6 F N K D G E A B C d J M H I O P Q R S T U V W X Y Z a b c e f g h i j k l m n o L q r s t u v w x y z","66":"1 7 8 HB"},E:{"2":"5 F N K D G E A B C RB IB TB UB VB WB XB p aB"},F:{"2":"5 6 E B C J M H I O P Q R S T U V W X Y Z a b c e f g h i j k l m n o L q bB cB dB eB p AB gB","16":"0 1 r s t u v w x y z"},G:{"2":"G hB EB jB KB lB mB nB oB pB qB rB sB tB uB","16":"IB"},H:{"2":"vB"},I:{"2":"4 DB F wB xB yB zB EB 0B 1B"},J:{"2":"D A"},K:{"2":"5 A B C L p AB"},L:{"2":"JB"},M:{"2":"3"},N:{"2":"A B"},O:{"2":"2B"},P:{"2":"F 3B 4B 5B 6B 7B"},Q:{"2":"8B"},R:{"2":"9B"},S:{"2":"AC"}},B:5,C:"Asynchronous Clipboard API"};

View File

@@ -1 +1 @@
module.exports={A:{A:{"2":"K D G E A B gB"},B:{"1":"J M H I","2":"2 C","194":"d"},C:{"1":"0 1 3 4 7 9 v w x y z GB FB AB CB DB","2":"2 6 dB BB F N K D G E A B C d J M H I O P Q R S T U V W X Y Z a b c e f g h i j k l m n o L q r s t u XB WB"},D:{"1":"0 1 3 4 7 9 y z GB FB AB CB DB QB iB KB IB LB MB NB OB","2":"2 6 F N K D G E A B C d J M H I O P Q R S T U V W X Y Z a b c e f g h i j k l m n o L q r s t u v w x"},E:{"1":"5 B C VB p YB","2":"F N K D G E A PB HB RB SB TB UB"},F:{"1":"0 1 l m n o L q r s t u v w x y z","2":"5 6 8 E B C J M H I O P Q R S T U V W X Y Z a b c e f g h i j k ZB aB bB cB p eB"},G:{"1":"oB pB qB rB sB","2":"G HB fB EB hB JB jB kB lB mB nB"},H:{"2":"tB"},I:{"1":"4","2":"BB F uB vB wB xB EB yB zB"},J:{"2":"D A"},K:{"1":"L","2":"5 8 A B C p"},L:{"1":"IB"},M:{"1":"3"},N:{"2":"A B"},O:{"1":"0B"},P:{"1":"2B 3B 4B","2":"F 1B"},Q:{"2":"5B"},R:{"2":"6B"}},B:6,C:"Async functions"}; module.exports={A:{A:{"2":"K D G E A B iB"},B:{"1":"J M H I","2":"2 C","194":"d"},C:{"1":"0 1 3 4 7 8 9 v w x y z HB GB BB CB FB","2":"2 6 fB DB F N K D G E A B C d J M H I O P Q R S T U V W X Y Z a b c e f g h i j k l m n o L q r s t u ZB YB"},D:{"1":"0 1 3 4 7 8 9 y z HB GB BB CB FB SB NB LB kB MB JB OB PB QB","2":"2 6 F N K D G E A B C d J M H I O P Q R S T U V W X Y Z a b c e f g h i j k l m n o L q r s t u v w x"},E:{"1":"5 B C XB p aB","2":"F N K D G E A RB IB TB UB VB WB"},F:{"1":"0 1 l m n o L q r s t u v w x y z","2":"5 6 E B C J M H I O P Q R S T U V W X Y Z a b c e f g h i j k bB cB dB eB p AB gB"},G:{"1":"qB rB sB tB uB","2":"G IB hB EB jB KB lB mB nB oB pB"},H:{"2":"vB"},I:{"1":"4","2":"DB F wB xB yB zB EB 0B 1B"},J:{"2":"D A"},K:{"1":"L","2":"5 A B C p AB"},L:{"1":"JB"},M:{"1":"3"},N:{"2":"A B"},O:{"1":"2B"},P:{"1":"4B 5B 6B 7B","2":"F 3B"},Q:{"2":"8B"},R:{"2":"9B"},S:{"2":"AC"}},B:6,C:"Async functions"};

View File

@@ -1 +1 @@
module.exports={A:{A:{"2":"K D G E A B gB"},B:{"2":"2 C d J M H I"},C:{"1":"0 1 3 4 7 9 GB FB AB CB DB","2":"2 6 dB BB F N K D G E A B C d J M H I O P Q R S T U V W X Y Z a b c e f g h i j k l m n o L q r s t u v w x y z XB WB"},D:{"1":"3 4 AB CB DB QB iB KB IB LB MB NB OB","2":"0 1 2 6 7 9 F N K D G E A B C d J M H I O P Q R S T U V W X Y Z a b c e f g h i j k l m n o L q r s t u v w x y z GB FB"},E:{"1":"5 C YB","2":"F N K D G E A B PB HB RB SB TB UB VB p"},F:{"1":"0 1 t u v w x y z","2":"5 6 8 E B C J M H I O P Q R S T U V W X Y Z a b c e f g h i j k l m n o L q r s ZB aB bB cB p eB"},G:{"2":"G HB fB EB hB JB jB kB lB mB nB oB pB qB rB sB"},H:{"2":"tB"},I:{"2":"4 BB F uB vB wB xB EB yB zB"},J:{"2":"D A"},K:{"2":"5 8 A B C L p"},L:{"1":"IB"},M:{"1":"3"},N:{"2":"A B"},O:{"2":"0B"},P:{"2":"F 1B 2B 3B 4B"},Q:{"2":"5B"},R:{"2":"6B"}},B:6,C:"Async iterators and generators"}; module.exports={A:{A:{"2":"K D G E A B iB"},B:{"2":"2 C d J M H I"},C:{"1":"0 1 3 4 7 8 9 HB GB BB CB FB","2":"2 6 fB DB F N K D G E A B C d J M H I O P Q R S T U V W X Y Z a b c e f g h i j k l m n o L q r s t u v w x y z ZB YB"},D:{"1":"3 4 GB BB CB FB SB NB LB kB MB JB OB PB QB","2":"0 1 2 6 7 8 9 F N K D G E A B C d J M H I O P Q R S T U V W X Y Z a b c e f g h i j k l m n o L q r s t u v w x y z HB"},E:{"1":"5 C aB","2":"F N K D G E A B RB IB TB UB VB WB XB p"},F:{"1":"0 1 t u v w x y z","2":"5 6 E B C J M H I O P Q R S T U V W X Y Z a b c e f g h i j k l m n o L q r s bB cB dB eB p AB gB"},G:{"2":"G IB hB EB jB KB lB mB nB oB pB qB rB sB tB uB"},H:{"2":"vB"},I:{"2":"4 DB F wB xB yB zB EB 0B 1B"},J:{"2":"D A"},K:{"2":"5 A B C L p AB"},L:{"1":"JB"},M:{"1":"3"},N:{"2":"A B"},O:{"2":"2B"},P:{"2":"F 3B 4B 5B 6B 7B"},Q:{"2":"8B"},R:{"2":"9B"},S:{"2":"AC"}},B:6,C:"Async iterators and generators"};

View File

@@ -1 +1 @@
module.exports={A:{A:{"1":"A B","2":"K D G E gB"},B:{"1":"2 C d J M H I"},C:{"1":"0 1 2 3 4 6 7 9 dB BB F N K D G E A B C d J M H I O P Q R S T U V W X Y Z a b c e f g h i j k l m n o L q r s t u v w x y z GB FB AB CB DB XB WB"},D:{"1":"0 1 2 3 4 6 7 9 F N K D G E A B C d J M H I O P Q R S T U V W X Y Z a b c e f g h i j k l m n o L q r s t u v w x y z GB FB AB CB DB QB iB KB IB LB MB NB OB"},E:{"1":"5 F N K D G E A B C PB HB RB SB TB UB VB p YB"},F:{"1":"0 1 5 6 8 B C J M H I O P Q R S T U V W X Y Z a b c e f g h i j k l m n o L q r s t u v w x y z cB p eB","2":"E ZB aB","16":"bB"},G:{"1":"G HB fB EB hB JB jB kB lB mB nB oB pB qB rB sB"},H:{"1":"tB"},I:{"1":"4 BB F uB vB wB xB EB yB zB"},J:{"1":"D A"},K:{"1":"5 8 B C L p","16":"A"},L:{"1":"IB"},M:{"1":"3"},N:{"1":"A B"},O:{"1":"0B"},P:{"1":"F 1B 2B 3B 4B"},Q:{"1":"5B"},R:{"1":"6B"}},B:1,C:"Base64 encoding and decoding"}; module.exports={A:{A:{"1":"A B","2":"K D G E iB"},B:{"1":"2 C d J M H I"},C:{"1":"0 1 2 3 4 6 7 8 9 fB DB F N K D G E A B C d J M H I O P Q R S T U V W X Y Z a b c e f g h i j k l m n o L q r s t u v w x y z HB GB BB CB FB ZB YB"},D:{"1":"0 1 2 3 4 6 7 8 9 F N K D G E A B C d J M H I O P Q R S T U V W X Y Z a b c e f g h i j k l m n o L q r s t u v w x y z HB GB BB CB FB SB NB LB kB MB JB OB PB QB"},E:{"1":"5 F N K D G E A B C RB IB TB UB VB WB XB p aB"},F:{"1":"0 1 5 6 B C J M H I O P Q R S T U V W X Y Z a b c e f g h i j k l m n o L q r s t u v w x y z eB p AB gB","2":"E bB cB","16":"dB"},G:{"1":"G IB hB EB jB KB lB mB nB oB pB qB rB sB tB uB"},H:{"1":"vB"},I:{"1":"4 DB F wB xB yB zB EB 0B 1B"},J:{"1":"D A"},K:{"1":"5 B C L p AB","16":"A"},L:{"1":"JB"},M:{"1":"3"},N:{"1":"A B"},O:{"1":"2B"},P:{"1":"F 3B 4B 5B 6B 7B"},Q:{"1":"8B"},R:{"1":"9B"},S:{"1":"AC"}},B:1,C:"Base64 encoding and decoding"};

View File

@@ -1 +1 @@
module.exports={A:{A:{"2":"K D G E A B gB"},B:{"1":"2 C d J M H I"},C:{"1":"0 1 3 4 6 7 9 U V W X Y Z a b c e f g h i j k l m n o L q r s t u v w x y z GB FB AB CB DB","2":"2 dB BB F N K D G E A B C d J M H I O P Q R S T XB WB"},D:{"1":"0 1 3 4 6 7 9 e f g h i j k l m n o L q r s t u v w x y z GB FB AB CB DB QB iB KB IB LB MB NB OB","2":"F N K D G E","33":"2 A B C d J M H I O P Q R S T U V W X Y Z a b c"},E:{"2":"F N PB HB RB","33":"5 K D G E A B C SB TB UB VB p YB"},F:{"1":"0 1 6 R S T U V W X Y Z a b c e f g h i j k l m n o L q r s t u v w x y z","2":"5 8 E B C ZB aB bB cB p eB","33":"J M H I O P Q"},G:{"2":"HB fB EB hB","33":"G JB jB kB lB mB nB oB pB qB rB sB"},H:{"2":"tB"},I:{"1":"4","2":"BB F uB vB wB xB EB yB zB"},J:{"2":"D A"},K:{"1":"L","2":"5 8 A B C p"},L:{"1":"IB"},M:{"1":"3"},N:{"2":"A B"},O:{"1":"0B"},P:{"1":"F 1B 2B 3B 4B"},Q:{"1":"5B"},R:{"1":"6B"}},B:5,C:"Web Audio API"}; module.exports={A:{A:{"2":"K D G E A B iB"},B:{"1":"2 C d J M H I"},C:{"1":"0 1 3 4 6 7 8 9 U V W X Y Z a b c e f g h i j k l m n o L q r s t u v w x y z HB GB BB CB FB","2":"2 fB DB F N K D G E A B C d J M H I O P Q R S T ZB YB"},D:{"1":"0 1 3 4 6 7 8 9 e f g h i j k l m n o L q r s t u v w x y z HB GB BB CB FB SB NB LB kB MB JB OB PB QB","2":"F N K D G E","33":"2 A B C d J M H I O P Q R S T U V W X Y Z a b c"},E:{"2":"F N RB IB TB","33":"5 K D G E A B C UB VB WB XB p aB"},F:{"1":"0 1 6 R S T U V W X Y Z a b c e f g h i j k l m n o L q r s t u v w x y z","2":"5 E B C bB cB dB eB p AB gB","33":"J M H I O P Q"},G:{"2":"IB hB EB jB","33":"G KB lB mB nB oB pB qB rB sB tB uB"},H:{"2":"vB"},I:{"1":"4","2":"DB F wB xB yB zB EB 0B 1B"},J:{"2":"D A"},K:{"1":"L","2":"5 A B C p AB"},L:{"1":"JB"},M:{"1":"3"},N:{"2":"A B"},O:{"1":"2B"},P:{"1":"F 3B 4B 5B 6B 7B"},Q:{"1":"8B"},R:{"1":"9B"},S:{"1":"AC"}},B:5,C:"Web Audio API"};

View File

@@ -1 +1 @@
module.exports={A:{A:{"1":"E A B","2":"K D G gB"},B:{"1":"2 C d J M H I"},C:{"1":"0 1 3 4 6 7 9 P Q R S T U V W X Y Z a b c e f g h i j k l m n o L q r s t u v w x y z GB FB AB CB DB","2":"dB BB","132":"2 F N K D G E A B C d J M H I O XB WB"},D:{"1":"0 1 2 3 4 6 7 9 F N K D G E A B C d J M H I O P Q R S T U V W X Y Z a b c e f g h i j k l m n o L q r s t u v w x y z GB FB AB CB DB QB iB KB IB LB MB NB OB"},E:{"1":"5 F N K D G E A B C RB SB TB UB VB p YB","2":"PB HB"},F:{"1":"0 1 5 6 8 B C J M H I O P Q R S T U V W X Y Z a b c e f g h i j k l m n o L q r s t u v w x y z bB cB p eB","2":"E","4":"ZB aB"},G:{"1":"G fB EB hB JB jB kB lB mB nB oB pB qB rB sB","2":"HB"},H:{"2":"tB"},I:{"1":"4 BB F wB xB EB yB zB","2":"uB vB"},J:{"1":"D A"},K:{"1":"5 8 B C L p","2":"A"},L:{"1":"IB"},M:{"1":"3"},N:{"1":"A B"},O:{"1":"0B"},P:{"1":"F 1B 2B 3B 4B"},Q:{"1":"5B"},R:{"1":"6B"}},B:1,C:"Audio element"}; module.exports={A:{A:{"1":"E A B","2":"K D G iB"},B:{"1":"2 C d J M H I"},C:{"1":"0 1 3 4 6 7 8 9 P Q R S T U V W X Y Z a b c e f g h i j k l m n o L q r s t u v w x y z HB GB BB CB FB","2":"fB DB","132":"2 F N K D G E A B C d J M H I O ZB YB"},D:{"1":"0 1 2 3 4 6 7 8 9 F N K D G E A B C d J M H I O P Q R S T U V W X Y Z a b c e f g h i j k l m n o L q r s t u v w x y z HB GB BB CB FB SB NB LB kB MB JB OB PB QB"},E:{"1":"5 F N K D G E A B C TB UB VB WB XB p aB","2":"RB IB"},F:{"1":"0 1 5 6 B C J M H I O P Q R S T U V W X Y Z a b c e f g h i j k l m n o L q r s t u v w x y z dB eB p AB gB","2":"E","4":"bB cB"},G:{"1":"G hB EB jB KB lB mB nB oB pB qB rB sB tB uB","2":"IB"},H:{"2":"vB"},I:{"1":"4 DB F yB zB EB 0B 1B","2":"wB xB"},J:{"1":"D A"},K:{"1":"5 B C L p AB","2":"A"},L:{"1":"JB"},M:{"1":"3"},N:{"1":"A B"},O:{"1":"2B"},P:{"1":"F 3B 4B 5B 6B 7B"},Q:{"1":"8B"},R:{"1":"9B"},S:{"1":"AC"}},B:1,C:"Audio element"};

View File

@@ -1 +1 @@
module.exports={A:{A:{"1":"A B","2":"K D G E gB"},B:{"1":"2 C d J M H I"},C:{"2":"2 dB BB F N K D G E A B C d J M H I O P Q R S T U V W X Y Z a b XB WB","194":"0 1 3 4 6 7 9 c e f g h i j k l m n o L q r s t u v w x y z GB FB AB CB DB"},D:{"2":"2 6 F N K D G E A B C d J M H I O P Q R S T U V W X Y Z a b c e f g h i j k l m n","322":"0 1 3 4 7 9 o L q r s t u v w x y z GB FB AB CB DB QB iB KB IB LB MB NB OB"},E:{"1":"5 D G E A B C SB TB UB VB p YB","2":"F N K PB HB RB"},F:{"2":"5 8 E B C J M H I O P Q R S T U V W X Y Z a ZB aB bB cB p eB","322":"0 1 6 b c e f g h i j k l m n o L q r s t u v w x y z"},G:{"1":"G jB kB lB mB nB oB pB qB rB sB","2":"HB fB EB hB JB"},H:{"2":"tB"},I:{"2":"4 BB F uB vB wB xB EB yB zB"},J:{"2":"D A"},K:{"2":"5 8 A B C p","322":"L"},L:{"322":"IB"},M:{"2":"3"},N:{"1":"A B"},O:{"2":"0B"},P:{"2":"F 1B 2B 3B 4B"},Q:{"2":"5B"},R:{"2":"6B"}},B:1,C:"Audio Tracks"}; module.exports={A:{A:{"1":"A B","2":"K D G E iB"},B:{"1":"2 C d J M H I"},C:{"2":"2 fB DB F N K D G E A B C d J M H I O P Q R S T U V W X Y Z a b ZB YB","194":"0 1 3 4 6 7 8 9 c e f g h i j k l m n o L q r s t u v w x y z HB GB BB CB FB"},D:{"2":"2 6 F N K D G E A B C d J M H I O P Q R S T U V W X Y Z a b c e f g h i j k l m n","322":"0 1 3 4 7 8 9 o L q r s t u v w x y z HB GB BB CB FB SB NB LB kB MB JB OB PB QB"},E:{"1":"5 D G E A B C UB VB WB XB p aB","2":"F N K RB IB TB"},F:{"2":"5 E B C J M H I O P Q R S T U V W X Y Z a bB cB dB eB p AB gB","322":"0 1 6 b c e f g h i j k l m n o L q r s t u v w x y z"},G:{"1":"G lB mB nB oB pB qB rB sB tB uB","2":"IB hB EB jB KB"},H:{"2":"vB"},I:{"2":"4 DB F wB xB yB zB EB 0B 1B"},J:{"2":"D A"},K:{"2":"5 A B C p AB","322":"L"},L:{"322":"JB"},M:{"2":"3"},N:{"1":"A B"},O:{"2":"2B"},P:{"2":"F 3B 4B 5B 6B 7B"},Q:{"2":"8B"},R:{"2":"9B"},S:{"194":"AC"}},B:1,C:"Audio Tracks"};

View File

@@ -1 +1 @@
module.exports={A:{A:{"1":"A B","2":"K D G E gB"},B:{"1":"2 C d J M H I"},C:{"1":"0 1 2 3 4 6 7 9 F N K D G E A B C d J M H I O P Q R S T U V W X Y Z a b c e f g h i j k l m n o L q r s t u v w x y z GB FB AB CB DB","2":"dB BB XB WB"},D:{"1":"0 1 2 3 4 6 7 9 N K D G E A B C d J M H I O P Q R S T U V W X Y Z a b c e f g h i j k l m n o L q r s t u v w x y z GB FB AB CB DB QB iB KB IB LB MB NB OB","2":"F"},E:{"1":"5 N K D G E A B C RB SB TB UB VB p YB","2":"F PB HB"},F:{"1":"0 1 5 6 8 B C J M H I O P Q R S T U V W X Y Z a b c e f g h i j k l m n o L q r s t u v w x y z ZB aB bB cB p eB","2":"E"},G:{"2":"G HB fB EB hB JB jB kB lB mB nB oB pB qB rB sB"},H:{"2":"tB"},I:{"1":"4 BB F xB EB yB zB","2":"uB vB wB"},J:{"1":"D A"},K:{"1":"L","2":"5 8 A B C p"},L:{"1":"IB"},M:{"1":"3"},N:{"1":"A B"},O:{"2":"0B"},P:{"1":"F 1B 2B 3B 4B"},Q:{"1":"5B"},R:{"1":"6B"}},B:1,C:"Autofocus attribute"}; module.exports={A:{A:{"1":"A B","2":"K D G E iB"},B:{"1":"2 C d J M H I"},C:{"1":"0 1 2 3 4 6 7 8 9 F N K D G E A B C d J M H I O P Q R S T U V W X Y Z a b c e f g h i j k l m n o L q r s t u v w x y z HB GB BB CB FB","2":"fB DB ZB YB"},D:{"1":"0 1 2 3 4 6 7 8 9 N K D G E A B C d J M H I O P Q R S T U V W X Y Z a b c e f g h i j k l m n o L q r s t u v w x y z HB GB BB CB FB SB NB LB kB MB JB OB PB QB","2":"F"},E:{"1":"5 N K D G E A B C TB UB VB WB XB p aB","2":"F RB IB"},F:{"1":"0 1 5 6 B C J M H I O P Q R S T U V W X Y Z a b c e f g h i j k l m n o L q r s t u v w x y z bB cB dB eB p AB gB","2":"E"},G:{"2":"G IB hB EB jB KB lB mB nB oB pB qB rB sB tB uB"},H:{"2":"vB"},I:{"1":"4 DB F zB EB 0B 1B","2":"wB xB yB"},J:{"1":"D A"},K:{"1":"L","2":"5 A B C p AB"},L:{"1":"JB"},M:{"1":"3"},N:{"1":"A B"},O:{"2":"2B"},P:{"1":"F 3B 4B 5B 6B 7B"},Q:{"1":"8B"},R:{"1":"9B"},S:{"2":"AC"}},B:1,C:"Autofocus attribute"};

View File

@@ -1 +1 @@
module.exports={A:{A:{"2":"K D G E A B gB"},B:{"2":"2 C d J M H I"},C:{"2":"2 6 dB BB F N K D G E A B C d J M H I O P Q R S T U V W X Y Z a b c e f g h i j k l m n o L q r s t u v XB WB","129":"0 1 3 4 7 9 w x y z GB FB AB CB DB"},D:{"1":"0 1 3 4 7 9 y z GB FB AB CB DB QB iB KB IB LB MB NB OB","2":"2 6 F N K D G E A B C d J M H I O P Q R S T U V W X Y Z a b c e f g h i j k l m n o L q r s t u v w x"},E:{"2":"5 F N K D G E A B C PB HB RB SB TB UB VB p YB"},F:{"1":"0 1 l m n o L q r s t u v w x y z","2":"5 6 8 E B C J M H I O P Q R S T U V W X Y Z a b c e f g h i j k ZB aB bB cB p eB"},G:{"2":"G HB fB EB hB JB jB kB lB mB nB oB pB qB rB sB"},H:{"2":"tB"},I:{"1":"4","2":"BB F uB vB wB xB EB yB zB"},J:{"2":"D A"},K:{"2":"5 8 A B C p","16":"L"},L:{"1":"IB"},M:{"1":"3"},N:{"2":"A B"},O:{"1":"0B"},P:{"1":"1B 2B 3B 4B","2":"F"},Q:{"1":"5B"},R:{"1":"6B"}},B:5,C:"Auxclick"}; module.exports={A:{A:{"2":"K D G E A B iB"},B:{"2":"2 C d J M H I"},C:{"2":"2 6 fB DB F N K D G E A B C d J M H I O P Q R S T U V W X Y Z a b c e f g h i j k l m n o L q r s t u v ZB YB","129":"0 1 3 4 7 8 9 w x y z HB GB BB CB FB"},D:{"1":"0 1 3 4 7 8 9 y z HB GB BB CB FB SB NB LB kB MB JB OB PB QB","2":"2 6 F N K D G E A B C d J M H I O P Q R S T U V W X Y Z a b c e f g h i j k l m n o L q r s t u v w x"},E:{"2":"5 F N K D G E A B C RB IB TB UB VB WB XB p aB"},F:{"1":"0 1 l m n o L q r s t u v w x y z","2":"5 6 E B C J M H I O P Q R S T U V W X Y Z a b c e f g h i j k bB cB dB eB p AB gB"},G:{"2":"G IB hB EB jB KB lB mB nB oB pB qB rB sB tB uB"},H:{"2":"vB"},I:{"1":"4","2":"DB F wB xB yB zB EB 0B 1B"},J:{"2":"D A"},K:{"2":"5 A B C p AB","16":"L"},L:{"1":"JB"},M:{"1":"3"},N:{"2":"A B"},O:{"1":"2B"},P:{"1":"3B 4B 5B 6B 7B","2":"F"},Q:{"1":"8B"},R:{"1":"9B"},S:{"2":"AC"}},B:5,C:"Auxclick"};

View File

@@ -1 +1 @@
module.exports={A:{A:{"2":"K D G E A B gB"},B:{"2":"2 C d J M H","194":"I"},C:{"2":"2 6 dB BB F N K D G E A B C d J M H I O P Q R S T U V W X Y Z a b c e f g h i j k l m n o L q r s t u v w x XB WB","578":"3 AB","772":"4 CB DB","1090":"0 1 7 y z GB","1602":"9 FB"},D:{"1":"KB IB LB MB NB OB","2":"0 1 2 3 6 7 9 F N K D G E A B C d J M H I O P Q R S T U V W X Y Z a b c e f g h i j k l m n o L q r s t u v w x y z GB FB AB CB DB","2114":"4 QB iB"},E:{"2":"5 F N K D G E A B C PB HB RB SB TB UB VB p YB"},F:{"1":"0 1","2":"5 6 8 E B C J M H I O P Q R S T U V W X Y Z a b c e f g h i j k l m n o L q r s t u v w x y z ZB aB bB cB p eB"},G:{"2":"G HB fB EB hB JB jB kB lB mB nB oB pB qB rB sB"},H:{"2":"tB"},I:{"2":"4 BB F uB vB wB xB EB yB zB"},J:{"2":"D A"},K:{"2":"5 8 A B C L p"},L:{"2":"IB"},M:{"578":"3"},N:{"2":"A B"},O:{"2":"0B"},P:{"2":"F 1B 2B 3B 4B"},Q:{"2":"5B"},R:{"2":"6B"}},B:6,C:"AV1 video format"}; module.exports={A:{A:{"2":"K D G E A B iB"},B:{"2":"2 C d J M H","194":"I"},C:{"1":"4 FB","2":"2 6 fB DB F N K D G E A B C d J M H I O P Q R S T U V W X Y Z a b c e f g h i j k l m n o L q r s t u v w x ZB YB","1090":"GB BB","1284":"CB","1540":"3","2114":"0 1 7 y z HB","3138":"8 9"},D:{"1":"NB LB kB MB JB OB PB QB","2":"0 1 2 3 6 7 8 9 F N K D G E A B C d J M H I O P Q R S T U V W X Y Z a b c e f g h i j k l m n o L q r s t u v w x y z HB GB BB CB","4162":"4 FB SB"},E:{"2":"5 F N K D G E A B C RB IB TB UB VB WB XB p aB"},F:{"1":"0 1","2":"5 6 E B C J M H I O P Q R S T U V W X Y Z a b c e f g h i j k l m n o L q r s t u v w x y z bB cB dB eB p AB gB"},G:{"2":"G IB hB EB jB KB lB mB nB oB pB qB rB sB tB uB"},H:{"2":"vB"},I:{"2":"4 DB F wB xB yB zB EB 0B 1B"},J:{"2":"D A"},K:{"2":"5 A B C L p AB"},L:{"2":"JB"},M:{"1090":"3"},N:{"2":"A B"},O:{"2":"2B"},P:{"2":"F 3B 4B 5B 6B 7B"},Q:{"2":"8B"},R:{"2":"9B"},S:{"2":"AC"}},B:6,C:"AV1 video format"};

View File

@@ -1 +1 @@
module.exports={A:{A:{"1":"E A B","132":"K D G gB"},B:{"1":"2 C d J M H I"},C:{"1":"0 1 3 4 6 7 9 U V W X Y Z a b c e f g h i j k l m n o L q r s t u v w x y z GB FB AB CB DB","132":"2 dB BB F N K D G E A B C d J M H I O P Q R S T XB WB"},D:{"1":"0 1 2 3 4 6 7 9 F N K D G E A B C d J M H I O P Q R S T U V W X Y Z a b c e f g h i j k l m n o L q r s t u v w x y z GB FB AB CB DB QB iB KB IB LB MB NB OB"},E:{"1":"5 N K D G E A B C RB SB TB UB VB p YB","132":"F PB HB"},F:{"1":"0 1 5 6 8 B C J M H I O P Q R S T U V W X Y Z a b c e f g h i j k l m n o L q r s t u v w x y z bB cB p eB","132":"E ZB aB"},G:{"2":"HB fB EB","772":"G hB JB jB kB lB mB nB oB pB qB rB sB"},H:{"2":"tB"},I:{"2":"4 BB F uB vB wB yB zB","132":"xB EB"},J:{"260":"D A"},K:{"1":"5 8 B C L p","132":"A"},L:{"1":"IB"},M:{"1":"3"},N:{"1":"A B"},O:{"1":"0B"},P:{"2":"F","1028":"1B 2B 3B 4B"},Q:{"1":"5B"},R:{"1028":"6B"}},B:4,C:"CSS background-attachment"}; module.exports={A:{A:{"1":"E A B","132":"K D G iB"},B:{"1":"2 C d J M H I"},C:{"1":"0 1 3 4 6 7 8 9 U V W X Y Z a b c e f g h i j k l m n o L q r s t u v w x y z HB GB BB CB FB","132":"2 fB DB F N K D G E A B C d J M H I O P Q R S T ZB YB"},D:{"1":"0 1 2 3 4 6 7 8 9 F N K D G E A B C d J M H I O P Q R S T U V W X Y Z a b c e f g h i j k l m n o L q r s t u v w x y z HB GB BB CB FB SB NB LB kB MB JB OB PB QB"},E:{"1":"5 N K D G E A B C TB UB VB WB XB p aB","132":"F RB IB"},F:{"1":"0 1 5 6 B C J M H I O P Q R S T U V W X Y Z a b c e f g h i j k l m n o L q r s t u v w x y z dB eB p AB gB","132":"E bB cB"},G:{"2":"IB hB EB","772":"G jB KB lB mB nB oB pB qB rB sB tB uB"},H:{"2":"vB"},I:{"2":"4 DB F wB xB yB 0B 1B","132":"zB EB"},J:{"260":"D A"},K:{"1":"5 B C L p AB","132":"A"},L:{"1":"JB"},M:{"1":"3"},N:{"1":"A B"},O:{"1":"2B"},P:{"2":"F","1028":"3B 4B 5B 6B 7B"},Q:{"1":"8B"},R:{"1028":"9B"},S:{"1":"AC"}},B:4,C:"CSS background-attachment"};

View File

@@ -1 +1 @@
module.exports={A:{A:{"2":"K D G E A B gB"},B:{"257":"J M H I","548":"2 C d"},C:{"1":"0 1 3 4 7 9 s t u v w x y z GB FB AB CB DB","16":"2 6 dB BB F N K D G E A B C d J M H I O P Q R S T U V W X Y Z a b c e f g h i j k l m n o L q XB WB","130":"r"},D:{"36":"0 1 2 3 4 6 7 9 F N K D G E A B C d J M H I O P Q R S T U V W X Y Z a b c e f g h i j k l m n o L q r s t u v w x y z GB FB AB CB DB QB iB KB IB LB MB NB OB"},E:{"16":"PB HB","36":"5 F N K D G E A B C RB SB TB UB VB p YB"},F:{"16":"0 1 5 6 8 E B C J M H I O P Q R S T U V W X Y Z a b c e f g h i j k l m n o L q r s t u v w x y z ZB aB bB cB p eB"},G:{"16":"G HB fB EB hB JB jB kB lB mB nB oB pB qB rB sB"},H:{"16":"tB"},I:{"16":"4 BB F uB vB wB xB EB yB zB"},J:{"16":"D A"},K:{"16":"5 8 A B C L p"},L:{"16":"IB"},M:{"16":"3"},N:{"16":"A B"},O:{"16":"0B"},P:{"16":"F 1B 2B 3B 4B"},Q:{"16":"5B"},R:{"16":"6B"}},B:1,C:"CSS3 Background-clip: text"}; module.exports={A:{A:{"2":"K D G E A B iB"},B:{"257":"J M H I","548":"2 C d"},C:{"1":"0 1 3 4 7 8 9 s t u v w x y z HB GB BB CB FB","16":"2 6 fB DB F N K D G E A B C d J M H I O P Q R S T U V W X Y Z a b c e f g h i j k l m n o L q ZB YB","130":"r"},D:{"36":"0 1 2 3 4 6 7 8 9 F N K D G E A B C d J M H I O P Q R S T U V W X Y Z a b c e f g h i j k l m n o L q r s t u v w x y z HB GB BB CB FB SB NB LB kB MB JB OB PB QB"},E:{"16":"RB IB","36":"5 F N K D G E A B C TB UB VB WB XB p aB"},F:{"16":"0 1 5 6 E B C J M H I O P Q R S T U V W X Y Z a b c e f g h i j k l m n o L q r s t u v w x y z bB cB dB eB p AB gB"},G:{"16":"G IB hB EB jB KB lB mB nB oB pB qB rB sB tB uB"},H:{"16":"vB"},I:{"16":"4 DB F wB xB yB zB EB 0B 1B"},J:{"16":"D A"},K:{"16":"5 A B C L p AB"},L:{"16":"JB"},M:{"16":"3"},N:{"16":"A B"},O:{"16":"2B"},P:{"16":"F 3B 4B 5B 6B 7B"},Q:{"16":"8B"},R:{"16":"9B"},S:{"130":"AC"}},B:1,C:"CSS3 Background-clip: text"};

View File

@@ -1 +1 @@
module.exports={A:{A:{"1":"E A B","2":"K D G gB"},B:{"1":"2 C d J M H I"},C:{"1":"0 1 2 3 4 6 7 9 F N K D G E A B C d J M H I O P Q R S T U V W X Y Z a b c e f g h i j k l m n o L q r s t u v w x y z GB FB AB CB DB","2":"dB BB XB","36":"WB"},D:{"1":"0 1 3 4 6 7 9 J M H I O P Q R S T U V W X Y Z a b c e f g h i j k l m n o L q r s t u v w x y z GB FB AB CB DB QB iB KB IB LB MB NB OB","516":"2 F N K D G E A B C d"},E:{"1":"5 D G E A B C TB UB VB p YB","772":"F N K PB HB RB SB"},F:{"1":"0 1 5 6 8 B C J M H I O P Q R S T U V W X Y Z a b c e f g h i j k l m n o L q r s t u v w x y z bB cB p eB","2":"E ZB","36":"aB"},G:{"1":"G jB kB lB mB nB oB pB qB rB sB","4":"HB fB EB JB","516":"hB"},H:{"132":"tB"},I:{"1":"4 yB zB","36":"uB","516":"BB F xB EB","548":"vB wB"},J:{"1":"D A"},K:{"1":"5 8 A B C L p"},L:{"1":"IB"},M:{"1":"3"},N:{"1":"A B"},O:{"1":"0B"},P:{"1":"F 1B 2B 3B 4B"},Q:{"1":"5B"},R:{"1":"6B"}},B:4,C:"CSS3 Background-image options"}; module.exports={A:{A:{"1":"E A B","2":"K D G iB"},B:{"1":"2 C d J M H I"},C:{"1":"0 1 2 3 4 6 7 8 9 F N K D G E A B C d J M H I O P Q R S T U V W X Y Z a b c e f g h i j k l m n o L q r s t u v w x y z HB GB BB CB FB","2":"fB DB ZB","36":"YB"},D:{"1":"0 1 3 4 6 7 8 9 J M H I O P Q R S T U V W X Y Z a b c e f g h i j k l m n o L q r s t u v w x y z HB GB BB CB FB SB NB LB kB MB JB OB PB QB","516":"2 F N K D G E A B C d"},E:{"1":"5 D G E A B C VB WB XB p aB","772":"F N K RB IB TB UB"},F:{"1":"0 1 5 6 B C J M H I O P Q R S T U V W X Y Z a b c e f g h i j k l m n o L q r s t u v w x y z dB eB p AB gB","2":"E bB","36":"cB"},G:{"1":"G lB mB nB oB pB qB rB sB tB uB","4":"IB hB EB KB","516":"jB"},H:{"132":"vB"},I:{"1":"4 0B 1B","36":"wB","516":"DB F zB EB","548":"xB yB"},J:{"1":"D A"},K:{"1":"5 A B C L p AB"},L:{"1":"JB"},M:{"1":"3"},N:{"1":"A B"},O:{"1":"2B"},P:{"1":"F 3B 4B 5B 6B 7B"},Q:{"1":"8B"},R:{"1":"9B"},S:{"1":"AC"}},B:4,C:"CSS3 Background-image options"};

View File

@@ -1 +1 @@
module.exports={A:{A:{"1":"K D G E A B gB"},B:{"1":"2 C d J M H I"},C:{"1":"0 1 3 4 7 9 s t u v w x y z GB FB AB CB DB","2":"2 6 dB BB F N K D G E A B C d J M H I O P Q R S T U V W X Y Z a b c e f g h i j k l m n o L q r XB WB"},D:{"1":"0 1 2 3 4 6 7 9 F N K D G E A B C d J M H I O P Q R S T U V W X Y Z a b c e f g h i j k l m n o L q r s t u v w x y z GB FB AB CB DB QB iB KB IB LB MB NB OB"},E:{"1":"5 F N K D G E A B C PB HB RB SB TB UB VB p YB"},F:{"1":"0 1 6 J M H I O P Q R S T U V W X Y Z a b c e f g h i j k l m n o L q r s t u v w x y z","2":"5 8 E B C ZB aB bB cB p eB"},G:{"1":"G HB fB EB hB JB jB kB lB mB nB oB pB qB rB sB"},H:{"2":"tB"},I:{"1":"4 BB F uB vB wB xB EB yB zB"},J:{"1":"D A"},K:{"1":"L","2":"5 8 A B C p"},L:{"1":"IB"},M:{"1":"3"},N:{"1":"A B"},O:{"1":"0B"},P:{"1":"F 1B 2B 3B 4B"},Q:{"1":"5B"},R:{"1":"6B"}},B:7,C:"background-position-x & background-position-y"}; module.exports={A:{A:{"1":"K D G E A B iB"},B:{"1":"2 C d J M H I"},C:{"1":"0 1 3 4 7 8 9 s t u v w x y z HB GB BB CB FB","2":"2 6 fB DB F N K D G E A B C d J M H I O P Q R S T U V W X Y Z a b c e f g h i j k l m n o L q r ZB YB"},D:{"1":"0 1 2 3 4 6 7 8 9 F N K D G E A B C d J M H I O P Q R S T U V W X Y Z a b c e f g h i j k l m n o L q r s t u v w x y z HB GB BB CB FB SB NB LB kB MB JB OB PB QB"},E:{"1":"5 F N K D G E A B C RB IB TB UB VB WB XB p aB"},F:{"1":"0 1 6 J M H I O P Q R S T U V W X Y Z a b c e f g h i j k l m n o L q r s t u v w x y z","2":"5 E B C bB cB dB eB p AB gB"},G:{"1":"G IB hB EB jB KB lB mB nB oB pB qB rB sB tB uB"},H:{"2":"vB"},I:{"1":"4 DB F wB xB yB zB EB 0B 1B"},J:{"1":"D A"},K:{"1":"L","2":"5 A B C p AB"},L:{"1":"JB"},M:{"1":"3"},N:{"1":"A B"},O:{"1":"2B"},P:{"1":"F 3B 4B 5B 6B 7B"},Q:{"1":"8B"},R:{"1":"9B"},S:{"2":"AC"}},B:7,C:"background-position-x & background-position-y"};

View File

@@ -1 +1 @@
module.exports={A:{A:{"1":"A B","2":"K D G gB","132":"E"},B:{"1":"2 C d J M H I"},C:{"1":"0 1 3 4 7 9 s t u v w x y z GB FB AB CB DB","2":"2 6 dB BB F N K D G E A B C d J M H I O P Q R S T U V W X Y Z a b c e f g h i j k l m n o L q r XB WB"},D:{"1":"0 1 3 4 6 7 9 b c e f g h i j k l m n o L q r s t u v w x y z GB FB AB CB DB QB iB KB IB LB MB NB OB","2":"2 F N K D G E A B C d J M H I O P Q R S T U V W X Y Z a"},E:{"1":"5 D G E A B C TB UB VB p YB","2":"F N K PB HB RB SB"},F:{"1":"0 1 5 6 8 B C O P Q R S T U V W X Y Z a b c e f g h i j k l m n o L q r s t u v w x y z bB cB p eB","2":"E J M H I ZB aB"},G:{"1":"G jB kB lB mB nB oB pB qB rB sB","2":"HB fB EB hB JB"},H:{"1":"tB"},I:{"1":"4 yB zB","2":"BB F uB vB wB xB EB"},J:{"1":"A","2":"D"},K:{"1":"5 8 B C L p","2":"A"},L:{"1":"IB"},M:{"1":"3"},N:{"1":"A B"},O:{"1":"0B"},P:{"1":"F 1B 2B 3B 4B"},Q:{"1":"5B"},R:{"1":"6B"}},B:4,C:"CSS background-repeat round and space"}; module.exports={A:{A:{"1":"A B","2":"K D G iB","132":"E"},B:{"1":"2 C d J M H I"},C:{"1":"0 1 3 4 7 8 9 s t u v w x y z HB GB BB CB FB","2":"2 6 fB DB F N K D G E A B C d J M H I O P Q R S T U V W X Y Z a b c e f g h i j k l m n o L q r ZB YB"},D:{"1":"0 1 3 4 6 7 8 9 b c e f g h i j k l m n o L q r s t u v w x y z HB GB BB CB FB SB NB LB kB MB JB OB PB QB","2":"2 F N K D G E A B C d J M H I O P Q R S T U V W X Y Z a"},E:{"1":"5 D G E A B C VB WB XB p aB","2":"F N K RB IB TB UB"},F:{"1":"0 1 5 6 B C O P Q R S T U V W X Y Z a b c e f g h i j k l m n o L q r s t u v w x y z dB eB p AB gB","2":"E J M H I bB cB"},G:{"1":"G lB mB nB oB pB qB rB sB tB uB","2":"IB hB EB jB KB"},H:{"1":"vB"},I:{"1":"4 0B 1B","2":"DB F wB xB yB zB EB"},J:{"1":"A","2":"D"},K:{"1":"5 B C L p AB","2":"A"},L:{"1":"JB"},M:{"1":"3"},N:{"1":"A B"},O:{"1":"2B"},P:{"1":"F 3B 4B 5B 6B 7B"},Q:{"1":"8B"},R:{"1":"9B"},S:{"2":"AC"}},B:4,C:"CSS background-repeat round and space"};

View File

@@ -1 +1 @@
module.exports={A:{A:{"2":"K D G E A B gB"},B:{"2":"2 C d J M H I"},C:{"2":"0 1 2 3 6 7 9 dB BB F N K D G E A B C d J M H I O P Q R S T U V W X Y Z a b c e f g h i j k l m n o L q r s t u v w x y z GB FB AB CB XB WB","16":"4 DB"},D:{"1":"0 1 3 4 7 9 s t u v w x y z GB FB AB CB DB QB iB KB IB LB MB NB OB","2":"2 6 F N K D G E A B C d J M H I O P Q R S T U V W X Y Z a b c e f g h i j k l m n o L q r"},E:{"2":"5 F N K D G E A B C PB HB RB SB TB UB VB p YB"},F:{"1":"0 1 f g h i j k l m n o L q r s t u v w x y z","2":"5 6 8 E B C J M H I O P Q R S T U V W X Y Z a b c e ZB aB bB cB p eB"},G:{"2":"G HB fB EB hB JB jB kB lB mB nB oB pB qB rB sB"},H:{"2":"tB"},I:{"2":"4 BB F uB vB wB xB EB yB zB"},J:{"2":"D A"},K:{"1":"L","2":"5 8 A B C p"},L:{"1":"IB"},M:{"2":"3"},N:{"2":"A B"},O:{"1":"0B"},P:{"1":"1B 2B 3B 4B","2":"F"},Q:{"1":"5B"},R:{"2":"6B"}},B:7,C:"Background Sync API"}; module.exports={A:{A:{"2":"K D G E A B iB"},B:{"2":"2 C d J M H I"},C:{"2":"0 1 2 3 6 7 8 9 fB DB F N K D G E A B C d J M H I O P Q R S T U V W X Y Z a b c e f g h i j k l m n o L q r s t u v w x y z HB GB BB CB ZB YB","16":"4 FB"},D:{"1":"0 1 3 4 7 8 9 s t u v w x y z HB GB BB CB FB SB NB LB kB MB JB OB PB QB","2":"2 6 F N K D G E A B C d J M H I O P Q R S T U V W X Y Z a b c e f g h i j k l m n o L q r"},E:{"2":"5 F N K D G E A B C RB IB TB UB VB WB XB p aB"},F:{"1":"0 1 f g h i j k l m n o L q r s t u v w x y z","2":"5 6 E B C J M H I O P Q R S T U V W X Y Z a b c e bB cB dB eB p AB gB"},G:{"2":"G IB hB EB jB KB lB mB nB oB pB qB rB sB tB uB"},H:{"2":"vB"},I:{"1":"4","2":"DB F wB xB yB zB EB 0B 1B"},J:{"2":"D A"},K:{"1":"L","2":"5 A B C p AB"},L:{"1":"JB"},M:{"2":"3"},N:{"2":"A B"},O:{"1":"2B"},P:{"1":"3B 4B 5B 6B 7B","2":"F"},Q:{"1":"8B"},R:{"2":"9B"},S:{"2":"AC"}},B:7,C:"Background Sync API"};

View File

@@ -1 +1 @@
module.exports={A:{A:{"2":"K D G E A B gB"},B:{"2":"2 C d J M H I"},C:{"1":"m n o L q r s t u","2":"0 1 3 4 7 9 dB BB F N K D G E v w x y z GB FB AB CB DB XB WB","132":"6 M H I O P Q R S T U V W X Y Z a b c e f g h i j k l","164":"2 A B C d J"},D:{"1":"0 1 3 4 7 9 h i j k l m n o L q r s t u v w x y z GB FB AB CB DB QB iB KB IB LB MB NB OB","2":"2 6 F N K D G E A B C d J M H I O P Q R S T U V W X Y Z a b c e f","66":"g"},E:{"2":"5 F N K D G E A B C PB HB RB SB TB UB VB p YB"},F:{"1":"0 1 6 U V W X Y Z a b c e f g h i j k l m n o L q r s t u v w x y z","2":"5 8 E B C J M H I O P Q R S T ZB aB bB cB p eB"},G:{"2":"G HB fB EB hB JB jB kB lB mB nB oB pB qB rB sB"},H:{"2":"tB"},I:{"1":"4","2":"BB F uB vB wB xB EB yB zB"},J:{"2":"D A"},K:{"1":"L","2":"5 8 A B C p"},L:{"1":"IB"},M:{"1":"3"},N:{"2":"A B"},O:{"1":"0B"},P:{"1":"F 1B 2B 3B 4B"},Q:{"2":"5B"},R:{"1":"6B"}},B:4,C:"Battery Status API"}; module.exports={A:{A:{"2":"K D G E A B iB"},B:{"2":"2 C d J M H I"},C:{"1":"m n o L q r s t u","2":"0 1 3 4 7 8 9 fB DB F N K D G E v w x y z HB GB BB CB FB ZB YB","132":"6 M H I O P Q R S T U V W X Y Z a b c e f g h i j k l","164":"2 A B C d J"},D:{"1":"0 1 3 4 7 8 9 h i j k l m n o L q r s t u v w x y z HB GB BB CB FB SB NB LB kB MB JB OB PB QB","2":"2 6 F N K D G E A B C d J M H I O P Q R S T U V W X Y Z a b c e f","66":"g"},E:{"2":"5 F N K D G E A B C RB IB TB UB VB WB XB p aB"},F:{"1":"0 1 6 U V W X Y Z a b c e f g h i j k l m n o L q r s t u v w x y z","2":"5 E B C J M H I O P Q R S T bB cB dB eB p AB gB"},G:{"2":"G IB hB EB jB KB lB mB nB oB pB qB rB sB tB uB"},H:{"2":"vB"},I:{"1":"4","2":"DB F wB xB yB zB EB 0B 1B"},J:{"2":"D A"},K:{"1":"L","2":"5 A B C p AB"},L:{"1":"JB"},M:{"1":"3"},N:{"2":"A B"},O:{"1":"2B"},P:{"1":"F 3B 4B 5B 6B 7B"},Q:{"2":"8B"},R:{"1":"9B"},S:{"1":"AC"}},B:4,C:"Battery Status API"};

View File

@@ -1 +1 @@
module.exports={A:{A:{"2":"K D G E A B gB"},B:{"1":"d J M H I","2":"2 C"},C:{"1":"0 1 3 4 6 7 9 a b c e f g h i j k l m n o L q r s t u v w x y z GB FB AB CB DB","2":"2 dB BB F N K D G E A B C d J M H I O P Q R S T U V W X Y Z XB WB"},D:{"1":"0 1 3 4 7 9 i j k l m n o L q r s t u v w x y z GB FB AB CB DB QB iB KB IB LB MB NB OB","2":"2 6 F N K D G E A B C d J M H I O P Q R S T U V W X Y Z a b c e f g h"},E:{"1":"5 C p YB","2":"F N K D G E A B PB HB RB SB TB UB VB"},F:{"1":"0 1 6 V W X Y Z a b c e f g h i j k l m n o L q r s t u v w x y z","2":"5 8 E B C J M H I O P Q R S T U ZB aB bB cB p eB"},G:{"1":"qB rB sB","2":"G HB fB EB hB JB jB kB lB mB nB oB pB"},H:{"2":"tB"},I:{"1":"4","2":"BB F uB vB wB xB EB yB zB"},J:{"2":"D A"},K:{"1":"L","2":"5 8 A B C p"},L:{"1":"IB"},M:{"1":"3"},N:{"2":"A B"},O:{"1":"0B"},P:{"1":"F 1B 2B 3B 4B"},Q:{"1":"5B"},R:{"1":"6B"}},B:5,C:"Beacon API"}; module.exports={A:{A:{"2":"K D G E A B iB"},B:{"1":"d J M H I","2":"2 C"},C:{"1":"0 1 3 4 6 7 8 9 a b c e f g h i j k l m n o L q r s t u v w x y z HB GB BB CB FB","2":"2 fB DB F N K D G E A B C d J M H I O P Q R S T U V W X Y Z ZB YB"},D:{"1":"0 1 3 4 7 8 9 i j k l m n o L q r s t u v w x y z HB GB BB CB FB SB NB LB kB MB JB OB PB QB","2":"2 6 F N K D G E A B C d J M H I O P Q R S T U V W X Y Z a b c e f g h"},E:{"1":"5 C p aB","2":"F N K D G E A B RB IB TB UB VB WB XB"},F:{"1":"0 1 6 V W X Y Z a b c e f g h i j k l m n o L q r s t u v w x y z","2":"5 E B C J M H I O P Q R S T U bB cB dB eB p AB gB"},G:{"1":"sB tB uB","2":"G IB hB EB jB KB lB mB nB oB pB qB rB"},H:{"2":"vB"},I:{"1":"4","2":"DB F wB xB yB zB EB 0B 1B"},J:{"2":"D A"},K:{"1":"L","2":"5 A B C p AB"},L:{"1":"JB"},M:{"1":"3"},N:{"2":"A B"},O:{"1":"2B"},P:{"1":"F 3B 4B 5B 6B 7B"},Q:{"1":"8B"},R:{"1":"9B"},S:{"1":"AC"}},B:5,C:"Beacon API"};

View File

@@ -1 +1 @@
module.exports={A:{A:{"1":"K D G E A B","16":"gB"},B:{"1":"2 C d J M H I"},C:{"1":"0 1 2 3 4 6 7 9 K D G E A B C d J M H I O P Q R S T U V W X Y Z a b c e f g h i j k l m n o L q r s t u v w x y z GB FB AB CB DB","2":"dB BB F N XB WB"},D:{"1":"3 4 AB CB DB QB iB KB IB LB MB NB OB","2":"0 1 2 6 7 9 F N K D G E A B C d J M H I O P Q R S T U V W X Y Z a b c e f g h i j k l m n o L q r s t u v w x y z GB FB"},E:{"2":"5 F N K D G E A B C PB HB RB SB TB UB VB p YB"},F:{"1":"0 1 t u v w x y z","2":"5 6 8 E B C J M H I O P Q R S T U V W X Y Z a b c e f g h i j k l m n o L q r s ZB aB bB cB p eB"},G:{"2":"G HB fB EB hB JB jB kB lB mB nB oB pB qB rB sB"},H:{"2":"tB"},I:{"2":"4 BB F uB vB wB xB EB yB zB"},J:{"16":"D A"},K:{"2":"5 8 A B C L p"},L:{"1":"IB"},M:{"1":"3"},N:{"16":"A B"},O:{"16":"0B"},P:{"2":"1B 2B 3B 4B","16":"F"},Q:{"2":"5B"},R:{"2":"6B"}},B:2,C:"Printing Events"}; module.exports={A:{A:{"1":"K D G E A B","16":"iB"},B:{"1":"2 C d J M H I"},C:{"1":"0 1 2 3 4 6 7 8 9 K D G E A B C d J M H I O P Q R S T U V W X Y Z a b c e f g h i j k l m n o L q r s t u v w x y z HB GB BB CB FB","2":"fB DB F N ZB YB"},D:{"1":"3 4 GB BB CB FB SB NB LB kB MB JB OB PB QB","2":"0 1 2 6 7 8 9 F N K D G E A B C d J M H I O P Q R S T U V W X Y Z a b c e f g h i j k l m n o L q r s t u v w x y z HB"},E:{"2":"5 F N K D G E A B C RB IB TB UB VB WB XB p aB"},F:{"1":"0 1 t u v w x y z","2":"5 6 E B C J M H I O P Q R S T U V W X Y Z a b c e f g h i j k l m n o L q r s bB cB dB eB p AB gB"},G:{"2":"G IB hB EB jB KB lB mB nB oB pB qB rB sB tB uB"},H:{"2":"vB"},I:{"2":"4 DB F wB xB yB zB EB 0B 1B"},J:{"16":"D A"},K:{"2":"5 A B C L p AB"},L:{"1":"JB"},M:{"1":"3"},N:{"16":"A B"},O:{"16":"2B"},P:{"2":"3B 4B 5B 6B 7B","16":"F"},Q:{"2":"8B"},R:{"2":"9B"},S:{"1":"AC"}},B:2,C:"Printing Events"};

View File

@@ -1 +1 @@
module.exports={A:{A:{"1":"A B","2":"K D G E gB"},B:{"1":"2 C d J M H I"},C:{"1":"0 1 2 3 4 6 7 9 d J M H I O P Q R S T U V W X Y Z a b c e f g h i j k l m n o L q r s t u v w x y z GB FB AB CB DB","2":"dB BB F N XB WB","36":"K D G E A B C"},D:{"1":"0 1 3 4 6 7 9 P Q R S T U V W X Y Z a b c e f g h i j k l m n o L q r s t u v w x y z GB FB AB CB DB QB iB KB IB LB MB NB OB","2":"F N K D","36":"2 G E A B C d J M H I O"},E:{"1":"5 K D G E A B C SB TB UB VB p YB","2":"F N PB HB RB"},F:{"1":"0 1 5 6 J M H I O P Q R S T U V W X Y Z a b c e f g h i j k l m n o L q r s t u v w x y z","2":"8 E B C ZB aB bB cB p eB"},G:{"1":"G JB jB kB lB mB nB oB pB qB rB sB","2":"HB fB EB hB"},H:{"2":"tB"},I:{"1":"4","2":"uB vB wB","36":"BB F xB EB yB zB"},J:{"1":"A","2":"D"},K:{"1":"5 L","2":"8 A B C p"},L:{"1":"IB"},M:{"1":"3"},N:{"1":"A B"},O:{"1":"0B"},P:{"1":"F 1B 2B 3B 4B"},Q:{"1":"5B"},R:{"1":"6B"}},B:5,C:"Blob constructing"}; module.exports={A:{A:{"1":"A B","2":"K D G E iB"},B:{"1":"2 C d J M H I"},C:{"1":"0 1 2 3 4 6 7 8 9 d J M H I O P Q R S T U V W X Y Z a b c e f g h i j k l m n o L q r s t u v w x y z HB GB BB CB FB","2":"fB DB F N ZB YB","36":"K D G E A B C"},D:{"1":"0 1 3 4 6 7 8 9 P Q R S T U V W X Y Z a b c e f g h i j k l m n o L q r s t u v w x y z HB GB BB CB FB SB NB LB kB MB JB OB PB QB","2":"F N K D","36":"2 G E A B C d J M H I O"},E:{"1":"5 K D G E A B C UB VB WB XB p aB","2":"F N RB IB TB"},F:{"1":"0 1 5 6 J M H I O P Q R S T U V W X Y Z a b c e f g h i j k l m n o L q r s t u v w x y z","2":"E B C bB cB dB eB p AB gB"},G:{"1":"G KB lB mB nB oB pB qB rB sB tB uB","2":"IB hB EB jB"},H:{"2":"vB"},I:{"1":"4","2":"wB xB yB","36":"DB F zB EB 0B 1B"},J:{"1":"A","2":"D"},K:{"1":"5 L","2":"A B C p AB"},L:{"1":"JB"},M:{"1":"3"},N:{"1":"A B"},O:{"1":"2B"},P:{"1":"F 3B 4B 5B 6B 7B"},Q:{"1":"8B"},R:{"1":"9B"},S:{"1":"AC"}},B:5,C:"Blob constructing"};

View File

@@ -1 +1 @@
module.exports={A:{A:{"2":"K D G E gB","129":"A B"},B:{"1":"J M H I","129":"2 C d"},C:{"1":"0 1 2 3 4 6 7 9 F N K D G E A B C d J M H I O P Q R S T U V W X Y Z a b c e f g h i j k l m n o L q r s t u v w x y z GB FB AB CB DB","2":"dB BB XB WB"},D:{"1":"0 1 3 4 6 7 9 S T U V W X Y Z a b c e f g h i j k l m n o L q r s t u v w x y z GB FB AB CB DB QB iB KB IB LB MB NB OB","2":"F N K D","33":"2 G E A B C d J M H I O P Q R"},E:{"1":"5 D G E A B C SB TB UB VB p YB","2":"F N PB HB RB","33":"K"},F:{"1":"0 1 6 J M H I O P Q R S T U V W X Y Z a b c e f g h i j k l m n o L q r s t u v w x y z","2":"5 8 E B C ZB aB bB cB p eB"},G:{"1":"G jB kB lB mB nB oB pB qB rB sB","2":"HB fB EB hB","33":"JB"},H:{"2":"tB"},I:{"1":"4 yB zB","2":"BB uB vB wB","33":"F xB EB"},J:{"1":"A","2":"D"},K:{"1":"L","2":"5 8 A B C p"},L:{"1":"IB"},M:{"1":"3"},N:{"1":"B","2":"A"},O:{"1":"0B"},P:{"1":"F 1B 2B 3B 4B"},Q:{"1":"5B"},R:{"1":"6B"}},B:5,C:"Blob URLs"}; module.exports={A:{A:{"2":"K D G E iB","129":"A B"},B:{"1":"J M H I","129":"2 C d"},C:{"1":"0 1 2 3 4 6 7 8 9 F N K D G E A B C d J M H I O P Q R S T U V W X Y Z a b c e f g h i j k l m n o L q r s t u v w x y z HB GB BB CB FB","2":"fB DB ZB YB"},D:{"1":"0 1 3 4 6 7 8 9 S T U V W X Y Z a b c e f g h i j k l m n o L q r s t u v w x y z HB GB BB CB FB SB NB LB kB MB JB OB PB QB","2":"F N K D","33":"2 G E A B C d J M H I O P Q R"},E:{"1":"5 D G E A B C UB VB WB XB p aB","2":"F N RB IB TB","33":"K"},F:{"1":"0 1 6 J M H I O P Q R S T U V W X Y Z a b c e f g h i j k l m n o L q r s t u v w x y z","2":"5 E B C bB cB dB eB p AB gB"},G:{"1":"G lB mB nB oB pB qB rB sB tB uB","2":"IB hB EB jB","33":"KB"},H:{"2":"vB"},I:{"1":"4 0B 1B","2":"DB wB xB yB","33":"F zB EB"},J:{"1":"A","2":"D"},K:{"1":"L","2":"5 A B C p AB"},L:{"1":"JB"},M:{"1":"3"},N:{"1":"B","2":"A"},O:{"1":"2B"},P:{"1":"F 3B 4B 5B 6B 7B"},Q:{"1":"8B"},R:{"1":"9B"},S:{"1":"AC"}},B:5,C:"Blob URLs"};

View File

@@ -1 +1 @@
module.exports={A:{A:{"1":"B","2":"K D G E A gB"},B:{"1":"d J M H I","129":"2 C"},C:{"1":"0 1 3 4 7 9 t u v w x y z GB FB AB CB DB","2":"dB BB","260":"6 J M H I O P Q R S T U V W X Y Z a b c e f g h i j k l m n o L q r s","804":"2 F N K D G E A B C d XB WB"},D:{"1":"0 1 3 4 7 9 z GB FB AB CB DB QB iB KB IB LB MB NB OB","260":"u v w x y","388":"6 Z a b c e f g h i j k l m n o L q r s t","1412":"J M H I O P Q R S T U V W X Y","1956":"2 F N K D G E A B C d"},E:{"129":"5 A B C UB VB p YB","1412":"K D G E SB TB","1956":"F N PB HB RB"},F:{"1":"0 1 m n o L q r s t u v w x y z","2":"E ZB aB","260":"h i j k l","388":"6 J M H I O P Q R S T U V W X Y Z a b c e f g","1796":"bB cB","1828":"5 8 B C p eB"},G:{"129":"mB nB oB pB qB rB sB","1412":"G JB jB kB lB","1956":"HB fB EB hB"},H:{"1828":"tB"},I:{"388":"4 yB zB","1956":"BB F uB vB wB xB EB"},J:{"1412":"A","1924":"D"},K:{"2":"A","388":"L","1828":"5 8 B C p"},L:{"1":"IB"},M:{"1":"3"},N:{"1":"B","2":"A"},O:{"388":"0B"},P:{"1":"3B 4B","260":"1B 2B","388":"F"},Q:{"260":"5B"},R:{"260":"6B"}},B:4,C:"CSS3 Border images"}; module.exports={A:{A:{"1":"B","2":"K D G E A iB"},B:{"1":"d J M H I","129":"2 C"},C:{"1":"0 1 3 4 7 8 9 t u v w x y z HB GB BB CB FB","2":"fB DB","260":"6 J M H I O P Q R S T U V W X Y Z a b c e f g h i j k l m n o L q r s","804":"2 F N K D G E A B C d ZB YB"},D:{"1":"0 1 3 4 7 8 9 z HB GB BB CB FB SB NB LB kB MB JB OB PB QB","260":"u v w x y","388":"6 Z a b c e f g h i j k l m n o L q r s t","1412":"J M H I O P Q R S T U V W X Y","1956":"2 F N K D G E A B C d"},E:{"129":"5 A B C WB XB p aB","1412":"K D G E UB VB","1956":"F N RB IB TB"},F:{"1":"0 1 m n o L q r s t u v w x y z","2":"E bB cB","260":"h i j k l","388":"6 J M H I O P Q R S T U V W X Y Z a b c e f g","1796":"dB eB","1828":"5 B C p AB gB"},G:{"129":"oB pB qB rB sB tB uB","1412":"G KB lB mB nB","1956":"IB hB EB jB"},H:{"1828":"vB"},I:{"388":"4 0B 1B","1956":"DB F wB xB yB zB EB"},J:{"1412":"A","1924":"D"},K:{"2":"A","388":"L","1828":"5 B C p AB"},L:{"1":"JB"},M:{"1":"3"},N:{"1":"B","2":"A"},O:{"388":"2B"},P:{"1":"5B 6B 7B","260":"3B 4B","388":"F"},Q:{"260":"8B"},R:{"260":"9B"},S:{"260":"AC"}},B:4,C:"CSS3 Border images"};

View File

@@ -1 +1 @@
module.exports={A:{A:{"1":"E A B","2":"K D G gB"},B:{"1":"2 C d J M H I"},C:{"1":"0 1 3 4 7 9 t u v w x y z GB FB AB CB DB","257":"2 6 F N K D G E A B C d J M H I O P Q R S T U V W X Y Z a b c e f g h i j k l m n o L q r s","289":"BB XB WB","292":"dB"},D:{"1":"0 1 2 3 4 6 7 9 N K D G E A B C d J M H I O P Q R S T U V W X Y Z a b c e f g h i j k l m n o L q r s t u v w x y z GB FB AB CB DB QB iB KB IB LB MB NB OB","33":"F"},E:{"1":"5 N D G E A B C TB UB VB p YB","33":"F PB HB","129":"K RB SB"},F:{"1":"0 1 5 6 8 B C J M H I O P Q R S T U V W X Y Z a b c e f g h i j k l m n o L q r s t u v w x y z bB cB p eB","2":"E ZB aB"},G:{"1":"G fB EB hB JB jB kB lB mB nB oB pB qB rB sB","33":"HB"},H:{"2":"tB"},I:{"1":"4 BB F vB wB xB EB yB zB","33":"uB"},J:{"1":"D A"},K:{"1":"5 8 B C L p","2":"A"},L:{"1":"IB"},M:{"1":"3"},N:{"1":"A B"},O:{"1":"0B"},P:{"1":"F 1B 2B 3B 4B"},Q:{"1":"5B"},R:{"1":"6B"}},B:4,C:"CSS3 Border-radius (rounded corners)"}; module.exports={A:{A:{"1":"E A B","2":"K D G iB"},B:{"1":"2 C d J M H I"},C:{"1":"0 1 3 4 7 8 9 t u v w x y z HB GB BB CB FB","257":"2 6 F N K D G E A B C d J M H I O P Q R S T U V W X Y Z a b c e f g h i j k l m n o L q r s","289":"DB ZB YB","292":"fB"},D:{"1":"0 1 2 3 4 6 7 8 9 N K D G E A B C d J M H I O P Q R S T U V W X Y Z a b c e f g h i j k l m n o L q r s t u v w x y z HB GB BB CB FB SB NB LB kB MB JB OB PB QB","33":"F"},E:{"1":"5 N D G E A B C VB WB XB p aB","33":"F RB IB","129":"K TB UB"},F:{"1":"0 1 5 6 B C J M H I O P Q R S T U V W X Y Z a b c e f g h i j k l m n o L q r s t u v w x y z dB eB p AB gB","2":"E bB cB"},G:{"1":"G hB EB jB KB lB mB nB oB pB qB rB sB tB uB","33":"IB"},H:{"2":"vB"},I:{"1":"4 DB F xB yB zB EB 0B 1B","33":"wB"},J:{"1":"D A"},K:{"1":"5 B C L p AB","2":"A"},L:{"1":"JB"},M:{"1":"3"},N:{"1":"A B"},O:{"1":"2B"},P:{"1":"F 3B 4B 5B 6B 7B"},Q:{"1":"8B"},R:{"1":"9B"},S:{"257":"AC"}},B:4,C:"CSS3 Border-radius (rounded corners)"};

View File

@@ -1 +1 @@
module.exports={A:{A:{"2":"K D G E A B gB"},B:{"2":"2 C d J M H I"},C:{"1":"0 1 3 4 7 9 h i j k l m n o L q r s t u v w x y z GB FB AB CB DB","2":"2 6 dB BB F N K D G E A B C d J M H I O P Q R S T U V W X Y Z a b c e f g XB WB"},D:{"1":"0 1 3 4 7 9 x y z GB FB AB CB DB QB iB KB IB LB MB NB OB","2":"2 6 F N K D G E A B C d J M H I O P Q R S T U V W X Y Z a b c e f g h i j k l m n o L q r s t u v w"},E:{"2":"5 F N K D G E A B C PB HB RB SB TB UB VB p YB"},F:{"1":"0 1 k l m n o L q r s t u v w x y z","2":"5 6 8 E B C J M H I O P Q R S T U V W X Y Z a b c e f g h i j ZB aB bB cB p eB"},G:{"2":"G HB fB EB hB JB jB kB lB mB nB oB pB qB rB sB"},H:{"2":"tB"},I:{"1":"4","2":"BB F uB vB wB xB EB yB zB"},J:{"2":"D A"},K:{"1":"L","2":"5 8 A B C p"},L:{"1":"IB"},M:{"1":"3"},N:{"2":"A B"},O:{"1":"0B"},P:{"1":"3B 4B","2":"F 1B 2B"},Q:{"2":"5B"},R:{"2":"6B"}},B:1,C:"BroadcastChannel"}; module.exports={A:{A:{"2":"K D G E A B iB"},B:{"2":"2 C d J M H I"},C:{"1":"0 1 3 4 7 8 9 h i j k l m n o L q r s t u v w x y z HB GB BB CB FB","2":"2 6 fB DB F N K D G E A B C d J M H I O P Q R S T U V W X Y Z a b c e f g ZB YB"},D:{"1":"0 1 3 4 7 8 9 x y z HB GB BB CB FB SB NB LB kB MB JB OB PB QB","2":"2 6 F N K D G E A B C d J M H I O P Q R S T U V W X Y Z a b c e f g h i j k l m n o L q r s t u v w"},E:{"2":"5 F N K D G E A B C RB IB TB UB VB WB XB p aB"},F:{"1":"0 1 k l m n o L q r s t u v w x y z","2":"5 6 E B C J M H I O P Q R S T U V W X Y Z a b c e f g h i j bB cB dB eB p AB gB"},G:{"2":"G IB hB EB jB KB lB mB nB oB pB qB rB sB tB uB"},H:{"2":"vB"},I:{"1":"4","2":"DB F wB xB yB zB EB 0B 1B"},J:{"2":"D A"},K:{"1":"L","2":"5 A B C p AB"},L:{"1":"JB"},M:{"1":"3"},N:{"2":"A B"},O:{"1":"2B"},P:{"1":"5B 6B 7B","2":"F 3B 4B"},Q:{"2":"8B"},R:{"2":"9B"},S:{"1":"AC"}},B:1,C:"BroadcastChannel"};

View File

@@ -1 +1 @@
module.exports={A:{A:{"2":"K D G E A B gB"},B:{"1":"J M H I","2":"2 C d"},C:{"1":"0 1 3 4 7 9 n o L q r s t u v w x y z GB FB AB CB DB","2":"2 6 dB BB F N K D G E A B C d J M H I O P Q R S T U V W X Y Z a b c e f g h i j k l m XB WB"},D:{"1":"0 1 3 4 7 9 u v w x y z GB FB AB CB DB QB iB KB IB LB MB NB OB","2":"2 6 F N K D G E A B C d J M H I O P Q R S T U V W X Y Z a b c e f g h i j k l m n o L q r","194":"s","257":"t"},E:{"2":"F N K D G E A PB HB RB SB TB UB VB","513":"5 B C p YB"},F:{"1":"0 1 h i j k l m n o L q r s t u v w x y z","2":"5 6 8 E B C J M H I O P Q R S T U V W X Y Z a b c e ZB aB bB cB p eB","194":"f g"},G:{"1":"pB qB rB sB","2":"G HB fB EB hB JB jB kB lB mB nB oB"},H:{"2":"tB"},I:{"2":"BB F uB vB wB xB EB yB zB","257":"4"},J:{"2":"D A"},K:{"1":"L","2":"5 8 A B C p"},L:{"1":"IB"},M:{"1":"3"},N:{"2":"A B"},O:{"1":"0B"},P:{"1":"1B 2B 3B 4B","2":"F"},Q:{"1":"5B"},R:{"2":"6B"}},B:6,C:"Brotli Accept-Encoding/Content-Encoding"}; module.exports={A:{A:{"2":"K D G E A B iB"},B:{"1":"J M H I","2":"2 C d"},C:{"1":"0 1 3 4 7 8 9 n o L q r s t u v w x y z HB GB BB CB FB","2":"2 6 fB DB F N K D G E A B C d J M H I O P Q R S T U V W X Y Z a b c e f g h i j k l m ZB YB"},D:{"1":"0 1 3 4 7 8 9 u v w x y z HB GB BB CB FB SB NB LB kB MB JB OB PB QB","2":"2 6 F N K D G E A B C d J M H I O P Q R S T U V W X Y Z a b c e f g h i j k l m n o L q r","194":"s","257":"t"},E:{"2":"F N K D G E A RB IB TB UB VB WB XB","513":"5 B C p aB"},F:{"1":"0 1 h i j k l m n o L q r s t u v w x y z","2":"5 6 E B C J M H I O P Q R S T U V W X Y Z a b c e bB cB dB eB p AB gB","194":"f g"},G:{"1":"rB sB tB uB","2":"G IB hB EB jB KB lB mB nB oB pB qB"},H:{"2":"vB"},I:{"2":"DB F wB xB yB zB EB 0B 1B","257":"4"},J:{"2":"D A"},K:{"1":"L","2":"5 A B C p AB"},L:{"1":"JB"},M:{"1":"3"},N:{"2":"A B"},O:{"1":"2B"},P:{"1":"3B 4B 5B 6B 7B","2":"F"},Q:{"1":"8B"},R:{"2":"9B"},S:{"1":"AC"}},B:6,C:"Brotli Accept-Encoding/Content-Encoding"};

View File

@@ -1 +1 @@
module.exports={A:{A:{"2":"K D G gB","260":"E","516":"A B"},B:{"1":"2 C d J M H I"},C:{"1":"0 1 3 4 6 7 9 M H I O P Q R S T U V W X Y Z a b c e f g h i j k l m n o L q r s t u v w x y z GB FB AB CB DB","2":"dB BB XB WB","33":"2 F N K D G E A B C d J"},D:{"1":"0 1 3 4 6 7 9 V W X Y Z a b c e f g h i j k l m n o L q r s t u v w x y z GB FB AB CB DB QB iB KB IB LB MB NB OB","2":"2 F N K D G E A B C d J M H I","33":"O P Q R S T U"},E:{"1":"5 D G E A B C SB TB UB VB p YB","2":"F N PB HB RB","33":"K"},F:{"1":"0 1 6 J M H I O P Q R S T U V W X Y Z a b c e f g h i j k l m n o L q r s t u v w x y z","2":"5 8 E B C ZB aB bB cB p eB"},G:{"1":"G jB kB lB mB nB oB pB qB rB sB","2":"HB fB EB hB","33":"JB"},H:{"2":"tB"},I:{"1":"4","2":"BB F uB vB wB xB EB","132":"yB zB"},J:{"1":"A","2":"D"},K:{"1":"L","2":"5 8 A B C p"},L:{"1":"IB"},M:{"1":"3"},N:{"1":"A B"},O:{"1":"0B"},P:{"1":"F 1B 2B 3B 4B"},Q:{"1":"5B"},R:{"1":"6B"}},B:4,C:"calc() as CSS unit value"}; module.exports={A:{A:{"2":"K D G iB","260":"E","516":"A B"},B:{"1":"2 C d J M H I"},C:{"1":"0 1 3 4 6 7 8 9 M H I O P Q R S T U V W X Y Z a b c e f g h i j k l m n o L q r s t u v w x y z HB GB BB CB FB","2":"fB DB ZB YB","33":"2 F N K D G E A B C d J"},D:{"1":"0 1 3 4 6 7 8 9 V W X Y Z a b c e f g h i j k l m n o L q r s t u v w x y z HB GB BB CB FB SB NB LB kB MB JB OB PB QB","2":"2 F N K D G E A B C d J M H I","33":"O P Q R S T U"},E:{"1":"5 D G E A B C UB VB WB XB p aB","2":"F N RB IB TB","33":"K"},F:{"1":"0 1 6 J M H I O P Q R S T U V W X Y Z a b c e f g h i j k l m n o L q r s t u v w x y z","2":"5 E B C bB cB dB eB p AB gB"},G:{"1":"G lB mB nB oB pB qB rB sB tB uB","2":"IB hB EB jB","33":"KB"},H:{"2":"vB"},I:{"1":"4","2":"DB F wB xB yB zB EB","132":"0B 1B"},J:{"1":"A","2":"D"},K:{"1":"L","2":"5 A B C p AB"},L:{"1":"JB"},M:{"1":"3"},N:{"1":"A B"},O:{"1":"2B"},P:{"1":"F 3B 4B 5B 6B 7B"},Q:{"1":"8B"},R:{"1":"9B"},S:{"1":"AC"}},B:4,C:"calc() as CSS unit value"};

View File

@@ -1 +1 @@
module.exports={A:{A:{"2":"K D G E A B gB"},B:{"1":"2 d J M H I","2":"C"},C:{"1":"0 1 3 4 6 7 9 P Q R S T U V W X Y Z a b c e f g h i j k l m n o L q r s t u v w x y z GB FB AB CB DB","2":"2 dB BB F N K D G E A B C d J M H I O XB WB"},D:{"1":"0 1 3 4 6 7 9 Z a b c e f g h i j k l m n o L q r s t u v w x y z GB FB AB CB DB QB iB KB IB LB MB NB OB","2":"2 F N K D G E A B C d J M H I O P Q R S T U V W X Y"},E:{"1":"5 D G E A B C SB TB UB VB p YB","2":"F N K PB HB RB"},F:{"1":"0 1 6 H I O P Q R S T U V W X Y Z a b c e f g h i j k l m n o L q r s t u v w x y z","2":"5 8 E B C J M ZB aB bB cB p eB"},G:{"1":"G jB kB lB mB nB oB pB qB rB sB","2":"HB fB EB hB JB"},H:{"2":"tB"},I:{"1":"4 yB zB","2":"BB F uB vB wB xB EB"},J:{"2":"D A"},K:{"1":"L","2":"5 8 A B C p"},L:{"1":"IB"},M:{"1":"3"},N:{"2":"A B"},O:{"1":"0B"},P:{"1":"F 1B 2B 3B 4B"},Q:{"1":"5B"},R:{"1":"6B"}},B:4,C:"Canvas blend modes"}; module.exports={A:{A:{"2":"K D G E A B iB"},B:{"1":"2 d J M H I","2":"C"},C:{"1":"0 1 3 4 6 7 8 9 P Q R S T U V W X Y Z a b c e f g h i j k l m n o L q r s t u v w x y z HB GB BB CB FB","2":"2 fB DB F N K D G E A B C d J M H I O ZB YB"},D:{"1":"0 1 3 4 6 7 8 9 Z a b c e f g h i j k l m n o L q r s t u v w x y z HB GB BB CB FB SB NB LB kB MB JB OB PB QB","2":"2 F N K D G E A B C d J M H I O P Q R S T U V W X Y"},E:{"1":"5 D G E A B C UB VB WB XB p aB","2":"F N K RB IB TB"},F:{"1":"0 1 6 H I O P Q R S T U V W X Y Z a b c e f g h i j k l m n o L q r s t u v w x y z","2":"5 E B C J M bB cB dB eB p AB gB"},G:{"1":"G lB mB nB oB pB qB rB sB tB uB","2":"IB hB EB jB KB"},H:{"2":"vB"},I:{"1":"4 0B 1B","2":"DB F wB xB yB zB EB"},J:{"2":"D A"},K:{"1":"L","2":"5 A B C p AB"},L:{"1":"JB"},M:{"1":"3"},N:{"2":"A B"},O:{"1":"2B"},P:{"1":"F 3B 4B 5B 6B 7B"},Q:{"1":"8B"},R:{"1":"9B"},S:{"1":"AC"}},B:4,C:"Canvas blend modes"};

View File

@@ -1 +1 @@
module.exports={A:{A:{"1":"E A B","2":"gB","8":"K D G"},B:{"1":"2 C d J M H I"},C:{"1":"0 1 2 3 4 6 7 9 F N K D G E A B C d J M H I O P Q R S T U V W X Y Z a b c e f g h i j k l m n o L q r s t u v w x y z GB FB AB CB DB XB WB","8":"dB BB"},D:{"1":"0 1 2 3 4 6 7 9 F N K D G E A B C d J M H I O P Q R S T U V W X Y Z a b c e f g h i j k l m n o L q r s t u v w x y z GB FB AB CB DB QB iB KB IB LB MB NB OB"},E:{"1":"5 F N K D G E A B C RB SB TB UB VB p YB","8":"PB HB"},F:{"1":"0 1 5 6 8 B C J M H I O P Q R S T U V W X Y Z a b c e f g h i j k l m n o L q r s t u v w x y z bB cB p eB","8":"E ZB aB"},G:{"1":"G HB fB EB hB JB jB kB lB mB nB oB pB qB rB sB"},H:{"2":"tB"},I:{"1":"4 BB F uB vB wB xB EB yB zB"},J:{"1":"D A"},K:{"1":"5 8 B C L p","8":"A"},L:{"1":"IB"},M:{"1":"3"},N:{"1":"A B"},O:{"1":"0B"},P:{"1":"F 1B 2B 3B 4B"},Q:{"1":"5B"},R:{"1":"6B"}},B:1,C:"Text API for Canvas"}; module.exports={A:{A:{"1":"E A B","2":"iB","8":"K D G"},B:{"1":"2 C d J M H I"},C:{"1":"0 1 2 3 4 6 7 8 9 F N K D G E A B C d J M H I O P Q R S T U V W X Y Z a b c e f g h i j k l m n o L q r s t u v w x y z HB GB BB CB FB ZB YB","8":"fB DB"},D:{"1":"0 1 2 3 4 6 7 8 9 F N K D G E A B C d J M H I O P Q R S T U V W X Y Z a b c e f g h i j k l m n o L q r s t u v w x y z HB GB BB CB FB SB NB LB kB MB JB OB PB QB"},E:{"1":"5 F N K D G E A B C TB UB VB WB XB p aB","8":"RB IB"},F:{"1":"0 1 5 6 B C J M H I O P Q R S T U V W X Y Z a b c e f g h i j k l m n o L q r s t u v w x y z dB eB p AB gB","8":"E bB cB"},G:{"1":"G IB hB EB jB KB lB mB nB oB pB qB rB sB tB uB"},H:{"2":"vB"},I:{"1":"4 DB F wB xB yB zB EB 0B 1B"},J:{"1":"D A"},K:{"1":"5 B C L p AB","8":"A"},L:{"1":"JB"},M:{"1":"3"},N:{"1":"A B"},O:{"1":"2B"},P:{"1":"F 3B 4B 5B 6B 7B"},Q:{"1":"8B"},R:{"1":"9B"},S:{"1":"AC"}},B:1,C:"Text API for Canvas"};

View File

@@ -1 +1 @@
module.exports={A:{A:{"1":"E A B","2":"gB","8":"K D G"},B:{"1":"2 C d J M H I"},C:{"1":"0 1 2 3 4 6 7 9 F N K D G E A B C d J M H I O P Q R S T U V W X Y Z a b c e f g h i j k l m n o L q r s t u v w x y z GB FB AB CB DB WB","132":"dB BB XB"},D:{"1":"0 1 2 3 4 6 7 9 F N K D G E A B C d J M H I O P Q R S T U V W X Y Z a b c e f g h i j k l m n o L q r s t u v w x y z GB FB AB CB DB QB iB KB IB LB MB NB OB"},E:{"1":"5 F N K D G E A B C RB SB TB UB VB p YB","132":"PB HB"},F:{"1":"0 1 5 6 8 E B C J M H I O P Q R S T U V W X Y Z a b c e f g h i j k l m n o L q r s t u v w x y z ZB aB bB cB p eB"},G:{"1":"G HB fB EB hB JB jB kB lB mB nB oB pB qB rB sB"},H:{"260":"tB"},I:{"1":"4 BB F xB EB yB zB","132":"uB vB wB"},J:{"1":"D A"},K:{"1":"5 8 A B C L p"},L:{"1":"IB"},M:{"1":"3"},N:{"1":"A B"},O:{"1":"0B"},P:{"1":"F 1B 2B 3B 4B"},Q:{"1":"5B"},R:{"1":"6B"}},B:1,C:"Canvas (basic support)"}; module.exports={A:{A:{"1":"E A B","2":"iB","8":"K D G"},B:{"1":"2 C d J M H I"},C:{"1":"0 1 2 3 4 6 7 8 9 F N K D G E A B C d J M H I O P Q R S T U V W X Y Z a b c e f g h i j k l m n o L q r s t u v w x y z HB GB BB CB FB YB","132":"fB DB ZB"},D:{"1":"0 1 2 3 4 6 7 8 9 F N K D G E A B C d J M H I O P Q R S T U V W X Y Z a b c e f g h i j k l m n o L q r s t u v w x y z HB GB BB CB FB SB NB LB kB MB JB OB PB QB"},E:{"1":"5 F N K D G E A B C TB UB VB WB XB p aB","132":"RB IB"},F:{"1":"0 1 5 6 E B C J M H I O P Q R S T U V W X Y Z a b c e f g h i j k l m n o L q r s t u v w x y z bB cB dB eB p AB gB"},G:{"1":"G IB hB EB jB KB lB mB nB oB pB qB rB sB tB uB"},H:{"260":"vB"},I:{"1":"4 DB F zB EB 0B 1B","132":"wB xB yB"},J:{"1":"D A"},K:{"1":"5 A B C L p AB"},L:{"1":"JB"},M:{"1":"3"},N:{"1":"A B"},O:{"1":"2B"},P:{"1":"F 3B 4B 5B 6B 7B"},Q:{"1":"8B"},R:{"1":"9B"},S:{"1":"AC"}},B:1,C:"Canvas (basic support)"};

View File

@@ -1 +1 @@
module.exports={A:{A:{"2":"K D G gB","132":"E A B"},B:{"1":"2 C d J M H I"},C:{"1":"0 1 2 3 4 6 7 9 dB BB F N K D G E A B C d J M H I O P Q R S T U V W X Y Z a b c e f g h i j k l m n o L q r s t u v w x y z GB FB AB CB DB XB WB"},D:{"1":"0 1 3 4 6 7 9 W X Y Z a b c e f g h i j k l m n o L q r s t u v w x y z GB FB AB CB DB QB iB KB IB LB MB NB OB","2":"2 F N K D G E A B C d J M H I O P Q R S T U V"},E:{"1":"5 D G E A B C TB UB VB p YB","2":"F N K PB HB RB SB"},F:{"1":"0 1 6 J M H I O P Q R S T U V W X Y Z a b c e f g h i j k l m n o L q r s t u v w x y z","2":"5 8 E B C ZB aB bB cB p eB"},G:{"1":"G jB kB lB mB nB oB pB qB rB sB","2":"HB fB EB hB JB"},H:{"2":"tB"},I:{"1":"4 yB zB","2":"BB F uB vB wB xB EB"},J:{"1":"A","2":"D"},K:{"1":"L","2":"5 8 A B C p"},L:{"1":"IB"},M:{"1":"3"},N:{"1":"A B"},O:{"1":"0B"},P:{"1":"F 1B 2B 3B 4B"},Q:{"1":"5B"},R:{"1":"6B"}},B:4,C:"ch (character) unit"}; module.exports={A:{A:{"2":"K D G iB","132":"E A B"},B:{"1":"2 C d J M H I"},C:{"1":"0 1 2 3 4 6 7 8 9 fB DB F N K D G E A B C d J M H I O P Q R S T U V W X Y Z a b c e f g h i j k l m n o L q r s t u v w x y z HB GB BB CB FB ZB YB"},D:{"1":"0 1 3 4 6 7 8 9 W X Y Z a b c e f g h i j k l m n o L q r s t u v w x y z HB GB BB CB FB SB NB LB kB MB JB OB PB QB","2":"2 F N K D G E A B C d J M H I O P Q R S T U V"},E:{"1":"5 D G E A B C VB WB XB p aB","2":"F N K RB IB TB UB"},F:{"1":"0 1 6 J M H I O P Q R S T U V W X Y Z a b c e f g h i j k l m n o L q r s t u v w x y z","2":"5 E B C bB cB dB eB p AB gB"},G:{"1":"G lB mB nB oB pB qB rB sB tB uB","2":"IB hB EB jB KB"},H:{"2":"vB"},I:{"1":"4 0B 1B","2":"DB F wB xB yB zB EB"},J:{"1":"A","2":"D"},K:{"1":"L","2":"5 A B C p AB"},L:{"1":"JB"},M:{"1":"3"},N:{"1":"A B"},O:{"1":"2B"},P:{"1":"F 3B 4B 5B 6B 7B"},Q:{"1":"8B"},R:{"1":"9B"},S:{"1":"AC"}},B:4,C:"ch (character) unit"};

View File

@@ -1 +1 @@
module.exports={A:{A:{"2":"K D G E A B gB"},B:{"2":"2 C d J M H I"},C:{"1":"0 1 3 4 7 9 q r s t u v w x y z GB FB AB CB DB","2":"2 6 dB BB F N K D G E A B C d J M H I O P Q R S T U V W X Y Z a b c e f g h i j k l m n o L XB WB"},D:{"1":"0 1 3 4 7 9 s t u v w x y z GB FB AB CB DB QB iB KB IB LB MB NB OB","2":"2 F N K D G E A B C d J M H I O P Q R S T U V W X Y Z a b","129":"6 c e f g h i j k l m n o L q r"},E:{"2":"5 F N K D G E A B C PB HB RB SB TB UB VB p YB"},F:{"1":"0 1 f g h i j k l m n o L q r s t u v w x y z","2":"5 6 8 E B C J M H I O P Q R S T U V W X Y Z a b c e ZB aB bB cB p eB"},G:{"1":"pB qB rB sB","2":"G HB fB EB hB JB jB kB lB mB nB oB"},H:{"2":"tB"},I:{"1":"4","2":"BB F uB vB wB xB EB yB","16":"zB"},J:{"2":"D A"},K:{"1":"L","2":"5 8 A B C p"},L:{"1":"IB"},M:{"1":"3"},N:{"2":"A B"},O:{"2":"0B"},P:{"1":"F 1B 2B 3B 4B"},Q:{"1":"5B"},R:{"1":"6B"}},B:6,C:"ChaCha20-Poly1305 cipher suites for TLS"}; module.exports={A:{A:{"2":"K D G E A B iB"},B:{"2":"2 C d J M H I"},C:{"1":"0 1 3 4 7 8 9 q r s t u v w x y z HB GB BB CB FB","2":"2 6 fB DB F N K D G E A B C d J M H I O P Q R S T U V W X Y Z a b c e f g h i j k l m n o L ZB YB"},D:{"1":"0 1 3 4 7 8 9 s t u v w x y z HB GB BB CB FB SB NB LB kB MB JB OB PB QB","2":"2 F N K D G E A B C d J M H I O P Q R S T U V W X Y Z a b","129":"6 c e f g h i j k l m n o L q r"},E:{"2":"5 F N K D G E A B C RB IB TB UB VB WB XB p aB"},F:{"1":"0 1 f g h i j k l m n o L q r s t u v w x y z","2":"5 6 E B C J M H I O P Q R S T U V W X Y Z a b c e bB cB dB eB p AB gB"},G:{"1":"rB sB tB uB","2":"G IB hB EB jB KB lB mB nB oB pB qB"},H:{"2":"vB"},I:{"1":"4","2":"DB F wB xB yB zB EB 0B","16":"1B"},J:{"2":"D A"},K:{"1":"L","2":"5 A B C p AB"},L:{"1":"JB"},M:{"1":"3"},N:{"2":"A B"},O:{"2":"2B"},P:{"1":"F 3B 4B 5B 6B 7B"},Q:{"1":"8B"},R:{"1":"9B"},S:{"1":"AC"}},B:6,C:"ChaCha20-Poly1305 cipher suites for TLS"};

View File

@@ -1 +1 @@
module.exports={A:{A:{"1":"A B","2":"K D G E gB"},B:{"1":"2 C d J M H I"},C:{"1":"0 1 3 4 7 9 k l m n o L q r s t u v w x y z GB FB AB CB DB","2":"2 dB BB F N K D G E A B C d J M H I O P Q R S T U XB WB","194":"6 V W X Y Z a b c e f g h i j"},D:{"1":"0 1 2 3 4 6 7 9 F N K D G E A B C d J M H I O P Q R S T U V W X Y Z a b c e f g h i j k l m n o L q r s t u v w x y z GB FB AB CB DB QB iB KB IB LB MB NB OB"},E:{"1":"5 N K D G E A B C RB SB TB UB VB p YB","2":"F PB HB"},F:{"1":"0 1 5 6 8 B C J M H I O P Q R S T U V W X Y Z a b c e f g h i j k l m n o L q r s t u v w x y z cB p eB","2":"E ZB aB","16":"bB"},G:{"1":"G hB JB jB kB lB mB nB oB pB qB rB sB","2":"HB fB EB"},H:{"2":"tB"},I:{"1":"4 yB zB","2":"BB F uB vB wB xB EB"},J:{"1":"D A"},K:{"1":"5 8 B C L p","2":"A"},L:{"1":"IB"},M:{"1":"3"},N:{"1":"A B"},O:{"1":"0B"},P:{"1":"F 1B 2B 3B 4B"},Q:{"1":"5B"},R:{"1":"6B"}},B:1,C:"Channel messaging"}; module.exports={A:{A:{"1":"A B","2":"K D G E iB"},B:{"1":"2 C d J M H I"},C:{"1":"0 1 3 4 7 8 9 k l m n o L q r s t u v w x y z HB GB BB CB FB","2":"2 fB DB F N K D G E A B C d J M H I O P Q R S T U ZB YB","194":"6 V W X Y Z a b c e f g h i j"},D:{"1":"0 1 2 3 4 6 7 8 9 F N K D G E A B C d J M H I O P Q R S T U V W X Y Z a b c e f g h i j k l m n o L q r s t u v w x y z HB GB BB CB FB SB NB LB kB MB JB OB PB QB"},E:{"1":"5 N K D G E A B C TB UB VB WB XB p aB","2":"F RB IB"},F:{"1":"0 1 5 6 B C J M H I O P Q R S T U V W X Y Z a b c e f g h i j k l m n o L q r s t u v w x y z eB p AB gB","2":"E bB cB","16":"dB"},G:{"1":"G jB KB lB mB nB oB pB qB rB sB tB uB","2":"IB hB EB"},H:{"2":"vB"},I:{"1":"4 0B 1B","2":"DB F wB xB yB zB EB"},J:{"1":"D A"},K:{"1":"5 B C L p AB","2":"A"},L:{"1":"JB"},M:{"1":"3"},N:{"1":"A B"},O:{"1":"2B"},P:{"1":"F 3B 4B 5B 6B 7B"},Q:{"1":"8B"},R:{"1":"9B"},S:{"1":"AC"}},B:1,C:"Channel messaging"};

View File

@@ -1 +1 @@
module.exports={A:{A:{"2":"K D G E A B gB"},B:{"1":"2 d J M H I","16":"C"},C:{"1":"0 1 3 4 6 7 9 S T U V W X Y Z a b c e f g h i j k l m n o L q r s t u v w x y z GB FB AB CB DB","2":"2 dB BB F N K D G E A B C d J M H I O P Q R XB WB"},D:{"1":"0 1 3 4 6 7 9 T U V W X Y Z a b c e f g h i j k l m n o L q r s t u v w x y z GB FB AB CB DB QB iB KB IB LB MB NB OB","2":"2 F N K D G E A B C d J M H I O P Q R S"},E:{"1":"5 D G E A B C SB TB UB VB p YB","2":"F N PB HB RB","16":"K"},F:{"1":"0 1 6 J M H I O P Q R S T U V W X Y Z a b c e f g h i j k l m n o L q r s t u v w x y z","2":"5 8 E B C ZB aB bB cB p eB"},G:{"1":"G jB kB lB mB nB oB pB qB rB sB","2":"HB fB EB hB JB"},H:{"2":"tB"},I:{"1":"4 yB zB","2":"BB F uB vB wB xB EB"},J:{"1":"A","2":"D"},K:{"1":"L","2":"5 8 A B C p"},L:{"1":"IB"},M:{"1":"3"},N:{"2":"A B"},O:{"1":"0B"},P:{"1":"F 1B 2B 3B 4B"},Q:{"1":"5B"},R:{"1":"6B"}},B:1,C:"ChildNode.remove()"}; module.exports={A:{A:{"2":"K D G E A B iB"},B:{"1":"2 d J M H I","16":"C"},C:{"1":"0 1 3 4 6 7 8 9 S T U V W X Y Z a b c e f g h i j k l m n o L q r s t u v w x y z HB GB BB CB FB","2":"2 fB DB F N K D G E A B C d J M H I O P Q R ZB YB"},D:{"1":"0 1 3 4 6 7 8 9 T U V W X Y Z a b c e f g h i j k l m n o L q r s t u v w x y z HB GB BB CB FB SB NB LB kB MB JB OB PB QB","2":"2 F N K D G E A B C d J M H I O P Q R S"},E:{"1":"5 D G E A B C UB VB WB XB p aB","2":"F N RB IB TB","16":"K"},F:{"1":"0 1 6 J M H I O P Q R S T U V W X Y Z a b c e f g h i j k l m n o L q r s t u v w x y z","2":"5 E B C bB cB dB eB p AB gB"},G:{"1":"G lB mB nB oB pB qB rB sB tB uB","2":"IB hB EB jB KB"},H:{"2":"vB"},I:{"1":"4 0B 1B","2":"DB F wB xB yB zB EB"},J:{"1":"A","2":"D"},K:{"1":"L","2":"5 A B C p AB"},L:{"1":"JB"},M:{"1":"3"},N:{"2":"A B"},O:{"1":"2B"},P:{"1":"F 3B 4B 5B 6B 7B"},Q:{"1":"8B"},R:{"1":"9B"},S:{"1":"AC"}},B:1,C:"ChildNode.remove()"};

View File

@@ -1 +1 @@
module.exports={A:{A:{"8":"K D G E gB","1924":"A B"},B:{"1":"2 C d J M H I"},C:{"1":"0 1 3 4 6 7 9 V W X Y Z a b c e f g h i j k l m n o L q r s t u v w x y z GB FB AB CB DB","8":"dB BB XB","516":"T U","772":"2 F N K D G E A B C d J M H I O P Q R S WB"},D:{"1":"0 1 3 4 6 7 9 X Y Z a b c e f g h i j k l m n o L q r s t u v w x y z GB FB AB CB DB QB iB KB IB LB MB NB OB","8":"F N K D","516":"T U V W","772":"S","900":"2 G E A B C d J M H I O P Q R"},E:{"1":"5 D G E A B C TB UB VB p YB","8":"F N PB HB","900":"K RB SB"},F:{"1":"0 1 6 J M H I O P Q R S T U V W X Y Z a b c e f g h i j k l m n o L q r s t u v w x y z","8":"E B ZB aB bB cB p","900":"5 8 C eB"},G:{"1":"G jB kB lB mB nB oB pB qB rB sB","8":"HB fB EB","900":"hB JB"},H:{"900":"tB"},I:{"1":"4 yB zB","8":"uB vB wB","900":"BB F xB EB"},J:{"1":"A","900":"D"},K:{"1":"L","8":"A B","900":"5 8 C p"},L:{"1":"IB"},M:{"1":"3"},N:{"900":"A B"},O:{"1":"0B"},P:{"1":"F 1B 2B 3B 4B"},Q:{"1":"5B"},R:{"1":"6B"}},B:1,C:"classList (DOMTokenList)"}; module.exports={A:{A:{"8":"K D G E iB","1924":"A B"},B:{"1":"2 C d J M H I"},C:{"1":"0 1 3 4 6 7 8 9 V W X Y Z a b c e f g h i j k l m n o L q r s t u v w x y z HB GB BB CB FB","8":"fB DB ZB","516":"T U","772":"2 F N K D G E A B C d J M H I O P Q R S YB"},D:{"1":"0 1 3 4 6 7 8 9 X Y Z a b c e f g h i j k l m n o L q r s t u v w x y z HB GB BB CB FB SB NB LB kB MB JB OB PB QB","8":"F N K D","516":"T U V W","772":"S","900":"2 G E A B C d J M H I O P Q R"},E:{"1":"5 D G E A B C VB WB XB p aB","8":"F N RB IB","900":"K TB UB"},F:{"1":"0 1 6 J M H I O P Q R S T U V W X Y Z a b c e f g h i j k l m n o L q r s t u v w x y z","8":"E B bB cB dB eB p","900":"5 C AB gB"},G:{"1":"G lB mB nB oB pB qB rB sB tB uB","8":"IB hB EB","900":"jB KB"},H:{"900":"vB"},I:{"1":"4 0B 1B","8":"wB xB yB","900":"DB F zB EB"},J:{"1":"A","900":"D"},K:{"1":"L","8":"A B","900":"5 C p AB"},L:{"1":"JB"},M:{"1":"3"},N:{"900":"A B"},O:{"1":"2B"},P:{"1":"F 3B 4B 5B 6B 7B"},Q:{"1":"8B"},R:{"1":"9B"},S:{"1":"AC"}},B:1,C:"classList (DOMTokenList)"};

View File

@@ -1 +1 @@
module.exports={A:{A:{"2":"K D G E A B gB"},B:{"2":"2 C d J M H I"},C:{"2":"0 1 2 3 4 6 7 9 dB BB F N K D G E A B C d J M H I O P Q R S T U V W X Y Z a b c e f g h i j k l m n o L q r s t u v w x y z GB FB AB CB DB XB WB"},D:{"1":"0 1 3 4 7 9 L q r s t u v w x y z GB FB AB CB DB QB iB KB IB LB MB NB OB","2":"2 6 F N K D G E A B C d J M H I O P Q R S T U V W X Y Z a b c e f g h i j k l m n o"},E:{"2":"5 F N K D G E A B C PB HB RB SB TB UB VB p YB"},F:{"1":"0 1 6 c e f g h i j k l m n o L q r s t u v w x y z","2":"5 8 E B C J M H I O P Q R S T U V W X Y Z a b ZB aB bB cB p eB"},G:{"2":"G HB fB EB hB JB jB kB lB mB nB oB pB qB rB sB"},H:{"2":"tB"},I:{"1":"4","2":"BB F uB vB wB xB EB yB zB"},J:{"2":"D A"},K:{"1":"L","2":"5 8 A B C p"},L:{"1":"IB"},M:{"2":"3"},N:{"2":"A B"},O:{"1":"0B"},P:{"1":"1B 2B 3B 4B","2":"F"},Q:{"2":"5B"},R:{"1":"6B"}},B:6,C:"Client Hints: DPR, Width, Viewport-Width"}; module.exports={A:{A:{"2":"K D G E A B iB"},B:{"2":"2 C d J M H I"},C:{"2":"0 1 2 3 4 6 7 8 9 fB DB F N K D G E A B C d J M H I O P Q R S T U V W X Y Z a b c e f g h i j k l m n o L q r s t u v w x y z HB GB BB CB FB ZB YB"},D:{"1":"0 1 3 4 7 8 9 L q r s t u v w x y z HB GB BB CB FB SB NB LB kB MB JB OB PB QB","2":"2 6 F N K D G E A B C d J M H I O P Q R S T U V W X Y Z a b c e f g h i j k l m n o"},E:{"2":"5 F N K D G E A B C RB IB TB UB VB WB XB p aB"},F:{"1":"0 1 6 c e f g h i j k l m n o L q r s t u v w x y z","2":"5 E B C J M H I O P Q R S T U V W X Y Z a b bB cB dB eB p AB gB"},G:{"2":"G IB hB EB jB KB lB mB nB oB pB qB rB sB tB uB"},H:{"2":"vB"},I:{"1":"4","2":"DB F wB xB yB zB EB 0B 1B"},J:{"2":"D A"},K:{"1":"L","2":"5 A B C p AB"},L:{"1":"JB"},M:{"2":"3"},N:{"2":"A B"},O:{"1":"2B"},P:{"1":"3B 4B 5B 6B 7B","2":"F"},Q:{"2":"8B"},R:{"1":"9B"},S:{"2":"AC"}},B:6,C:"Client Hints: DPR, Width, Viewport-Width"};

View File

@@ -1 +1 @@
module.exports={A:{A:{"2436":"K D G E A B gB"},B:{"260":"H I","2436":"2 C d J M"},C:{"2":"2 dB BB F N K D G E A B C d J M H I O P Q XB WB","772":"6 R S T U V W X Y Z a b c e f g h i j","4100":"0 1 3 4 7 9 k l m n o L q r s t u v w x y z GB FB AB CB DB"},D:{"2":"F N K D G E A B C","2564":"2 6 d J M H I O P Q R S T U V W X Y Z a b c e f g h i j k l","10244":"0 1 3 4 7 9 m n o L q r s t u v w x y z GB FB AB CB DB QB iB KB IB LB MB NB OB"},E:{"1":"5 C YB","16":"PB HB","2308":"A B VB p","2820":"F N K D G E RB SB TB UB"},F:{"2":"8 E B ZB aB bB cB p eB","16":"C","516":"5","2564":"J M H I O P Q R S T U V W X Y","10244":"0 1 6 Z a b c e f g h i j k l m n o L q r s t u v w x y z"},G:{"1":"rB sB","2":"HB fB EB","2820":"G hB JB jB kB lB mB nB oB pB qB"},H:{"2":"tB"},I:{"2":"BB F uB vB wB xB EB","2308":"4 yB zB"},J:{"2":"D","2308":"A"},K:{"2":"8 A B C p","16":"5","3076":"L"},L:{"2052":"IB"},M:{"1028":"3"},N:{"2":"A B"},O:{"2":"0B"},P:{"2052":"1B 2B 3B 4B","2308":"F"},Q:{"10244":"5B"},R:{"2052":"6B"}},B:5,C:"Synchronous Clipboard API"}; module.exports={A:{A:{"2436":"K D G E A B iB"},B:{"260":"H I","2436":"2 C d J M"},C:{"2":"2 fB DB F N K D G E A B C d J M H I O P Q ZB YB","772":"6 R S T U V W X Y Z a b c e f g h i j","4100":"0 1 3 4 7 8 9 k l m n o L q r s t u v w x y z HB GB BB CB FB"},D:{"2":"F N K D G E A B C","2564":"2 6 d J M H I O P Q R S T U V W X Y Z a b c e f g h i j k l","10244":"0 1 3 4 7 8 9 m n o L q r s t u v w x y z HB GB BB CB FB SB NB LB kB MB JB OB PB QB"},E:{"1":"5 C aB","16":"RB IB","2308":"A B XB p","2820":"F N K D G E TB UB VB WB"},F:{"2":"E B bB cB dB eB p AB gB","16":"C","516":"5","2564":"J M H I O P Q R S T U V W X Y","10244":"0 1 6 Z a b c e f g h i j k l m n o L q r s t u v w x y z"},G:{"1":"tB uB","2":"IB hB EB","2820":"G jB KB lB mB nB oB pB qB rB sB"},H:{"2":"vB"},I:{"2":"DB F wB xB yB zB EB","2308":"4 0B 1B"},J:{"2":"D","2308":"A"},K:{"2":"A B C p AB","16":"5","3076":"L"},L:{"2052":"JB"},M:{"1028":"3"},N:{"2":"A B"},O:{"2":"2B"},P:{"2052":"3B 4B 5B 6B 7B","2308":"F"},Q:{"10244":"8B"},R:{"2052":"9B"},S:{"4100":"AC"}},B:5,C:"Synchronous Clipboard API"};

View File

@@ -1 +1 @@
module.exports={A:{A:{"1":"E A B","2":"K D G gB"},B:{"1":"2 C d J M H I"},C:{"1":"0 1 2 3 4 6 7 9 F N K D G E A B C d J M H I O P Q R S T U V W X Y Z a b c e f g h i j k l m n o L q r s t u v w x y z GB FB AB CB DB","16":"dB BB XB WB"},D:{"1":"0 1 3 4 6 7 9 Z a b c e f g h i j k l m n o L q r s t u v w x y z GB FB AB CB DB QB iB KB IB LB MB NB OB","16":"2 F N K D G E A B C d","132":"J M H I O P Q R S T U V W X Y"},E:{"1":"5 A B C VB p YB","16":"F N K PB HB","132":"D G E SB TB UB","260":"RB"},F:{"1":"0 1 5 6 C H I O P Q R S T U V W X Y Z a b c e f g h i j k l m n o L q r s t u v w x y z eB","16":"8 E B ZB aB bB cB p","132":"J M"},G:{"1":"nB oB pB qB rB sB","16":"HB","132":"G fB EB hB JB jB kB lB mB"},H:{"1":"tB"},I:{"1":"4 yB zB","16":"uB vB","132":"BB F wB xB EB"},J:{"132":"D A"},K:{"1":"5 C L","16":"8 A B p"},L:{"1":"IB"},M:{"1":"3"},N:{"1":"A B"},O:{"1":"0B"},P:{"1":"F 1B 2B 3B 4B"},Q:{"1":"5B"},R:{"1":"6B"}},B:1,C:"Node.compareDocumentPosition()"}; module.exports={A:{A:{"1":"E A B","2":"K D G iB"},B:{"1":"2 C d J M H I"},C:{"1":"0 1 2 3 4 6 7 8 9 F N K D G E A B C d J M H I O P Q R S T U V W X Y Z a b c e f g h i j k l m n o L q r s t u v w x y z HB GB BB CB FB","16":"fB DB ZB YB"},D:{"1":"0 1 3 4 6 7 8 9 Z a b c e f g h i j k l m n o L q r s t u v w x y z HB GB BB CB FB SB NB LB kB MB JB OB PB QB","16":"2 F N K D G E A B C d","132":"J M H I O P Q R S T U V W X Y"},E:{"1":"5 A B C XB p aB","16":"F N K RB IB","132":"D G E UB VB WB","260":"TB"},F:{"1":"0 1 5 6 C H I O P Q R S T U V W X Y Z a b c e f g h i j k l m n o L q r s t u v w x y z gB","16":"E B bB cB dB eB p AB","132":"J M"},G:{"1":"pB qB rB sB tB uB","16":"IB","132":"G hB EB jB KB lB mB nB oB"},H:{"1":"vB"},I:{"1":"4 0B 1B","16":"wB xB","132":"DB F yB zB EB"},J:{"132":"D A"},K:{"1":"5 C L","16":"A B p AB"},L:{"1":"JB"},M:{"1":"3"},N:{"1":"A B"},O:{"1":"2B"},P:{"1":"F 3B 4B 5B 6B 7B"},Q:{"1":"8B"},R:{"1":"9B"},S:{"1":"AC"}},B:1,C:"Node.compareDocumentPosition()"};

View File

@@ -1 +1 @@
module.exports={A:{A:{"1":"A B","2":"K D gB","132":"G E"},B:{"1":"2 C d J M H I"},C:{"1":"0 1 2 3 4 6 7 9 F N K D G E A B C d J M H I O P Q R S T U V W X Y Z a b c e f g h i j k l m n o L q r s t u v w x y z GB FB AB CB DB","2":"dB BB XB WB"},D:{"1":"0 1 2 3 4 6 7 9 F N K D G E A B C d J M H I O P Q R S T U V W X Y Z a b c e f g h i j k l m n o L q r s t u v w x y z GB FB AB CB DB QB iB KB IB LB MB NB OB"},E:{"1":"5 F N K D G E A B C PB HB RB SB TB UB VB p YB"},F:{"1":"0 1 5 6 8 B C J M H I O P Q R S T U V W X Y Z a b c e f g h i j k l m n o L q r s t u v w x y z p eB","2":"E ZB aB bB cB"},G:{"1":"HB fB EB hB","513":"G JB jB kB lB mB nB oB pB qB rB sB"},H:{"4097":"tB"},I:{"1025":"4 BB F uB vB wB xB EB yB zB"},J:{"258":"D A"},K:{"2":"A","258":"5 8 B C L p"},L:{"1025":"IB"},M:{"2049":"3"},N:{"258":"A B"},O:{"258":"0B"},P:{"1025":"F 1B 2B 3B 4B"},Q:{"1":"5B"},R:{"1025":"6B"}},B:1,C:"Basic console logging functions"}; module.exports={A:{A:{"1":"A B","2":"K D iB","132":"G E"},B:{"1":"2 C d J M H I"},C:{"1":"0 1 2 3 4 6 7 8 9 F N K D G E A B C d J M H I O P Q R S T U V W X Y Z a b c e f g h i j k l m n o L q r s t u v w x y z HB GB BB CB FB","2":"fB DB ZB YB"},D:{"1":"0 1 2 3 4 6 7 8 9 F N K D G E A B C d J M H I O P Q R S T U V W X Y Z a b c e f g h i j k l m n o L q r s t u v w x y z HB GB BB CB FB SB NB LB kB MB JB OB PB QB"},E:{"1":"5 F N K D G E A B C RB IB TB UB VB WB XB p aB"},F:{"1":"0 1 5 6 B C J M H I O P Q R S T U V W X Y Z a b c e f g h i j k l m n o L q r s t u v w x y z p AB gB","2":"E bB cB dB eB"},G:{"1":"IB hB EB jB","513":"G KB lB mB nB oB pB qB rB sB tB uB"},H:{"4097":"vB"},I:{"1025":"4 DB F wB xB yB zB EB 0B 1B"},J:{"258":"D A"},K:{"2":"A","258":"5 B C L p AB"},L:{"1025":"JB"},M:{"2049":"3"},N:{"258":"A B"},O:{"258":"2B"},P:{"1025":"F 3B 4B 5B 6B 7B"},Q:{"1":"8B"},R:{"1025":"9B"},S:{"1":"AC"}},B:1,C:"Basic console logging functions"};

View File

@@ -1 +1 @@
module.exports={A:{A:{"1":"B","2":"K D G E A gB"},B:{"1":"2 C d J M H I"},C:{"1":"0 1 2 3 4 6 7 9 A B C d J M H I O P Q R S T U V W X Y Z a b c e f g h i j k l m n o L q r s t u v w x y z GB FB AB CB DB","2":"dB BB F N K D G E XB WB"},D:{"1":"0 1 2 3 4 6 7 9 F N K D G E A B C d J M H I O P Q R S T U V W X Y Z a b c e f g h i j k l m n o L q r s t u v w x y z GB FB AB CB DB QB iB KB IB LB MB NB OB"},E:{"1":"5 F N K D G E A B C RB SB TB UB VB p YB","2":"PB HB"},F:{"1":"0 1 5 6 8 C J M H I O P Q R S T U V W X Y Z a b c e f g h i j k l m n o L q r s t u v w x y z p eB","2":"E ZB aB bB cB","16":"B"},G:{"1":"G HB fB EB hB JB jB kB lB mB nB oB pB qB rB sB"},H:{"1":"tB"},I:{"1":"4 BB F uB vB wB xB EB yB zB"},J:{"1":"D A"},K:{"1":"L","16":"5 8 A B C p"},L:{"1":"IB"},M:{"1":"3"},N:{"1":"B","2":"A"},O:{"1":"0B"},P:{"1":"F 1B 2B 3B 4B"},Q:{"1":"5B"},R:{"1":"6B"}},B:1,C:"console.time and console.timeEnd"}; module.exports={A:{A:{"1":"B","2":"K D G E A iB"},B:{"1":"2 C d J M H I"},C:{"1":"0 1 2 3 4 6 7 8 9 A B C d J M H I O P Q R S T U V W X Y Z a b c e f g h i j k l m n o L q r s t u v w x y z HB GB BB CB FB","2":"fB DB F N K D G E ZB YB"},D:{"1":"0 1 2 3 4 6 7 8 9 F N K D G E A B C d J M H I O P Q R S T U V W X Y Z a b c e f g h i j k l m n o L q r s t u v w x y z HB GB BB CB FB SB NB LB kB MB JB OB PB QB"},E:{"1":"5 F N K D G E A B C TB UB VB WB XB p aB","2":"RB IB"},F:{"1":"0 1 5 6 C J M H I O P Q R S T U V W X Y Z a b c e f g h i j k l m n o L q r s t u v w x y z p AB gB","2":"E bB cB dB eB","16":"B"},G:{"1":"G IB hB EB jB KB lB mB nB oB pB qB rB sB tB uB"},H:{"1":"vB"},I:{"1":"4 DB F wB xB yB zB EB 0B 1B"},J:{"1":"D A"},K:{"1":"L","16":"5 A B C p AB"},L:{"1":"JB"},M:{"1":"3"},N:{"1":"B","2":"A"},O:{"1":"2B"},P:{"1":"F 3B 4B 5B 6B 7B"},Q:{"1":"8B"},R:{"1":"9B"},S:{"1":"AC"}},B:1,C:"console.time and console.timeEnd"};

View File

@@ -1 +1 @@
module.exports={A:{A:{"1":"B","2":"K D G E A gB"},B:{"1":"2 C d J M H I"},C:{"1":"0 1 3 4 7 9 f g h i j k l m n o L q r s t u v w x y z GB FB AB CB DB","132":"dB BB F N K D G E A B C XB WB","260":"2 6 d J M H I O P Q R S T U V W X Y Z a b c e"},D:{"1":"0 1 3 4 7 9 s t u v w x y z GB FB AB CB DB QB iB KB IB LB MB NB OB","260":"2 F N K D G E A B C d J M H I O P","772":"6 Q R S T U V W X Y Z a b c e f g h i j","1028":"k l m n o L q r"},E:{"1":"5 A B C VB p YB","260":"F N PB HB","772":"K D G E RB SB TB UB"},F:{"1":"0 1 f g h i j k l m n o L q r s t u v w x y z","2":"E ZB","132":"8 B aB bB cB p","644":"5 C eB","772":"J M H I O P Q R S T U V W","1028":"6 X Y Z a b c e"},G:{"1":"nB oB pB qB rB sB","260":"HB fB EB","772":"G hB JB jB kB lB mB"},H:{"644":"tB"},I:{"1":"4","16":"uB vB","260":"wB","772":"BB F xB EB yB zB"},J:{"772":"D A"},K:{"1":"L","132":"8 A B p","644":"5 C"},L:{"1":"IB"},M:{"1":"3"},N:{"1":"B","2":"A"},O:{"1":"0B"},P:{"1":"1B 2B 3B 4B","1028":"F"},Q:{"772":"5B"},R:{"1028":"6B"}},B:6,C:"const"}; module.exports={A:{A:{"1":"B","2":"K D G E A iB"},B:{"1":"2 C d J M H I"},C:{"1":"0 1 3 4 7 8 9 f g h i j k l m n o L q r s t u v w x y z HB GB BB CB FB","132":"fB DB F N K D G E A B C ZB YB","260":"2 6 d J M H I O P Q R S T U V W X Y Z a b c e"},D:{"1":"0 1 3 4 7 8 9 s t u v w x y z HB GB BB CB FB SB NB LB kB MB JB OB PB QB","260":"2 F N K D G E A B C d J M H I O P","772":"6 Q R S T U V W X Y Z a b c e f g h i j","1028":"k l m n o L q r"},E:{"1":"5 A B C XB p aB","260":"F N RB IB","772":"K D G E TB UB VB WB"},F:{"1":"0 1 f g h i j k l m n o L q r s t u v w x y z","2":"E bB","132":"B cB dB eB p AB","644":"5 C gB","772":"J M H I O P Q R S T U V W","1028":"6 X Y Z a b c e"},G:{"1":"pB qB rB sB tB uB","260":"IB hB EB","772":"G jB KB lB mB nB oB"},H:{"644":"vB"},I:{"1":"4","16":"wB xB","260":"yB","772":"DB F zB EB 0B 1B"},J:{"772":"D A"},K:{"1":"L","132":"A B p AB","644":"5 C"},L:{"1":"JB"},M:{"1":"3"},N:{"1":"B","2":"A"},O:{"1":"2B"},P:{"1":"3B 4B 5B 6B 7B","1028":"F"},Q:{"772":"8B"},R:{"1028":"9B"},S:{"1":"AC"}},B:6,C:"const"};

View File

@@ -1 +1 @@
module.exports={A:{A:{"2":"K D G E gB","900":"A B"},B:{"1":"H I","388":"d J M","900":"2 C"},C:{"1":"0 1 3 4 7 9 u v w x y z GB FB AB CB DB","2":"dB BB XB WB","260":"s t","388":"6 Y Z a b c e f g h i j k l m n o L q r","900":"2 F N K D G E A B C d J M H I O P Q R S T U V W X"},D:{"1":"0 1 3 4 7 9 j k l m n o L q r s t u v w x y z GB FB AB CB DB QB iB KB IB LB MB NB OB","16":"2 F N K D G E A B C d","388":"6 U V W X Y Z a b c e f g h i","900":"J M H I O P Q R S T"},E:{"1":"5 A B C VB p YB","16":"F N PB HB","388":"G E TB UB","900":"K D RB SB"},F:{"1":"0 1 6 W X Y Z a b c e f g h i j k l m n o L q r s t u v w x y z","16":"8 E B ZB aB bB cB p","388":"J M H I O P Q R S T U V","900":"5 C eB"},G:{"1":"nB oB pB qB rB sB","16":"HB fB EB","388":"G jB kB lB mB","900":"hB JB"},H:{"2":"tB"},I:{"1":"4","16":"BB uB vB wB","388":"yB zB","900":"F xB EB"},J:{"16":"D","388":"A"},K:{"1":"L","16":"8 A B p","900":"5 C"},L:{"1":"IB"},M:{"1":"3"},N:{"900":"A B"},O:{"1":"0B"},P:{"1":"F 1B 2B 3B 4B"},Q:{"388":"5B"},R:{"1":"6B"}},B:1,C:"Constraint Validation API"}; module.exports={A:{A:{"2":"K D G E iB","900":"A B"},B:{"1":"H I","388":"d J M","900":"2 C"},C:{"1":"0 1 3 4 7 8 9 u v w x y z HB GB BB CB FB","2":"fB DB ZB YB","260":"s t","388":"6 Y Z a b c e f g h i j k l m n o L q r","900":"2 F N K D G E A B C d J M H I O P Q R S T U V W X"},D:{"1":"0 1 3 4 7 8 9 j k l m n o L q r s t u v w x y z HB GB BB CB FB SB NB LB kB MB JB OB PB QB","16":"2 F N K D G E A B C d","388":"6 U V W X Y Z a b c e f g h i","900":"J M H I O P Q R S T"},E:{"1":"5 A B C XB p aB","16":"F N RB IB","388":"G E VB WB","900":"K D TB UB"},F:{"1":"0 1 6 W X Y Z a b c e f g h i j k l m n o L q r s t u v w x y z","16":"E B bB cB dB eB p AB","388":"J M H I O P Q R S T U V","900":"5 C gB"},G:{"1":"pB qB rB sB tB uB","16":"IB hB EB","388":"G lB mB nB oB","900":"jB KB"},H:{"2":"vB"},I:{"1":"4","16":"DB wB xB yB","388":"0B 1B","900":"F zB EB"},J:{"16":"D","388":"A"},K:{"1":"L","16":"A B p AB","900":"5 C"},L:{"1":"JB"},M:{"1":"3"},N:{"900":"A B"},O:{"1":"2B"},P:{"1":"F 3B 4B 5B 6B 7B"},Q:{"388":"8B"},R:{"1":"9B"},S:{"388":"AC"}},B:1,C:"Constraint Validation API"};

View File

@@ -1 +1 @@
module.exports={A:{A:{"1":"K D G E A B gB"},B:{"1":"2 C d J M H I"},C:{"1":"0 1 2 3 4 6 7 9 F N K D G E A B C d J M H I O P Q R S T U V W X Y Z a b c e f g h i j k l m n o L q r s t u v w x y z GB FB AB CB DB XB WB","2":"dB","4":"BB"},D:{"1":"0 1 2 3 4 6 7 9 F N K D G E A B C d J M H I O P Q R S T U V W X Y Z a b c e f g h i j k l m n o L q r s t u v w x y z GB FB AB CB DB QB iB KB IB LB MB NB OB"},E:{"1":"5 F N K D G E A B C PB HB RB SB TB UB VB p YB"},F:{"1":"0 1 5 6 8 E B C J M H I O P Q R S T U V W X Y Z a b c e f g h i j k l m n o L q r s t u v w x y z ZB aB bB cB p eB"},G:{"1":"G hB JB jB kB lB mB nB oB pB qB rB sB","2":"HB fB EB"},H:{"2":"tB"},I:{"1":"4 BB F xB EB yB zB","2":"uB vB wB"},J:{"1":"D A"},K:{"1":"5 L","2":"8 A B C p"},L:{"1":"IB"},M:{"1":"3"},N:{"1":"A B"},O:{"1":"0B"},P:{"1":"F 1B 2B 3B 4B"},Q:{"1":"5B"},R:{"1":"6B"}},B:1,C:"contenteditable attribute (basic support)"}; module.exports={A:{A:{"1":"K D G E A B iB"},B:{"1":"2 C d J M H I"},C:{"1":"0 1 2 3 4 6 7 8 9 F N K D G E A B C d J M H I O P Q R S T U V W X Y Z a b c e f g h i j k l m n o L q r s t u v w x y z HB GB BB CB FB ZB YB","2":"fB","4":"DB"},D:{"1":"0 1 2 3 4 6 7 8 9 F N K D G E A B C d J M H I O P Q R S T U V W X Y Z a b c e f g h i j k l m n o L q r s t u v w x y z HB GB BB CB FB SB NB LB kB MB JB OB PB QB"},E:{"1":"5 F N K D G E A B C RB IB TB UB VB WB XB p aB"},F:{"1":"0 1 5 6 E B C J M H I O P Q R S T U V W X Y Z a b c e f g h i j k l m n o L q r s t u v w x y z bB cB dB eB p AB gB"},G:{"1":"G jB KB lB mB nB oB pB qB rB sB tB uB","2":"IB hB EB"},H:{"2":"vB"},I:{"1":"4 DB F zB EB 0B 1B","2":"wB xB yB"},J:{"1":"D A"},K:{"1":"5 L","2":"A B C p AB"},L:{"1":"JB"},M:{"1":"3"},N:{"1":"A B"},O:{"1":"2B"},P:{"1":"F 3B 4B 5B 6B 7B"},Q:{"1":"8B"},R:{"1":"9B"},S:{"1":"AC"}},B:1,C:"contenteditable attribute (basic support)"};

View File

@@ -1 +1 @@
module.exports={A:{A:{"2":"K D G E gB","132":"A B"},B:{"1":"2 C d J M H I"},C:{"1":"0 1 3 4 6 7 9 S T U V W X Y Z a b c e f g h i j k l m n o L q r s t u v w x y z GB FB AB CB DB","2":"dB BB XB WB","129":"2 F N K D G E A B C d J M H I O P Q R"},D:{"1":"0 1 3 4 6 7 9 U V W X Y Z a b c e f g h i j k l m n o L q r s t u v w x y z GB FB AB CB DB QB iB KB IB LB MB NB OB","2":"2 F N K D G E A B C","257":"d J M H I O P Q R S T"},E:{"1":"5 D G E A B C TB UB VB p YB","2":"F N PB HB","257":"K SB","260":"RB"},F:{"1":"0 1 6 J M H I O P Q R S T U V W X Y Z a b c e f g h i j k l m n o L q r s t u v w x y z","2":"5 8 E B C ZB aB bB cB p eB"},G:{"1":"G jB kB lB mB nB oB pB qB rB sB","2":"HB fB EB","257":"JB","260":"hB"},H:{"2":"tB"},I:{"1":"4 yB zB","2":"BB F uB vB wB xB EB"},J:{"2":"D","257":"A"},K:{"1":"L","2":"5 8 A B C p"},L:{"1":"IB"},M:{"1":"3"},N:{"132":"A B"},O:{"257":"0B"},P:{"1":"F 1B 2B 3B 4B"},Q:{"1":"5B"},R:{"1":"6B"}},B:4,C:"Content Security Policy 1.0"}; module.exports={A:{A:{"2":"K D G E iB","132":"A B"},B:{"1":"2 C d J M H I"},C:{"1":"0 1 3 4 6 7 8 9 S T U V W X Y Z a b c e f g h i j k l m n o L q r s t u v w x y z HB GB BB CB FB","2":"fB DB ZB YB","129":"2 F N K D G E A B C d J M H I O P Q R"},D:{"1":"0 1 3 4 6 7 8 9 U V W X Y Z a b c e f g h i j k l m n o L q r s t u v w x y z HB GB BB CB FB SB NB LB kB MB JB OB PB QB","2":"2 F N K D G E A B C","257":"d J M H I O P Q R S T"},E:{"1":"5 D G E A B C VB WB XB p aB","2":"F N RB IB","257":"K UB","260":"TB"},F:{"1":"0 1 6 J M H I O P Q R S T U V W X Y Z a b c e f g h i j k l m n o L q r s t u v w x y z","2":"5 E B C bB cB dB eB p AB gB"},G:{"1":"G lB mB nB oB pB qB rB sB tB uB","2":"IB hB EB","257":"KB","260":"jB"},H:{"2":"vB"},I:{"1":"4 0B 1B","2":"DB F wB xB yB zB EB"},J:{"2":"D","257":"A"},K:{"1":"L","2":"5 A B C p AB"},L:{"1":"JB"},M:{"1":"3"},N:{"132":"A B"},O:{"257":"2B"},P:{"1":"F 3B 4B 5B 6B 7B"},Q:{"1":"8B"},R:{"1":"9B"},S:{"1":"AC"}},B:4,C:"Content Security Policy 1.0"};

View File

@@ -1 +1 @@
module.exports={A:{A:{"2":"K D G E A B gB"},B:{"2":"2 C d","32772":"J M H I"},C:{"2":"2 dB BB F N K D G E A B C d J M H I O P Q R S T U V W X Y Z XB WB","132":"6 a b c","260":"e","516":"f g h i j k l m n","8196":"0 1 3 4 7 9 o L q r s t u v w x y z GB FB AB CB DB"},D:{"1":"0 1 3 4 7 9 j k l m n o L q r s t u v w x y z GB FB AB CB DB QB iB KB IB LB MB NB OB","2":"2 6 F N K D G E A B C d J M H I O P Q R S T U V W X Y Z a b c e","1028":"f g h","2052":"i"},E:{"1":"5 A B C VB p YB","2":"F N K D G E PB HB RB SB TB UB"},F:{"1":"0 1 6 W X Y Z a b c e f g h i j k l m n o L q r s t u v w x y z","2":"5 8 E B C J M H I O P Q R ZB aB bB cB p eB","1028":"S T U","2052":"V"},G:{"1":"nB oB pB qB rB sB","2":"G HB fB EB hB JB jB kB lB mB"},H:{"2":"tB"},I:{"1":"4","2":"BB F uB vB wB xB EB yB zB"},J:{"2":"D A"},K:{"1":"L","2":"5 8 A B C p"},L:{"1":"IB"},M:{"4100":"3"},N:{"2":"A B"},O:{"2":"0B"},P:{"1":"F 1B 2B 3B 4B"},Q:{"1":"5B"},R:{"1":"6B"}},B:4,C:"Content Security Policy Level 2"}; module.exports={A:{A:{"2":"K D G E A B iB"},B:{"2":"2 C d","32772":"J M H I"},C:{"2":"2 fB DB F N K D G E A B C d J M H I O P Q R S T U V W X Y Z ZB YB","132":"6 a b c","260":"e","516":"f g h i j k l m n","8196":"0 1 3 4 7 8 9 o L q r s t u v w x y z HB GB BB CB FB"},D:{"1":"0 1 3 4 7 8 9 j k l m n o L q r s t u v w x y z HB GB BB CB FB SB NB LB kB MB JB OB PB QB","2":"2 6 F N K D G E A B C d J M H I O P Q R S T U V W X Y Z a b c e","1028":"f g h","2052":"i"},E:{"1":"5 A B C XB p aB","2":"F N K D G E RB IB TB UB VB WB"},F:{"1":"0 1 6 W X Y Z a b c e f g h i j k l m n o L q r s t u v w x y z","2":"5 E B C J M H I O P Q R bB cB dB eB p AB gB","1028":"S T U","2052":"V"},G:{"1":"pB qB rB sB tB uB","2":"G IB hB EB jB KB lB mB nB oB"},H:{"2":"vB"},I:{"1":"4","2":"DB F wB xB yB zB EB 0B 1B"},J:{"2":"D A"},K:{"1":"L","2":"5 A B C p AB"},L:{"1":"JB"},M:{"4100":"3"},N:{"2":"A B"},O:{"2":"2B"},P:{"1":"F 3B 4B 5B 6B 7B"},Q:{"1":"8B"},R:{"1":"9B"},S:{"8196":"AC"}},B:4,C:"Content Security Policy Level 2"};

Some files were not shown because too many files have changed in this diff Show More