feat: initial commit
This commit is contained in:
parent
c581ce5ad2
commit
de4ae5d068
996
node_modules/.package-lock.json
generated
vendored
996
node_modules/.package-lock.json
generated
vendored
File diff suppressed because it is too large
Load Diff
21
node_modules/@jest/reporters/node_modules/jest-worker/LICENSE
generated
vendored
21
node_modules/@jest/reporters/node_modules/jest-worker/LICENSE
generated
vendored
@ -1,21 +0,0 @@
|
||||
MIT License
|
||||
|
||||
Copyright (c) Meta Platforms, Inc. and affiliates.
|
||||
|
||||
Permission is hereby granted, free of charge, to any person obtaining a copy
|
||||
of this software and associated documentation files (the "Software"), to deal
|
||||
in the Software without restriction, including without limitation the rights
|
||||
to use, copy, modify, merge, publish, distribute, sublicense, and/or sell
|
||||
copies of the Software, and to permit persons to whom the Software is
|
||||
furnished to do so, subject to the following conditions:
|
||||
|
||||
The above copyright notice and this permission notice shall be included in all
|
||||
copies or substantial portions of the Software.
|
||||
|
||||
THE SOFTWARE IS PROVIDED "AS IS", WITHOUT WARRANTY OF ANY KIND, EXPRESS OR
|
||||
IMPLIED, INCLUDING BUT NOT LIMITED TO THE WARRANTIES OF MERCHANTABILITY,
|
||||
FITNESS FOR A PARTICULAR PURPOSE AND NONINFRINGEMENT. IN NO EVENT SHALL THE
|
||||
AUTHORS OR COPYRIGHT HOLDERS BE LIABLE FOR ANY CLAIM, DAMAGES OR OTHER
|
||||
LIABILITY, WHETHER IN AN ACTION OF CONTRACT, TORT OR OTHERWISE, ARISING FROM,
|
||||
OUT OF OR IN CONNECTION WITH THE SOFTWARE OR THE USE OR OTHER DEALINGS IN THE
|
||||
SOFTWARE.
|
272
node_modules/@jest/reporters/node_modules/jest-worker/README.md
generated
vendored
272
node_modules/@jest/reporters/node_modules/jest-worker/README.md
generated
vendored
@ -1,272 +0,0 @@
|
||||
# jest-worker
|
||||
|
||||
Module for executing heavy tasks under forked processes in parallel, by providing a `Promise` based interface, minimum overhead, and bound workers.
|
||||
|
||||
The module works by providing an absolute path of the module to be loaded in all forked processes. All methods are exposed on the parent process as promises, so they can be `await`'ed. Child (worker) methods can either be synchronous or asynchronous.
|
||||
|
||||
The module also implements support for bound workers. Binding a worker means that, based on certain parameters, the same task will always be executed by the same worker. The way bound workers work is by using the returned string of the `computeWorkerKey` method. If the string was used before for a task, the call will be queued to the related worker that processed the task earlier; if not, it will be executed by the first available worker, then sticked to the worker that executed it; so the next time it will be processed by the same worker. If you have no preference on the worker executing the task, but you have defined a `computeWorkerKey` method because you want _some_ of the tasks to be sticked, you can return `null` from it.
|
||||
|
||||
The list of exposed methods can be explicitly provided via the `exposedMethods` option. If it is not provided, it will be obtained by requiring the child module into the main process, and analyzed via reflection. Check the "minimal example" section for a valid one.
|
||||
|
||||
## Install
|
||||
|
||||
```sh
|
||||
yarn add jest-worker
|
||||
```
|
||||
|
||||
## Example
|
||||
|
||||
This example covers the minimal usage:
|
||||
|
||||
### File `parent.js`
|
||||
|
||||
```js
|
||||
import {Worker as JestWorker} from 'jest-worker';
|
||||
|
||||
async function main() {
|
||||
const worker = new JestWorker(require.resolve('./worker'));
|
||||
const result = await worker.hello('Alice'); // "Hello, Alice"
|
||||
}
|
||||
|
||||
main();
|
||||
```
|
||||
|
||||
### File `worker.js`
|
||||
|
||||
```js
|
||||
export function hello(param) {
|
||||
return `Hello, ${param}`;
|
||||
}
|
||||
```
|
||||
|
||||
## Experimental worker
|
||||
|
||||
Node shipped with [`worker_threads`](https://nodejs.org/api/worker_threads.html), a "threading API" that uses `SharedArrayBuffers` to communicate between the main process and its child threads. This feature can significantly improve the communication time between parent and child processes in `jest-worker`.
|
||||
|
||||
To use `worker_threads` instead of default `child_process` you have to pass `enableWorkerThreads: true` when instantiating the worker.
|
||||
|
||||
## API
|
||||
|
||||
The `Worker` export is a constructor that is initialized by passing the worker path, plus an options object.
|
||||
|
||||
### `workerPath: string | URL` (required)
|
||||
|
||||
Node module name or absolute path or file URL of the file to be loaded in the child processes. You can use `require.resolve` to transform a relative path into an absolute one.
|
||||
|
||||
### `options: Object` (optional)
|
||||
|
||||
#### `computeWorkerKey: (method: string, ...args: Array<unknown>) => string | null` (optional)
|
||||
|
||||
Every time a method exposed via the API is called, `computeWorkerKey` is also called in order to bound the call to a worker. This is useful for workers that are able to cache the result or part of it. You bound calls to a worker by making `computeWorkerKey` return the same identifier for all different calls. If you do not want to bind the call to any worker, return `null`.
|
||||
|
||||
The callback you provide is called with the method name, plus all the rest of the arguments of the call. Thus, you have full control to decide what to return. Check a practical example on bound workers under the "bound worker usage" section.
|
||||
|
||||
By default, no process is bound to any worker.
|
||||
|
||||
#### `enableWorkerThreads: boolean` (optional)
|
||||
|
||||
By default, `jest-worker` will use `child_process` threads to spawn new Node.js processes. If you prefer [`worker_threads`](https://nodejs.org/api/worker_threads.html) instead, pass `enableWorkerThreads: true`.
|
||||
|
||||
#### `exposedMethods: ReadonlyArray<string>` (optional)
|
||||
|
||||
List of method names that can be called on the child processes from the parent process. You cannot expose any method named like a public `Worker` method, or starting with `_`. If you use method auto-discovery, then these methods will not be exposed, even if they exist.
|
||||
|
||||
#### `forkOptions: ForkOptions` (optional)
|
||||
|
||||
Allow customizing all options passed to `child_process.fork`. By default, some values are set (`cwd`, `env`, `execArgv` and `serialization`), but you can override them and customize the rest. For a list of valid values, check [the Node documentation](https://nodejs.org/api/child_process.html#child_process_child_process_fork_modulepath_args_options).
|
||||
|
||||
#### `idleMemoryLimit: number` (optional)
|
||||
|
||||
Specifies the memory limit for workers before they are recycled and is primarily a work-around for [this issue](https://github.com/jestjs/jest/issues/11956);
|
||||
|
||||
After the worker has executed a task the memory usage of it is checked. If it exceeds the value specified the worker is killed and restarted. If no limit is set this process does not occur. The limit can be specified in 2 ways:
|
||||
|
||||
- `<= 1` - The value is assumed to be a percentage of system memory. So 0.5 sets the memory limit of the worker to half of the total system memory
|
||||
- `\> 1` - Assumed to be a fixed byte value. Because of the previous rule if you wanted a value of 1 byte (I don't know why) you could use `1.1`.
|
||||
|
||||
#### `maxRetries: number` (optional)
|
||||
|
||||
Maximum amount of times that a dead child can be re-spawned, per call. Defaults to `3`, pass `Infinity` to allow endless retries.
|
||||
|
||||
#### `numWorkers: number` (optional)
|
||||
|
||||
Amount of workers to spawn. Defaults to the number of CPUs minus 1.
|
||||
|
||||
#### `resourceLimits: ResourceLimits` (optional)
|
||||
|
||||
The `resourceLimits` option which will be passed to `worker_threads` workers.
|
||||
|
||||
#### `silent: Boolean` (optional)
|
||||
|
||||
Set to false for `stdout` and `stderr` to be logged to console.
|
||||
|
||||
By default this is true.
|
||||
|
||||
#### `setupArgs: Array<unknown>` (optional)
|
||||
|
||||
The arguments that will be passed to the `setup` method during initialization.
|
||||
|
||||
#### `taskQueue: TaskQueue` (optional)
|
||||
|
||||
The task queue defines in which order tasks (method calls) are processed by the workers. `jest-worker` ships with a `FifoQueue` and `PriorityQueue`:
|
||||
|
||||
- `FifoQueue` (default): Processes the method calls (tasks) in the call order.
|
||||
- `PriorityQueue`: Processes the method calls by a computed priority in natural ordering (lower priorities first). Tasks with the same priority are processed in any order (FIFO not guaranteed). The constructor accepts a single argument, the function that is passed the name of the called function and the arguments and returns a numerical value for the priority: `new require('jest-worker').PriorityQueue((method, filename) => filename.length)`.
|
||||
|
||||
#### `WorkerPool: new (workerPath: string, options?: WorkerPoolOptions) => WorkerPoolInterface` (optional)
|
||||
|
||||
Provide a custom WorkerPool class to be used for spawning child processes.
|
||||
|
||||
#### `workerSchedulingPolicy: 'round-robin' | 'in-order'` (optional)
|
||||
|
||||
Specifies the policy how tasks are assigned to workers if multiple workers are _idle_:
|
||||
|
||||
- `round-robin` (default): The task will be sequentially distributed onto the workers. The first task is assigned to the worker 1, the second to the worker 2, to ensure that the work is distributed across workers.
|
||||
- `in-order`: The task will be assigned to the first free worker starting with worker 1 and only assign the work to worker 2 if the worker 1 is busy.
|
||||
|
||||
Tasks are always assigned to the first free worker as soon as tasks start to queue up. The scheduling policy does not define the task scheduling which is always first-in, first-out.
|
||||
|
||||
## JestWorker
|
||||
|
||||
### Methods
|
||||
|
||||
The returned `JestWorker` instance has all the exposed methods, plus some additional ones to interact with the workers itself:
|
||||
|
||||
#### `getStdout(): Readable`
|
||||
|
||||
Returns a `ReadableStream` where the standard output of all workers is piped. Note that the `silent` option of the child workers must be set to `true` to make it work. This is the default set by `jest-worker`, but keep it in mind when overriding options through `forkOptions`.
|
||||
|
||||
#### `getStderr(): Readable`
|
||||
|
||||
Returns a `ReadableStream` where the standard error of all workers is piped. Note that the `silent` option of the child workers must be set to `true` to make it work. This is the default set by `jest-worker`, but keep it in mind when overriding options through `forkOptions`.
|
||||
|
||||
#### `start()`
|
||||
|
||||
Starts up every worker and calls their `setup` function, if it exists. Returns a `Promise` which resolves when all workers are running and have completed their `setup`.
|
||||
|
||||
This is useful if you want to start up all your workers eagerly before they are used to call any other functions.
|
||||
|
||||
#### `end()`
|
||||
|
||||
Finishes the workers by killing all workers. No further calls can be done to the `Worker` instance.
|
||||
|
||||
Returns a `Promise` that resolves with `{ forceExited: boolean }` once all workers are dead. If `forceExited` is `true`, at least one of the workers did not exit gracefully, which likely happened because it executed a leaky task that left handles open. This should be avoided, force exiting workers is a last resort to prevent creating lots of orphans.
|
||||
|
||||
**Note:**
|
||||
|
||||
`await`ing the `end()` Promise immediately after the workers are no longer needed before proceeding to do other useful things in your program may not be a good idea. If workers have to be force exited, `jest-worker` may go through multiple stages of force exiting (e.g. SIGTERM, later SIGKILL) and give the worker overall around 1 second time to exit on its own. During this time, your program will wait, even though it may not be necessary that all workers are dead before continuing execution.
|
||||
|
||||
Consider deliberately leaving this Promise floating (unhandled resolution). After your program has done the rest of its work and is about to exit, the Node process will wait for the Promise to resolve after all workers are dead as the last event loop task. That way you parallelized computation time of your program and waiting time and you didn't delay the outputs of your program unnecessarily.
|
||||
|
||||
### Worker IDs
|
||||
|
||||
Each worker has a unique id (index that starts with `'1'`), which is available inside the worker as `process.env.JEST_WORKER_ID`.
|
||||
|
||||
## Setting up and tearing down the child process
|
||||
|
||||
The child process can define two special methods (both of them can be asynchronous):
|
||||
|
||||
- `setup()`: If defined, it's executed before the first call to any method in the child.
|
||||
- `teardown()`: If defined, it's executed when the farm ends.
|
||||
|
||||
# More examples
|
||||
|
||||
## Standard usage
|
||||
|
||||
This example covers the standard usage:
|
||||
|
||||
### File `parent.js`
|
||||
|
||||
```js
|
||||
import {Worker as JestWorker} from 'jest-worker';
|
||||
|
||||
async function main() {
|
||||
const myWorker = new JestWorker(require.resolve('./worker'), {
|
||||
exposedMethods: ['foo', 'bar', 'getWorkerId'],
|
||||
numWorkers: 4,
|
||||
});
|
||||
|
||||
console.log(await myWorker.foo('Alice')); // "Hello from foo: Alice"
|
||||
console.log(await myWorker.bar('Bob')); // "Hello from bar: Bob"
|
||||
console.log(await myWorker.getWorkerId()); // "3" -> this message has sent from the 3rd worker
|
||||
|
||||
const {forceExited} = await myWorker.end();
|
||||
if (forceExited) {
|
||||
console.error('Workers failed to exit gracefully');
|
||||
}
|
||||
}
|
||||
|
||||
main();
|
||||
```
|
||||
|
||||
### File `worker.js`
|
||||
|
||||
```js
|
||||
export function foo(param) {
|
||||
return `Hello from foo: ${param}`;
|
||||
}
|
||||
|
||||
export function bar(param) {
|
||||
return `Hello from bar: ${param}`;
|
||||
}
|
||||
|
||||
export function getWorkerId() {
|
||||
return process.env.JEST_WORKER_ID;
|
||||
}
|
||||
```
|
||||
|
||||
## Bound worker usage:
|
||||
|
||||
This example covers the usage with a `computeWorkerKey` method:
|
||||
|
||||
### File `parent.js`
|
||||
|
||||
```js
|
||||
import {Worker as JestWorker} from 'jest-worker';
|
||||
|
||||
async function main() {
|
||||
const myWorker = new JestWorker(require.resolve('./worker'), {
|
||||
computeWorkerKey: (method, filename) => filename,
|
||||
});
|
||||
|
||||
// Transform the given file, within the first available worker.
|
||||
console.log(await myWorker.transform('/tmp/foo.js'));
|
||||
|
||||
// Wait a bit.
|
||||
await sleep(10000);
|
||||
|
||||
// Transform the same file again. Will immediately return because the
|
||||
// transformed file is cached in the worker, and `computeWorkerKey` ensures
|
||||
// the same worker that processed the file the first time will process it now.
|
||||
console.log(await myWorker.transform('/tmp/foo.js'));
|
||||
|
||||
const {forceExited} = await myWorker.end();
|
||||
if (forceExited) {
|
||||
console.error('Workers failed to exit gracefully');
|
||||
}
|
||||
}
|
||||
|
||||
main();
|
||||
```
|
||||
|
||||
### File `worker.js`
|
||||
|
||||
```js
|
||||
import babel from '@babel/core';
|
||||
|
||||
const cache = Object.create(null);
|
||||
|
||||
export function transform(filename) {
|
||||
if (cache[filename]) {
|
||||
return cache[filename];
|
||||
}
|
||||
|
||||
// jest-worker can handle both immediate results and thenables. If a
|
||||
// thenable is returned, it will be await'ed until it resolves.
|
||||
return babel.transformFileAsync(filename).then(result => {
|
||||
cache[filename] = result;
|
||||
|
||||
return result;
|
||||
});
|
||||
}
|
||||
```
|
152
node_modules/@jest/reporters/node_modules/jest-worker/build/Farm.js
generated
vendored
152
node_modules/@jest/reporters/node_modules/jest-worker/build/Farm.js
generated
vendored
@ -1,152 +0,0 @@
|
||||
'use strict';
|
||||
|
||||
Object.defineProperty(exports, '__esModule', {
|
||||
value: true
|
||||
});
|
||||
exports.default = void 0;
|
||||
var _FifoQueue = _interopRequireDefault(require('./FifoQueue'));
|
||||
var _types = require('./types');
|
||||
function _interopRequireDefault(obj) {
|
||||
return obj && obj.__esModule ? obj : {default: obj};
|
||||
}
|
||||
/**
|
||||
* Copyright (c) Meta Platforms, Inc. and affiliates.
|
||||
*
|
||||
* This source code is licensed under the MIT license found in the
|
||||
* LICENSE file in the root directory of this source tree.
|
||||
*/
|
||||
|
||||
class Farm {
|
||||
_computeWorkerKey;
|
||||
_workerSchedulingPolicy;
|
||||
_cacheKeys = Object.create(null);
|
||||
_locks = [];
|
||||
_offset = 0;
|
||||
_taskQueue;
|
||||
constructor(_numOfWorkers, _callback, options = {}) {
|
||||
this._numOfWorkers = _numOfWorkers;
|
||||
this._callback = _callback;
|
||||
this._computeWorkerKey = options.computeWorkerKey;
|
||||
this._workerSchedulingPolicy =
|
||||
options.workerSchedulingPolicy ?? 'round-robin';
|
||||
this._taskQueue = options.taskQueue ?? new _FifoQueue.default();
|
||||
}
|
||||
doWork(method, ...args) {
|
||||
const customMessageListeners = new Set();
|
||||
const addCustomMessageListener = listener => {
|
||||
customMessageListeners.add(listener);
|
||||
return () => {
|
||||
customMessageListeners.delete(listener);
|
||||
};
|
||||
};
|
||||
const onCustomMessage = message => {
|
||||
customMessageListeners.forEach(listener => listener(message));
|
||||
};
|
||||
const promise = new Promise(
|
||||
// Bind args to this function so it won't reference to the parent scope.
|
||||
// This prevents a memory leak in v8, because otherwise the function will
|
||||
// retain args for the closure.
|
||||
((args, resolve, reject) => {
|
||||
const computeWorkerKey = this._computeWorkerKey;
|
||||
const request = [_types.CHILD_MESSAGE_CALL, false, method, args];
|
||||
let worker = null;
|
||||
let hash = null;
|
||||
if (computeWorkerKey) {
|
||||
hash = computeWorkerKey.call(this, method, ...args);
|
||||
worker = hash == null ? null : this._cacheKeys[hash];
|
||||
}
|
||||
const onStart = worker => {
|
||||
if (hash != null) {
|
||||
this._cacheKeys[hash] = worker;
|
||||
}
|
||||
};
|
||||
const onEnd = (error, result) => {
|
||||
customMessageListeners.clear();
|
||||
if (error) {
|
||||
reject(error);
|
||||
} else {
|
||||
resolve(result);
|
||||
}
|
||||
};
|
||||
const task = {
|
||||
onCustomMessage,
|
||||
onEnd,
|
||||
onStart,
|
||||
request
|
||||
};
|
||||
if (worker) {
|
||||
this._taskQueue.enqueue(task, worker.getWorkerId());
|
||||
this._process(worker.getWorkerId());
|
||||
} else {
|
||||
this._push(task);
|
||||
}
|
||||
}).bind(null, args)
|
||||
);
|
||||
promise.UNSTABLE_onCustomMessage = addCustomMessageListener;
|
||||
return promise;
|
||||
}
|
||||
_process(workerId) {
|
||||
if (this._isLocked(workerId)) {
|
||||
return this;
|
||||
}
|
||||
const task = this._taskQueue.dequeue(workerId);
|
||||
if (!task) {
|
||||
return this;
|
||||
}
|
||||
if (task.request[1]) {
|
||||
throw new Error('Queue implementation returned processed task');
|
||||
}
|
||||
|
||||
// Reference the task object outside so it won't be retained by onEnd,
|
||||
// and other properties of the task object, such as task.request can be
|
||||
// garbage collected.
|
||||
let taskOnEnd = task.onEnd;
|
||||
const onEnd = (error, result) => {
|
||||
if (taskOnEnd) {
|
||||
taskOnEnd(error, result);
|
||||
}
|
||||
taskOnEnd = null;
|
||||
this._unlock(workerId);
|
||||
this._process(workerId);
|
||||
};
|
||||
task.request[1] = true;
|
||||
this._lock(workerId);
|
||||
this._callback(
|
||||
workerId,
|
||||
task.request,
|
||||
task.onStart,
|
||||
onEnd,
|
||||
task.onCustomMessage
|
||||
);
|
||||
return this;
|
||||
}
|
||||
_push(task) {
|
||||
this._taskQueue.enqueue(task);
|
||||
const offset = this._getNextWorkerOffset();
|
||||
for (let i = 0; i < this._numOfWorkers; i++) {
|
||||
this._process((offset + i) % this._numOfWorkers);
|
||||
if (task.request[1]) {
|
||||
break;
|
||||
}
|
||||
}
|
||||
return this;
|
||||
}
|
||||
_getNextWorkerOffset() {
|
||||
switch (this._workerSchedulingPolicy) {
|
||||
case 'in-order':
|
||||
return 0;
|
||||
case 'round-robin':
|
||||
return this._offset++;
|
||||
}
|
||||
}
|
||||
_lock(workerId) {
|
||||
this._locks[workerId] = true;
|
||||
}
|
||||
_unlock(workerId) {
|
||||
this._locks[workerId] = false;
|
||||
}
|
||||
_isLocked(workerId) {
|
||||
return this._locks[workerId];
|
||||
}
|
||||
}
|
||||
exports.default = Farm;
|
89
node_modules/@jest/reporters/node_modules/jest-worker/build/FifoQueue.js
generated
vendored
89
node_modules/@jest/reporters/node_modules/jest-worker/build/FifoQueue.js
generated
vendored
@ -1,89 +0,0 @@
|
||||
'use strict';
|
||||
|
||||
Object.defineProperty(exports, '__esModule', {
|
||||
value: true
|
||||
});
|
||||
exports.default = void 0;
|
||||
/**
|
||||
* Copyright (c) Meta Platforms, Inc. and affiliates.
|
||||
*
|
||||
* This source code is licensed under the MIT license found in the
|
||||
* LICENSE file in the root directory of this source tree.
|
||||
*/
|
||||
|
||||
/**
|
||||
* First-in, First-out task queue that manages a dedicated pool
|
||||
* for each worker as well as a shared queue. The FIFO ordering is guaranteed
|
||||
* across the worker specific and shared queue.
|
||||
*/
|
||||
class FifoQueue {
|
||||
_workerQueues = [];
|
||||
_sharedQueue = new InternalQueue();
|
||||
enqueue(task, workerId) {
|
||||
if (workerId == null) {
|
||||
this._sharedQueue.enqueue(task);
|
||||
return;
|
||||
}
|
||||
let workerQueue = this._workerQueues[workerId];
|
||||
if (workerQueue == null) {
|
||||
workerQueue = this._workerQueues[workerId] = new InternalQueue();
|
||||
}
|
||||
const sharedTop = this._sharedQueue.peekLast();
|
||||
const item = {
|
||||
previousSharedTask: sharedTop,
|
||||
task
|
||||
};
|
||||
workerQueue.enqueue(item);
|
||||
}
|
||||
dequeue(workerId) {
|
||||
const workerTop = this._workerQueues[workerId]?.peek();
|
||||
const sharedTaskIsProcessed =
|
||||
workerTop?.previousSharedTask?.request[1] ?? true;
|
||||
|
||||
// Process the top task from the shared queue if
|
||||
// - there's no task in the worker specific queue or
|
||||
// - if the non-worker-specific task after which this worker specific task
|
||||
// has been queued wasn't processed yet
|
||||
if (workerTop != null && sharedTaskIsProcessed) {
|
||||
return this._workerQueues[workerId]?.dequeue()?.task ?? null;
|
||||
}
|
||||
return this._sharedQueue.dequeue();
|
||||
}
|
||||
}
|
||||
exports.default = FifoQueue;
|
||||
/**
|
||||
* FIFO queue for a single worker / shared queue.
|
||||
*/
|
||||
class InternalQueue {
|
||||
_head = null;
|
||||
_last = null;
|
||||
enqueue(value) {
|
||||
const item = {
|
||||
next: null,
|
||||
value
|
||||
};
|
||||
if (this._last == null) {
|
||||
this._head = item;
|
||||
} else {
|
||||
this._last.next = item;
|
||||
}
|
||||
this._last = item;
|
||||
}
|
||||
dequeue() {
|
||||
if (this._head == null) {
|
||||
return null;
|
||||
}
|
||||
const item = this._head;
|
||||
this._head = item.next;
|
||||
if (this._head == null) {
|
||||
this._last = null;
|
||||
}
|
||||
return item.value;
|
||||
}
|
||||
peek() {
|
||||
return this._head?.value ?? null;
|
||||
}
|
||||
peekLast() {
|
||||
return this._last?.value ?? null;
|
||||
}
|
||||
}
|
137
node_modules/@jest/reporters/node_modules/jest-worker/build/PriorityQueue.js
generated
vendored
137
node_modules/@jest/reporters/node_modules/jest-worker/build/PriorityQueue.js
generated
vendored
@ -1,137 +0,0 @@
|
||||
'use strict';
|
||||
|
||||
Object.defineProperty(exports, '__esModule', {
|
||||
value: true
|
||||
});
|
||||
exports.default = void 0;
|
||||
/**
|
||||
* Copyright (c) Meta Platforms, Inc. and affiliates.
|
||||
*
|
||||
* This source code is licensed under the MIT license found in the
|
||||
* LICENSE file in the root directory of this source tree.
|
||||
*/
|
||||
|
||||
/**
|
||||
* Priority queue that processes tasks in natural ordering (lower priority first)
|
||||
* according to the priority computed by the function passed in the constructor.
|
||||
*
|
||||
* FIFO ordering isn't guaranteed for tasks with the same priority.
|
||||
*
|
||||
* Worker specific tasks with the same priority as a non-worker specific task
|
||||
* are always processed first.
|
||||
*/
|
||||
class PriorityQueue {
|
||||
_queue = [];
|
||||
_sharedQueue = new MinHeap();
|
||||
constructor(_computePriority) {
|
||||
this._computePriority = _computePriority;
|
||||
}
|
||||
enqueue(task, workerId) {
|
||||
if (workerId == null) {
|
||||
this._enqueue(task, this._sharedQueue);
|
||||
} else {
|
||||
const queue = this._getWorkerQueue(workerId);
|
||||
this._enqueue(task, queue);
|
||||
}
|
||||
}
|
||||
_enqueue(task, queue) {
|
||||
const item = {
|
||||
priority: this._computePriority(task.request[2], ...task.request[3]),
|
||||
task
|
||||
};
|
||||
queue.add(item);
|
||||
}
|
||||
dequeue(workerId) {
|
||||
const workerQueue = this._getWorkerQueue(workerId);
|
||||
const workerTop = workerQueue.peek();
|
||||
const sharedTop = this._sharedQueue.peek();
|
||||
|
||||
// use the task from the worker queue if there's no task in the shared queue
|
||||
// or if the priority of the worker queue is smaller or equal to the
|
||||
// priority of the top task in the shared queue. The tasks of the
|
||||
// worker specific queue are preferred because no other worker can pick this
|
||||
// specific task up.
|
||||
if (
|
||||
sharedTop == null ||
|
||||
(workerTop != null && workerTop.priority <= sharedTop.priority)
|
||||
) {
|
||||
return workerQueue.poll()?.task ?? null;
|
||||
}
|
||||
return this._sharedQueue.poll().task;
|
||||
}
|
||||
_getWorkerQueue(workerId) {
|
||||
let queue = this._queue[workerId];
|
||||
if (queue == null) {
|
||||
queue = this._queue[workerId] = new MinHeap();
|
||||
}
|
||||
return queue;
|
||||
}
|
||||
}
|
||||
exports.default = PriorityQueue;
|
||||
class MinHeap {
|
||||
_heap = [];
|
||||
peek() {
|
||||
return this._heap[0] ?? null;
|
||||
}
|
||||
add(item) {
|
||||
const nodes = this._heap;
|
||||
nodes.push(item);
|
||||
if (nodes.length === 1) {
|
||||
return;
|
||||
}
|
||||
let currentIndex = nodes.length - 1;
|
||||
|
||||
// Bubble up the added node as long as the parent is bigger
|
||||
while (currentIndex > 0) {
|
||||
const parentIndex = Math.floor((currentIndex + 1) / 2) - 1;
|
||||
const parent = nodes[parentIndex];
|
||||
if (parent.priority <= item.priority) {
|
||||
break;
|
||||
}
|
||||
nodes[currentIndex] = parent;
|
||||
nodes[parentIndex] = item;
|
||||
currentIndex = parentIndex;
|
||||
}
|
||||
}
|
||||
poll() {
|
||||
const nodes = this._heap;
|
||||
const result = nodes[0];
|
||||
const lastElement = nodes.pop();
|
||||
|
||||
// heap was empty or removed the last element
|
||||
if (result == null || nodes.length === 0) {
|
||||
return result ?? null;
|
||||
}
|
||||
let index = 0;
|
||||
nodes[0] = lastElement ?? null;
|
||||
const element = nodes[0];
|
||||
while (true) {
|
||||
let swapIndex = null;
|
||||
const rightChildIndex = (index + 1) * 2;
|
||||
const leftChildIndex = rightChildIndex - 1;
|
||||
const rightChild = nodes[rightChildIndex];
|
||||
const leftChild = nodes[leftChildIndex];
|
||||
|
||||
// if the left child is smaller, swap with the left
|
||||
if (leftChild != null && leftChild.priority < element.priority) {
|
||||
swapIndex = leftChildIndex;
|
||||
}
|
||||
|
||||
// If the right child is smaller or the right child is smaller than the left
|
||||
// then swap with the right child
|
||||
if (
|
||||
rightChild != null &&
|
||||
rightChild.priority < (swapIndex == null ? element : leftChild).priority
|
||||
) {
|
||||
swapIndex = rightChildIndex;
|
||||
}
|
||||
if (swapIndex == null) {
|
||||
break;
|
||||
}
|
||||
nodes[index] = nodes[swapIndex];
|
||||
nodes[swapIndex] = element;
|
||||
index = swapIndex;
|
||||
}
|
||||
return result;
|
||||
}
|
||||
}
|
34
node_modules/@jest/reporters/node_modules/jest-worker/build/WorkerPool.js
generated
vendored
34
node_modules/@jest/reporters/node_modules/jest-worker/build/WorkerPool.js
generated
vendored
@ -1,34 +0,0 @@
|
||||
'use strict';
|
||||
|
||||
Object.defineProperty(exports, '__esModule', {
|
||||
value: true
|
||||
});
|
||||
exports.default = void 0;
|
||||
var _BaseWorkerPool = _interopRequireDefault(require('./base/BaseWorkerPool'));
|
||||
function _interopRequireDefault(obj) {
|
||||
return obj && obj.__esModule ? obj : {default: obj};
|
||||
}
|
||||
/**
|
||||
* Copyright (c) Meta Platforms, Inc. and affiliates.
|
||||
*
|
||||
* This source code is licensed under the MIT license found in the
|
||||
* LICENSE file in the root directory of this source tree.
|
||||
*/
|
||||
|
||||
class WorkerPool extends _BaseWorkerPool.default {
|
||||
send(workerId, request, onStart, onEnd, onCustomMessage) {
|
||||
this.restartWorkerIfShutDown(workerId);
|
||||
this.getWorkerById(workerId).send(request, onStart, onEnd, onCustomMessage);
|
||||
}
|
||||
createWorker(workerOptions) {
|
||||
let Worker;
|
||||
if (this._options.enableWorkerThreads) {
|
||||
Worker = require('./workers/NodeThreadsWorker').default;
|
||||
} else {
|
||||
Worker = require('./workers/ChildProcessWorker').default;
|
||||
}
|
||||
return new Worker(workerOptions);
|
||||
}
|
||||
}
|
||||
var _default = WorkerPool;
|
||||
exports.default = _default;
|
156
node_modules/@jest/reporters/node_modules/jest-worker/build/base/BaseWorkerPool.js
generated
vendored
156
node_modules/@jest/reporters/node_modules/jest-worker/build/base/BaseWorkerPool.js
generated
vendored
@ -1,156 +0,0 @@
|
||||
'use strict';
|
||||
|
||||
Object.defineProperty(exports, '__esModule', {
|
||||
value: true
|
||||
});
|
||||
exports.default = void 0;
|
||||
function _mergeStream() {
|
||||
const data = _interopRequireDefault(require('merge-stream'));
|
||||
_mergeStream = function () {
|
||||
return data;
|
||||
};
|
||||
return data;
|
||||
}
|
||||
var _types = require('../types');
|
||||
function _interopRequireDefault(obj) {
|
||||
return obj && obj.__esModule ? obj : {default: obj};
|
||||
}
|
||||
/**
|
||||
* Copyright (c) Meta Platforms, Inc. and affiliates.
|
||||
*
|
||||
* This source code is licensed under the MIT license found in the
|
||||
* LICENSE file in the root directory of this source tree.
|
||||
*/
|
||||
|
||||
// How long to wait for the child process to terminate
|
||||
// after CHILD_MESSAGE_END before sending force exiting.
|
||||
const FORCE_EXIT_DELAY = 500;
|
||||
|
||||
/* istanbul ignore next */
|
||||
// eslint-disable-next-line @typescript-eslint/no-empty-function
|
||||
const emptyMethod = () => {};
|
||||
class BaseWorkerPool {
|
||||
_stderr;
|
||||
_stdout;
|
||||
_options;
|
||||
_workers;
|
||||
_workerPath;
|
||||
constructor(workerPath, options) {
|
||||
this._options = options;
|
||||
this._workerPath = workerPath;
|
||||
this._workers = new Array(options.numWorkers);
|
||||
const stdout = (0, _mergeStream().default)();
|
||||
const stderr = (0, _mergeStream().default)();
|
||||
const {forkOptions, maxRetries, resourceLimits, setupArgs} = options;
|
||||
for (let i = 0; i < options.numWorkers; i++) {
|
||||
const workerOptions = {
|
||||
forkOptions,
|
||||
idleMemoryLimit: this._options.idleMemoryLimit,
|
||||
maxRetries,
|
||||
resourceLimits,
|
||||
setupArgs,
|
||||
workerId: i,
|
||||
workerPath
|
||||
};
|
||||
const worker = this.createWorker(workerOptions);
|
||||
const workerStdout = worker.getStdout();
|
||||
const workerStderr = worker.getStderr();
|
||||
if (workerStdout) {
|
||||
stdout.add(workerStdout);
|
||||
}
|
||||
if (workerStderr) {
|
||||
stderr.add(workerStderr);
|
||||
}
|
||||
this._workers[i] = worker;
|
||||
}
|
||||
this._stdout = stdout;
|
||||
this._stderr = stderr;
|
||||
}
|
||||
getStderr() {
|
||||
return this._stderr;
|
||||
}
|
||||
getStdout() {
|
||||
return this._stdout;
|
||||
}
|
||||
getWorkers() {
|
||||
return this._workers;
|
||||
}
|
||||
getWorkerById(workerId) {
|
||||
return this._workers[workerId];
|
||||
}
|
||||
restartWorkerIfShutDown(workerId) {
|
||||
if (this._workers[workerId].state === _types.WorkerStates.SHUT_DOWN) {
|
||||
const {forkOptions, maxRetries, resourceLimits, setupArgs} =
|
||||
this._options;
|
||||
const workerOptions = {
|
||||
forkOptions,
|
||||
idleMemoryLimit: this._options.idleMemoryLimit,
|
||||
maxRetries,
|
||||
resourceLimits,
|
||||
setupArgs,
|
||||
workerId,
|
||||
workerPath: this._workerPath
|
||||
};
|
||||
const worker = this.createWorker(workerOptions);
|
||||
this._workers[workerId] = worker;
|
||||
}
|
||||
}
|
||||
createWorker(_workerOptions) {
|
||||
throw Error('Missing method createWorker in WorkerPool');
|
||||
}
|
||||
async start() {
|
||||
await Promise.all(
|
||||
this._workers.map(async worker => {
|
||||
await worker.waitForWorkerReady();
|
||||
await new Promise((resolve, reject) => {
|
||||
worker.send(
|
||||
[_types.CHILD_MESSAGE_CALL_SETUP],
|
||||
emptyMethod,
|
||||
error => {
|
||||
if (error) {
|
||||
reject(error);
|
||||
} else {
|
||||
resolve();
|
||||
}
|
||||
},
|
||||
emptyMethod
|
||||
);
|
||||
});
|
||||
})
|
||||
);
|
||||
}
|
||||
async end() {
|
||||
// We do not cache the request object here. If so, it would only be only
|
||||
// processed by one of the workers, and we want them all to close.
|
||||
const workerExitPromises = this._workers.map(async worker => {
|
||||
worker.send(
|
||||
[_types.CHILD_MESSAGE_END, false],
|
||||
emptyMethod,
|
||||
emptyMethod,
|
||||
emptyMethod
|
||||
);
|
||||
|
||||
// Schedule a force exit in case worker fails to exit gracefully so
|
||||
// await worker.waitForExit() never takes longer than FORCE_EXIT_DELAY
|
||||
let forceExited = false;
|
||||
const forceExitTimeout = setTimeout(() => {
|
||||
worker.forceExit();
|
||||
forceExited = true;
|
||||
}, FORCE_EXIT_DELAY);
|
||||
await worker.waitForExit();
|
||||
// Worker ideally exited gracefully, don't send force exit then
|
||||
clearTimeout(forceExitTimeout);
|
||||
return forceExited;
|
||||
});
|
||||
const workerExits = await Promise.all(workerExitPromises);
|
||||
return workerExits.reduce(
|
||||
(result, forceExited) => ({
|
||||
forceExited: result.forceExited || forceExited
|
||||
}),
|
||||
{
|
||||
forceExited: false
|
||||
}
|
||||
);
|
||||
}
|
||||
}
|
||||
exports.default = BaseWorkerPool;
|
355
node_modules/@jest/reporters/node_modules/jest-worker/build/index.d.ts
generated
vendored
355
node_modules/@jest/reporters/node_modules/jest-worker/build/index.d.ts
generated
vendored
@ -1,355 +0,0 @@
|
||||
/**
|
||||
* Copyright (c) Meta Platforms, Inc. and affiliates.
|
||||
*
|
||||
* This source code is licensed under the MIT license found in the
|
||||
* LICENSE file in the root directory of this source tree.
|
||||
*/
|
||||
/// <reference types="node" />
|
||||
|
||||
import type {ForkOptions} from 'child_process';
|
||||
import type {ResourceLimits} from 'worker_threads';
|
||||
|
||||
declare const CHILD_MESSAGE_CALL = 1;
|
||||
|
||||
declare const CHILD_MESSAGE_CALL_SETUP = 4;
|
||||
|
||||
declare const CHILD_MESSAGE_END = 2;
|
||||
|
||||
declare const CHILD_MESSAGE_INITIALIZE = 0;
|
||||
|
||||
declare const CHILD_MESSAGE_MEM_USAGE = 3;
|
||||
|
||||
declare type ChildMessage =
|
||||
| ChildMessageInitialize
|
||||
| ChildMessageCall
|
||||
| ChildMessageEnd
|
||||
| ChildMessageMemUsage
|
||||
| ChildMessageCallSetup;
|
||||
|
||||
declare type ChildMessageCall = [
|
||||
type: typeof CHILD_MESSAGE_CALL,
|
||||
isProcessed: boolean,
|
||||
methodName: string,
|
||||
args: Array<unknown>,
|
||||
];
|
||||
|
||||
declare type ChildMessageCallSetup = [type: typeof CHILD_MESSAGE_CALL_SETUP];
|
||||
|
||||
declare type ChildMessageEnd = [
|
||||
type: typeof CHILD_MESSAGE_END,
|
||||
isProcessed: boolean,
|
||||
];
|
||||
|
||||
declare type ChildMessageInitialize = [
|
||||
type: typeof CHILD_MESSAGE_INITIALIZE,
|
||||
isProcessed: boolean,
|
||||
fileName: string,
|
||||
setupArgs: Array<unknown>,
|
||||
workerId: string | undefined,
|
||||
];
|
||||
|
||||
declare type ChildMessageMemUsage = [type: typeof CHILD_MESSAGE_MEM_USAGE];
|
||||
|
||||
declare type ComputeTaskPriorityCallback = (
|
||||
method: string,
|
||||
...args: Array<unknown>
|
||||
) => number;
|
||||
|
||||
declare type ExcludeReservedKeys<K> = Exclude<K, ReservedKeys>;
|
||||
|
||||
/**
|
||||
* First-in, First-out task queue that manages a dedicated pool
|
||||
* for each worker as well as a shared queue. The FIFO ordering is guaranteed
|
||||
* across the worker specific and shared queue.
|
||||
*/
|
||||
export declare class FifoQueue implements TaskQueue {
|
||||
private _workerQueues;
|
||||
private readonly _sharedQueue;
|
||||
enqueue(task: QueueChildMessage, workerId?: number): void;
|
||||
dequeue(workerId: number): QueueChildMessage | null;
|
||||
}
|
||||
|
||||
declare type FunctionLike = (...args: any) => unknown;
|
||||
|
||||
declare type HeapItem = {
|
||||
priority: number;
|
||||
};
|
||||
|
||||
export declare type JestWorkerFarm<T extends Record<string, unknown>> =
|
||||
Worker_2 & WorkerModule<T>;
|
||||
|
||||
export declare function messageParent(
|
||||
message: unknown,
|
||||
parentProcess?: NodeJS.Process,
|
||||
): void;
|
||||
|
||||
declare type MethodLikeKeys<T> = {
|
||||
[K in keyof T]: T[K] extends FunctionLike ? K : never;
|
||||
}[keyof T];
|
||||
|
||||
declare class MinHeap<TItem extends HeapItem> {
|
||||
private readonly _heap;
|
||||
peek(): TItem | null;
|
||||
add(item: TItem): void;
|
||||
poll(): TItem | null;
|
||||
}
|
||||
|
||||
declare type OnCustomMessage = (message: Array<unknown> | unknown) => void;
|
||||
|
||||
declare type OnEnd = (err: Error | null, result: unknown) => void;
|
||||
|
||||
declare type OnStart = (worker: WorkerInterface) => void;
|
||||
|
||||
declare type OnStateChangeHandler = (
|
||||
state: WorkerStates,
|
||||
oldState: WorkerStates,
|
||||
) => void;
|
||||
|
||||
declare type PoolExitResult = {
|
||||
forceExited: boolean;
|
||||
};
|
||||
|
||||
/**
|
||||
* Priority queue that processes tasks in natural ordering (lower priority first)
|
||||
* according to the priority computed by the function passed in the constructor.
|
||||
*
|
||||
* FIFO ordering isn't guaranteed for tasks with the same priority.
|
||||
*
|
||||
* Worker specific tasks with the same priority as a non-worker specific task
|
||||
* are always processed first.
|
||||
*/
|
||||
export declare class PriorityQueue implements TaskQueue {
|
||||
private readonly _computePriority;
|
||||
private _queue;
|
||||
private readonly _sharedQueue;
|
||||
constructor(_computePriority: ComputeTaskPriorityCallback);
|
||||
enqueue(task: QueueChildMessage, workerId?: number): void;
|
||||
_enqueue(task: QueueChildMessage, queue: MinHeap<QueueItem>): void;
|
||||
dequeue(workerId: number): QueueChildMessage | null;
|
||||
_getWorkerQueue(workerId: number): MinHeap<QueueItem>;
|
||||
}
|
||||
|
||||
export declare interface PromiseWithCustomMessage<T> extends Promise<T> {
|
||||
UNSTABLE_onCustomMessage?: (listener: OnCustomMessage) => () => void;
|
||||
}
|
||||
|
||||
declare type Promisify<T extends FunctionLike> = ReturnType<T> extends Promise<
|
||||
infer R
|
||||
>
|
||||
? (...args: Parameters<T>) => Promise<R>
|
||||
: (...args: Parameters<T>) => Promise<ReturnType<T>>;
|
||||
|
||||
declare type QueueChildMessage = {
|
||||
request: ChildMessageCall;
|
||||
onStart: OnStart;
|
||||
onEnd: OnEnd;
|
||||
onCustomMessage: OnCustomMessage;
|
||||
};
|
||||
|
||||
declare type QueueItem = {
|
||||
task: QueueChildMessage;
|
||||
priority: number;
|
||||
};
|
||||
|
||||
declare type ReservedKeys =
|
||||
| 'end'
|
||||
| 'getStderr'
|
||||
| 'getStdout'
|
||||
| 'setup'
|
||||
| 'teardown';
|
||||
|
||||
export declare interface TaskQueue {
|
||||
/**
|
||||
* Enqueues the task in the queue for the specified worker or adds it to the
|
||||
* queue shared by all workers
|
||||
* @param task the task to queue
|
||||
* @param workerId the id of the worker that should process this task or undefined
|
||||
* if there's no preference.
|
||||
*/
|
||||
enqueue(task: QueueChildMessage, workerId?: number): void;
|
||||
/**
|
||||
* Dequeues the next item from the queue for the specified worker
|
||||
* @param workerId the id of the worker for which the next task should be retrieved
|
||||
*/
|
||||
dequeue(workerId: number): QueueChildMessage | null;
|
||||
}
|
||||
|
||||
/**
|
||||
* The Jest farm (publicly called "Worker") is a class that allows you to queue
|
||||
* methods across multiple child processes, in order to parallelize work. This
|
||||
* is done by providing an absolute path to a module that will be loaded on each
|
||||
* of the child processes, and bridged to the main process.
|
||||
*
|
||||
* Bridged methods are specified by using the "exposedMethods" property of the
|
||||
* "options" object. This is an array of strings, where each of them corresponds
|
||||
* to the exported name in the loaded module.
|
||||
*
|
||||
* You can also control the amount of workers by using the "numWorkers" property
|
||||
* of the "options" object, and the settings passed to fork the process through
|
||||
* the "forkOptions" property. The amount of workers defaults to the amount of
|
||||
* CPUS minus one.
|
||||
*
|
||||
* Queueing calls can be done in two ways:
|
||||
* - Standard method: calls will be redirected to the first available worker,
|
||||
* so they will get executed as soon as they can.
|
||||
*
|
||||
* - Sticky method: if a "computeWorkerKey" method is provided within the
|
||||
* config, the resulting string of this method will be used as a key.
|
||||
* Every time this key is returned, it is guaranteed that your job will be
|
||||
* processed by the same worker. This is specially useful if your workers
|
||||
* are caching results.
|
||||
*/
|
||||
declare class Worker_2 {
|
||||
private _ending;
|
||||
private readonly _farm;
|
||||
private readonly _options;
|
||||
private readonly _workerPool;
|
||||
constructor(workerPath: string | URL, options?: WorkerFarmOptions);
|
||||
private _bindExposedWorkerMethods;
|
||||
private _callFunctionWithArgs;
|
||||
getStderr(): NodeJS.ReadableStream;
|
||||
getStdout(): NodeJS.ReadableStream;
|
||||
start(): Promise<void>;
|
||||
end(): Promise<PoolExitResult>;
|
||||
}
|
||||
export {Worker_2 as Worker};
|
||||
|
||||
declare type WorkerCallback = (
|
||||
workerId: number,
|
||||
request: ChildMessage,
|
||||
onStart: OnStart,
|
||||
onEnd: OnEnd,
|
||||
onCustomMessage: OnCustomMessage,
|
||||
) => void;
|
||||
|
||||
declare enum WorkerEvents {
|
||||
STATE_CHANGE = 'state-change',
|
||||
}
|
||||
|
||||
export declare type WorkerFarmOptions = {
|
||||
computeWorkerKey?: (method: string, ...args: Array<unknown>) => string | null;
|
||||
enableWorkerThreads?: boolean;
|
||||
exposedMethods?: ReadonlyArray<string>;
|
||||
forkOptions?: ForkOptions;
|
||||
maxRetries?: number;
|
||||
numWorkers?: number;
|
||||
resourceLimits?: ResourceLimits;
|
||||
setupArgs?: Array<unknown>;
|
||||
taskQueue?: TaskQueue;
|
||||
WorkerPool?: new (
|
||||
workerPath: string,
|
||||
options?: WorkerPoolOptions,
|
||||
) => WorkerPoolInterface;
|
||||
workerSchedulingPolicy?: WorkerSchedulingPolicy;
|
||||
idleMemoryLimit?: number;
|
||||
};
|
||||
|
||||
declare interface WorkerInterface {
|
||||
get state(): WorkerStates;
|
||||
send(
|
||||
request: ChildMessage,
|
||||
onProcessStart: OnStart,
|
||||
onProcessEnd: OnEnd,
|
||||
onCustomMessage: OnCustomMessage,
|
||||
): void;
|
||||
waitForExit(): Promise<void>;
|
||||
forceExit(): void;
|
||||
getWorkerId(): number;
|
||||
getStderr(): NodeJS.ReadableStream | null;
|
||||
getStdout(): NodeJS.ReadableStream | null;
|
||||
/**
|
||||
* Some system level identifier for the worker. IE, process id, thread id, etc.
|
||||
*/
|
||||
getWorkerSystemId(): number;
|
||||
getMemoryUsage(): Promise<number | null>;
|
||||
/**
|
||||
* Checks to see if the child worker is actually running.
|
||||
*/
|
||||
isWorkerRunning(): boolean;
|
||||
/**
|
||||
* When the worker child is started and ready to start handling requests.
|
||||
*
|
||||
* @remarks
|
||||
* This mostly exists to help with testing so that you don't check the status
|
||||
* of things like isWorkerRunning before it actually is.
|
||||
*/
|
||||
waitForWorkerReady(): Promise<void>;
|
||||
}
|
||||
|
||||
declare type WorkerModule<T> = {
|
||||
[K in keyof T as Extract<
|
||||
ExcludeReservedKeys<K>,
|
||||
MethodLikeKeys<T>
|
||||
>]: T[K] extends FunctionLike ? Promisify<T[K]> : never;
|
||||
};
|
||||
|
||||
declare type WorkerOptions_2 = {
|
||||
forkOptions: ForkOptions;
|
||||
resourceLimits: ResourceLimits;
|
||||
setupArgs: Array<unknown>;
|
||||
maxRetries: number;
|
||||
workerId: number;
|
||||
workerData?: unknown;
|
||||
workerPath: string;
|
||||
/**
|
||||
* After a job has executed the memory usage it should return to.
|
||||
*
|
||||
* @remarks
|
||||
* Note this is different from ResourceLimits in that it checks at idle, after
|
||||
* a job is complete. So you could have a resource limit of 500MB but an idle
|
||||
* limit of 50MB. The latter will only trigger if after a job has completed the
|
||||
* memory usage hasn't returned back down under 50MB.
|
||||
*/
|
||||
idleMemoryLimit?: number;
|
||||
/**
|
||||
* This mainly exists so the path can be changed during testing.
|
||||
* https://github.com/jestjs/jest/issues/9543
|
||||
*/
|
||||
childWorkerPath?: string;
|
||||
/**
|
||||
* This is useful for debugging individual tests allowing you to see
|
||||
* the raw output of the worker.
|
||||
*/
|
||||
silent?: boolean;
|
||||
/**
|
||||
* Used to immediately bind event handlers.
|
||||
*/
|
||||
on?: {
|
||||
[WorkerEvents.STATE_CHANGE]:
|
||||
| OnStateChangeHandler
|
||||
| ReadonlyArray<OnStateChangeHandler>;
|
||||
};
|
||||
};
|
||||
|
||||
export declare interface WorkerPoolInterface {
|
||||
getStderr(): NodeJS.ReadableStream;
|
||||
getStdout(): NodeJS.ReadableStream;
|
||||
getWorkers(): Array<WorkerInterface>;
|
||||
createWorker(options: WorkerOptions_2): WorkerInterface;
|
||||
send: WorkerCallback;
|
||||
start(): Promise<void>;
|
||||
end(): Promise<PoolExitResult>;
|
||||
}
|
||||
|
||||
export declare type WorkerPoolOptions = {
|
||||
setupArgs: Array<unknown>;
|
||||
forkOptions: ForkOptions;
|
||||
resourceLimits: ResourceLimits;
|
||||
maxRetries: number;
|
||||
numWorkers: number;
|
||||
enableWorkerThreads: boolean;
|
||||
idleMemoryLimit?: number;
|
||||
};
|
||||
|
||||
declare type WorkerSchedulingPolicy = 'round-robin' | 'in-order';
|
||||
|
||||
declare enum WorkerStates {
|
||||
STARTING = 'starting',
|
||||
OK = 'ok',
|
||||
OUT_OF_MEMORY = 'oom',
|
||||
RESTARTING = 'restarting',
|
||||
SHUTTING_DOWN = 'shutting-down',
|
||||
SHUT_DOWN = 'shut-down',
|
||||
}
|
||||
|
||||
export {};
|
192
node_modules/@jest/reporters/node_modules/jest-worker/build/index.js
generated
vendored
192
node_modules/@jest/reporters/node_modules/jest-worker/build/index.js
generated
vendored
@ -1,192 +0,0 @@
|
||||
'use strict';
|
||||
|
||||
Object.defineProperty(exports, '__esModule', {
|
||||
value: true
|
||||
});
|
||||
Object.defineProperty(exports, 'FifoQueue', {
|
||||
enumerable: true,
|
||||
get: function () {
|
||||
return _FifoQueue.default;
|
||||
}
|
||||
});
|
||||
Object.defineProperty(exports, 'PriorityQueue', {
|
||||
enumerable: true,
|
||||
get: function () {
|
||||
return _PriorityQueue.default;
|
||||
}
|
||||
});
|
||||
exports.Worker = void 0;
|
||||
Object.defineProperty(exports, 'messageParent', {
|
||||
enumerable: true,
|
||||
get: function () {
|
||||
return _messageParent.default;
|
||||
}
|
||||
});
|
||||
function _os() {
|
||||
const data = require('os');
|
||||
_os = function () {
|
||||
return data;
|
||||
};
|
||||
return data;
|
||||
}
|
||||
function _path() {
|
||||
const data = require('path');
|
||||
_path = function () {
|
||||
return data;
|
||||
};
|
||||
return data;
|
||||
}
|
||||
function _url() {
|
||||
const data = require('url');
|
||||
_url = function () {
|
||||
return data;
|
||||
};
|
||||
return data;
|
||||
}
|
||||
var _Farm = _interopRequireDefault(require('./Farm'));
|
||||
var _WorkerPool = _interopRequireDefault(require('./WorkerPool'));
|
||||
var _PriorityQueue = _interopRequireDefault(require('./PriorityQueue'));
|
||||
var _FifoQueue = _interopRequireDefault(require('./FifoQueue'));
|
||||
var _messageParent = _interopRequireDefault(require('./workers/messageParent'));
|
||||
function _interopRequireDefault(obj) {
|
||||
return obj && obj.__esModule ? obj : {default: obj};
|
||||
}
|
||||
/**
|
||||
* Copyright (c) Meta Platforms, Inc. and affiliates.
|
||||
*
|
||||
* This source code is licensed under the MIT license found in the
|
||||
* LICENSE file in the root directory of this source tree.
|
||||
*/
|
||||
|
||||
function getExposedMethods(workerPath, options) {
|
||||
let exposedMethods = options.exposedMethods;
|
||||
|
||||
// If no methods list is given, try getting it by auto-requiring the module.
|
||||
if (!exposedMethods) {
|
||||
const module = require(workerPath);
|
||||
exposedMethods = Object.keys(module).filter(
|
||||
name => typeof module[name] === 'function'
|
||||
);
|
||||
if (typeof module === 'function') {
|
||||
exposedMethods = [...exposedMethods, 'default'];
|
||||
}
|
||||
}
|
||||
return exposedMethods;
|
||||
}
|
||||
function getNumberOfCpus() {
|
||||
return typeof _os().availableParallelism === 'function'
|
||||
? (0, _os().availableParallelism)()
|
||||
: (0, _os().cpus)().length;
|
||||
}
|
||||
|
||||
/**
|
||||
* The Jest farm (publicly called "Worker") is a class that allows you to queue
|
||||
* methods across multiple child processes, in order to parallelize work. This
|
||||
* is done by providing an absolute path to a module that will be loaded on each
|
||||
* of the child processes, and bridged to the main process.
|
||||
*
|
||||
* Bridged methods are specified by using the "exposedMethods" property of the
|
||||
* "options" object. This is an array of strings, where each of them corresponds
|
||||
* to the exported name in the loaded module.
|
||||
*
|
||||
* You can also control the amount of workers by using the "numWorkers" property
|
||||
* of the "options" object, and the settings passed to fork the process through
|
||||
* the "forkOptions" property. The amount of workers defaults to the amount of
|
||||
* CPUS minus one.
|
||||
*
|
||||
* Queueing calls can be done in two ways:
|
||||
* - Standard method: calls will be redirected to the first available worker,
|
||||
* so they will get executed as soon as they can.
|
||||
*
|
||||
* - Sticky method: if a "computeWorkerKey" method is provided within the
|
||||
* config, the resulting string of this method will be used as a key.
|
||||
* Every time this key is returned, it is guaranteed that your job will be
|
||||
* processed by the same worker. This is specially useful if your workers
|
||||
* are caching results.
|
||||
*/
|
||||
class Worker {
|
||||
_ending;
|
||||
_farm;
|
||||
_options;
|
||||
_workerPool;
|
||||
constructor(workerPath, options) {
|
||||
this._options = {
|
||||
...options
|
||||
};
|
||||
this._ending = false;
|
||||
if (typeof workerPath !== 'string') {
|
||||
workerPath = workerPath.href;
|
||||
}
|
||||
if (workerPath.startsWith('file:')) {
|
||||
workerPath = (0, _url().fileURLToPath)(workerPath);
|
||||
} else if (!(0, _path().isAbsolute)(workerPath)) {
|
||||
throw new Error(`'workerPath' must be absolute, got '${workerPath}'`);
|
||||
}
|
||||
const workerPoolOptions = {
|
||||
enableWorkerThreads: this._options.enableWorkerThreads ?? false,
|
||||
forkOptions: this._options.forkOptions ?? {},
|
||||
idleMemoryLimit: this._options.idleMemoryLimit,
|
||||
maxRetries: this._options.maxRetries ?? 3,
|
||||
numWorkers:
|
||||
this._options.numWorkers ?? Math.max(getNumberOfCpus() - 1, 1),
|
||||
resourceLimits: this._options.resourceLimits ?? {},
|
||||
setupArgs: this._options.setupArgs ?? []
|
||||
};
|
||||
if (this._options.WorkerPool) {
|
||||
this._workerPool = new this._options.WorkerPool(
|
||||
workerPath,
|
||||
workerPoolOptions
|
||||
);
|
||||
} else {
|
||||
this._workerPool = new _WorkerPool.default(workerPath, workerPoolOptions);
|
||||
}
|
||||
this._farm = new _Farm.default(
|
||||
workerPoolOptions.numWorkers,
|
||||
this._workerPool.send.bind(this._workerPool),
|
||||
{
|
||||
computeWorkerKey: this._options.computeWorkerKey,
|
||||
taskQueue: this._options.taskQueue,
|
||||
workerSchedulingPolicy: this._options.workerSchedulingPolicy
|
||||
}
|
||||
);
|
||||
this._bindExposedWorkerMethods(workerPath, this._options);
|
||||
}
|
||||
_bindExposedWorkerMethods(workerPath, options) {
|
||||
getExposedMethods(workerPath, options).forEach(name => {
|
||||
if (name.startsWith('_')) {
|
||||
return;
|
||||
}
|
||||
|
||||
// eslint-disable-next-line no-prototype-builtins
|
||||
if (this.constructor.prototype.hasOwnProperty(name)) {
|
||||
throw new TypeError(`Cannot define a method called ${name}`);
|
||||
}
|
||||
|
||||
// @ts-expect-error: dynamic extension of the class instance is expected.
|
||||
this[name] = this._callFunctionWithArgs.bind(this, name);
|
||||
});
|
||||
}
|
||||
_callFunctionWithArgs(method, ...args) {
|
||||
if (this._ending) {
|
||||
throw new Error('Farm is ended, no more calls can be done to it');
|
||||
}
|
||||
return this._farm.doWork(method, ...args);
|
||||
}
|
||||
getStderr() {
|
||||
return this._workerPool.getStderr();
|
||||
}
|
||||
getStdout() {
|
||||
return this._workerPool.getStdout();
|
||||
}
|
||||
async start() {
|
||||
await this._workerPool.start();
|
||||
}
|
||||
async end() {
|
||||
if (this._ending) {
|
||||
throw new Error('Farm is ended, no more calls can be done to it');
|
||||
}
|
||||
this._ending = true;
|
||||
return this._workerPool.end();
|
||||
}
|
||||
}
|
||||
exports.Worker = Worker;
|
72
node_modules/@jest/reporters/node_modules/jest-worker/build/types.js
generated
vendored
72
node_modules/@jest/reporters/node_modules/jest-worker/build/types.js
generated
vendored
@ -1,72 +0,0 @@
|
||||
'use strict';
|
||||
|
||||
Object.defineProperty(exports, '__esModule', {
|
||||
value: true
|
||||
});
|
||||
exports.WorkerStates =
|
||||
exports.WorkerEvents =
|
||||
exports.PARENT_MESSAGE_SETUP_ERROR =
|
||||
exports.PARENT_MESSAGE_OK =
|
||||
exports.PARENT_MESSAGE_MEM_USAGE =
|
||||
exports.PARENT_MESSAGE_CUSTOM =
|
||||
exports.PARENT_MESSAGE_CLIENT_ERROR =
|
||||
exports.CHILD_MESSAGE_MEM_USAGE =
|
||||
exports.CHILD_MESSAGE_INITIALIZE =
|
||||
exports.CHILD_MESSAGE_END =
|
||||
exports.CHILD_MESSAGE_CALL_SETUP =
|
||||
exports.CHILD_MESSAGE_CALL =
|
||||
void 0;
|
||||
/**
|
||||
* Copyright (c) Meta Platforms, Inc. and affiliates.
|
||||
*
|
||||
* This source code is licensed under the MIT license found in the
|
||||
* LICENSE file in the root directory of this source tree.
|
||||
*/
|
||||
|
||||
// Because of the dynamic nature of a worker communication process, all messages
|
||||
// coming from any of the other processes cannot be typed. Thus, many types
|
||||
// include "unknown" as a TS type, which is (unfortunately) correct here.
|
||||
|
||||
const CHILD_MESSAGE_INITIALIZE = 0;
|
||||
exports.CHILD_MESSAGE_INITIALIZE = CHILD_MESSAGE_INITIALIZE;
|
||||
const CHILD_MESSAGE_CALL = 1;
|
||||
exports.CHILD_MESSAGE_CALL = CHILD_MESSAGE_CALL;
|
||||
const CHILD_MESSAGE_END = 2;
|
||||
exports.CHILD_MESSAGE_END = CHILD_MESSAGE_END;
|
||||
const CHILD_MESSAGE_MEM_USAGE = 3;
|
||||
exports.CHILD_MESSAGE_MEM_USAGE = CHILD_MESSAGE_MEM_USAGE;
|
||||
const CHILD_MESSAGE_CALL_SETUP = 4;
|
||||
exports.CHILD_MESSAGE_CALL_SETUP = CHILD_MESSAGE_CALL_SETUP;
|
||||
const PARENT_MESSAGE_OK = 0;
|
||||
exports.PARENT_MESSAGE_OK = PARENT_MESSAGE_OK;
|
||||
const PARENT_MESSAGE_CLIENT_ERROR = 1;
|
||||
exports.PARENT_MESSAGE_CLIENT_ERROR = PARENT_MESSAGE_CLIENT_ERROR;
|
||||
const PARENT_MESSAGE_SETUP_ERROR = 2;
|
||||
exports.PARENT_MESSAGE_SETUP_ERROR = PARENT_MESSAGE_SETUP_ERROR;
|
||||
const PARENT_MESSAGE_CUSTOM = 3;
|
||||
exports.PARENT_MESSAGE_CUSTOM = PARENT_MESSAGE_CUSTOM;
|
||||
const PARENT_MESSAGE_MEM_USAGE = 4;
|
||||
|
||||
// Option objects.
|
||||
|
||||
// Messages passed from the parent to the children.
|
||||
|
||||
// Messages passed from the children to the parent.
|
||||
|
||||
// Queue types.
|
||||
exports.PARENT_MESSAGE_MEM_USAGE = PARENT_MESSAGE_MEM_USAGE;
|
||||
let WorkerStates = /*#__PURE__*/ (function (WorkerStates) {
|
||||
WorkerStates['STARTING'] = 'starting';
|
||||
WorkerStates['OK'] = 'ok';
|
||||
WorkerStates['OUT_OF_MEMORY'] = 'oom';
|
||||
WorkerStates['RESTARTING'] = 'restarting';
|
||||
WorkerStates['SHUTTING_DOWN'] = 'shutting-down';
|
||||
WorkerStates['SHUT_DOWN'] = 'shut-down';
|
||||
return WorkerStates;
|
||||
})({});
|
||||
exports.WorkerStates = WorkerStates;
|
||||
let WorkerEvents = /*#__PURE__*/ (function (WorkerEvents) {
|
||||
WorkerEvents['STATE_CHANGE'] = 'state-change';
|
||||
return WorkerEvents;
|
||||
})({});
|
||||
exports.WorkerEvents = WorkerEvents;
|
490
node_modules/@jest/reporters/node_modules/jest-worker/build/workers/ChildProcessWorker.js
generated
vendored
490
node_modules/@jest/reporters/node_modules/jest-worker/build/workers/ChildProcessWorker.js
generated
vendored
@ -1,490 +0,0 @@
|
||||
'use strict';
|
||||
|
||||
Object.defineProperty(exports, '__esModule', {
|
||||
value: true
|
||||
});
|
||||
exports.default = exports.SIGKILL_DELAY = void 0;
|
||||
function _child_process() {
|
||||
const data = require('child_process');
|
||||
_child_process = function () {
|
||||
return data;
|
||||
};
|
||||
return data;
|
||||
}
|
||||
function _os() {
|
||||
const data = require('os');
|
||||
_os = function () {
|
||||
return data;
|
||||
};
|
||||
return data;
|
||||
}
|
||||
function _mergeStream() {
|
||||
const data = _interopRequireDefault(require('merge-stream'));
|
||||
_mergeStream = function () {
|
||||
return data;
|
||||
};
|
||||
return data;
|
||||
}
|
||||
function _supportsColor() {
|
||||
const data = require('supports-color');
|
||||
_supportsColor = function () {
|
||||
return data;
|
||||
};
|
||||
return data;
|
||||
}
|
||||
var _types = require('../types');
|
||||
var _WorkerAbstract = _interopRequireDefault(require('./WorkerAbstract'));
|
||||
function _interopRequireDefault(obj) {
|
||||
return obj && obj.__esModule ? obj : {default: obj};
|
||||
}
|
||||
/**
|
||||
* Copyright (c) Meta Platforms, Inc. and affiliates.
|
||||
*
|
||||
* This source code is licensed under the MIT license found in the
|
||||
* LICENSE file in the root directory of this source tree.
|
||||
*/
|
||||
|
||||
const SIGNAL_BASE_EXIT_CODE = 128;
|
||||
const SIGKILL_EXIT_CODE = SIGNAL_BASE_EXIT_CODE + 9;
|
||||
const SIGTERM_EXIT_CODE = SIGNAL_BASE_EXIT_CODE + 15;
|
||||
|
||||
// How long to wait after SIGTERM before sending SIGKILL
|
||||
const SIGKILL_DELAY = 500;
|
||||
|
||||
/**
|
||||
* This class wraps the child process and provides a nice interface to
|
||||
* communicate with. It takes care of:
|
||||
*
|
||||
* - Re-spawning the process if it dies.
|
||||
* - Queues calls while the worker is busy.
|
||||
* - Re-sends the requests if the worker blew up.
|
||||
*
|
||||
* The reason for queueing them here (since childProcess.send also has an
|
||||
* internal queue) is because the worker could be doing asynchronous work, and
|
||||
* this would lead to the child process to read its receiving buffer and start a
|
||||
* second call. By queueing calls here, we don't send the next call to the
|
||||
* children until we receive the result of the previous one.
|
||||
*
|
||||
* As soon as a request starts to be processed by a worker, its "processed"
|
||||
* field is changed to "true", so that other workers which might encounter the
|
||||
* same call skip it.
|
||||
*/
|
||||
exports.SIGKILL_DELAY = SIGKILL_DELAY;
|
||||
class ChildProcessWorker extends _WorkerAbstract.default {
|
||||
_child;
|
||||
_options;
|
||||
_request;
|
||||
_retries;
|
||||
_onProcessEnd;
|
||||
_onCustomMessage;
|
||||
_stdout;
|
||||
_stderr;
|
||||
_stderrBuffer = [];
|
||||
_memoryUsagePromise;
|
||||
_resolveMemoryUsage;
|
||||
_childIdleMemoryUsage;
|
||||
_childIdleMemoryUsageLimit;
|
||||
_memoryUsageCheck = false;
|
||||
_childWorkerPath;
|
||||
constructor(options) {
|
||||
super(options);
|
||||
this._options = options;
|
||||
this._request = null;
|
||||
this._stdout = null;
|
||||
this._stderr = null;
|
||||
this._childIdleMemoryUsage = null;
|
||||
this._childIdleMemoryUsageLimit = options.idleMemoryLimit || null;
|
||||
this._childWorkerPath =
|
||||
options.childWorkerPath || require.resolve('./processChild');
|
||||
this.state = _types.WorkerStates.STARTING;
|
||||
this.initialize();
|
||||
}
|
||||
initialize() {
|
||||
if (
|
||||
this.state === _types.WorkerStates.OUT_OF_MEMORY ||
|
||||
this.state === _types.WorkerStates.SHUTTING_DOWN ||
|
||||
this.state === _types.WorkerStates.SHUT_DOWN
|
||||
) {
|
||||
return;
|
||||
}
|
||||
if (this._child && this._child.connected) {
|
||||
this._child.kill('SIGKILL');
|
||||
}
|
||||
this.state = _types.WorkerStates.STARTING;
|
||||
const forceColor = _supportsColor().stdout
|
||||
? {
|
||||
FORCE_COLOR: '1'
|
||||
}
|
||||
: {};
|
||||
const silent = this._options.silent ?? true;
|
||||
if (!silent) {
|
||||
// NOTE: Detecting an out of memory crash is independent of idle memory usage monitoring. We want to
|
||||
// monitor for a crash occurring so that it can be handled as required and so we can tell the difference
|
||||
// between an OOM crash and another kind of crash. We need to do this because if a worker crashes due to
|
||||
// an OOM event sometimes it isn't seen by the worker pool and it just sits there waiting for the worker
|
||||
// to respond and it never will.
|
||||
console.warn('Unable to detect out of memory event if silent === false');
|
||||
}
|
||||
this._stderrBuffer = [];
|
||||
const options = {
|
||||
cwd: process.cwd(),
|
||||
env: {
|
||||
...process.env,
|
||||
JEST_WORKER_ID: String(this._options.workerId + 1),
|
||||
// 0-indexed workerId, 1-indexed JEST_WORKER_ID
|
||||
...forceColor
|
||||
},
|
||||
// Suppress --debug / --inspect flags while preserving others (like --harmony).
|
||||
execArgv: process.execArgv.filter(v => !/^--(debug|inspect)/.test(v)),
|
||||
// default to advanced serialization in order to match worker threads
|
||||
serialization: 'advanced',
|
||||
silent,
|
||||
...this._options.forkOptions
|
||||
};
|
||||
this._child = (0, _child_process().fork)(
|
||||
this._childWorkerPath,
|
||||
[],
|
||||
options
|
||||
);
|
||||
if (this._child.stdout) {
|
||||
if (!this._stdout) {
|
||||
// We need to add a permanent stream to the merged stream to prevent it
|
||||
// from ending when the subprocess stream ends
|
||||
this._stdout = (0, _mergeStream().default)(this._getFakeStream());
|
||||
}
|
||||
this._stdout.add(this._child.stdout);
|
||||
}
|
||||
if (this._child.stderr) {
|
||||
if (!this._stderr) {
|
||||
// We need to add a permanent stream to the merged stream to prevent it
|
||||
// from ending when the subprocess stream ends
|
||||
this._stderr = (0, _mergeStream().default)(this._getFakeStream());
|
||||
}
|
||||
this._stderr.add(this._child.stderr);
|
||||
this._child.stderr.on('data', this.stderrDataHandler.bind(this));
|
||||
}
|
||||
this._child.on('message', this._onMessage.bind(this));
|
||||
this._child.on('exit', this._onExit.bind(this));
|
||||
this._child.on('disconnect', this._onDisconnect.bind(this));
|
||||
this._child.send([
|
||||
_types.CHILD_MESSAGE_INITIALIZE,
|
||||
false,
|
||||
this._options.workerPath,
|
||||
this._options.setupArgs
|
||||
]);
|
||||
this._retries++;
|
||||
|
||||
// If we exceeded the amount of retries, we will emulate an error reply
|
||||
// coming from the child. This avoids code duplication related with cleaning
|
||||
// the queue, and scheduling the next call.
|
||||
if (this._retries > this._options.maxRetries) {
|
||||
const error = new Error(
|
||||
`Jest worker encountered ${this._retries} child process exceptions, exceeding retry limit`
|
||||
);
|
||||
this._onMessage([
|
||||
_types.PARENT_MESSAGE_CLIENT_ERROR,
|
||||
error.name,
|
||||
error.message,
|
||||
error.stack,
|
||||
{
|
||||
type: 'WorkerError'
|
||||
}
|
||||
]);
|
||||
|
||||
// Clear the request so we don't keep executing it.
|
||||
this._request = null;
|
||||
}
|
||||
this.state = _types.WorkerStates.OK;
|
||||
if (this._resolveWorkerReady) {
|
||||
this._resolveWorkerReady();
|
||||
}
|
||||
}
|
||||
stderrDataHandler(chunk) {
|
||||
if (chunk) {
|
||||
this._stderrBuffer.push(Buffer.from(chunk));
|
||||
}
|
||||
this._detectOutOfMemoryCrash();
|
||||
if (this.state === _types.WorkerStates.OUT_OF_MEMORY) {
|
||||
this._workerReadyPromise = undefined;
|
||||
this._resolveWorkerReady = undefined;
|
||||
this.killChild();
|
||||
this._shutdown();
|
||||
}
|
||||
}
|
||||
_detectOutOfMemoryCrash() {
|
||||
try {
|
||||
const bufferStr = Buffer.concat(this._stderrBuffer).toString('utf8');
|
||||
if (
|
||||
bufferStr.includes('heap out of memory') ||
|
||||
bufferStr.includes('allocation failure;') ||
|
||||
bufferStr.includes('Last few GCs')
|
||||
) {
|
||||
if (
|
||||
this.state === _types.WorkerStates.OK ||
|
||||
this.state === _types.WorkerStates.STARTING
|
||||
) {
|
||||
this.state = _types.WorkerStates.OUT_OF_MEMORY;
|
||||
}
|
||||
}
|
||||
} catch (err) {
|
||||
console.error('Error looking for out of memory crash', err);
|
||||
}
|
||||
}
|
||||
_onDisconnect() {
|
||||
this._workerReadyPromise = undefined;
|
||||
this._resolveWorkerReady = undefined;
|
||||
this._detectOutOfMemoryCrash();
|
||||
if (this.state === _types.WorkerStates.OUT_OF_MEMORY) {
|
||||
this.killChild();
|
||||
this._shutdown();
|
||||
}
|
||||
}
|
||||
_onMessage(response) {
|
||||
// Ignore messages not intended for us
|
||||
if (!Array.isArray(response)) return;
|
||||
|
||||
// TODO: Add appropriate type check
|
||||
let error;
|
||||
switch (response[0]) {
|
||||
case _types.PARENT_MESSAGE_OK:
|
||||
this._onProcessEnd(null, response[1]);
|
||||
break;
|
||||
case _types.PARENT_MESSAGE_CLIENT_ERROR:
|
||||
error = response[4];
|
||||
if (error != null && typeof error === 'object') {
|
||||
const extra = error;
|
||||
// @ts-expect-error: no index
|
||||
const NativeCtor = globalThis[response[1]];
|
||||
const Ctor = typeof NativeCtor === 'function' ? NativeCtor : Error;
|
||||
error = new Ctor(response[2]);
|
||||
error.type = response[1];
|
||||
error.stack = response[3];
|
||||
for (const key in extra) {
|
||||
error[key] = extra[key];
|
||||
}
|
||||
}
|
||||
this._onProcessEnd(error, null);
|
||||
break;
|
||||
case _types.PARENT_MESSAGE_SETUP_ERROR:
|
||||
error = new Error(`Error when calling setup: ${response[2]}`);
|
||||
error.type = response[1];
|
||||
error.stack = response[3];
|
||||
this._onProcessEnd(error, null);
|
||||
break;
|
||||
case _types.PARENT_MESSAGE_CUSTOM:
|
||||
this._onCustomMessage(response[1]);
|
||||
break;
|
||||
case _types.PARENT_MESSAGE_MEM_USAGE:
|
||||
this._childIdleMemoryUsage = response[1];
|
||||
if (this._resolveMemoryUsage) {
|
||||
this._resolveMemoryUsage(response[1]);
|
||||
this._resolveMemoryUsage = undefined;
|
||||
this._memoryUsagePromise = undefined;
|
||||
}
|
||||
this._performRestartIfRequired();
|
||||
break;
|
||||
default:
|
||||
// Ignore messages not intended for us
|
||||
break;
|
||||
}
|
||||
}
|
||||
_performRestartIfRequired() {
|
||||
if (this._memoryUsageCheck) {
|
||||
this._memoryUsageCheck = false;
|
||||
let limit = this._childIdleMemoryUsageLimit;
|
||||
|
||||
// TODO: At some point it would make sense to make use of
|
||||
// stringToBytes found in jest-config, however as this
|
||||
// package does not have any dependencies on an other jest
|
||||
// packages that can wait until some other time.
|
||||
if (limit && limit > 0 && limit <= 1) {
|
||||
limit = Math.floor((0, _os().totalmem)() * limit);
|
||||
} else if (limit) {
|
||||
limit = Math.floor(limit);
|
||||
}
|
||||
if (
|
||||
limit &&
|
||||
this._childIdleMemoryUsage &&
|
||||
this._childIdleMemoryUsage > limit
|
||||
) {
|
||||
this.state = _types.WorkerStates.RESTARTING;
|
||||
this.killChild();
|
||||
}
|
||||
}
|
||||
}
|
||||
_onExit(exitCode, signal) {
|
||||
this._workerReadyPromise = undefined;
|
||||
this._resolveWorkerReady = undefined;
|
||||
this._detectOutOfMemoryCrash();
|
||||
if (exitCode !== 0 && this.state === _types.WorkerStates.OUT_OF_MEMORY) {
|
||||
this._onProcessEnd(
|
||||
new Error('Jest worker ran out of memory and crashed'),
|
||||
null
|
||||
);
|
||||
this._shutdown();
|
||||
} else if (
|
||||
(exitCode !== 0 &&
|
||||
exitCode !== null &&
|
||||
exitCode !== SIGTERM_EXIT_CODE &&
|
||||
exitCode !== SIGKILL_EXIT_CODE &&
|
||||
this.state !== _types.WorkerStates.SHUTTING_DOWN) ||
|
||||
this.state === _types.WorkerStates.RESTARTING
|
||||
) {
|
||||
this.state = _types.WorkerStates.RESTARTING;
|
||||
this.initialize();
|
||||
if (this._request) {
|
||||
this._child.send(this._request);
|
||||
}
|
||||
} else {
|
||||
// At this point, it's not clear why the child process exited. There could
|
||||
// be several reasons:
|
||||
//
|
||||
// 1. The child process exited successfully after finishing its work.
|
||||
// This is the most likely case.
|
||||
// 2. The child process crashed in a manner that wasn't caught through
|
||||
// any of the heuristic-based checks above.
|
||||
// 3. The child process was killed by another process or daemon unrelated
|
||||
// to Jest. For example, oom-killer on Linux may have picked the child
|
||||
// process to kill because overall system memory is constrained.
|
||||
//
|
||||
// If there's a pending request to the child process in any of those
|
||||
// situations, the request still needs to be handled in some manner before
|
||||
// entering the shutdown phase. Otherwise the caller expecting a response
|
||||
// from the worker will never receive indication that something unexpected
|
||||
// happened and hang forever.
|
||||
//
|
||||
// In normal operation, the request is handled and cleared before the
|
||||
// child process exits. If it's still present, it's not clear what
|
||||
// happened and probably best to throw an error. In practice, this usually
|
||||
// happens when the child process is killed externally.
|
||||
//
|
||||
// There's a reasonable argument that the child process should be retried
|
||||
// with request re-sent in this scenario. However, if the problem was due
|
||||
// to situations such as oom-killer attempting to free up system
|
||||
// resources, retrying would exacerbate the problem.
|
||||
const isRequestStillPending = !!this._request;
|
||||
if (isRequestStillPending) {
|
||||
// If a signal is present, we can be reasonably confident the process
|
||||
// was killed externally. Log this fact so it's more clear to users that
|
||||
// something went wrong externally, rather than a bug in Jest itself.
|
||||
const error = new Error(
|
||||
signal != null
|
||||
? `A jest worker process (pid=${this._child.pid}) was terminated by another process: signal=${signal}, exitCode=${exitCode}. Operating system logs may contain more information on why this occurred.`
|
||||
: `A jest worker process (pid=${this._child.pid}) crashed for an unknown reason: exitCode=${exitCode}`
|
||||
);
|
||||
this._onProcessEnd(error, null);
|
||||
}
|
||||
this._shutdown();
|
||||
}
|
||||
}
|
||||
send(request, onProcessStart, onProcessEnd, onCustomMessage) {
|
||||
this._stderrBuffer = [];
|
||||
onProcessStart(this);
|
||||
this._onProcessEnd = (...args) => {
|
||||
const hasRequest = !!this._request;
|
||||
|
||||
// Clean the request to avoid sending past requests to workers that fail
|
||||
// while waiting for a new request (timers, unhandled rejections...)
|
||||
this._request = null;
|
||||
if (
|
||||
this._childIdleMemoryUsageLimit &&
|
||||
this._child.connected &&
|
||||
hasRequest
|
||||
) {
|
||||
this.checkMemoryUsage();
|
||||
}
|
||||
return onProcessEnd(...args);
|
||||
};
|
||||
this._onCustomMessage = (...arg) => onCustomMessage(...arg);
|
||||
this._request = request;
|
||||
this._retries = 0;
|
||||
// eslint-disable-next-line @typescript-eslint/no-empty-function
|
||||
this._child.send(request, () => {});
|
||||
}
|
||||
waitForExit() {
|
||||
return this._exitPromise;
|
||||
}
|
||||
killChild() {
|
||||
// We store a reference so that there's no way we can accidentally
|
||||
// kill a new worker that has been spawned.
|
||||
const childToKill = this._child;
|
||||
childToKill.kill('SIGTERM');
|
||||
return setTimeout(() => childToKill.kill('SIGKILL'), SIGKILL_DELAY);
|
||||
}
|
||||
forceExit() {
|
||||
this.state = _types.WorkerStates.SHUTTING_DOWN;
|
||||
const sigkillTimeout = this.killChild();
|
||||
this._exitPromise.then(() => clearTimeout(sigkillTimeout));
|
||||
}
|
||||
getWorkerId() {
|
||||
return this._options.workerId;
|
||||
}
|
||||
|
||||
/**
|
||||
* Gets the process id of the worker.
|
||||
*
|
||||
* @returns Process id.
|
||||
*/
|
||||
getWorkerSystemId() {
|
||||
return this._child.pid;
|
||||
}
|
||||
getStdout() {
|
||||
return this._stdout;
|
||||
}
|
||||
getStderr() {
|
||||
return this._stderr;
|
||||
}
|
||||
|
||||
/**
|
||||
* Gets the last reported memory usage.
|
||||
*
|
||||
* @returns Memory usage in bytes.
|
||||
*/
|
||||
getMemoryUsage() {
|
||||
if (!this._memoryUsagePromise) {
|
||||
let rejectCallback;
|
||||
const promise = new Promise((resolve, reject) => {
|
||||
this._resolveMemoryUsage = resolve;
|
||||
rejectCallback = reject;
|
||||
});
|
||||
this._memoryUsagePromise = promise;
|
||||
if (!this._child.connected && rejectCallback) {
|
||||
rejectCallback(new Error('Child process is not running.'));
|
||||
this._memoryUsagePromise = undefined;
|
||||
this._resolveMemoryUsage = undefined;
|
||||
return promise;
|
||||
}
|
||||
this._child.send([_types.CHILD_MESSAGE_MEM_USAGE], err => {
|
||||
if (err && rejectCallback) {
|
||||
this._memoryUsagePromise = undefined;
|
||||
this._resolveMemoryUsage = undefined;
|
||||
rejectCallback(err);
|
||||
}
|
||||
});
|
||||
return promise;
|
||||
}
|
||||
return this._memoryUsagePromise;
|
||||
}
|
||||
|
||||
/**
|
||||
* Gets updated memory usage and restarts if required
|
||||
*/
|
||||
checkMemoryUsage() {
|
||||
if (this._childIdleMemoryUsageLimit) {
|
||||
this._memoryUsageCheck = true;
|
||||
this._child.send([_types.CHILD_MESSAGE_MEM_USAGE], err => {
|
||||
if (err) {
|
||||
console.error('Unable to check memory usage', err);
|
||||
}
|
||||
});
|
||||
} else {
|
||||
console.warn(
|
||||
'Memory usage of workers can only be checked if a limit is set'
|
||||
);
|
||||
}
|
||||
}
|
||||
isWorkerRunning() {
|
||||
return this._child.connected && !this._child.killed;
|
||||
}
|
||||
}
|
||||
exports.default = ChildProcessWorker;
|
359
node_modules/@jest/reporters/node_modules/jest-worker/build/workers/NodeThreadsWorker.js
generated
vendored
359
node_modules/@jest/reporters/node_modules/jest-worker/build/workers/NodeThreadsWorker.js
generated
vendored
@ -1,359 +0,0 @@
|
||||
'use strict';
|
||||
|
||||
Object.defineProperty(exports, '__esModule', {
|
||||
value: true
|
||||
});
|
||||
exports.default = void 0;
|
||||
function _os() {
|
||||
const data = require('os');
|
||||
_os = function () {
|
||||
return data;
|
||||
};
|
||||
return data;
|
||||
}
|
||||
function _worker_threads() {
|
||||
const data = require('worker_threads');
|
||||
_worker_threads = function () {
|
||||
return data;
|
||||
};
|
||||
return data;
|
||||
}
|
||||
function _mergeStream() {
|
||||
const data = _interopRequireDefault(require('merge-stream'));
|
||||
_mergeStream = function () {
|
||||
return data;
|
||||
};
|
||||
return data;
|
||||
}
|
||||
var _types = require('../types');
|
||||
var _WorkerAbstract = _interopRequireDefault(require('./WorkerAbstract'));
|
||||
function _interopRequireDefault(obj) {
|
||||
return obj && obj.__esModule ? obj : {default: obj};
|
||||
}
|
||||
/**
|
||||
* Copyright (c) Meta Platforms, Inc. and affiliates.
|
||||
*
|
||||
* This source code is licensed under the MIT license found in the
|
||||
* LICENSE file in the root directory of this source tree.
|
||||
*/
|
||||
|
||||
class ExperimentalWorker extends _WorkerAbstract.default {
|
||||
_worker;
|
||||
_options;
|
||||
_request;
|
||||
_retries;
|
||||
_onProcessEnd;
|
||||
_onCustomMessage;
|
||||
_stdout;
|
||||
_stderr;
|
||||
_memoryUsagePromise;
|
||||
_resolveMemoryUsage;
|
||||
_childWorkerPath;
|
||||
_childIdleMemoryUsage;
|
||||
_childIdleMemoryUsageLimit;
|
||||
_memoryUsageCheck = false;
|
||||
constructor(options) {
|
||||
super(options);
|
||||
this._options = options;
|
||||
this._request = null;
|
||||
this._stdout = null;
|
||||
this._stderr = null;
|
||||
this._childWorkerPath =
|
||||
options.childWorkerPath || require.resolve('./threadChild');
|
||||
this._childIdleMemoryUsage = null;
|
||||
this._childIdleMemoryUsageLimit = options.idleMemoryLimit || null;
|
||||
this.initialize();
|
||||
}
|
||||
initialize() {
|
||||
if (
|
||||
this.state === _types.WorkerStates.OUT_OF_MEMORY ||
|
||||
this.state === _types.WorkerStates.SHUTTING_DOWN ||
|
||||
this.state === _types.WorkerStates.SHUT_DOWN
|
||||
) {
|
||||
return;
|
||||
}
|
||||
if (this._worker) {
|
||||
this._worker.terminate();
|
||||
}
|
||||
this.state = _types.WorkerStates.STARTING;
|
||||
this._worker = new (_worker_threads().Worker)(this._childWorkerPath, {
|
||||
eval: false,
|
||||
resourceLimits: this._options.resourceLimits,
|
||||
stderr: true,
|
||||
stdout: true,
|
||||
workerData: this._options.workerData,
|
||||
...this._options.forkOptions
|
||||
});
|
||||
if (this._worker.stdout) {
|
||||
if (!this._stdout) {
|
||||
// We need to add a permanent stream to the merged stream to prevent it
|
||||
// from ending when the subprocess stream ends
|
||||
this._stdout = (0, _mergeStream().default)(this._getFakeStream());
|
||||
}
|
||||
this._stdout.add(this._worker.stdout);
|
||||
}
|
||||
if (this._worker.stderr) {
|
||||
if (!this._stderr) {
|
||||
// We need to add a permanent stream to the merged stream to prevent it
|
||||
// from ending when the subprocess stream ends
|
||||
this._stderr = (0, _mergeStream().default)(this._getFakeStream());
|
||||
}
|
||||
this._stderr.add(this._worker.stderr);
|
||||
}
|
||||
|
||||
// This can be useful for debugging.
|
||||
if (!(this._options.silent ?? true)) {
|
||||
this._worker.stdout.setEncoding('utf8');
|
||||
// eslint-disable-next-line no-console
|
||||
this._worker.stdout.on('data', console.log);
|
||||
this._worker.stderr.setEncoding('utf8');
|
||||
this._worker.stderr.on('data', console.error);
|
||||
}
|
||||
this._worker.on('message', this._onMessage.bind(this));
|
||||
this._worker.on('exit', this._onExit.bind(this));
|
||||
this._worker.on('error', this._onError.bind(this));
|
||||
this._worker.postMessage([
|
||||
_types.CHILD_MESSAGE_INITIALIZE,
|
||||
false,
|
||||
this._options.workerPath,
|
||||
this._options.setupArgs,
|
||||
String(this._options.workerId + 1) // 0-indexed workerId, 1-indexed JEST_WORKER_ID
|
||||
]);
|
||||
|
||||
this._retries++;
|
||||
|
||||
// If we exceeded the amount of retries, we will emulate an error reply
|
||||
// coming from the child. This avoids code duplication related with cleaning
|
||||
// the queue, and scheduling the next call.
|
||||
if (this._retries > this._options.maxRetries) {
|
||||
const error = new Error('Call retries were exceeded');
|
||||
this._onMessage([
|
||||
_types.PARENT_MESSAGE_CLIENT_ERROR,
|
||||
error.name,
|
||||
error.message,
|
||||
error.stack,
|
||||
{
|
||||
type: 'WorkerError'
|
||||
}
|
||||
]);
|
||||
}
|
||||
this.state = _types.WorkerStates.OK;
|
||||
if (this._resolveWorkerReady) {
|
||||
this._resolveWorkerReady();
|
||||
}
|
||||
}
|
||||
_onError(error) {
|
||||
if (error.message.includes('heap out of memory')) {
|
||||
this.state = _types.WorkerStates.OUT_OF_MEMORY;
|
||||
|
||||
// Threads don't behave like processes, they don't crash when they run out of
|
||||
// memory. But for consistency we want them to behave like processes so we call
|
||||
// terminate to simulate a crash happening that was not planned
|
||||
this._worker.terminate();
|
||||
}
|
||||
}
|
||||
_onMessage(response) {
|
||||
// Ignore messages not intended for us
|
||||
if (!Array.isArray(response)) return;
|
||||
let error;
|
||||
switch (response[0]) {
|
||||
case _types.PARENT_MESSAGE_OK:
|
||||
this._onProcessEnd(null, response[1]);
|
||||
break;
|
||||
case _types.PARENT_MESSAGE_CLIENT_ERROR:
|
||||
error = response[4];
|
||||
if (error != null && typeof error === 'object') {
|
||||
const extra = error;
|
||||
// @ts-expect-error: no index
|
||||
const NativeCtor = globalThis[response[1]];
|
||||
const Ctor = typeof NativeCtor === 'function' ? NativeCtor : Error;
|
||||
error = new Ctor(response[2]);
|
||||
error.type = response[1];
|
||||
error.stack = response[3];
|
||||
for (const key in extra) {
|
||||
// @ts-expect-error: no index
|
||||
error[key] = extra[key];
|
||||
}
|
||||
}
|
||||
this._onProcessEnd(error, null);
|
||||
break;
|
||||
case _types.PARENT_MESSAGE_SETUP_ERROR:
|
||||
error = new Error(`Error when calling setup: ${response[2]}`);
|
||||
|
||||
// @ts-expect-error: adding custom properties to errors.
|
||||
error.type = response[1];
|
||||
error.stack = response[3];
|
||||
this._onProcessEnd(error, null);
|
||||
break;
|
||||
case _types.PARENT_MESSAGE_CUSTOM:
|
||||
this._onCustomMessage(response[1]);
|
||||
break;
|
||||
case _types.PARENT_MESSAGE_MEM_USAGE:
|
||||
this._childIdleMemoryUsage = response[1];
|
||||
if (this._resolveMemoryUsage) {
|
||||
this._resolveMemoryUsage(response[1]);
|
||||
this._resolveMemoryUsage = undefined;
|
||||
this._memoryUsagePromise = undefined;
|
||||
}
|
||||
this._performRestartIfRequired();
|
||||
break;
|
||||
default:
|
||||
// Ignore messages not intended for us
|
||||
break;
|
||||
}
|
||||
}
|
||||
_onExit(exitCode) {
|
||||
this._workerReadyPromise = undefined;
|
||||
this._resolveWorkerReady = undefined;
|
||||
if (exitCode !== 0 && this.state === _types.WorkerStates.OUT_OF_MEMORY) {
|
||||
this._onProcessEnd(
|
||||
new Error('Jest worker ran out of memory and crashed'),
|
||||
null
|
||||
);
|
||||
this._shutdown();
|
||||
} else if (
|
||||
(exitCode !== 0 &&
|
||||
this.state !== _types.WorkerStates.SHUTTING_DOWN &&
|
||||
this.state !== _types.WorkerStates.SHUT_DOWN) ||
|
||||
this.state === _types.WorkerStates.RESTARTING
|
||||
) {
|
||||
this.initialize();
|
||||
if (this._request) {
|
||||
this._worker.postMessage(this._request);
|
||||
}
|
||||
} else {
|
||||
// If the worker thread exits while a request is still pending, throw an
|
||||
// error. This is unexpected and tests may not have run to completion.
|
||||
const isRequestStillPending = !!this._request;
|
||||
if (isRequestStillPending) {
|
||||
this._onProcessEnd(
|
||||
new Error(
|
||||
'A Jest worker thread exited unexpectedly before finishing tests for an unknown reason. One of the ways this can happen is if process.exit() was called in testing code.'
|
||||
),
|
||||
null
|
||||
);
|
||||
}
|
||||
this._shutdown();
|
||||
}
|
||||
}
|
||||
waitForExit() {
|
||||
return this._exitPromise;
|
||||
}
|
||||
forceExit() {
|
||||
this.state = _types.WorkerStates.SHUTTING_DOWN;
|
||||
this._worker.terminate();
|
||||
}
|
||||
send(request, onProcessStart, onProcessEnd, onCustomMessage) {
|
||||
onProcessStart(this);
|
||||
this._onProcessEnd = (...args) => {
|
||||
const hasRequest = !!this._request;
|
||||
|
||||
// Clean the request to avoid sending past requests to workers that fail
|
||||
// while waiting for a new request (timers, unhandled rejections...)
|
||||
this._request = null;
|
||||
if (this._childIdleMemoryUsageLimit && hasRequest) {
|
||||
this.checkMemoryUsage();
|
||||
}
|
||||
const res = onProcessEnd?.(...args);
|
||||
|
||||
// Clean up the reference so related closures can be garbage collected.
|
||||
onProcessEnd = null;
|
||||
return res;
|
||||
};
|
||||
this._onCustomMessage = (...arg) => onCustomMessage(...arg);
|
||||
this._request = request;
|
||||
this._retries = 0;
|
||||
this._worker.postMessage(request);
|
||||
}
|
||||
getWorkerId() {
|
||||
return this._options.workerId;
|
||||
}
|
||||
getStdout() {
|
||||
return this._stdout;
|
||||
}
|
||||
getStderr() {
|
||||
return this._stderr;
|
||||
}
|
||||
_performRestartIfRequired() {
|
||||
if (this._memoryUsageCheck) {
|
||||
this._memoryUsageCheck = false;
|
||||
let limit = this._childIdleMemoryUsageLimit;
|
||||
|
||||
// TODO: At some point it would make sense to make use of
|
||||
// stringToBytes found in jest-config, however as this
|
||||
// package does not have any dependencies on an other jest
|
||||
// packages that can wait until some other time.
|
||||
if (limit && limit > 0 && limit <= 1) {
|
||||
limit = Math.floor((0, _os().totalmem)() * limit);
|
||||
} else if (limit) {
|
||||
limit = Math.floor(limit);
|
||||
}
|
||||
if (
|
||||
limit &&
|
||||
this._childIdleMemoryUsage &&
|
||||
this._childIdleMemoryUsage > limit
|
||||
) {
|
||||
this.state = _types.WorkerStates.RESTARTING;
|
||||
this._worker.terminate();
|
||||
}
|
||||
}
|
||||
}
|
||||
|
||||
/**
|
||||
* Gets the last reported memory usage.
|
||||
*
|
||||
* @returns Memory usage in bytes.
|
||||
*/
|
||||
getMemoryUsage() {
|
||||
if (!this._memoryUsagePromise) {
|
||||
let rejectCallback;
|
||||
const promise = new Promise((resolve, reject) => {
|
||||
this._resolveMemoryUsage = resolve;
|
||||
rejectCallback = reject;
|
||||
});
|
||||
this._memoryUsagePromise = promise;
|
||||
if (!this._worker.threadId) {
|
||||
rejectCallback(new Error('Child process is not running.'));
|
||||
this._memoryUsagePromise = undefined;
|
||||
this._resolveMemoryUsage = undefined;
|
||||
return promise;
|
||||
}
|
||||
try {
|
||||
this._worker.postMessage([_types.CHILD_MESSAGE_MEM_USAGE]);
|
||||
} catch (err) {
|
||||
this._memoryUsagePromise = undefined;
|
||||
this._resolveMemoryUsage = undefined;
|
||||
rejectCallback(err);
|
||||
}
|
||||
return promise;
|
||||
}
|
||||
return this._memoryUsagePromise;
|
||||
}
|
||||
|
||||
/**
|
||||
* Gets updated memory usage and restarts if required
|
||||
*/
|
||||
checkMemoryUsage() {
|
||||
if (this._childIdleMemoryUsageLimit) {
|
||||
this._memoryUsageCheck = true;
|
||||
this._worker.postMessage([_types.CHILD_MESSAGE_MEM_USAGE]);
|
||||
} else {
|
||||
console.warn(
|
||||
'Memory usage of workers can only be checked if a limit is set'
|
||||
);
|
||||
}
|
||||
}
|
||||
|
||||
/**
|
||||
* Gets the thread id of the worker.
|
||||
*
|
||||
* @returns Thread id.
|
||||
*/
|
||||
getWorkerSystemId() {
|
||||
return this._worker.threadId;
|
||||
}
|
||||
isWorkerRunning() {
|
||||
return this._worker.threadId >= 0;
|
||||
}
|
||||
}
|
||||
exports.default = ExperimentalWorker;
|
135
node_modules/@jest/reporters/node_modules/jest-worker/build/workers/WorkerAbstract.js
generated
vendored
135
node_modules/@jest/reporters/node_modules/jest-worker/build/workers/WorkerAbstract.js
generated
vendored
@ -1,135 +0,0 @@
|
||||
'use strict';
|
||||
|
||||
Object.defineProperty(exports, '__esModule', {
|
||||
value: true
|
||||
});
|
||||
exports.default = void 0;
|
||||
function _stream() {
|
||||
const data = require('stream');
|
||||
_stream = function () {
|
||||
return data;
|
||||
};
|
||||
return data;
|
||||
}
|
||||
var _types = require('../types');
|
||||
/**
|
||||
* Copyright (c) Meta Platforms, Inc. and affiliates.
|
||||
*
|
||||
* This source code is licensed under the MIT license found in the
|
||||
* LICENSE file in the root directory of this source tree.
|
||||
*/
|
||||
|
||||
class WorkerAbstract extends _stream().EventEmitter {
|
||||
/**
|
||||
* DO NOT WRITE TO THIS DIRECTLY.
|
||||
* Use this.state getter/setters so events are emitted correctly.
|
||||
*/
|
||||
#state = _types.WorkerStates.STARTING;
|
||||
_fakeStream = null;
|
||||
_exitPromise;
|
||||
_resolveExitPromise;
|
||||
_workerReadyPromise;
|
||||
_resolveWorkerReady;
|
||||
get state() {
|
||||
return this.#state;
|
||||
}
|
||||
set state(value) {
|
||||
if (this.#state !== value) {
|
||||
const oldState = this.#state;
|
||||
this.#state = value;
|
||||
this.emit(_types.WorkerEvents.STATE_CHANGE, value, oldState);
|
||||
}
|
||||
}
|
||||
constructor(options) {
|
||||
super();
|
||||
if (typeof options.on === 'object') {
|
||||
for (const [event, handlers] of Object.entries(options.on)) {
|
||||
// Can't do Array.isArray on a ReadonlyArray<T>.
|
||||
// https://github.com/microsoft/TypeScript/issues/17002
|
||||
if (typeof handlers === 'function') {
|
||||
super.on(event, handlers);
|
||||
} else {
|
||||
for (const handler of handlers) {
|
||||
super.on(event, handler);
|
||||
}
|
||||
}
|
||||
}
|
||||
}
|
||||
this._exitPromise = new Promise(resolve => {
|
||||
this._resolveExitPromise = resolve;
|
||||
});
|
||||
this._exitPromise.then(() => {
|
||||
this.state = _types.WorkerStates.SHUT_DOWN;
|
||||
});
|
||||
}
|
||||
|
||||
/**
|
||||
* Wait for the worker child process to be ready to handle requests.
|
||||
*
|
||||
* @returns Promise which resolves when ready.
|
||||
*/
|
||||
waitForWorkerReady() {
|
||||
if (!this._workerReadyPromise) {
|
||||
this._workerReadyPromise = new Promise((resolve, reject) => {
|
||||
let settled = false;
|
||||
let to;
|
||||
switch (this.state) {
|
||||
case _types.WorkerStates.OUT_OF_MEMORY:
|
||||
case _types.WorkerStates.SHUTTING_DOWN:
|
||||
case _types.WorkerStates.SHUT_DOWN:
|
||||
settled = true;
|
||||
reject(
|
||||
new Error(
|
||||
`Worker state means it will never be ready: ${this.state}`
|
||||
)
|
||||
);
|
||||
break;
|
||||
case _types.WorkerStates.STARTING:
|
||||
case _types.WorkerStates.RESTARTING:
|
||||
this._resolveWorkerReady = () => {
|
||||
settled = true;
|
||||
resolve();
|
||||
if (to) {
|
||||
clearTimeout(to);
|
||||
}
|
||||
};
|
||||
break;
|
||||
case _types.WorkerStates.OK:
|
||||
settled = true;
|
||||
resolve();
|
||||
break;
|
||||
}
|
||||
if (!settled) {
|
||||
to = setTimeout(() => {
|
||||
if (!settled) {
|
||||
reject(new Error('Timeout starting worker'));
|
||||
}
|
||||
}, 500);
|
||||
}
|
||||
});
|
||||
}
|
||||
return this._workerReadyPromise;
|
||||
}
|
||||
|
||||
/**
|
||||
* Used to shut down the current working instance once the children have been
|
||||
* killed off.
|
||||
*/
|
||||
_shutdown() {
|
||||
this.state === _types.WorkerStates.SHUT_DOWN;
|
||||
|
||||
// End the permanent stream so the merged stream end too
|
||||
if (this._fakeStream) {
|
||||
this._fakeStream.end();
|
||||
this._fakeStream = null;
|
||||
}
|
||||
this._resolveExitPromise();
|
||||
}
|
||||
_getFakeStream() {
|
||||
if (!this._fakeStream) {
|
||||
this._fakeStream = new (_stream().PassThrough)();
|
||||
}
|
||||
return this._fakeStream;
|
||||
}
|
||||
}
|
||||
exports.default = WorkerAbstract;
|
33
node_modules/@jest/reporters/node_modules/jest-worker/build/workers/messageParent.js
generated
vendored
33
node_modules/@jest/reporters/node_modules/jest-worker/build/workers/messageParent.js
generated
vendored
@ -1,33 +0,0 @@
|
||||
'use strict';
|
||||
|
||||
Object.defineProperty(exports, '__esModule', {
|
||||
value: true
|
||||
});
|
||||
exports.default = messageParent;
|
||||
function _worker_threads() {
|
||||
const data = require('worker_threads');
|
||||
_worker_threads = function () {
|
||||
return data;
|
||||
};
|
||||
return data;
|
||||
}
|
||||
var _types = require('../types');
|
||||
/**
|
||||
* Copyright (c) Meta Platforms, Inc. and affiliates.
|
||||
*
|
||||
* This source code is licensed under the MIT license found in the
|
||||
* LICENSE file in the root directory of this source tree.
|
||||
*/
|
||||
|
||||
function messageParent(message, parentProcess = process) {
|
||||
if (!_worker_threads().isMainThread && _worker_threads().parentPort != null) {
|
||||
_worker_threads().parentPort.postMessage([
|
||||
_types.PARENT_MESSAGE_CUSTOM,
|
||||
message
|
||||
]);
|
||||
} else if (typeof parentProcess.send === 'function') {
|
||||
parentProcess.send([_types.PARENT_MESSAGE_CUSTOM, message]);
|
||||
} else {
|
||||
throw new Error('"messageParent" can only be used inside a worker');
|
||||
}
|
||||
}
|
159
node_modules/@jest/reporters/node_modules/jest-worker/build/workers/processChild.js
generated
vendored
159
node_modules/@jest/reporters/node_modules/jest-worker/build/workers/processChild.js
generated
vendored
@ -1,159 +0,0 @@
|
||||
'use strict';
|
||||
|
||||
function _jestUtil() {
|
||||
const data = require('jest-util');
|
||||
_jestUtil = function () {
|
||||
return data;
|
||||
};
|
||||
return data;
|
||||
}
|
||||
var _types = require('../types');
|
||||
/**
|
||||
* Copyright (c) Meta Platforms, Inc. and affiliates.
|
||||
*
|
||||
* This source code is licensed under the MIT license found in the
|
||||
* LICENSE file in the root directory of this source tree.
|
||||
*/
|
||||
|
||||
let file = null;
|
||||
let setupArgs = [];
|
||||
let initialized = false;
|
||||
|
||||
/**
|
||||
* This file is a small bootstrapper for workers. It sets up the communication
|
||||
* between the worker and the parent process, interpreting parent messages and
|
||||
* sending results back.
|
||||
*
|
||||
* The file loaded will be lazily initialized the first time any of the workers
|
||||
* is called. This is done for optimal performance: if the farm is initialized,
|
||||
* but no call is made to it, child Node processes will be consuming the least
|
||||
* possible amount of memory.
|
||||
*
|
||||
* If an invalid message is detected, the child will exit (by throwing) with a
|
||||
* non-zero exit code.
|
||||
*/
|
||||
const messageListener = request => {
|
||||
switch (request[0]) {
|
||||
case _types.CHILD_MESSAGE_INITIALIZE:
|
||||
const init = request;
|
||||
file = init[2];
|
||||
setupArgs = init[3];
|
||||
break;
|
||||
case _types.CHILD_MESSAGE_CALL:
|
||||
const call = request;
|
||||
execMethod(call[2], call[3]);
|
||||
break;
|
||||
case _types.CHILD_MESSAGE_END:
|
||||
end();
|
||||
break;
|
||||
case _types.CHILD_MESSAGE_MEM_USAGE:
|
||||
reportMemoryUsage();
|
||||
break;
|
||||
case _types.CHILD_MESSAGE_CALL_SETUP:
|
||||
if (initialized) {
|
||||
reportSuccess(void 0);
|
||||
} else {
|
||||
const main = require(file);
|
||||
initialized = true;
|
||||
if (main.setup) {
|
||||
execFunction(
|
||||
main.setup,
|
||||
main,
|
||||
setupArgs,
|
||||
reportSuccess,
|
||||
reportInitializeError
|
||||
);
|
||||
} else {
|
||||
reportSuccess(void 0);
|
||||
}
|
||||
}
|
||||
break;
|
||||
default:
|
||||
throw new TypeError(
|
||||
`Unexpected request from parent process: ${request[0]}`
|
||||
);
|
||||
}
|
||||
};
|
||||
process.on('message', messageListener);
|
||||
function reportSuccess(result) {
|
||||
if (!process || !process.send) {
|
||||
throw new Error('Child can only be used on a forked process');
|
||||
}
|
||||
process.send([_types.PARENT_MESSAGE_OK, result]);
|
||||
}
|
||||
function reportClientError(error) {
|
||||
return reportError(error, _types.PARENT_MESSAGE_CLIENT_ERROR);
|
||||
}
|
||||
function reportInitializeError(error) {
|
||||
return reportError(error, _types.PARENT_MESSAGE_SETUP_ERROR);
|
||||
}
|
||||
function reportMemoryUsage() {
|
||||
if (!process || !process.send) {
|
||||
throw new Error('Child can only be used on a forked process');
|
||||
}
|
||||
const msg = [_types.PARENT_MESSAGE_MEM_USAGE, process.memoryUsage().heapUsed];
|
||||
process.send(msg);
|
||||
}
|
||||
function reportError(error, type) {
|
||||
if (!process || !process.send) {
|
||||
throw new Error('Child can only be used on a forked process');
|
||||
}
|
||||
if (error == null) {
|
||||
error = new Error('"null" or "undefined" thrown');
|
||||
}
|
||||
process.send([
|
||||
type,
|
||||
error.constructor && error.constructor.name,
|
||||
error.message,
|
||||
error.stack,
|
||||
typeof error === 'object'
|
||||
? {
|
||||
...error
|
||||
}
|
||||
: error
|
||||
]);
|
||||
}
|
||||
function end() {
|
||||
const main = require(file);
|
||||
if (!main.teardown) {
|
||||
exitProcess();
|
||||
return;
|
||||
}
|
||||
execFunction(main.teardown, main, [], exitProcess, exitProcess);
|
||||
}
|
||||
function exitProcess() {
|
||||
// Clean up open handles so the process ideally exits gracefully
|
||||
process.removeListener('message', messageListener);
|
||||
}
|
||||
function execMethod(method, args) {
|
||||
const main = require(file);
|
||||
let fn;
|
||||
if (method === 'default') {
|
||||
fn = main.__esModule ? main.default : main;
|
||||
} else {
|
||||
fn = main[method];
|
||||
}
|
||||
function execHelper() {
|
||||
execFunction(fn, main, args, reportSuccess, reportClientError);
|
||||
}
|
||||
if (initialized || !main.setup) {
|
||||
execHelper();
|
||||
return;
|
||||
}
|
||||
initialized = true;
|
||||
execFunction(main.setup, main, setupArgs, execHelper, reportInitializeError);
|
||||
}
|
||||
function execFunction(fn, ctx, args, onResult, onError) {
|
||||
let result;
|
||||
try {
|
||||
result = fn.apply(ctx, args);
|
||||
} catch (err) {
|
||||
onError(err);
|
||||
return;
|
||||
}
|
||||
if ((0, _jestUtil().isPromise)(result)) {
|
||||
result.then(onResult, onError);
|
||||
} else {
|
||||
onResult(result);
|
||||
}
|
||||
}
|
177
node_modules/@jest/reporters/node_modules/jest-worker/build/workers/threadChild.js
generated
vendored
177
node_modules/@jest/reporters/node_modules/jest-worker/build/workers/threadChild.js
generated
vendored
@ -1,177 +0,0 @@
|
||||
'use strict';
|
||||
|
||||
function _worker_threads() {
|
||||
const data = require('worker_threads');
|
||||
_worker_threads = function () {
|
||||
return data;
|
||||
};
|
||||
return data;
|
||||
}
|
||||
function _jestUtil() {
|
||||
const data = require('jest-util');
|
||||
_jestUtil = function () {
|
||||
return data;
|
||||
};
|
||||
return data;
|
||||
}
|
||||
var _types = require('../types');
|
||||
/**
|
||||
* Copyright (c) Meta Platforms, Inc. and affiliates.
|
||||
*
|
||||
* This source code is licensed under the MIT license found in the
|
||||
* LICENSE file in the root directory of this source tree.
|
||||
*/
|
||||
|
||||
let file = null;
|
||||
let setupArgs = [];
|
||||
let initialized = false;
|
||||
|
||||
/**
|
||||
* This file is a small bootstrapper for workers. It sets up the communication
|
||||
* between the worker and the parent process, interpreting parent messages and
|
||||
* sending results back.
|
||||
*
|
||||
* The file loaded will be lazily initialized the first time any of the workers
|
||||
* is called. This is done for optimal performance: if the farm is initialized,
|
||||
* but no call is made to it, child Node processes will be consuming the least
|
||||
* possible amount of memory.
|
||||
*
|
||||
* If an invalid message is detected, the child will exit (by throwing) with a
|
||||
* non-zero exit code.
|
||||
*/
|
||||
const messageListener = request => {
|
||||
switch (request[0]) {
|
||||
case _types.CHILD_MESSAGE_INITIALIZE:
|
||||
const init = request;
|
||||
file = init[2];
|
||||
setupArgs = init[3];
|
||||
process.env.JEST_WORKER_ID = init[4];
|
||||
break;
|
||||
case _types.CHILD_MESSAGE_CALL:
|
||||
const call = request;
|
||||
execMethod(call[2], call[3]);
|
||||
break;
|
||||
case _types.CHILD_MESSAGE_END:
|
||||
end();
|
||||
break;
|
||||
case _types.CHILD_MESSAGE_MEM_USAGE:
|
||||
reportMemoryUsage();
|
||||
break;
|
||||
case _types.CHILD_MESSAGE_CALL_SETUP:
|
||||
if (initialized) {
|
||||
reportSuccess(void 0);
|
||||
} else {
|
||||
const main = require(file);
|
||||
initialized = true;
|
||||
if (main.setup) {
|
||||
execFunction(
|
||||
main.setup,
|
||||
main,
|
||||
setupArgs,
|
||||
reportSuccess,
|
||||
reportInitializeError
|
||||
);
|
||||
} else {
|
||||
reportSuccess(void 0);
|
||||
}
|
||||
}
|
||||
break;
|
||||
default:
|
||||
throw new TypeError(
|
||||
`Unexpected request from parent process: ${request[0]}`
|
||||
);
|
||||
}
|
||||
};
|
||||
_worker_threads().parentPort.on('message', messageListener);
|
||||
function reportMemoryUsage() {
|
||||
if (_worker_threads().isMainThread) {
|
||||
throw new Error('Child can only be used on a forked process');
|
||||
}
|
||||
const msg = [_types.PARENT_MESSAGE_MEM_USAGE, process.memoryUsage().heapUsed];
|
||||
_worker_threads().parentPort.postMessage(msg);
|
||||
}
|
||||
function reportSuccess(result) {
|
||||
if (_worker_threads().isMainThread) {
|
||||
throw new Error('Child can only be used on a forked process');
|
||||
}
|
||||
try {
|
||||
_worker_threads().parentPort.postMessage([
|
||||
_types.PARENT_MESSAGE_OK,
|
||||
result
|
||||
]);
|
||||
} catch (err) {
|
||||
// Handling it here to avoid unhandled `DataCloneError` rejection
|
||||
// which is hard to distinguish on the parent side
|
||||
// (such error doesn't have any message or stack trace)
|
||||
reportClientError(err);
|
||||
}
|
||||
}
|
||||
function reportClientError(error) {
|
||||
return reportError(error, _types.PARENT_MESSAGE_CLIENT_ERROR);
|
||||
}
|
||||
function reportInitializeError(error) {
|
||||
return reportError(error, _types.PARENT_MESSAGE_SETUP_ERROR);
|
||||
}
|
||||
function reportError(error, type) {
|
||||
if (_worker_threads().isMainThread) {
|
||||
throw new Error('Child can only be used on a forked process');
|
||||
}
|
||||
if (error == null) {
|
||||
error = new Error('"null" or "undefined" thrown');
|
||||
}
|
||||
_worker_threads().parentPort.postMessage([
|
||||
type,
|
||||
error.constructor && error.constructor.name,
|
||||
error.message,
|
||||
error.stack,
|
||||
typeof error === 'object'
|
||||
? {
|
||||
...error
|
||||
}
|
||||
: error
|
||||
]);
|
||||
}
|
||||
function end() {
|
||||
const main = require(file);
|
||||
if (!main.teardown) {
|
||||
exitProcess();
|
||||
return;
|
||||
}
|
||||
execFunction(main.teardown, main, [], exitProcess, exitProcess);
|
||||
}
|
||||
function exitProcess() {
|
||||
// Clean up open handles so the worker ideally exits gracefully
|
||||
_worker_threads().parentPort.removeListener('message', messageListener);
|
||||
}
|
||||
function execMethod(method, args) {
|
||||
const main = require(file);
|
||||
let fn;
|
||||
if (method === 'default') {
|
||||
fn = main.__esModule ? main.default : main;
|
||||
} else {
|
||||
fn = main[method];
|
||||
}
|
||||
function execHelper() {
|
||||
execFunction(fn, main, args, reportSuccess, reportClientError);
|
||||
}
|
||||
if (initialized || !main.setup) {
|
||||
execHelper();
|
||||
return;
|
||||
}
|
||||
initialized = true;
|
||||
execFunction(main.setup, main, setupArgs, execHelper, reportInitializeError);
|
||||
}
|
||||
function execFunction(fn, ctx, args, onResult, onError) {
|
||||
let result;
|
||||
try {
|
||||
result = fn.apply(ctx, args);
|
||||
} catch (err) {
|
||||
onError(err);
|
||||
return;
|
||||
}
|
||||
if ((0, _jestUtil().isPromise)(result)) {
|
||||
result.then(onResult, onError);
|
||||
} else {
|
||||
onResult(result);
|
||||
}
|
||||
}
|
42
node_modules/@jest/reporters/node_modules/jest-worker/package.json
generated
vendored
42
node_modules/@jest/reporters/node_modules/jest-worker/package.json
generated
vendored
@ -1,42 +0,0 @@
|
||||
{
|
||||
"name": "jest-worker",
|
||||
"version": "29.7.0",
|
||||
"repository": {
|
||||
"type": "git",
|
||||
"url": "https://github.com/jestjs/jest.git",
|
||||
"directory": "packages/jest-worker"
|
||||
},
|
||||
"license": "MIT",
|
||||
"main": "./build/index.js",
|
||||
"types": "./build/index.d.ts",
|
||||
"exports": {
|
||||
".": {
|
||||
"types": "./build/index.d.ts",
|
||||
"default": "./build/index.js"
|
||||
},
|
||||
"./package.json": "./package.json"
|
||||
},
|
||||
"dependencies": {
|
||||
"@types/node": "*",
|
||||
"jest-util": "^29.7.0",
|
||||
"merge-stream": "^2.0.0",
|
||||
"supports-color": "^8.0.0"
|
||||
},
|
||||
"devDependencies": {
|
||||
"@babel/core": "^7.11.6",
|
||||
"@tsd/typescript": "^5.0.4",
|
||||
"@types/merge-stream": "^1.1.2",
|
||||
"@types/supports-color": "^8.1.0",
|
||||
"get-stream": "^6.0.0",
|
||||
"jest-leak-detector": "^29.7.0",
|
||||
"tsd-lite": "^0.7.0",
|
||||
"worker-farm": "^1.6.0"
|
||||
},
|
||||
"engines": {
|
||||
"node": "^14.15.0 || ^16.10.0 || >=18.0.0"
|
||||
},
|
||||
"publishConfig": {
|
||||
"access": "public"
|
||||
},
|
||||
"gitHead": "4e56991693da7cd4c3730dc3579a1dd1403ee630"
|
||||
}
|
24
node_modules/@jest/reporters/node_modules/supports-color/browser.js
generated
vendored
24
node_modules/@jest/reporters/node_modules/supports-color/browser.js
generated
vendored
@ -1,24 +0,0 @@
|
||||
/* eslint-env browser */
|
||||
'use strict';
|
||||
|
||||
function getChromeVersion() {
|
||||
const matches = /(Chrome|Chromium)\/(?<chromeVersion>\d+)\./.exec(navigator.userAgent);
|
||||
|
||||
if (!matches) {
|
||||
return;
|
||||
}
|
||||
|
||||
return Number.parseInt(matches.groups.chromeVersion, 10);
|
||||
}
|
||||
|
||||
const colorSupport = getChromeVersion() >= 69 ? {
|
||||
level: 1,
|
||||
hasBasic: true,
|
||||
has256: false,
|
||||
has16m: false
|
||||
} : false;
|
||||
|
||||
module.exports = {
|
||||
stdout: colorSupport,
|
||||
stderr: colorSupport
|
||||
};
|
152
node_modules/@jest/reporters/node_modules/supports-color/index.js
generated
vendored
152
node_modules/@jest/reporters/node_modules/supports-color/index.js
generated
vendored
@ -1,152 +0,0 @@
|
||||
'use strict';
|
||||
const os = require('os');
|
||||
const tty = require('tty');
|
||||
const hasFlag = require('has-flag');
|
||||
|
||||
const {env} = process;
|
||||
|
||||
let flagForceColor;
|
||||
if (hasFlag('no-color') ||
|
||||
hasFlag('no-colors') ||
|
||||
hasFlag('color=false') ||
|
||||
hasFlag('color=never')) {
|
||||
flagForceColor = 0;
|
||||
} else if (hasFlag('color') ||
|
||||
hasFlag('colors') ||
|
||||
hasFlag('color=true') ||
|
||||
hasFlag('color=always')) {
|
||||
flagForceColor = 1;
|
||||
}
|
||||
|
||||
function envForceColor() {
|
||||
if ('FORCE_COLOR' in env) {
|
||||
if (env.FORCE_COLOR === 'true') {
|
||||
return 1;
|
||||
}
|
||||
|
||||
if (env.FORCE_COLOR === 'false') {
|
||||
return 0;
|
||||
}
|
||||
|
||||
return env.FORCE_COLOR.length === 0 ? 1 : Math.min(Number.parseInt(env.FORCE_COLOR, 10), 3);
|
||||
}
|
||||
}
|
||||
|
||||
function translateLevel(level) {
|
||||
if (level === 0) {
|
||||
return false;
|
||||
}
|
||||
|
||||
return {
|
||||
level,
|
||||
hasBasic: true,
|
||||
has256: level >= 2,
|
||||
has16m: level >= 3
|
||||
};
|
||||
}
|
||||
|
||||
function supportsColor(haveStream, {streamIsTTY, sniffFlags = true} = {}) {
|
||||
const noFlagForceColor = envForceColor();
|
||||
if (noFlagForceColor !== undefined) {
|
||||
flagForceColor = noFlagForceColor;
|
||||
}
|
||||
|
||||
const forceColor = sniffFlags ? flagForceColor : noFlagForceColor;
|
||||
|
||||
if (forceColor === 0) {
|
||||
return 0;
|
||||
}
|
||||
|
||||
if (sniffFlags) {
|
||||
if (hasFlag('color=16m') ||
|
||||
hasFlag('color=full') ||
|
||||
hasFlag('color=truecolor')) {
|
||||
return 3;
|
||||
}
|
||||
|
||||
if (hasFlag('color=256')) {
|
||||
return 2;
|
||||
}
|
||||
}
|
||||
|
||||
if (haveStream && !streamIsTTY && forceColor === undefined) {
|
||||
return 0;
|
||||
}
|
||||
|
||||
const min = forceColor || 0;
|
||||
|
||||
if (env.TERM === 'dumb') {
|
||||
return min;
|
||||
}
|
||||
|
||||
if (process.platform === 'win32') {
|
||||
// Windows 10 build 10586 is the first Windows release that supports 256 colors.
|
||||
// Windows 10 build 14931 is the first release that supports 16m/TrueColor.
|
||||
const osRelease = os.release().split('.');
|
||||
if (
|
||||
Number(osRelease[0]) >= 10 &&
|
||||
Number(osRelease[2]) >= 10586
|
||||
) {
|
||||
return Number(osRelease[2]) >= 14931 ? 3 : 2;
|
||||
}
|
||||
|
||||
return 1;
|
||||
}
|
||||
|
||||
if ('CI' in env) {
|
||||
if (['TRAVIS', 'CIRCLECI', 'APPVEYOR', 'GITLAB_CI', 'GITHUB_ACTIONS', 'BUILDKITE', 'DRONE'].some(sign => sign in env) || env.CI_NAME === 'codeship') {
|
||||
return 1;
|
||||
}
|
||||
|
||||
return min;
|
||||
}
|
||||
|
||||
if ('TEAMCITY_VERSION' in env) {
|
||||
return /^(9\.(0*[1-9]\d*)\.|\d{2,}\.)/.test(env.TEAMCITY_VERSION) ? 1 : 0;
|
||||
}
|
||||
|
||||
if (env.COLORTERM === 'truecolor') {
|
||||
return 3;
|
||||
}
|
||||
|
||||
if ('TERM_PROGRAM' in env) {
|
||||
const version = Number.parseInt((env.TERM_PROGRAM_VERSION || '').split('.')[0], 10);
|
||||
|
||||
switch (env.TERM_PROGRAM) {
|
||||
case 'iTerm.app':
|
||||
return version >= 3 ? 3 : 2;
|
||||
case 'Apple_Terminal':
|
||||
return 2;
|
||||
// No default
|
||||
}
|
||||
}
|
||||
|
||||
if (/-256(color)?$/i.test(env.TERM)) {
|
||||
return 2;
|
||||
}
|
||||
|
||||
if (/^screen|^xterm|^vt100|^vt220|^rxvt|color|ansi|cygwin|linux/i.test(env.TERM)) {
|
||||
return 1;
|
||||
}
|
||||
|
||||
if ('COLORTERM' in env) {
|
||||
return 1;
|
||||
}
|
||||
|
||||
return min;
|
||||
}
|
||||
|
||||
function getSupportLevel(stream, options = {}) {
|
||||
const level = supportsColor(stream, {
|
||||
streamIsTTY: stream && stream.isTTY,
|
||||
...options
|
||||
});
|
||||
|
||||
return translateLevel(level);
|
||||
}
|
||||
|
||||
module.exports = {
|
||||
supportsColor: getSupportLevel,
|
||||
stdout: getSupportLevel({isTTY: tty.isatty(1)}),
|
||||
stderr: getSupportLevel({isTTY: tty.isatty(2)})
|
||||
};
|
9
node_modules/@jest/reporters/node_modules/supports-color/license
generated
vendored
9
node_modules/@jest/reporters/node_modules/supports-color/license
generated
vendored
@ -1,9 +0,0 @@
|
||||
MIT License
|
||||
|
||||
Copyright (c) Sindre Sorhus <sindresorhus@gmail.com> (https://sindresorhus.com)
|
||||
|
||||
Permission is hereby granted, free of charge, to any person obtaining a copy of this software and associated documentation files (the "Software"), to deal in the Software without restriction, including without limitation the rights to use, copy, modify, merge, publish, distribute, sublicense, and/or sell copies of the Software, and to permit persons to whom the Software is furnished to do so, subject to the following conditions:
|
||||
|
||||
The above copyright notice and this permission notice shall be included in all copies or substantial portions of the Software.
|
||||
|
||||
THE SOFTWARE IS PROVIDED "AS IS", WITHOUT WARRANTY OF ANY KIND, EXPRESS OR IMPLIED, INCLUDING BUT NOT LIMITED TO THE WARRANTIES OF MERCHANTABILITY, FITNESS FOR A PARTICULAR PURPOSE AND NONINFRINGEMENT. IN NO EVENT SHALL THE AUTHORS OR COPYRIGHT HOLDERS BE LIABLE FOR ANY CLAIM, DAMAGES OR OTHER LIABILITY, WHETHER IN AN ACTION OF CONTRACT, TORT OR OTHERWISE, ARISING FROM, OUT OF OR IN CONNECTION WITH THE SOFTWARE OR THE USE OR OTHER DEALINGS IN THE SOFTWARE.
|
58
node_modules/@jest/reporters/node_modules/supports-color/package.json
generated
vendored
58
node_modules/@jest/reporters/node_modules/supports-color/package.json
generated
vendored
@ -1,58 +0,0 @@
|
||||
{
|
||||
"name": "supports-color",
|
||||
"version": "8.1.1",
|
||||
"description": "Detect whether a terminal supports color",
|
||||
"license": "MIT",
|
||||
"repository": "chalk/supports-color",
|
||||
"funding": "https://github.com/chalk/supports-color?sponsor=1",
|
||||
"author": {
|
||||
"name": "Sindre Sorhus",
|
||||
"email": "sindresorhus@gmail.com",
|
||||
"url": "https://sindresorhus.com"
|
||||
},
|
||||
"engines": {
|
||||
"node": ">=10"
|
||||
},
|
||||
"scripts": {
|
||||
"test": "xo && ava"
|
||||
},
|
||||
"files": [
|
||||
"index.js",
|
||||
"browser.js"
|
||||
],
|
||||
"exports": {
|
||||
"node": "./index.js",
|
||||
"default": "./browser.js"
|
||||
},
|
||||
"keywords": [
|
||||
"color",
|
||||
"colour",
|
||||
"colors",
|
||||
"terminal",
|
||||
"console",
|
||||
"cli",
|
||||
"ansi",
|
||||
"styles",
|
||||
"tty",
|
||||
"rgb",
|
||||
"256",
|
||||
"shell",
|
||||
"xterm",
|
||||
"command-line",
|
||||
"support",
|
||||
"supports",
|
||||
"capability",
|
||||
"detect",
|
||||
"truecolor",
|
||||
"16m"
|
||||
],
|
||||
"dependencies": {
|
||||
"has-flag": "^4.0.0"
|
||||
},
|
||||
"devDependencies": {
|
||||
"ava": "^2.4.0",
|
||||
"import-fresh": "^3.2.2",
|
||||
"xo": "^0.35.0"
|
||||
},
|
||||
"browser": "browser.js"
|
||||
}
|
77
node_modules/@jest/reporters/node_modules/supports-color/readme.md
generated
vendored
77
node_modules/@jest/reporters/node_modules/supports-color/readme.md
generated
vendored
@ -1,77 +0,0 @@
|
||||
# supports-color
|
||||
|
||||
> Detect whether a terminal supports color
|
||||
|
||||
## Install
|
||||
|
||||
```
|
||||
$ npm install supports-color
|
||||
```
|
||||
|
||||
## Usage
|
||||
|
||||
```js
|
||||
const supportsColor = require('supports-color');
|
||||
|
||||
if (supportsColor.stdout) {
|
||||
console.log('Terminal stdout supports color');
|
||||
}
|
||||
|
||||
if (supportsColor.stdout.has256) {
|
||||
console.log('Terminal stdout supports 256 colors');
|
||||
}
|
||||
|
||||
if (supportsColor.stderr.has16m) {
|
||||
console.log('Terminal stderr supports 16 million colors (truecolor)');
|
||||
}
|
||||
```
|
||||
|
||||
## API
|
||||
|
||||
Returns an `Object` with a `stdout` and `stderr` property for testing either streams. Each property is an `Object`, or `false` if color is not supported.
|
||||
|
||||
The `stdout`/`stderr` objects specifies a level of support for color through a `.level` property and a corresponding flag:
|
||||
|
||||
- `.level = 1` and `.hasBasic = true`: Basic color support (16 colors)
|
||||
- `.level = 2` and `.has256 = true`: 256 color support
|
||||
- `.level = 3` and `.has16m = true`: Truecolor support (16 million colors)
|
||||
|
||||
### `require('supports-color').supportsColor(stream, options?)`
|
||||
|
||||
Additionally, `supports-color` exposes the `.supportsColor()` function that takes an arbitrary write stream (e.g. `process.stdout`) and an optional options object to (re-)evaluate color support for an arbitrary stream.
|
||||
|
||||
For example, `require('supports-color').stdout` is the equivalent of `require('supports-color').supportsColor(process.stdout)`.
|
||||
|
||||
The options object supports a single boolean property `sniffFlags`. By default it is `true`, which instructs `supportsColor()` to sniff `process.argv` for the multitude of `--color` flags (see _Info_ below). If `false`, then `process.argv` is not considered when determining color support.
|
||||
|
||||
## Info
|
||||
|
||||
It obeys the `--color` and `--no-color` CLI flags.
|
||||
|
||||
For situations where using `--color` is not possible, use the environment variable `FORCE_COLOR=1` (level 1), `FORCE_COLOR=2` (level 2), or `FORCE_COLOR=3` (level 3) to forcefully enable color, or `FORCE_COLOR=0` to forcefully disable. The use of `FORCE_COLOR` overrides all other color support checks.
|
||||
|
||||
Explicit 256/Truecolor mode can be enabled using the `--color=256` and `--color=16m` flags, respectively.
|
||||
|
||||
## Related
|
||||
|
||||
- [supports-color-cli](https://github.com/chalk/supports-color-cli) - CLI for this module
|
||||
- [chalk](https://github.com/chalk/chalk) - Terminal string styling done right
|
||||
|
||||
## Maintainers
|
||||
|
||||
- [Sindre Sorhus](https://github.com/sindresorhus)
|
||||
- [Josh Junon](https://github.com/qix-)
|
||||
|
||||
---
|
||||
|
||||
<div align="center">
|
||||
<b>
|
||||
<a href="https://tidelift.com/subscription/pkg/npm-supports-color?utm_source=npm-supports-color&utm_medium=referral&utm_campaign=readme">Get professional support for this package with a Tidelift subscription</a>
|
||||
</b>
|
||||
<br>
|
||||
<sub>
|
||||
Tidelift helps make open source sustainable for maintainers while giving companies<br>assurances about security, maintenance, and licensing for their dependencies.
|
||||
</sub>
|
||||
</div>
|
||||
|
||||
---
|
2
node_modules/@types/node/README.md
generated
vendored
2
node_modules/@types/node/README.md
generated
vendored
@ -8,7 +8,7 @@ This package contains type definitions for node (https://nodejs.org/).
|
||||
Files were exported from https://github.com/DefinitelyTyped/DefinitelyTyped/tree/master/types/node.
|
||||
|
||||
### Additional Details
|
||||
* Last updated: Fri, 02 Aug 2024 11:07:10 GMT
|
||||
* Last updated: Fri, 09 Aug 2024 18:08:59 GMT
|
||||
* Dependencies: [undici-types](https://npmjs.com/package/undici-types)
|
||||
|
||||
# Credits
|
||||
|
47
node_modules/@types/node/fs.d.ts
generated
vendored
47
node_modules/@types/node/fs.d.ts
generated
vendored
@ -4324,6 +4324,18 @@ declare module "fs" {
|
||||
* Function to filter out files/directories. Return true to exclude the item, false to include it.
|
||||
*/
|
||||
exclude?: ((fileName: string) => boolean) | undefined;
|
||||
/**
|
||||
* `true` if the glob should return paths as `Dirent`s, `false` otherwise.
|
||||
* @default false
|
||||
* @since v22.2.0
|
||||
*/
|
||||
withFileTypes?: boolean | undefined;
|
||||
}
|
||||
export interface GlobOptionsWithFileTypes extends GlobOptions {
|
||||
withFileTypes: true;
|
||||
}
|
||||
export interface GlobOptionsWithoutFileTypes extends GlobOptions {
|
||||
withFileTypes?: false | undefined;
|
||||
}
|
||||
/**
|
||||
* Retrieves the files matching the specified pattern.
|
||||
@ -4332,15 +4344,46 @@ declare module "fs" {
|
||||
pattern: string | string[],
|
||||
callback: (err: NodeJS.ErrnoException | null, matches: string[]) => void,
|
||||
): void;
|
||||
export function glob(
|
||||
pattern: string | string[],
|
||||
options: GlobOptionsWithFileTypes,
|
||||
callback: (
|
||||
err: NodeJS.ErrnoException | null,
|
||||
matches: Dirent[],
|
||||
) => void,
|
||||
): void;
|
||||
export function glob(
|
||||
pattern: string | string[],
|
||||
options: GlobOptionsWithoutFileTypes,
|
||||
callback: (
|
||||
err: NodeJS.ErrnoException | null,
|
||||
matches: string[],
|
||||
) => void,
|
||||
): void;
|
||||
export function glob(
|
||||
pattern: string | string[],
|
||||
options: GlobOptions,
|
||||
callback: (err: NodeJS.ErrnoException | null, matches: string[]) => void,
|
||||
callback: (
|
||||
err: NodeJS.ErrnoException | null,
|
||||
matches: Dirent[] | string[],
|
||||
) => void,
|
||||
): void;
|
||||
/**
|
||||
* Retrieves the files matching the specified pattern.
|
||||
*/
|
||||
export function globSync(pattern: string | string[], options?: GlobOptions): string[];
|
||||
export function globSync(pattern: string | string[]): string[];
|
||||
export function globSync(
|
||||
pattern: string | string[],
|
||||
options: GlobOptionsWithFileTypes,
|
||||
): Dirent[];
|
||||
export function globSync(
|
||||
pattern: string | string[],
|
||||
options: GlobOptionsWithoutFileTypes,
|
||||
): string[];
|
||||
export function globSync(
|
||||
pattern: string | string[],
|
||||
options: GlobOptions,
|
||||
): Dirent[] | string[];
|
||||
}
|
||||
declare module "node:fs" {
|
||||
export * from "fs";
|
||||
|
16
node_modules/@types/node/fs/promises.d.ts
generated
vendored
16
node_modules/@types/node/fs/promises.d.ts
generated
vendored
@ -21,6 +21,8 @@ declare module "fs/promises" {
|
||||
Dir,
|
||||
Dirent,
|
||||
GlobOptions,
|
||||
GlobOptionsWithFileTypes,
|
||||
GlobOptionsWithoutFileTypes,
|
||||
MakeDirectoryOptions,
|
||||
Mode,
|
||||
ObjectEncodingOptions,
|
||||
@ -1243,7 +1245,19 @@ declare module "fs/promises" {
|
||||
/**
|
||||
* Retrieves the files matching the specified pattern.
|
||||
*/
|
||||
function glob(pattern: string | string[], options?: GlobOptions): AsyncIterableIterator<string>;
|
||||
function glob(pattern: string | string[]): AsyncIterableIterator<string>;
|
||||
function glob(
|
||||
pattern: string | string[],
|
||||
opt: GlobOptionsWithFileTypes,
|
||||
): AsyncIterableIterator<Dirent>;
|
||||
function glob(
|
||||
pattern: string | string[],
|
||||
opt: GlobOptionsWithoutFileTypes,
|
||||
): AsyncIterableIterator<string>;
|
||||
function glob(
|
||||
pattern: string | string[],
|
||||
opt: GlobOptions,
|
||||
): AsyncIterableIterator<Dirent> | AsyncIterableIterator<string>;
|
||||
}
|
||||
declare module "node:fs/promises" {
|
||||
export * from "fs/promises";
|
||||
|
4
node_modules/@types/node/package.json
generated
vendored
4
node_modules/@types/node/package.json
generated
vendored
@ -1,6 +1,6 @@
|
||||
{
|
||||
"name": "@types/node",
|
||||
"version": "22.1.0",
|
||||
"version": "22.2.0",
|
||||
"description": "TypeScript definitions for node",
|
||||
"homepage": "https://github.com/DefinitelyTyped/DefinitelyTyped/tree/master/types/node",
|
||||
"license": "MIT",
|
||||
@ -212,6 +212,6 @@
|
||||
"dependencies": {
|
||||
"undici-types": "~6.13.0"
|
||||
},
|
||||
"typesPublisherContentHash": "a016324027de394c0877c1d44c03999bacaa45ed9b7249649d03dd6b9bfe4e5b",
|
||||
"typesPublisherContentHash": "e8a1feecc621a4e4c40517dba1262b6a77dcb9cdd874f74c76cb391931926c7c",
|
||||
"typeScriptVersion": "4.8"
|
||||
}
|
38
node_modules/@types/node/perf_hooks.d.ts
generated
vendored
38
node_modules/@types/node/perf_hooks.d.ts
generated
vendored
@ -31,7 +31,17 @@
|
||||
*/
|
||||
declare module "perf_hooks" {
|
||||
import { AsyncResource } from "node:async_hooks";
|
||||
type EntryType = "node" | "mark" | "measure" | "gc" | "function" | "http2" | "http" | "dns" | "net";
|
||||
type EntryType =
|
||||
| "dns" // Node.js only
|
||||
| "function" // Node.js only
|
||||
| "gc" // Node.js only
|
||||
| "http2" // Node.js only
|
||||
| "http" // Node.js only
|
||||
| "mark" // available on the Web
|
||||
| "measure" // available on the Web
|
||||
| "net" // Node.js only
|
||||
| "node" // Node.js only
|
||||
| "resource"; // available on the Web
|
||||
interface NodeGCPerformanceDetail {
|
||||
/**
|
||||
* When `performanceEntry.entryType` is equal to 'gc', the `performance.kind` property identifies
|
||||
@ -114,6 +124,7 @@ declare module "perf_hooks" {
|
||||
* @since v8.5.0
|
||||
*/
|
||||
class PerformanceNodeTiming extends PerformanceEntry {
|
||||
readonly entryType: "node";
|
||||
/**
|
||||
* The high resolution millisecond timestamp at which the Node.js process
|
||||
* completed bootstrapping. If bootstrapping has not yet finished, the property
|
||||
@ -270,6 +281,30 @@ declare module "perf_hooks" {
|
||||
* @param name
|
||||
*/
|
||||
mark(name: string, options?: MarkOptions): PerformanceMark;
|
||||
/**
|
||||
* Creates a new `PerformanceResourceTiming` entry in the Resource Timeline.
|
||||
* A `PerformanceResourceTiming` is a subclass of `PerformanceEntry` whose `performanceEntry.entryType` is always `'resource'`.
|
||||
* Performance resources are used to mark moments in the Resource Timeline.
|
||||
* @param timingInfo [Fetch Timing Info](https://fetch.spec.whatwg.org/#fetch-timing-info)
|
||||
* @param requestedUrl The resource url
|
||||
* @param initiatorType The initiator name, e.g: 'fetch'
|
||||
* @param global
|
||||
* @param cacheMode The cache mode must be an empty string ('') or 'local'
|
||||
* @param bodyInfo [Fetch Response Body Info](https://fetch.spec.whatwg.org/#response-body-info)
|
||||
* @param responseStatus The response's status code
|
||||
* @param deliveryType The delivery type. Default: ''.
|
||||
* @since v18.2.0, v16.17.0
|
||||
*/
|
||||
markResourceTiming(
|
||||
timingInfo: object,
|
||||
requestedUrl: string,
|
||||
initiatorType: string,
|
||||
global: object,
|
||||
cacheMode: "" | "local",
|
||||
bodyInfo: object,
|
||||
responseStatus: number,
|
||||
deliveryType?: string,
|
||||
): PerformanceResourceTiming;
|
||||
/**
|
||||
* Creates a new PerformanceMeasure entry in the Performance Timeline.
|
||||
* A PerformanceMeasure is a subclass of PerformanceEntry whose performanceEntry.entryType is always 'measure',
|
||||
@ -543,6 +578,7 @@ declare module "perf_hooks" {
|
||||
* @since v18.2.0, v16.17.0
|
||||
*/
|
||||
class PerformanceResourceTiming extends PerformanceEntry {
|
||||
readonly entryType: "resource";
|
||||
protected constructor();
|
||||
/**
|
||||
* The high resolution millisecond timestamp at immediately before dispatching the `fetch`
|
||||
|
120
node_modules/@types/node/test.d.ts
generated
vendored
120
node_modules/@types/node/test.d.ts
generated
vendored
@ -461,6 +461,12 @@ declare module "node:test" {
|
||||
* @since v18.0.0, v16.17.0
|
||||
*/
|
||||
class TestContext {
|
||||
/**
|
||||
* An object containing assertion methods bound to the test context.
|
||||
* The top-level functions from the `node:assert` module are exposed here for the purpose of creating test plans.
|
||||
* @since v22.2.0
|
||||
*/
|
||||
readonly assert: TestContextAssert;
|
||||
/**
|
||||
* This function is used to create a hook running before subtest of the current test.
|
||||
* @param fn The hook function. If the hook uses callbacks, the callback function is passed as the second argument.
|
||||
@ -508,6 +514,42 @@ declare module "node:test" {
|
||||
* @since v18.8.0, v16.18.0
|
||||
*/
|
||||
readonly name: string;
|
||||
/**
|
||||
* Used to set the number of assertions and subtests that are expected to run within the test.
|
||||
* If the number of assertions and subtests that run does not match the expected count, the test will fail.
|
||||
*
|
||||
* To make sure assertions are tracked, the assert functions on `context.assert` must be used,
|
||||
* instead of importing from the `node:assert` module.
|
||||
* ```js
|
||||
* test('top level test', (t) => {
|
||||
* t.plan(2);
|
||||
* t.assert.ok('some relevant assertion here');
|
||||
* t.test('subtest', () => {});
|
||||
* });
|
||||
* ```
|
||||
*
|
||||
* When working with asynchronous code, the `plan` function can be used to ensure that the correct number of assertions are run:
|
||||
* ```js
|
||||
* test('planning with streams', (t, done) => {
|
||||
* function* generate() {
|
||||
* yield 'a';
|
||||
* yield 'b';
|
||||
* yield 'c';
|
||||
* }
|
||||
* const expected = ['a', 'b', 'c'];
|
||||
* t.plan(expected.length);
|
||||
* const stream = Readable.from(generate());
|
||||
* stream.on('data', (chunk) => {
|
||||
* t.assert.strictEqual(chunk, expected.shift());
|
||||
* });
|
||||
* stream.on('end', () => {
|
||||
* done();
|
||||
* });
|
||||
* });
|
||||
* ```
|
||||
* @since v22.2.0
|
||||
*/
|
||||
plan(count: number): void;
|
||||
/**
|
||||
* If `shouldRunOnlyTests` is truthy, the test context will only run tests that
|
||||
* have the `only` option set. Otherwise, all tests are run. If Node.js was not
|
||||
@ -584,6 +626,76 @@ declare module "node:test" {
|
||||
*/
|
||||
readonly mock: MockTracker;
|
||||
}
|
||||
interface TestContextAssert {
|
||||
/**
|
||||
* Identical to the `deepEqual` function from the `node:assert` module, but bound to the test context.
|
||||
*/
|
||||
deepEqual: typeof import("node:assert").deepEqual;
|
||||
/**
|
||||
* Identical to the `deepStrictEqual` function from the `node:assert` module, but bound to the test context.
|
||||
*/
|
||||
deepStrictEqual: typeof import("node:assert").deepStrictEqual;
|
||||
/**
|
||||
* Identical to the `doesNotMatch` function from the `node:assert` module, but bound to the test context.
|
||||
*/
|
||||
doesNotMatch: typeof import("node:assert").doesNotMatch;
|
||||
/**
|
||||
* Identical to the `doesNotReject` function from the `node:assert` module, but bound to the test context.
|
||||
*/
|
||||
doesNotReject: typeof import("node:assert").doesNotReject;
|
||||
/**
|
||||
* Identical to the `doesNotThrow` function from the `node:assert` module, but bound to the test context.
|
||||
*/
|
||||
doesNotThrow: typeof import("node:assert").doesNotThrow;
|
||||
/**
|
||||
* Identical to the `equal` function from the `node:assert` module, but bound to the test context.
|
||||
*/
|
||||
equal: typeof import("node:assert").equal;
|
||||
/**
|
||||
* Identical to the `fail` function from the `node:assert` module, but bound to the test context.
|
||||
*/
|
||||
fail: typeof import("node:assert").fail;
|
||||
/**
|
||||
* Identical to the `ifError` function from the `node:assert` module, but bound to the test context.
|
||||
*/
|
||||
ifError: typeof import("node:assert").ifError;
|
||||
/**
|
||||
* Identical to the `match` function from the `node:assert` module, but bound to the test context.
|
||||
*/
|
||||
match: typeof import("node:assert").match;
|
||||
/**
|
||||
* Identical to the `notDeepEqual` function from the `node:assert` module, but bound to the test context.
|
||||
*/
|
||||
notDeepEqual: typeof import("node:assert").notDeepEqual;
|
||||
/**
|
||||
* Identical to the `notDeepStrictEqual` function from the `node:assert` module, but bound to the test context.
|
||||
*/
|
||||
notDeepStrictEqual: typeof import("node:assert").notDeepStrictEqual;
|
||||
/**
|
||||
* Identical to the `notEqual` function from the `node:assert` module, but bound to the test context.
|
||||
*/
|
||||
notEqual: typeof import("node:assert").notEqual;
|
||||
/**
|
||||
* Identical to the `notStrictEqual` function from the `node:assert` module, but bound to the test context.
|
||||
*/
|
||||
notStrictEqual: typeof import("node:assert").notStrictEqual;
|
||||
/**
|
||||
* Identical to the `ok` function from the `node:assert` module, but bound to the test context.
|
||||
*/
|
||||
ok: typeof import("node:assert").ok;
|
||||
/**
|
||||
* Identical to the `rejects` function from the `node:assert` module, but bound to the test context.
|
||||
*/
|
||||
rejects: typeof import("node:assert").rejects;
|
||||
/**
|
||||
* Identical to the `strictEqual` function from the `node:assert` module, but bound to the test context.
|
||||
*/
|
||||
strictEqual: typeof import("node:assert").strictEqual;
|
||||
/**
|
||||
* Identical to the `throws` function from the `node:assert` module, but bound to the test context.
|
||||
*/
|
||||
throws: typeof import("node:assert").throws;
|
||||
}
|
||||
|
||||
/**
|
||||
* An instance of `SuiteContext` is passed to each suite function in order to
|
||||
@ -643,6 +755,14 @@ declare module "node:test" {
|
||||
* @default false
|
||||
*/
|
||||
todo?: boolean | string | undefined;
|
||||
/**
|
||||
* The number of assertions and subtests expected to be run in the test.
|
||||
* If the number of assertions run in the test does not match the number
|
||||
* specified in the plan, the test will fail.
|
||||
* @default undefined
|
||||
* @since v22.2.0
|
||||
*/
|
||||
plan?: number | undefined;
|
||||
}
|
||||
/**
|
||||
* This function creates a hook that runs before executing a suite.
|
||||
|
9
node_modules/@types/node/zlib.d.ts
generated
vendored
9
node_modules/@types/node/zlib.d.ts
generated
vendored
@ -172,6 +172,15 @@ declare module "zlib" {
|
||||
interface DeflateRaw extends stream.Transform, Zlib, ZlibReset, ZlibParams {}
|
||||
interface InflateRaw extends stream.Transform, Zlib, ZlibReset {}
|
||||
interface Unzip extends stream.Transform, Zlib {}
|
||||
/**
|
||||
* Computes a 32-bit [Cyclic Redundancy Check](https://en.wikipedia.org/wiki/Cyclic_redundancy_check) checksum of `data`.
|
||||
* If `value` is specified, it is used as the starting value of the checksum, otherwise, 0 is used as the starting value.
|
||||
* @param data When `data` is a string, it will be encoded as UTF-8 before being used for computation.
|
||||
* @param value An optional starting value. It must be a 32-bit unsigned integer. @default 0
|
||||
* @returns A 32-bit unsigned integer containing the checksum.
|
||||
* @since v22.2.0
|
||||
*/
|
||||
function crc32(data: string | Buffer | NodeJS.ArrayBufferView, value?: number): number;
|
||||
/**
|
||||
* Creates and returns a new `BrotliCompress` object.
|
||||
* @since v11.7.0, v10.16.0
|
||||
|
37
node_modules/ansi-regex/index.d.ts
generated
vendored
37
node_modules/ansi-regex/index.d.ts
generated
vendored
@ -1,37 +0,0 @@
|
||||
declare namespace ansiRegex {
|
||||
interface Options {
|
||||
/**
|
||||
Match only the first ANSI escape.
|
||||
|
||||
@default false
|
||||
*/
|
||||
onlyFirst: boolean;
|
||||
}
|
||||
}
|
||||
|
||||
/**
|
||||
Regular expression for matching ANSI escape codes.
|
||||
|
||||
@example
|
||||
```
|
||||
import ansiRegex = require('ansi-regex');
|
||||
|
||||
ansiRegex().test('\u001B[4mcake\u001B[0m');
|
||||
//=> true
|
||||
|
||||
ansiRegex().test('cake');
|
||||
//=> false
|
||||
|
||||
'\u001B[4mcake\u001B[0m'.match(ansiRegex());
|
||||
//=> ['\u001B[4m', '\u001B[0m']
|
||||
|
||||
'\u001B[4mcake\u001B[0m'.match(ansiRegex({onlyFirst: true}));
|
||||
//=> ['\u001B[4m']
|
||||
|
||||
'\u001B]8;;https://github.com\u0007click\u001B]8;;\u0007'.match(ansiRegex());
|
||||
//=> ['\u001B]8;;https://github.com\u0007', '\u001B]8;;\u0007']
|
||||
```
|
||||
*/
|
||||
declare function ansiRegex(options?: ansiRegex.Options): RegExp;
|
||||
|
||||
export = ansiRegex;
|
8
node_modules/ansi-regex/index.js
generated
vendored
8
node_modules/ansi-regex/index.js
generated
vendored
@ -1,10 +1,14 @@
|
||||
'use strict';
|
||||
|
||||
module.exports = ({onlyFirst = false} = {}) => {
|
||||
module.exports = options => {
|
||||
options = Object.assign({
|
||||
onlyFirst: false
|
||||
}, options);
|
||||
|
||||
const pattern = [
|
||||
'[\\u001B\\u009B][[\\]()#;?]*(?:(?:(?:(?:;[-a-zA-Z\\d\\/#&.:=?%@~_]+)*|[a-zA-Z\\d]+(?:;[-a-zA-Z\\d\\/#&.:=?%@~_]*)*)?\\u0007)',
|
||||
'(?:(?:\\d{1,4}(?:;\\d{0,4})*)?[\\dA-PR-TZcf-ntqry=><~]))'
|
||||
].join('|');
|
||||
|
||||
return new RegExp(pattern, onlyFirst ? undefined : 'g');
|
||||
return new RegExp(pattern, options.onlyFirst ? undefined : 'g');
|
||||
};
|
||||
|
14
node_modules/ansi-regex/package.json
generated
vendored
14
node_modules/ansi-regex/package.json
generated
vendored
@ -1,6 +1,6 @@
|
||||
{
|
||||
"name": "ansi-regex",
|
||||
"version": "5.0.1",
|
||||
"version": "4.1.1",
|
||||
"description": "Regular expression for matching ANSI escape codes",
|
||||
"license": "MIT",
|
||||
"repository": "chalk/ansi-regex",
|
||||
@ -10,15 +10,14 @@
|
||||
"url": "sindresorhus.com"
|
||||
},
|
||||
"engines": {
|
||||
"node": ">=8"
|
||||
"node": ">=6"
|
||||
},
|
||||
"scripts": {
|
||||
"test": "xo && ava && tsd",
|
||||
"test": "xo && ava",
|
||||
"view-supported": "node fixtures/view-codes.js"
|
||||
},
|
||||
"files": [
|
||||
"index.js",
|
||||
"index.d.ts"
|
||||
"index.js"
|
||||
],
|
||||
"keywords": [
|
||||
"ansi",
|
||||
@ -48,8 +47,7 @@
|
||||
"pattern"
|
||||
],
|
||||
"devDependencies": {
|
||||
"ava": "^2.4.0",
|
||||
"tsd": "^0.9.0",
|
||||
"xo": "^0.25.3"
|
||||
"ava": "^0.25.0",
|
||||
"xo": "^0.23.0"
|
||||
}
|
||||
}
|
||||
|
37
node_modules/ansi-regex/readme.md
generated
vendored
37
node_modules/ansi-regex/readme.md
generated
vendored
@ -1,7 +1,21 @@
|
||||
# ansi-regex
|
||||
# ansi-regex [](https://travis-ci.org/chalk/ansi-regex)
|
||||
|
||||
> Regular expression for matching [ANSI escape codes](https://en.wikipedia.org/wiki/ANSI_escape_code)
|
||||
|
||||
---
|
||||
|
||||
<div align="center">
|
||||
<b>
|
||||
<a href="https://tidelift.com/subscription/pkg/npm-ansi-regex?utm_source=npm-ansi-regex&utm_medium=referral&utm_campaign=readme">Get professional support for this package with a Tidelift subscription</a>
|
||||
</b>
|
||||
<br>
|
||||
<sub>
|
||||
Tidelift helps make open source sustainable for maintainers while giving companies<br>assurances about security, maintenance, and licensing for their dependencies.
|
||||
</sub>
|
||||
</div>
|
||||
|
||||
---
|
||||
|
||||
|
||||
## Install
|
||||
|
||||
@ -34,14 +48,12 @@ ansiRegex().test('cake');
|
||||
|
||||
## API
|
||||
|
||||
### ansiRegex(options?)
|
||||
### ansiRegex([options])
|
||||
|
||||
Returns a regex for matching ANSI escape codes.
|
||||
|
||||
#### options
|
||||
|
||||
Type: `object`
|
||||
|
||||
##### onlyFirst
|
||||
|
||||
Type: `boolean`<br>
|
||||
@ -59,20 +71,17 @@ Some of the codes we run as a test are codes that we acquired finding various li
|
||||
On the historical side, those ECMA standards were established in the early 90's whereas the VT100, for example, was designed in the mid/late 70's. At that point in time, control codes were still pretty ungoverned and engineers used them for a multitude of things, namely to activate hardware ports that may have been proprietary. Somewhere else you see a similar 'anarchy' of codes is in the x86 architecture for processors; there are a ton of "interrupts" that can mean different things on certain brands of processors, most of which have been phased out.
|
||||
|
||||
|
||||
## Security
|
||||
|
||||
To report a security vulnerability, please use the [Tidelift security contact](https://tidelift.com/security). Tidelift will coordinate the fix and disclosure.
|
||||
|
||||
|
||||
## Maintainers
|
||||
|
||||
- [Sindre Sorhus](https://github.com/sindresorhus)
|
||||
- [Josh Junon](https://github.com/qix-)
|
||||
|
||||
|
||||
---
|
||||
## License
|
||||
|
||||
<div align="center">
|
||||
<b>
|
||||
<a href="https://tidelift.com/subscription/pkg/npm-ansi-regex?utm_source=npm-ansi-regex&utm_medium=referral&utm_campaign=readme">Get professional support for this package with a Tidelift subscription</a>
|
||||
</b>
|
||||
<br>
|
||||
<sub>
|
||||
Tidelift helps make open source sustainable for maintainers while giving companies<br>assurances about security, maintenance, and licensing for their dependencies.
|
||||
</sub>
|
||||
</div>
|
||||
MIT
|
||||
|
2
node_modules/caniuse-lite/data/agents.js
generated
vendored
2
node_modules/caniuse-lite/data/agents.js
generated
vendored
File diff suppressed because one or more lines are too long
2
node_modules/caniuse-lite/data/browserVersions.js
generated
vendored
2
node_modules/caniuse-lite/data/browserVersions.js
generated
vendored
@ -1 +1 @@
|
||||
module.exports={"0":"25","1":"112","2":"113","3":"114","4":"115","5":"116","6":"117","7":"118","8":"119","9":"120",A:"10",B:"11",C:"12",D:"127",E:"7",F:"8",G:"9",H:"15",I:"80",J:"4",K:"6",L:"13",M:"14",N:"16",O:"17",P:"18",Q:"79",R:"81",S:"83",T:"84",U:"85",V:"86",W:"87",X:"88",Y:"89",Z:"90",a:"91",b:"92",c:"93",d:"94",e:"95",f:"96",g:"97",h:"98",i:"99",j:"100",k:"101",l:"102",m:"103",n:"104",o:"105",p:"106",q:"107",r:"108",s:"109",t:"110",u:"111",v:"20",w:"21",x:"22",y:"23",z:"24",AB:"121",BB:"122",CB:"123",DB:"124",EB:"125",FB:"126",GB:"5",HB:"19",IB:"26",JB:"27",KB:"28",LB:"29",MB:"30",NB:"31",OB:"32",PB:"33",QB:"34",RB:"35",SB:"36",TB:"37",UB:"38",VB:"39",WB:"40",XB:"41",YB:"42",ZB:"43",aB:"44",bB:"45",cB:"46",dB:"47",eB:"48",fB:"49",gB:"50",hB:"51",iB:"52",jB:"53",kB:"54",lB:"55",mB:"56",nB:"57",oB:"58",pB:"60",qB:"62",rB:"63",sB:"64",tB:"65",uB:"66",vB:"67",wB:"68",xB:"69",yB:"70",zB:"71","0B":"72","1B":"73","2B":"74","3B":"75","4B":"76","5B":"77","6B":"78","7B":"11.1","8B":"12.1","9B":"15.5",AC:"16.0",BC:"17.0",CC:"18.0",DC:"3",EC:"59",FC:"61",GC:"82",HC:"128",IC:"129",JC:"130",KC:"3.2",LC:"10.1",MC:"15.2-15.3",NC:"15.4",OC:"16.1",PC:"16.2",QC:"16.3",RC:"16.4",SC:"16.5",TC:"17.1",UC:"17.2",VC:"17.3",WC:"17.4",XC:"17.5",YC:"17.6",ZC:"11.5",aC:"4.2-4.3",bC:"5.5",cC:"2",dC:"131",eC:"3.5",fC:"3.6",gC:"3.1",hC:"5.1",iC:"6.1",jC:"7.1",kC:"9.1",lC:"13.1",mC:"14.1",nC:"15.1",oC:"15.6",pC:"16.6",qC:"TP",rC:"9.5-9.6",sC:"10.0-10.1",tC:"10.5",uC:"10.6",vC:"11.6",wC:"4.0-4.1",xC:"5.0-5.1",yC:"6.0-6.1",zC:"7.0-7.1","0C":"8.1-8.4","1C":"9.0-9.2","2C":"9.3","3C":"10.0-10.2","4C":"10.3","5C":"11.0-11.2","6C":"11.3-11.4","7C":"12.0-12.1","8C":"12.2-12.5","9C":"13.0-13.1",AD:"13.2",BD:"13.3",CD:"13.4-13.7",DD:"14.0-14.4",ED:"14.5-14.8",FD:"15.0-15.1",GD:"15.6-15.8",HD:"16.6-16.7",ID:"all",JD:"2.1",KD:"2.2",LD:"2.3",MD:"4.1",ND:"4.4",OD:"4.4.3-4.4.4",PD:"5.0-5.4",QD:"6.2-6.4",RD:"7.2-7.4",SD:"8.2",TD:"9.2",UD:"11.1-11.2",VD:"12.0",WD:"13.0",XD:"14.0",YD:"15.0",ZD:"19.0",aD:"14.9",bD:"13.52",cD:"2.5",dD:"3.0-3.1"};
|
||||
module.exports={"0":"25","1":"112","2":"113","3":"114","4":"115","5":"116","6":"117","7":"118","8":"119","9":"120",A:"10",B:"11",C:"12",D:"127",E:"7",F:"8",G:"9",H:"15",I:"80",J:"4",K:"6",L:"13",M:"14",N:"16",O:"17",P:"18",Q:"79",R:"81",S:"83",T:"84",U:"85",V:"86",W:"87",X:"88",Y:"89",Z:"90",a:"91",b:"92",c:"93",d:"94",e:"95",f:"96",g:"97",h:"98",i:"99",j:"100",k:"101",l:"102",m:"103",n:"104",o:"105",p:"106",q:"107",r:"108",s:"109",t:"110",u:"111",v:"20",w:"21",x:"22",y:"23",z:"24",AB:"121",BB:"122",CB:"123",DB:"124",EB:"125",FB:"126",GB:"5",HB:"19",IB:"26",JB:"27",KB:"28",LB:"29",MB:"30",NB:"31",OB:"32",PB:"33",QB:"34",RB:"35",SB:"36",TB:"37",UB:"38",VB:"39",WB:"40",XB:"41",YB:"42",ZB:"43",aB:"44",bB:"45",cB:"46",dB:"47",eB:"48",fB:"49",gB:"50",hB:"51",iB:"52",jB:"53",kB:"54",lB:"55",mB:"56",nB:"57",oB:"58",pB:"60",qB:"62",rB:"63",sB:"64",tB:"65",uB:"66",vB:"67",wB:"68",xB:"69",yB:"70",zB:"71","0B":"72","1B":"73","2B":"74","3B":"75","4B":"76","5B":"77","6B":"78","7B":"11.1","8B":"12.1","9B":"15.5",AC:"16.0",BC:"17.0",CC:"18.0",DC:"3",EC:"59",FC:"61",GC:"82",HC:"128",IC:"129",JC:"130",KC:"3.2",LC:"10.1",MC:"15.2-15.3",NC:"15.4",OC:"16.1",PC:"16.2",QC:"16.3",RC:"16.4",SC:"16.5",TC:"17.1",UC:"17.2",VC:"17.3",WC:"17.4",XC:"17.5",YC:"17.6",ZC:"11.5",aC:"4.2-4.3",bC:"5.5",cC:"2",dC:"131",eC:"132",fC:"3.5",gC:"3.6",hC:"3.1",iC:"5.1",jC:"6.1",kC:"7.1",lC:"9.1",mC:"13.1",nC:"14.1",oC:"15.1",pC:"15.6",qC:"16.6",rC:"TP",sC:"9.5-9.6",tC:"10.0-10.1",uC:"10.5",vC:"10.6",wC:"11.6",xC:"4.0-4.1",yC:"5.0-5.1",zC:"6.0-6.1","0C":"7.0-7.1","1C":"8.1-8.4","2C":"9.0-9.2","3C":"9.3","4C":"10.0-10.2","5C":"10.3","6C":"11.0-11.2","7C":"11.3-11.4","8C":"12.0-12.1","9C":"12.2-12.5",AD:"13.0-13.1",BD:"13.2",CD:"13.3",DD:"13.4-13.7",ED:"14.0-14.4",FD:"14.5-14.8",GD:"15.0-15.1",HD:"15.6-15.8",ID:"16.6-16.7",JD:"all",KD:"2.1",LD:"2.2",MD:"2.3",ND:"4.1",OD:"4.4",PD:"4.4.3-4.4.4",QD:"5.0-5.4",RD:"6.2-6.4",SD:"7.2-7.4",TD:"8.2",UD:"9.2",VD:"11.1-11.2",WD:"12.0",XD:"13.0",YD:"14.0",ZD:"15.0",aD:"19.0",bD:"14.9",cD:"13.52",dD:"2.5",eD:"3.0-3.1"};
|
||||
|
2
node_modules/caniuse-lite/data/features/aac.js
generated
vendored
2
node_modules/caniuse-lite/data/features/aac.js
generated
vendored
@ -1 +1 @@
|
||||
module.exports={A:{A:{"1":"G A B","2":"K E F bC"},B:{"1":"1 2 3 4 5 6 7 8 9 C L M H N O P Q I R S T U V W X Y Z a b c d e f g h i j k l m n o p q r s t u AB BB CB DB EB FB D"},C:{"2":"cC DC J GB K E F G A B C L M H N O P HB v w eC fC","132":"0 1 2 3 4 5 6 7 8 9 x y z IB JB KB LB MB NB OB PB QB RB SB TB UB VB WB XB YB ZB aB bB cB dB eB fB gB hB iB jB kB lB mB nB oB EC pB FC qB rB sB tB uB vB wB xB yB zB 0B 1B 2B 3B 4B 5B 6B Q I R GC S T U V W X Y Z a b c d e f g h i j k l m n o p q r s t u AB BB CB DB EB FB D HC IC JC dC"},D:{"1":"0 1 2 3 4 5 6 7 8 9 C L M H N O P HB v w x y z IB JB KB LB MB NB OB PB QB RB SB TB UB VB WB XB YB ZB aB bB cB dB eB fB gB hB iB jB kB lB mB nB oB EC pB FC qB rB sB tB uB vB wB xB yB zB 0B 1B 2B 3B 4B 5B 6B Q I R S T U V W X Y Z a b c d e f g h i j k l m n o p q r s t u AB BB CB DB EB FB D HC IC JC","2":"J GB K E F G","16":"A B"},E:{"1":"J GB K E F G A B C L M H hC iC jC kC LC 7B 8B lC mC nC MC NC 9B oC AC OC PC QC RC SC pC BC TC UC VC WC XC YC CC qC","2":"gC KC"},F:{"1":"0 H N O P HB v w x y z IB JB KB LB MB NB OB PB QB RB SB TB UB VB WB XB YB ZB aB bB cB dB eB fB gB hB iB jB kB lB mB nB oB pB qB rB sB tB uB vB wB xB yB zB 0B 1B 2B 3B 4B 5B 6B Q I R GC S T U V W X Y Z a b c d e f g h i j k l m n o p q r s t u","2":"G B C rC sC tC uC 7B ZC vC 8B"},G:{"1":"F wC aC xC yC zC 0C 1C 2C 3C 4C 5C 6C 7C 8C 9C AD BD CD DD ED FD MC NC 9B GD AC OC PC QC RC SC HD BC TC UC VC WC XC YC CC","16":"KC"},H:{"2":"ID"},I:{"1":"DC J D MD aC ND OD","2":"JD KD LD"},J:{"1":"A","2":"E"},K:{"1":"I","2":"A B C 7B ZC 8B"},L:{"1":"D"},M:{"132":"D"},N:{"1":"A","2":"B"},O:{"1":"9B"},P:{"1":"0 J v w x y z PD QD RD SD TD LC UD VD WD XD YD AC BC CC ZD"},Q:{"1":"aD"},R:{"1":"bD"},S:{"132":"cD dD"}},B:6,C:"AAC audio file format",D:true};
|
||||
module.exports={A:{A:{"1":"G A B","2":"K E F bC"},B:{"1":"1 2 3 4 5 6 7 8 9 C L M H N O P Q I R S T U V W X Y Z a b c d e f g h i j k l m n o p q r s t u AB BB CB DB EB FB D"},C:{"2":"cC DC J GB K E F G A B C L M H N O P HB v w fC gC","132":"0 1 2 3 4 5 6 7 8 9 x y z IB JB KB LB MB NB OB PB QB RB SB TB UB VB WB XB YB ZB aB bB cB dB eB fB gB hB iB jB kB lB mB nB oB EC pB FC qB rB sB tB uB vB wB xB yB zB 0B 1B 2B 3B 4B 5B 6B Q I R GC S T U V W X Y Z a b c d e f g h i j k l m n o p q r s t u AB BB CB DB EB FB D HC IC JC dC eC"},D:{"1":"0 1 2 3 4 5 6 7 8 9 C L M H N O P HB v w x y z IB JB KB LB MB NB OB PB QB RB SB TB UB VB WB XB YB ZB aB bB cB dB eB fB gB hB iB jB kB lB mB nB oB EC pB FC qB rB sB tB uB vB wB xB yB zB 0B 1B 2B 3B 4B 5B 6B Q I R S T U V W X Y Z a b c d e f g h i j k l m n o p q r s t u AB BB CB DB EB FB D HC IC JC","2":"J GB K E F G","16":"A B"},E:{"1":"J GB K E F G A B C L M H iC jC kC lC LC 7B 8B mC nC oC MC NC 9B pC AC OC PC QC RC SC qC BC TC UC VC WC XC YC CC rC","2":"hC KC"},F:{"1":"0 H N O P HB v w x y z IB JB KB LB MB NB OB PB QB RB SB TB UB VB WB XB YB ZB aB bB cB dB eB fB gB hB iB jB kB lB mB nB oB pB qB rB sB tB uB vB wB xB yB zB 0B 1B 2B 3B 4B 5B 6B Q I R GC S T U V W X Y Z a b c d e f g h i j k l m n o p q r s t u","2":"G B C sC tC uC vC 7B ZC wC 8B"},G:{"1":"F xC aC yC zC 0C 1C 2C 3C 4C 5C 6C 7C 8C 9C AD BD CD DD ED FD GD MC NC 9B HD AC OC PC QC RC SC ID BC TC UC VC WC XC YC CC","16":"KC"},H:{"2":"JD"},I:{"1":"DC J D ND aC OD PD","2":"KD LD MD"},J:{"1":"A","2":"E"},K:{"1":"I","2":"A B C 7B ZC 8B"},L:{"1":"D"},M:{"132":"D"},N:{"1":"A","2":"B"},O:{"1":"9B"},P:{"1":"0 J v w x y z QD RD SD TD UD LC VD WD XD YD ZD AC BC CC aD"},Q:{"1":"bD"},R:{"1":"cD"},S:{"132":"dD eD"}},B:6,C:"AAC audio file format",D:true};
|
||||
|
2
node_modules/caniuse-lite/data/features/abortcontroller.js
generated
vendored
2
node_modules/caniuse-lite/data/features/abortcontroller.js
generated
vendored
@ -1 +1 @@
|
||||
module.exports={A:{A:{"2":"K E F G A B bC"},B:{"1":"1 2 3 4 5 6 7 8 9 N O P Q I R S T U V W X Y Z a b c d e f g h i j k l m n o p q r s t u AB BB CB DB EB FB D","2":"C L M H"},C:{"1":"1 2 3 4 5 6 7 8 9 nB oB EC pB FC qB rB sB tB uB vB wB xB yB zB 0B 1B 2B 3B 4B 5B 6B Q I R GC S T U V W X Y Z a b c d e f g h i j k l m n o p q r s t u AB BB CB DB EB FB D HC IC JC dC","2":"0 cC DC J GB K E F G A B C L M H N O P HB v w x y z IB JB KB LB MB NB OB PB QB RB SB TB UB VB WB XB YB ZB aB bB cB dB eB fB gB hB iB jB kB lB mB eC fC"},D:{"1":"1 2 3 4 5 6 7 8 9 uB vB wB xB yB zB 0B 1B 2B 3B 4B 5B 6B Q I R S T U V W X Y Z a b c d e f g h i j k l m n o p q r s t u AB BB CB DB EB FB D HC IC JC","2":"0 J GB K E F G A B C L M H N O P HB v w x y z IB JB KB LB MB NB OB PB QB RB SB TB UB VB WB XB YB ZB aB bB cB dB eB fB gB hB iB jB kB lB mB nB oB EC pB FC qB rB sB tB"},E:{"1":"L M H 8B lC mC nC MC NC 9B oC AC OC PC QC RC SC pC BC TC UC VC WC XC YC CC qC","2":"J GB K E F G A B gC KC hC iC jC kC LC","130":"C 7B"},F:{"1":"jB kB lB mB nB oB pB qB rB sB tB uB vB wB xB yB zB 0B 1B 2B 3B 4B 5B 6B Q I R GC S T U V W X Y Z a b c d e f g h i j k l m n o p q r s t u","2":"0 G B C H N O P HB v w x y z IB JB KB LB MB NB OB PB QB RB SB TB UB VB WB XB YB ZB aB bB cB dB eB fB gB hB iB rC sC tC uC 7B ZC vC 8B"},G:{"1":"6C 7C 8C 9C AD BD CD DD ED FD MC NC 9B GD AC OC PC QC RC SC HD BC TC UC VC WC XC YC CC","2":"F KC wC aC xC yC zC 0C 1C 2C 3C 4C 5C"},H:{"2":"ID"},I:{"1":"D","2":"DC J JD KD LD MD aC ND OD"},J:{"2":"E A"},K:{"1":"I","2":"A B C 7B ZC 8B"},L:{"1":"D"},M:{"1":"D"},N:{"2":"A B"},O:{"1":"9B"},P:{"1":"0 v w x y z TD LC UD VD WD XD YD AC BC CC ZD","2":"J PD QD RD SD"},Q:{"1":"aD"},R:{"1":"bD"},S:{"1":"dD","2":"cD"}},B:1,C:"AbortController & AbortSignal",D:true};
|
||||
module.exports={A:{A:{"2":"K E F G A B bC"},B:{"1":"1 2 3 4 5 6 7 8 9 N O P Q I R S T U V W X Y Z a b c d e f g h i j k l m n o p q r s t u AB BB CB DB EB FB D","2":"C L M H"},C:{"1":"1 2 3 4 5 6 7 8 9 nB oB EC pB FC qB rB sB tB uB vB wB xB yB zB 0B 1B 2B 3B 4B 5B 6B Q I R GC S T U V W X Y Z a b c d e f g h i j k l m n o p q r s t u AB BB CB DB EB FB D HC IC JC dC eC","2":"0 cC DC J GB K E F G A B C L M H N O P HB v w x y z IB JB KB LB MB NB OB PB QB RB SB TB UB VB WB XB YB ZB aB bB cB dB eB fB gB hB iB jB kB lB mB fC gC"},D:{"1":"1 2 3 4 5 6 7 8 9 uB vB wB xB yB zB 0B 1B 2B 3B 4B 5B 6B Q I R S T U V W X Y Z a b c d e f g h i j k l m n o p q r s t u AB BB CB DB EB FB D HC IC JC","2":"0 J GB K E F G A B C L M H N O P HB v w x y z IB JB KB LB MB NB OB PB QB RB SB TB UB VB WB XB YB ZB aB bB cB dB eB fB gB hB iB jB kB lB mB nB oB EC pB FC qB rB sB tB"},E:{"1":"L M H 8B mC nC oC MC NC 9B pC AC OC PC QC RC SC qC BC TC UC VC WC XC YC CC rC","2":"J GB K E F G A B hC KC iC jC kC lC LC","130":"C 7B"},F:{"1":"jB kB lB mB nB oB pB qB rB sB tB uB vB wB xB yB zB 0B 1B 2B 3B 4B 5B 6B Q I R GC S T U V W X Y Z a b c d e f g h i j k l m n o p q r s t u","2":"0 G B C H N O P HB v w x y z IB JB KB LB MB NB OB PB QB RB SB TB UB VB WB XB YB ZB aB bB cB dB eB fB gB hB iB sC tC uC vC 7B ZC wC 8B"},G:{"1":"7C 8C 9C AD BD CD DD ED FD GD MC NC 9B HD AC OC PC QC RC SC ID BC TC UC VC WC XC YC CC","2":"F KC xC aC yC zC 0C 1C 2C 3C 4C 5C 6C"},H:{"2":"JD"},I:{"1":"D","2":"DC J KD LD MD ND aC OD PD"},J:{"2":"E A"},K:{"1":"I","2":"A B C 7B ZC 8B"},L:{"1":"D"},M:{"1":"D"},N:{"2":"A B"},O:{"1":"9B"},P:{"1":"0 v w x y z UD LC VD WD XD YD ZD AC BC CC aD","2":"J QD RD SD TD"},Q:{"1":"bD"},R:{"1":"cD"},S:{"1":"eD","2":"dD"}},B:1,C:"AbortController & AbortSignal",D:true};
|
||||
|
2
node_modules/caniuse-lite/data/features/ac3-ec3.js
generated
vendored
2
node_modules/caniuse-lite/data/features/ac3-ec3.js
generated
vendored
@ -1 +1 @@
|
||||
module.exports={A:{A:{"2":"K E F G A B bC"},B:{"1":"C L M H N O P","2":"1 2 3 4 5 6 7 8 9 Q I R S T U V W X Y Z a b c d e f g h i j k l m n o p q r s t u AB BB CB DB EB FB D"},C:{"2":"0 1 2 3 4 5 6 7 8 9 cC DC J GB K E F G A B C L M H N O P HB v w x y z IB JB KB LB MB NB OB PB QB RB SB TB UB VB WB XB YB ZB aB bB cB dB eB fB gB hB iB jB kB lB mB nB oB EC pB FC qB rB sB tB uB vB wB xB yB zB 0B 1B 2B 3B 4B 5B 6B Q I R GC S T U V W X Y Z a b c d e f g h i j k l m n o p q r s t u AB BB CB DB EB FB D HC IC JC dC eC fC"},D:{"2":"0 1 2 3 4 5 6 7 8 9 J GB K E F G A B C L M H N O P HB v w x y z IB JB KB LB MB NB OB PB QB RB SB TB UB VB WB XB YB ZB aB bB cB dB eB fB gB hB iB jB kB lB mB nB oB EC pB FC qB rB sB tB uB vB wB xB yB zB 0B 1B 2B 3B 4B 5B 6B Q I R S T U V W X Y Z a b c d e f g h i j k l m n o p q r s t u AB BB CB DB EB FB D HC IC JC"},E:{"2":"J GB K E F G A B C L M H gC KC hC iC jC kC LC 7B 8B lC mC nC MC NC 9B oC AC OC PC QC RC SC pC BC TC UC VC WC XC YC CC qC"},F:{"2":"0 G B C H N O P HB v w x y z IB JB KB LB MB NB OB PB QB RB SB TB UB VB WB XB YB ZB aB bB cB dB eB fB gB hB iB jB kB lB mB nB oB pB qB rB sB tB uB vB wB xB yB zB 0B 1B 2B 3B 4B 5B 6B Q I R GC S T U V W X Y Z a b c d e f g h i j k l m n o p q r s t u rC sC tC uC 7B ZC vC 8B"},G:{"2":"F KC wC aC xC yC zC 0C","132":"1C 2C 3C 4C 5C 6C 7C 8C 9C AD BD CD DD ED FD MC NC 9B GD AC OC PC QC RC SC HD BC TC UC VC WC XC YC CC"},H:{"2":"ID"},I:{"2":"DC J D JD KD LD MD aC ND OD"},J:{"2":"E","132":"A"},K:{"2":"A B C I 7B ZC","132":"8B"},L:{"2":"D"},M:{"2":"D"},N:{"2":"A B"},O:{"2":"9B"},P:{"2":"0 J v w x y z PD QD RD SD TD LC UD VD WD XD YD AC BC CC ZD"},Q:{"2":"aD"},R:{"2":"bD"},S:{"2":"cD dD"}},B:6,C:"AC-3 (Dolby Digital) and EC-3 (Dolby Digital Plus) codecs",D:false};
|
||||
module.exports={A:{A:{"2":"K E F G A B bC"},B:{"1":"C L M H N O P","2":"1 2 3 4 5 6 7 8 9 Q I R S T U V W X Y Z a b c d e f g h i j k l m n o p q r s t u AB BB CB DB EB FB D"},C:{"2":"0 1 2 3 4 5 6 7 8 9 cC DC J GB K E F G A B C L M H N O P HB v w x y z IB JB KB LB MB NB OB PB QB RB SB TB UB VB WB XB YB ZB aB bB cB dB eB fB gB hB iB jB kB lB mB nB oB EC pB FC qB rB sB tB uB vB wB xB yB zB 0B 1B 2B 3B 4B 5B 6B Q I R GC S T U V W X Y Z a b c d e f g h i j k l m n o p q r s t u AB BB CB DB EB FB D HC IC JC dC eC fC gC"},D:{"2":"0 1 2 3 4 5 6 7 8 9 J GB K E F G A B C L M H N O P HB v w x y z IB JB KB LB MB NB OB PB QB RB SB TB UB VB WB XB YB ZB aB bB cB dB eB fB gB hB iB jB kB lB mB nB oB EC pB FC qB rB sB tB uB vB wB xB yB zB 0B 1B 2B 3B 4B 5B 6B Q I R S T U V W X Y Z a b c d e f g h i j k l m n o p q r s t u AB BB CB DB EB FB D HC IC JC"},E:{"2":"J GB K E F G A B C L M H hC KC iC jC kC lC LC 7B 8B mC nC oC MC NC 9B pC AC OC PC QC RC SC qC BC TC UC VC WC XC YC CC rC"},F:{"2":"0 G B C H N O P HB v w x y z IB JB KB LB MB NB OB PB QB RB SB TB UB VB WB XB YB ZB aB bB cB dB eB fB gB hB iB jB kB lB mB nB oB pB qB rB sB tB uB vB wB xB yB zB 0B 1B 2B 3B 4B 5B 6B Q I R GC S T U V W X Y Z a b c d e f g h i j k l m n o p q r s t u sC tC uC vC 7B ZC wC 8B"},G:{"2":"F KC xC aC yC zC 0C 1C","132":"2C 3C 4C 5C 6C 7C 8C 9C AD BD CD DD ED FD GD MC NC 9B HD AC OC PC QC RC SC ID BC TC UC VC WC XC YC CC"},H:{"2":"JD"},I:{"2":"DC J D KD LD MD ND aC OD PD"},J:{"2":"E","132":"A"},K:{"2":"A B C I 7B ZC","132":"8B"},L:{"2":"D"},M:{"2":"D"},N:{"2":"A B"},O:{"2":"9B"},P:{"2":"0 J v w x y z QD RD SD TD UD LC VD WD XD YD ZD AC BC CC aD"},Q:{"2":"bD"},R:{"2":"cD"},S:{"2":"dD eD"}},B:6,C:"AC-3 (Dolby Digital) and EC-3 (Dolby Digital Plus) codecs",D:false};
|
||||
|
2
node_modules/caniuse-lite/data/features/accelerometer.js
generated
vendored
2
node_modules/caniuse-lite/data/features/accelerometer.js
generated
vendored
@ -1 +1 @@
|
||||
module.exports={A:{A:{"2":"K E F G A B bC"},B:{"1":"1 2 3 4 5 6 7 8 9 Q I R S T U V W X Y Z a b c d e f g h i j k l m n o p q r s t u AB BB CB DB EB FB D","2":"C L M H N O P"},C:{"2":"0 1 2 3 4 5 6 7 8 9 cC DC J GB K E F G A B C L M H N O P HB v w x y z IB JB KB LB MB NB OB PB QB RB SB TB UB VB WB XB YB ZB aB bB cB dB eB fB gB hB iB jB kB lB mB nB oB EC pB FC qB rB sB tB uB vB wB xB yB zB 0B 1B 2B 3B 4B 5B 6B Q I R GC S T U V W X Y Z a b c d e f g h i j k l m n o p q r s t u AB BB CB DB EB FB D HC IC JC dC eC fC"},D:{"1":"1 2 3 4 5 6 7 8 9 vB wB xB yB zB 0B 1B 2B 3B 4B 5B 6B Q I R S T U V W X Y Z a b c d e f g h i j k l m n o p q r s t u AB BB CB DB EB FB D HC IC JC","2":"0 J GB K E F G A B C L M H N O P HB v w x y z IB JB KB LB MB NB OB PB QB RB SB TB UB VB WB XB YB ZB aB bB cB dB eB fB gB hB iB jB kB lB mB nB","194":"oB EC pB FC qB rB sB tB uB"},E:{"2":"J GB K E F G A B C L M H gC KC hC iC jC kC LC 7B 8B lC mC nC MC NC 9B oC AC OC PC QC RC SC pC BC TC UC VC WC XC YC CC qC"},F:{"1":"kB lB mB nB oB pB qB rB sB tB uB vB wB xB yB zB 0B 1B 2B 3B 4B 5B 6B Q I R GC S T U V W X Y Z a b c d e f g h i j k l m n o p q r s t u","2":"0 G B C H N O P HB v w x y z IB JB KB LB MB NB OB PB QB RB SB TB UB VB WB XB YB ZB aB bB cB dB eB fB gB hB iB jB rC sC tC uC 7B ZC vC 8B"},G:{"2":"F KC wC aC xC yC zC 0C 1C 2C 3C 4C 5C 6C 7C 8C 9C AD BD CD DD ED FD MC NC 9B GD AC OC PC QC RC SC HD BC TC UC VC WC XC YC CC"},H:{"2":"ID"},I:{"1":"D","2":"DC J JD KD LD MD aC ND OD"},J:{"2":"E A"},K:{"1":"I","2":"A B C 7B ZC 8B"},L:{"1":"D"},M:{"2":"D"},N:{"2":"A B"},O:{"1":"9B"},P:{"2":"0 J v w x y z PD QD RD SD TD LC UD VD WD XD YD AC BC CC ZD"},Q:{"1":"aD"},R:{"1":"bD"},S:{"2":"cD dD"}},B:4,C:"Accelerometer",D:true};
|
||||
module.exports={A:{A:{"2":"K E F G A B bC"},B:{"1":"1 2 3 4 5 6 7 8 9 Q I R S T U V W X Y Z a b c d e f g h i j k l m n o p q r s t u AB BB CB DB EB FB D","2":"C L M H N O P"},C:{"2":"0 1 2 3 4 5 6 7 8 9 cC DC J GB K E F G A B C L M H N O P HB v w x y z IB JB KB LB MB NB OB PB QB RB SB TB UB VB WB XB YB ZB aB bB cB dB eB fB gB hB iB jB kB lB mB nB oB EC pB FC qB rB sB tB uB vB wB xB yB zB 0B 1B 2B 3B 4B 5B 6B Q I R GC S T U V W X Y Z a b c d e f g h i j k l m n o p q r s t u AB BB CB DB EB FB D HC IC JC dC eC fC gC"},D:{"1":"1 2 3 4 5 6 7 8 9 vB wB xB yB zB 0B 1B 2B 3B 4B 5B 6B Q I R S T U V W X Y Z a b c d e f g h i j k l m n o p q r s t u AB BB CB DB EB FB D HC IC JC","2":"0 J GB K E F G A B C L M H N O P HB v w x y z IB JB KB LB MB NB OB PB QB RB SB TB UB VB WB XB YB ZB aB bB cB dB eB fB gB hB iB jB kB lB mB nB","194":"oB EC pB FC qB rB sB tB uB"},E:{"2":"J GB K E F G A B C L M H hC KC iC jC kC lC LC 7B 8B mC nC oC MC NC 9B pC AC OC PC QC RC SC qC BC TC UC VC WC XC YC CC rC"},F:{"1":"kB lB mB nB oB pB qB rB sB tB uB vB wB xB yB zB 0B 1B 2B 3B 4B 5B 6B Q I R GC S T U V W X Y Z a b c d e f g h i j k l m n o p q r s t u","2":"0 G B C H N O P HB v w x y z IB JB KB LB MB NB OB PB QB RB SB TB UB VB WB XB YB ZB aB bB cB dB eB fB gB hB iB jB sC tC uC vC 7B ZC wC 8B"},G:{"2":"F KC xC aC yC zC 0C 1C 2C 3C 4C 5C 6C 7C 8C 9C AD BD CD DD ED FD GD MC NC 9B HD AC OC PC QC RC SC ID BC TC UC VC WC XC YC CC"},H:{"2":"JD"},I:{"1":"D","2":"DC J KD LD MD ND aC OD PD"},J:{"2":"E A"},K:{"1":"I","2":"A B C 7B ZC 8B"},L:{"1":"D"},M:{"2":"D"},N:{"2":"A B"},O:{"1":"9B"},P:{"2":"0 J v w x y z QD RD SD TD UD LC VD WD XD YD ZD AC BC CC aD"},Q:{"1":"bD"},R:{"1":"cD"},S:{"2":"dD eD"}},B:4,C:"Accelerometer",D:true};
|
||||
|
2
node_modules/caniuse-lite/data/features/addeventlistener.js
generated
vendored
2
node_modules/caniuse-lite/data/features/addeventlistener.js
generated
vendored
@ -1 +1 @@
|
||||
module.exports={A:{A:{"1":"G A B","130":"K E F bC"},B:{"1":"1 2 3 4 5 6 7 8 9 C L M H N O P Q I R S T U V W X Y Z a b c d e f g h i j k l m n o p q r s t u AB BB CB DB EB FB D"},C:{"1":"0 1 2 3 4 5 6 7 8 9 E F G A B C L M H N O P HB v w x y z IB JB KB LB MB NB OB PB QB RB SB TB UB VB WB XB YB ZB aB bB cB dB eB fB gB hB iB jB kB lB mB nB oB EC pB FC qB rB sB tB uB vB wB xB yB zB 0B 1B 2B 3B 4B 5B 6B Q I R GC S T U V W X Y Z a b c d e f g h i j k l m n o p q r s t u AB BB CB DB EB FB D HC IC JC dC","257":"cC DC J GB K eC fC"},D:{"1":"0 1 2 3 4 5 6 7 8 9 J GB K E F G A B C L M H N O P HB v w x y z IB JB KB LB MB NB OB PB QB RB SB TB UB VB WB XB YB ZB aB bB cB dB eB fB gB hB iB jB kB lB mB nB oB EC pB FC qB rB sB tB uB vB wB xB yB zB 0B 1B 2B 3B 4B 5B 6B Q I R S T U V W X Y Z a b c d e f g h i j k l m n o p q r s t u AB BB CB DB EB FB D HC IC JC"},E:{"1":"J GB K E F G A B C L M H gC KC hC iC jC kC LC 7B 8B lC mC nC MC NC 9B oC AC OC PC QC RC SC pC BC TC UC VC WC XC YC CC qC"},F:{"1":"0 G B C H N O P HB v w x y z IB JB KB LB MB NB OB PB QB RB SB TB UB VB WB XB YB ZB aB bB cB dB eB fB gB hB iB jB kB lB mB nB oB pB qB rB sB tB uB vB wB xB yB zB 0B 1B 2B 3B 4B 5B 6B Q I R GC S T U V W X Y Z a b c d e f g h i j k l m n o p q r s t u rC sC tC uC 7B ZC vC 8B"},G:{"1":"F KC wC aC xC yC zC 0C 1C 2C 3C 4C 5C 6C 7C 8C 9C AD BD CD DD ED FD MC NC 9B GD AC OC PC QC RC SC HD BC TC UC VC WC XC YC CC"},H:{"1":"ID"},I:{"1":"DC J D JD KD LD MD aC ND OD"},J:{"1":"E A"},K:{"1":"A B C I 7B ZC 8B"},L:{"1":"D"},M:{"1":"D"},N:{"1":"A B"},O:{"1":"9B"},P:{"1":"0 J v w x y z PD QD RD SD TD LC UD VD WD XD YD AC BC CC ZD"},Q:{"1":"aD"},R:{"1":"bD"},S:{"1":"cD dD"}},B:1,C:"EventTarget.addEventListener()",D:true};
|
||||
module.exports={A:{A:{"1":"G A B","130":"K E F bC"},B:{"1":"1 2 3 4 5 6 7 8 9 C L M H N O P Q I R S T U V W X Y Z a b c d e f g h i j k l m n o p q r s t u AB BB CB DB EB FB D"},C:{"1":"0 1 2 3 4 5 6 7 8 9 E F G A B C L M H N O P HB v w x y z IB JB KB LB MB NB OB PB QB RB SB TB UB VB WB XB YB ZB aB bB cB dB eB fB gB hB iB jB kB lB mB nB oB EC pB FC qB rB sB tB uB vB wB xB yB zB 0B 1B 2B 3B 4B 5B 6B Q I R GC S T U V W X Y Z a b c d e f g h i j k l m n o p q r s t u AB BB CB DB EB FB D HC IC JC dC eC","257":"cC DC J GB K fC gC"},D:{"1":"0 1 2 3 4 5 6 7 8 9 J GB K E F G A B C L M H N O P HB v w x y z IB JB KB LB MB NB OB PB QB RB SB TB UB VB WB XB YB ZB aB bB cB dB eB fB gB hB iB jB kB lB mB nB oB EC pB FC qB rB sB tB uB vB wB xB yB zB 0B 1B 2B 3B 4B 5B 6B Q I R S T U V W X Y Z a b c d e f g h i j k l m n o p q r s t u AB BB CB DB EB FB D HC IC JC"},E:{"1":"J GB K E F G A B C L M H hC KC iC jC kC lC LC 7B 8B mC nC oC MC NC 9B pC AC OC PC QC RC SC qC BC TC UC VC WC XC YC CC rC"},F:{"1":"0 G B C H N O P HB v w x y z IB JB KB LB MB NB OB PB QB RB SB TB UB VB WB XB YB ZB aB bB cB dB eB fB gB hB iB jB kB lB mB nB oB pB qB rB sB tB uB vB wB xB yB zB 0B 1B 2B 3B 4B 5B 6B Q I R GC S T U V W X Y Z a b c d e f g h i j k l m n o p q r s t u sC tC uC vC 7B ZC wC 8B"},G:{"1":"F KC xC aC yC zC 0C 1C 2C 3C 4C 5C 6C 7C 8C 9C AD BD CD DD ED FD GD MC NC 9B HD AC OC PC QC RC SC ID BC TC UC VC WC XC YC CC"},H:{"1":"JD"},I:{"1":"DC J D KD LD MD ND aC OD PD"},J:{"1":"E A"},K:{"1":"A B C I 7B ZC 8B"},L:{"1":"D"},M:{"1":"D"},N:{"1":"A B"},O:{"1":"9B"},P:{"1":"0 J v w x y z QD RD SD TD UD LC VD WD XD YD ZD AC BC CC aD"},Q:{"1":"bD"},R:{"1":"cD"},S:{"1":"dD eD"}},B:1,C:"EventTarget.addEventListener()",D:true};
|
||||
|
2
node_modules/caniuse-lite/data/features/alternate-stylesheet.js
generated
vendored
2
node_modules/caniuse-lite/data/features/alternate-stylesheet.js
generated
vendored
@ -1 +1 @@
|
||||
module.exports={A:{A:{"1":"F G A B","2":"K E bC"},B:{"2":"1 2 3 4 5 6 7 8 9 C L M H N O P Q I R S T U V W X Y Z a b c d e f g h i j k l m n o p q r s t u AB BB CB DB EB FB D"},C:{"1":"0 1 2 3 4 5 6 7 8 9 cC DC J GB K E F G A B C L M H N O P HB v w x y z IB JB KB LB MB NB OB PB QB RB SB TB UB VB WB XB YB ZB aB bB cB dB eB fB gB hB iB jB kB lB mB nB oB EC pB FC qB rB sB tB uB vB wB xB yB zB 0B 1B 2B 3B 4B 5B 6B Q I R GC S T U V W X Y Z a b c d e f g h i j k l m n o p q r s t u AB BB CB DB EB FB D HC IC JC dC eC fC"},D:{"2":"0 1 2 3 4 5 6 7 8 9 J GB K E F G A B C L M H N O P HB v w x y z IB JB KB LB MB NB OB PB QB RB SB TB UB VB WB XB YB ZB aB bB cB dB eB fB gB hB iB jB kB lB mB nB oB EC pB FC qB rB sB tB uB vB wB xB yB zB 0B 1B 2B 3B 4B 5B 6B Q I R S T U V W X Y Z a b c d e f g h i j k l m n o p q r s t u AB BB CB DB EB FB D HC IC JC"},E:{"2":"J GB K E F G A B C L M H gC KC hC iC jC kC LC 7B 8B lC mC nC MC NC 9B oC AC OC PC QC RC SC pC BC TC UC VC WC XC YC CC qC"},F:{"1":"G B C rC sC tC uC 7B ZC vC 8B","16":"0 H N O P HB v w x y z IB JB KB LB MB NB OB PB QB RB SB TB UB VB WB XB YB ZB aB bB cB dB eB fB gB hB iB jB kB lB mB nB oB pB qB rB sB tB uB vB wB xB yB zB 0B 1B 2B 3B 4B 5B 6B Q I R GC S T U V W X Y Z a b c d e f g h i j k l m n o p q r s t u"},G:{"2":"F KC wC aC xC yC zC 0C 1C 2C 3C 4C 5C 6C 7C 8C 9C AD BD CD DD ED FD MC NC 9B GD AC OC PC QC RC SC HD BC TC UC VC WC XC YC CC"},H:{"16":"ID"},I:{"2":"DC J D JD KD LD MD aC ND OD"},J:{"16":"E A"},K:{"2":"I","16":"A B C 7B ZC 8B"},L:{"16":"D"},M:{"16":"D"},N:{"16":"A B"},O:{"16":"9B"},P:{"16":"0 J v w x y z PD QD RD SD TD LC UD VD WD XD YD AC BC CC ZD"},Q:{"2":"aD"},R:{"16":"bD"},S:{"1":"cD dD"}},B:1,C:"Alternate stylesheet",D:false};
|
||||
module.exports={A:{A:{"1":"F G A B","2":"K E bC"},B:{"2":"1 2 3 4 5 6 7 8 9 C L M H N O P Q I R S T U V W X Y Z a b c d e f g h i j k l m n o p q r s t u AB BB CB DB EB FB D"},C:{"1":"0 1 2 3 4 5 6 7 8 9 cC DC J GB K E F G A B C L M H N O P HB v w x y z IB JB KB LB MB NB OB PB QB RB SB TB UB VB WB XB YB ZB aB bB cB dB eB fB gB hB iB jB kB lB mB nB oB EC pB FC qB rB sB tB uB vB wB xB yB zB 0B 1B 2B 3B 4B 5B 6B Q I R GC S T U V W X Y Z a b c d e f g h i j k l m n o p q r s t u AB BB CB DB EB FB D HC IC JC dC eC fC gC"},D:{"2":"0 1 2 3 4 5 6 7 8 9 J GB K E F G A B C L M H N O P HB v w x y z IB JB KB LB MB NB OB PB QB RB SB TB UB VB WB XB YB ZB aB bB cB dB eB fB gB hB iB jB kB lB mB nB oB EC pB FC qB rB sB tB uB vB wB xB yB zB 0B 1B 2B 3B 4B 5B 6B Q I R S T U V W X Y Z a b c d e f g h i j k l m n o p q r s t u AB BB CB DB EB FB D HC IC JC"},E:{"2":"J GB K E F G A B C L M H hC KC iC jC kC lC LC 7B 8B mC nC oC MC NC 9B pC AC OC PC QC RC SC qC BC TC UC VC WC XC YC CC rC"},F:{"1":"G B C sC tC uC vC 7B ZC wC 8B","16":"0 H N O P HB v w x y z IB JB KB LB MB NB OB PB QB RB SB TB UB VB WB XB YB ZB aB bB cB dB eB fB gB hB iB jB kB lB mB nB oB pB qB rB sB tB uB vB wB xB yB zB 0B 1B 2B 3B 4B 5B 6B Q I R GC S T U V W X Y Z a b c d e f g h i j k l m n o p q r s t u"},G:{"2":"F KC xC aC yC zC 0C 1C 2C 3C 4C 5C 6C 7C 8C 9C AD BD CD DD ED FD GD MC NC 9B HD AC OC PC QC RC SC ID BC TC UC VC WC XC YC CC"},H:{"16":"JD"},I:{"2":"DC J D KD LD MD ND aC OD PD"},J:{"16":"E A"},K:{"2":"I","16":"A B C 7B ZC 8B"},L:{"16":"D"},M:{"16":"D"},N:{"16":"A B"},O:{"16":"9B"},P:{"16":"0 J v w x y z QD RD SD TD UD LC VD WD XD YD ZD AC BC CC aD"},Q:{"2":"bD"},R:{"16":"cD"},S:{"1":"dD eD"}},B:1,C:"Alternate stylesheet",D:false};
|
||||
|
2
node_modules/caniuse-lite/data/features/ambient-light.js
generated
vendored
2
node_modules/caniuse-lite/data/features/ambient-light.js
generated
vendored
@ -1 +1 @@
|
||||
module.exports={A:{A:{"2":"K E F G A B bC"},B:{"2":"C L","132":"M H N O P","322":"1 2 3 4 5 6 7 8 9 Q I R S T U V W X Y Z a b c d e f g h i j k l m n o p q r s t u AB BB CB DB EB FB D"},C:{"2":"cC DC J GB K E F G A B C L M H N O P HB v w eC fC","132":"0 x y z IB JB KB LB MB NB OB PB QB RB SB TB UB VB WB XB YB ZB aB bB cB dB eB fB gB hB iB jB kB lB mB nB oB EC","194":"1 2 3 4 5 6 7 8 9 pB FC qB rB sB tB uB vB wB xB yB zB 0B 1B 2B 3B 4B 5B 6B Q I R GC S T U V W X Y Z a b c d e f g h i j k l m n o p q r s t u AB BB CB DB EB FB D HC IC JC dC"},D:{"2":"0 J GB K E F G A B C L M H N O P HB v w x y z IB JB KB LB MB NB OB PB QB RB SB TB UB VB WB XB YB ZB aB bB cB dB eB fB gB hB iB jB kB lB mB nB","322":"1 2 3 4 5 6 7 8 9 oB EC pB FC qB rB sB tB uB vB wB xB yB zB 0B 1B 2B 3B 4B 5B 6B Q I R S T U V W X Y Z a b c d e f g h i j k l m n o p q r s t u AB BB CB DB EB FB D HC IC JC"},E:{"2":"J GB K E F G A B C L M H gC KC hC iC jC kC LC 7B 8B lC mC nC MC NC 9B oC AC OC PC QC RC SC pC BC TC UC VC WC XC YC CC qC"},F:{"2":"0 G B C H N O P HB v w x y z IB JB KB LB MB NB OB PB QB RB SB TB UB VB WB XB YB ZB aB bB cB dB eB fB gB hB iB jB kB lB mB nB oB pB qB rB sB tB uB vB wB xB yB zB 0B rC sC tC uC 7B ZC vC 8B","322":"1B 2B 3B 4B 5B 6B Q I R GC S T U V W X Y Z a b c d e f g h i j k l m n o p q r s t u"},G:{"2":"F KC wC aC xC yC zC 0C 1C 2C 3C 4C 5C 6C 7C 8C 9C AD BD CD DD ED FD MC NC 9B GD AC OC PC QC RC SC HD BC TC UC VC WC XC YC CC"},H:{"2":"ID"},I:{"2":"DC J D JD KD LD MD aC ND OD"},J:{"2":"E A"},K:{"2":"A B C I 7B ZC 8B"},L:{"2":"D"},M:{"1":"D"},N:{"2":"A B"},O:{"2":"9B"},P:{"2":"0 J v w x y z PD QD RD SD TD LC UD VD WD XD YD AC BC CC ZD"},Q:{"2":"aD"},R:{"2":"bD"},S:{"132":"cD dD"}},B:4,C:"Ambient Light Sensor",D:true};
|
||||
module.exports={A:{A:{"2":"K E F G A B bC"},B:{"2":"C L","132":"M H N O P","322":"1 2 3 4 5 6 7 8 9 Q I R S T U V W X Y Z a b c d e f g h i j k l m n o p q r s t u AB BB CB DB EB FB D"},C:{"2":"cC DC J GB K E F G A B C L M H N O P HB v w fC gC","132":"0 x y z IB JB KB LB MB NB OB PB QB RB SB TB UB VB WB XB YB ZB aB bB cB dB eB fB gB hB iB jB kB lB mB nB oB EC","194":"1 2 3 4 5 6 7 8 9 pB FC qB rB sB tB uB vB wB xB yB zB 0B 1B 2B 3B 4B 5B 6B Q I R GC S T U V W X Y Z a b c d e f g h i j k l m n o p q r s t u AB BB CB DB EB FB D HC IC JC dC eC"},D:{"2":"0 J GB K E F G A B C L M H N O P HB v w x y z IB JB KB LB MB NB OB PB QB RB SB TB UB VB WB XB YB ZB aB bB cB dB eB fB gB hB iB jB kB lB mB nB","322":"1 2 3 4 5 6 7 8 9 oB EC pB FC qB rB sB tB uB vB wB xB yB zB 0B 1B 2B 3B 4B 5B 6B Q I R S T U V W X Y Z a b c d e f g h i j k l m n o p q r s t u AB BB CB DB EB FB D HC IC JC"},E:{"2":"J GB K E F G A B C L M H hC KC iC jC kC lC LC 7B 8B mC nC oC MC NC 9B pC AC OC PC QC RC SC qC BC TC UC VC WC XC YC CC rC"},F:{"2":"0 G B C H N O P HB v w x y z IB JB KB LB MB NB OB PB QB RB SB TB UB VB WB XB YB ZB aB bB cB dB eB fB gB hB iB jB kB lB mB nB oB pB qB rB sB tB uB vB wB xB yB zB 0B sC tC uC vC 7B ZC wC 8B","322":"1B 2B 3B 4B 5B 6B Q I R GC S T U V W X Y Z a b c d e f g h i j k l m n o p q r s t u"},G:{"2":"F KC xC aC yC zC 0C 1C 2C 3C 4C 5C 6C 7C 8C 9C AD BD CD DD ED FD GD MC NC 9B HD AC OC PC QC RC SC ID BC TC UC VC WC XC YC CC"},H:{"2":"JD"},I:{"2":"DC J D KD LD MD ND aC OD PD"},J:{"2":"E A"},K:{"2":"A B C I 7B ZC 8B"},L:{"2":"D"},M:{"1":"D"},N:{"2":"A B"},O:{"2":"9B"},P:{"2":"0 J v w x y z QD RD SD TD UD LC VD WD XD YD ZD AC BC CC aD"},Q:{"2":"bD"},R:{"2":"cD"},S:{"132":"dD eD"}},B:4,C:"Ambient Light Sensor",D:true};
|
||||
|
2
node_modules/caniuse-lite/data/features/apng.js
generated
vendored
2
node_modules/caniuse-lite/data/features/apng.js
generated
vendored
@ -1 +1 @@
|
||||
module.exports={A:{A:{"2":"K E F G A B bC"},B:{"1":"1 2 3 4 5 6 7 8 9 Q I R S T U V W X Y Z a b c d e f g h i j k l m n o p q r s t u AB BB CB DB EB FB D","2":"C L M H N O P"},C:{"1":"0 1 2 3 4 5 6 7 8 9 DC J GB K E F G A B C L M H N O P HB v w x y z IB JB KB LB MB NB OB PB QB RB SB TB UB VB WB XB YB ZB aB bB cB dB eB fB gB hB iB jB kB lB mB nB oB EC pB FC qB rB sB tB uB vB wB xB yB zB 0B 1B 2B 3B 4B 5B 6B Q I R GC S T U V W X Y Z a b c d e f g h i j k l m n o p q r s t u AB BB CB DB EB FB D HC IC JC dC eC fC","2":"cC"},D:{"1":"1 2 3 4 5 6 7 8 9 EC pB FC qB rB sB tB uB vB wB xB yB zB 0B 1B 2B 3B 4B 5B 6B Q I R S T U V W X Y Z a b c d e f g h i j k l m n o p q r s t u AB BB CB DB EB FB D HC IC JC","2":"0 J GB K E F G A B C L M H N O P HB v w x y z IB JB KB LB MB NB OB PB QB RB SB TB UB VB WB XB YB ZB aB bB cB dB eB fB gB hB iB jB kB lB mB nB oB"},E:{"1":"F G A B C L M H kC LC 7B 8B lC mC nC MC NC 9B oC AC OC PC QC RC SC pC BC TC UC VC WC XC YC CC qC","2":"J GB K E gC KC hC iC jC"},F:{"1":"B C cB dB eB fB gB hB iB jB kB lB mB nB oB pB qB rB sB tB uB vB wB xB yB zB 0B 1B 2B 3B 4B 5B 6B Q I R GC S T U V W X Y Z a b c d e f g h i j k l m n o p q r s t u rC sC tC uC 7B ZC vC 8B","2":"0 G H N O P HB v w x y z IB JB KB LB MB NB OB PB QB RB SB TB UB VB WB XB YB ZB aB bB"},G:{"1":"F 0C 1C 2C 3C 4C 5C 6C 7C 8C 9C AD BD CD DD ED FD MC NC 9B GD AC OC PC QC RC SC HD BC TC UC VC WC XC YC CC","2":"KC wC aC xC yC zC"},H:{"2":"ID"},I:{"1":"D","2":"DC J JD KD LD MD aC ND OD"},J:{"2":"E A"},K:{"1":"A B C I 7B ZC 8B"},L:{"1":"D"},M:{"1":"D"},N:{"2":"A B"},O:{"1":"9B"},P:{"1":"0 v w x y z RD SD TD LC UD VD WD XD YD AC BC CC ZD","2":"J PD QD"},Q:{"1":"aD"},R:{"1":"bD"},S:{"1":"cD dD"}},B:4,C:"Animated PNG (APNG)",D:true};
|
||||
module.exports={A:{A:{"2":"K E F G A B bC"},B:{"1":"1 2 3 4 5 6 7 8 9 Q I R S T U V W X Y Z a b c d e f g h i j k l m n o p q r s t u AB BB CB DB EB FB D","2":"C L M H N O P"},C:{"1":"0 1 2 3 4 5 6 7 8 9 DC J GB K E F G A B C L M H N O P HB v w x y z IB JB KB LB MB NB OB PB QB RB SB TB UB VB WB XB YB ZB aB bB cB dB eB fB gB hB iB jB kB lB mB nB oB EC pB FC qB rB sB tB uB vB wB xB yB zB 0B 1B 2B 3B 4B 5B 6B Q I R GC S T U V W X Y Z a b c d e f g h i j k l m n o p q r s t u AB BB CB DB EB FB D HC IC JC dC eC fC gC","2":"cC"},D:{"1":"1 2 3 4 5 6 7 8 9 EC pB FC qB rB sB tB uB vB wB xB yB zB 0B 1B 2B 3B 4B 5B 6B Q I R S T U V W X Y Z a b c d e f g h i j k l m n o p q r s t u AB BB CB DB EB FB D HC IC JC","2":"0 J GB K E F G A B C L M H N O P HB v w x y z IB JB KB LB MB NB OB PB QB RB SB TB UB VB WB XB YB ZB aB bB cB dB eB fB gB hB iB jB kB lB mB nB oB"},E:{"1":"F G A B C L M H lC LC 7B 8B mC nC oC MC NC 9B pC AC OC PC QC RC SC qC BC TC UC VC WC XC YC CC rC","2":"J GB K E hC KC iC jC kC"},F:{"1":"B C cB dB eB fB gB hB iB jB kB lB mB nB oB pB qB rB sB tB uB vB wB xB yB zB 0B 1B 2B 3B 4B 5B 6B Q I R GC S T U V W X Y Z a b c d e f g h i j k l m n o p q r s t u sC tC uC vC 7B ZC wC 8B","2":"0 G H N O P HB v w x y z IB JB KB LB MB NB OB PB QB RB SB TB UB VB WB XB YB ZB aB bB"},G:{"1":"F 1C 2C 3C 4C 5C 6C 7C 8C 9C AD BD CD DD ED FD GD MC NC 9B HD AC OC PC QC RC SC ID BC TC UC VC WC XC YC CC","2":"KC xC aC yC zC 0C"},H:{"2":"JD"},I:{"1":"D","2":"DC J KD LD MD ND aC OD PD"},J:{"2":"E A"},K:{"1":"A B C I 7B ZC 8B"},L:{"1":"D"},M:{"1":"D"},N:{"2":"A B"},O:{"1":"9B"},P:{"1":"0 v w x y z SD TD UD LC VD WD XD YD ZD AC BC CC aD","2":"J QD RD"},Q:{"1":"bD"},R:{"1":"cD"},S:{"1":"dD eD"}},B:4,C:"Animated PNG (APNG)",D:true};
|
||||
|
2
node_modules/caniuse-lite/data/features/array-find-index.js
generated
vendored
2
node_modules/caniuse-lite/data/features/array-find-index.js
generated
vendored
@ -1 +1 @@
|
||||
module.exports={A:{A:{"2":"K E F G A B bC"},B:{"1":"1 2 3 4 5 6 7 8 9 C L M H N O P Q I R S T U V W X Y Z a b c d e f g h i j k l m n o p q r s t u AB BB CB DB EB FB D"},C:{"1":"0 1 2 3 4 5 6 7 8 9 IB JB KB LB MB NB OB PB QB RB SB TB UB VB WB XB YB ZB aB bB cB dB eB fB gB hB iB jB kB lB mB nB oB EC pB FC qB rB sB tB uB vB wB xB yB zB 0B 1B 2B 3B 4B 5B 6B Q I R GC S T U V W X Y Z a b c d e f g h i j k l m n o p q r s t u AB BB CB DB EB FB D HC IC JC dC","2":"cC DC J GB K E F G A B C L M H N O P HB v w x y z eC fC"},D:{"1":"1 2 3 4 5 6 7 8 9 bB cB dB eB fB gB hB iB jB kB lB mB nB oB EC pB FC qB rB sB tB uB vB wB xB yB zB 0B 1B 2B 3B 4B 5B 6B Q I R S T U V W X Y Z a b c d e f g h i j k l m n o p q r s t u AB BB CB DB EB FB D HC IC JC","2":"0 J GB K E F G A B C L M H N O P HB v w x y z IB JB KB LB MB NB OB PB QB RB SB TB UB VB WB XB YB ZB aB"},E:{"1":"F G A B C L M H jC kC LC 7B 8B lC mC nC MC NC 9B oC AC OC PC QC RC SC pC BC TC UC VC WC XC YC CC qC","2":"J GB K E gC KC hC iC"},F:{"1":"OB PB QB RB SB TB UB VB WB XB YB ZB aB bB cB dB eB fB gB hB iB jB kB lB mB nB oB pB qB rB sB tB uB vB wB xB yB zB 0B 1B 2B 3B 4B 5B 6B Q I R GC S T U V W X Y Z a b c d e f g h i j k l m n o p q r s t u","2":"0 G B C H N O P HB v w x y z IB JB KB LB MB NB rC sC tC uC 7B ZC vC 8B"},G:{"1":"F 0C 1C 2C 3C 4C 5C 6C 7C 8C 9C AD BD CD DD ED FD MC NC 9B GD AC OC PC QC RC SC HD BC TC UC VC WC XC YC CC","2":"KC wC aC xC yC zC"},H:{"2":"ID"},I:{"1":"D","2":"DC J JD KD LD MD aC ND OD"},J:{"2":"E","16":"A"},K:{"1":"I","2":"A B C 7B ZC 8B"},L:{"1":"D"},M:{"1":"D"},N:{"2":"A B"},O:{"1":"9B"},P:{"1":"0 v w x y z PD QD RD SD TD LC UD VD WD XD YD AC BC CC ZD","2":"J"},Q:{"1":"aD"},R:{"1":"bD"},S:{"1":"cD dD"}},B:6,C:"Array.prototype.findIndex",D:true};
|
||||
module.exports={A:{A:{"2":"K E F G A B bC"},B:{"1":"1 2 3 4 5 6 7 8 9 C L M H N O P Q I R S T U V W X Y Z a b c d e f g h i j k l m n o p q r s t u AB BB CB DB EB FB D"},C:{"1":"0 1 2 3 4 5 6 7 8 9 IB JB KB LB MB NB OB PB QB RB SB TB UB VB WB XB YB ZB aB bB cB dB eB fB gB hB iB jB kB lB mB nB oB EC pB FC qB rB sB tB uB vB wB xB yB zB 0B 1B 2B 3B 4B 5B 6B Q I R GC S T U V W X Y Z a b c d e f g h i j k l m n o p q r s t u AB BB CB DB EB FB D HC IC JC dC eC","2":"cC DC J GB K E F G A B C L M H N O P HB v w x y z fC gC"},D:{"1":"1 2 3 4 5 6 7 8 9 bB cB dB eB fB gB hB iB jB kB lB mB nB oB EC pB FC qB rB sB tB uB vB wB xB yB zB 0B 1B 2B 3B 4B 5B 6B Q I R S T U V W X Y Z a b c d e f g h i j k l m n o p q r s t u AB BB CB DB EB FB D HC IC JC","2":"0 J GB K E F G A B C L M H N O P HB v w x y z IB JB KB LB MB NB OB PB QB RB SB TB UB VB WB XB YB ZB aB"},E:{"1":"F G A B C L M H kC lC LC 7B 8B mC nC oC MC NC 9B pC AC OC PC QC RC SC qC BC TC UC VC WC XC YC CC rC","2":"J GB K E hC KC iC jC"},F:{"1":"OB PB QB RB SB TB UB VB WB XB YB ZB aB bB cB dB eB fB gB hB iB jB kB lB mB nB oB pB qB rB sB tB uB vB wB xB yB zB 0B 1B 2B 3B 4B 5B 6B Q I R GC S T U V W X Y Z a b c d e f g h i j k l m n o p q r s t u","2":"0 G B C H N O P HB v w x y z IB JB KB LB MB NB sC tC uC vC 7B ZC wC 8B"},G:{"1":"F 1C 2C 3C 4C 5C 6C 7C 8C 9C AD BD CD DD ED FD GD MC NC 9B HD AC OC PC QC RC SC ID BC TC UC VC WC XC YC CC","2":"KC xC aC yC zC 0C"},H:{"2":"JD"},I:{"1":"D","2":"DC J KD LD MD ND aC OD PD"},J:{"2":"E","16":"A"},K:{"1":"I","2":"A B C 7B ZC 8B"},L:{"1":"D"},M:{"1":"D"},N:{"2":"A B"},O:{"1":"9B"},P:{"1":"0 v w x y z QD RD SD TD UD LC VD WD XD YD ZD AC BC CC aD","2":"J"},Q:{"1":"bD"},R:{"1":"cD"},S:{"1":"dD eD"}},B:6,C:"Array.prototype.findIndex",D:true};
|
||||
|
2
node_modules/caniuse-lite/data/features/array-find.js
generated
vendored
2
node_modules/caniuse-lite/data/features/array-find.js
generated
vendored
@ -1 +1 @@
|
||||
module.exports={A:{A:{"2":"K E F G A B bC"},B:{"1":"1 2 3 4 5 6 7 8 9 H N O P Q I R S T U V W X Y Z a b c d e f g h i j k l m n o p q r s t u AB BB CB DB EB FB D","16":"C L M"},C:{"1":"0 1 2 3 4 5 6 7 8 9 IB JB KB LB MB NB OB PB QB RB SB TB UB VB WB XB YB ZB aB bB cB dB eB fB gB hB iB jB kB lB mB nB oB EC pB FC qB rB sB tB uB vB wB xB yB zB 0B 1B 2B 3B 4B 5B 6B Q I R GC S T U V W X Y Z a b c d e f g h i j k l m n o p q r s t u AB BB CB DB EB FB D HC IC JC dC","2":"cC DC J GB K E F G A B C L M H N O P HB v w x y z eC fC"},D:{"1":"1 2 3 4 5 6 7 8 9 bB cB dB eB fB gB hB iB jB kB lB mB nB oB EC pB FC qB rB sB tB uB vB wB xB yB zB 0B 1B 2B 3B 4B 5B 6B Q I R S T U V W X Y Z a b c d e f g h i j k l m n o p q r s t u AB BB CB DB EB FB D HC IC JC","2":"0 J GB K E F G A B C L M H N O P HB v w x y z IB JB KB LB MB NB OB PB QB RB SB TB UB VB WB XB YB ZB aB"},E:{"1":"F G A B C L M H jC kC LC 7B 8B lC mC nC MC NC 9B oC AC OC PC QC RC SC pC BC TC UC VC WC XC YC CC qC","2":"J GB K E gC KC hC iC"},F:{"1":"OB PB QB RB SB TB UB VB WB XB YB ZB aB bB cB dB eB fB gB hB iB jB kB lB mB nB oB pB qB rB sB tB uB vB wB xB yB zB 0B 1B 2B 3B 4B 5B 6B Q I R GC S T U V W X Y Z a b c d e f g h i j k l m n o p q r s t u","2":"0 G B C H N O P HB v w x y z IB JB KB LB MB NB rC sC tC uC 7B ZC vC 8B"},G:{"1":"F 0C 1C 2C 3C 4C 5C 6C 7C 8C 9C AD BD CD DD ED FD MC NC 9B GD AC OC PC QC RC SC HD BC TC UC VC WC XC YC CC","2":"KC wC aC xC yC zC"},H:{"2":"ID"},I:{"1":"D","2":"DC J JD KD LD MD aC ND OD"},J:{"2":"E","16":"A"},K:{"1":"I","2":"A B C 7B ZC 8B"},L:{"1":"D"},M:{"1":"D"},N:{"2":"A B"},O:{"1":"9B"},P:{"1":"0 v w x y z PD QD RD SD TD LC UD VD WD XD YD AC BC CC ZD","2":"J"},Q:{"1":"aD"},R:{"1":"bD"},S:{"1":"cD dD"}},B:6,C:"Array.prototype.find",D:true};
|
||||
module.exports={A:{A:{"2":"K E F G A B bC"},B:{"1":"1 2 3 4 5 6 7 8 9 H N O P Q I R S T U V W X Y Z a b c d e f g h i j k l m n o p q r s t u AB BB CB DB EB FB D","16":"C L M"},C:{"1":"0 1 2 3 4 5 6 7 8 9 IB JB KB LB MB NB OB PB QB RB SB TB UB VB WB XB YB ZB aB bB cB dB eB fB gB hB iB jB kB lB mB nB oB EC pB FC qB rB sB tB uB vB wB xB yB zB 0B 1B 2B 3B 4B 5B 6B Q I R GC S T U V W X Y Z a b c d e f g h i j k l m n o p q r s t u AB BB CB DB EB FB D HC IC JC dC eC","2":"cC DC J GB K E F G A B C L M H N O P HB v w x y z fC gC"},D:{"1":"1 2 3 4 5 6 7 8 9 bB cB dB eB fB gB hB iB jB kB lB mB nB oB EC pB FC qB rB sB tB uB vB wB xB yB zB 0B 1B 2B 3B 4B 5B 6B Q I R S T U V W X Y Z a b c d e f g h i j k l m n o p q r s t u AB BB CB DB EB FB D HC IC JC","2":"0 J GB K E F G A B C L M H N O P HB v w x y z IB JB KB LB MB NB OB PB QB RB SB TB UB VB WB XB YB ZB aB"},E:{"1":"F G A B C L M H kC lC LC 7B 8B mC nC oC MC NC 9B pC AC OC PC QC RC SC qC BC TC UC VC WC XC YC CC rC","2":"J GB K E hC KC iC jC"},F:{"1":"OB PB QB RB SB TB UB VB WB XB YB ZB aB bB cB dB eB fB gB hB iB jB kB lB mB nB oB pB qB rB sB tB uB vB wB xB yB zB 0B 1B 2B 3B 4B 5B 6B Q I R GC S T U V W X Y Z a b c d e f g h i j k l m n o p q r s t u","2":"0 G B C H N O P HB v w x y z IB JB KB LB MB NB sC tC uC vC 7B ZC wC 8B"},G:{"1":"F 1C 2C 3C 4C 5C 6C 7C 8C 9C AD BD CD DD ED FD GD MC NC 9B HD AC OC PC QC RC SC ID BC TC UC VC WC XC YC CC","2":"KC xC aC yC zC 0C"},H:{"2":"JD"},I:{"1":"D","2":"DC J KD LD MD ND aC OD PD"},J:{"2":"E","16":"A"},K:{"1":"I","2":"A B C 7B ZC 8B"},L:{"1":"D"},M:{"1":"D"},N:{"2":"A B"},O:{"1":"9B"},P:{"1":"0 v w x y z QD RD SD TD UD LC VD WD XD YD ZD AC BC CC aD","2":"J"},Q:{"1":"bD"},R:{"1":"cD"},S:{"1":"dD eD"}},B:6,C:"Array.prototype.find",D:true};
|
||||
|
2
node_modules/caniuse-lite/data/features/array-flat.js
generated
vendored
2
node_modules/caniuse-lite/data/features/array-flat.js
generated
vendored
@ -1 +1 @@
|
||||
module.exports={A:{A:{"2":"K E F G A B bC"},B:{"1":"1 2 3 4 5 6 7 8 9 Q I R S T U V W X Y Z a b c d e f g h i j k l m n o p q r s t u AB BB CB DB EB FB D","2":"C L M H N O P"},C:{"1":"1 2 3 4 5 6 7 8 9 qB rB sB tB uB vB wB xB yB zB 0B 1B 2B 3B 4B 5B 6B Q I R GC S T U V W X Y Z a b c d e f g h i j k l m n o p q r s t u AB BB CB DB EB FB D HC IC JC dC","2":"0 cC DC J GB K E F G A B C L M H N O P HB v w x y z IB JB KB LB MB NB OB PB QB RB SB TB UB VB WB XB YB ZB aB bB cB dB eB fB gB hB iB jB kB lB mB nB oB EC pB FC eC fC"},D:{"1":"1 2 3 4 5 6 7 8 9 xB yB zB 0B 1B 2B 3B 4B 5B 6B Q I R S T U V W X Y Z a b c d e f g h i j k l m n o p q r s t u AB BB CB DB EB FB D HC IC JC","2":"0 J GB K E F G A B C L M H N O P HB v w x y z IB JB KB LB MB NB OB PB QB RB SB TB UB VB WB XB YB ZB aB bB cB dB eB fB gB hB iB jB kB lB mB nB oB EC pB FC qB rB sB tB uB vB wB"},E:{"1":"C L M H 8B lC mC nC MC NC 9B oC AC OC PC QC RC SC pC BC TC UC VC WC XC YC CC qC","2":"J GB K E F G A B gC KC hC iC jC kC LC 7B"},F:{"1":"mB nB oB pB qB rB sB tB uB vB wB xB yB zB 0B 1B 2B 3B 4B 5B 6B Q I R GC S T U V W X Y Z a b c d e f g h i j k l m n o p q r s t u","2":"0 G B C H N O P HB v w x y z IB JB KB LB MB NB OB PB QB RB SB TB UB VB WB XB YB ZB aB bB cB dB eB fB gB hB iB jB kB lB rC sC tC uC 7B ZC vC 8B"},G:{"1":"7C 8C 9C AD BD CD DD ED FD MC NC 9B GD AC OC PC QC RC SC HD BC TC UC VC WC XC YC CC","2":"F KC wC aC xC yC zC 0C 1C 2C 3C 4C 5C 6C"},H:{"2":"ID"},I:{"1":"D","2":"DC J JD KD LD MD aC ND OD"},J:{"2":"E A"},K:{"1":"I","2":"A B C 7B ZC 8B"},L:{"1":"D"},M:{"1":"D"},N:{"2":"A B"},O:{"1":"9B"},P:{"1":"0 v w x y z LC UD VD WD XD YD AC BC CC ZD","2":"J PD QD RD SD TD"},Q:{"1":"aD"},R:{"1":"bD"},S:{"1":"dD","2":"cD"}},B:6,C:"flat & flatMap array methods",D:true};
|
||||
module.exports={A:{A:{"2":"K E F G A B bC"},B:{"1":"1 2 3 4 5 6 7 8 9 Q I R S T U V W X Y Z a b c d e f g h i j k l m n o p q r s t u AB BB CB DB EB FB D","2":"C L M H N O P"},C:{"1":"1 2 3 4 5 6 7 8 9 qB rB sB tB uB vB wB xB yB zB 0B 1B 2B 3B 4B 5B 6B Q I R GC S T U V W X Y Z a b c d e f g h i j k l m n o p q r s t u AB BB CB DB EB FB D HC IC JC dC eC","2":"0 cC DC J GB K E F G A B C L M H N O P HB v w x y z IB JB KB LB MB NB OB PB QB RB SB TB UB VB WB XB YB ZB aB bB cB dB eB fB gB hB iB jB kB lB mB nB oB EC pB FC fC gC"},D:{"1":"1 2 3 4 5 6 7 8 9 xB yB zB 0B 1B 2B 3B 4B 5B 6B Q I R S T U V W X Y Z a b c d e f g h i j k l m n o p q r s t u AB BB CB DB EB FB D HC IC JC","2":"0 J GB K E F G A B C L M H N O P HB v w x y z IB JB KB LB MB NB OB PB QB RB SB TB UB VB WB XB YB ZB aB bB cB dB eB fB gB hB iB jB kB lB mB nB oB EC pB FC qB rB sB tB uB vB wB"},E:{"1":"C L M H 8B mC nC oC MC NC 9B pC AC OC PC QC RC SC qC BC TC UC VC WC XC YC CC rC","2":"J GB K E F G A B hC KC iC jC kC lC LC 7B"},F:{"1":"mB nB oB pB qB rB sB tB uB vB wB xB yB zB 0B 1B 2B 3B 4B 5B 6B Q I R GC S T U V W X Y Z a b c d e f g h i j k l m n o p q r s t u","2":"0 G B C H N O P HB v w x y z IB JB KB LB MB NB OB PB QB RB SB TB UB VB WB XB YB ZB aB bB cB dB eB fB gB hB iB jB kB lB sC tC uC vC 7B ZC wC 8B"},G:{"1":"8C 9C AD BD CD DD ED FD GD MC NC 9B HD AC OC PC QC RC SC ID BC TC UC VC WC XC YC CC","2":"F KC xC aC yC zC 0C 1C 2C 3C 4C 5C 6C 7C"},H:{"2":"JD"},I:{"1":"D","2":"DC J KD LD MD ND aC OD PD"},J:{"2":"E A"},K:{"1":"I","2":"A B C 7B ZC 8B"},L:{"1":"D"},M:{"1":"D"},N:{"2":"A B"},O:{"1":"9B"},P:{"1":"0 v w x y z LC VD WD XD YD ZD AC BC CC aD","2":"J QD RD SD TD UD"},Q:{"1":"bD"},R:{"1":"cD"},S:{"1":"eD","2":"dD"}},B:6,C:"flat & flatMap array methods",D:true};
|
||||
|
2
node_modules/caniuse-lite/data/features/array-includes.js
generated
vendored
2
node_modules/caniuse-lite/data/features/array-includes.js
generated
vendored
@ -1 +1 @@
|
||||
module.exports={A:{A:{"2":"K E F G A B bC"},B:{"1":"1 2 3 4 5 6 7 8 9 M H N O P Q I R S T U V W X Y Z a b c d e f g h i j k l m n o p q r s t u AB BB CB DB EB FB D","2":"C L"},C:{"1":"1 2 3 4 5 6 7 8 9 ZB aB bB cB dB eB fB gB hB iB jB kB lB mB nB oB EC pB FC qB rB sB tB uB vB wB xB yB zB 0B 1B 2B 3B 4B 5B 6B Q I R GC S T U V W X Y Z a b c d e f g h i j k l m n o p q r s t u AB BB CB DB EB FB D HC IC JC dC","2":"0 cC DC J GB K E F G A B C L M H N O P HB v w x y z IB JB KB LB MB NB OB PB QB RB SB TB UB VB WB XB YB eC fC"},D:{"1":"1 2 3 4 5 6 7 8 9 dB eB fB gB hB iB jB kB lB mB nB oB EC pB FC qB rB sB tB uB vB wB xB yB zB 0B 1B 2B 3B 4B 5B 6B Q I R S T U V W X Y Z a b c d e f g h i j k l m n o p q r s t u AB BB CB DB EB FB D HC IC JC","2":"0 J GB K E F G A B C L M H N O P HB v w x y z IB JB KB LB MB NB OB PB QB RB SB TB UB VB WB XB YB ZB aB bB cB"},E:{"1":"G A B C L M H kC LC 7B 8B lC mC nC MC NC 9B oC AC OC PC QC RC SC pC BC TC UC VC WC XC YC CC qC","2":"J GB K E F gC KC hC iC jC"},F:{"1":"QB RB SB TB UB VB WB XB YB ZB aB bB cB dB eB fB gB hB iB jB kB lB mB nB oB pB qB rB sB tB uB vB wB xB yB zB 0B 1B 2B 3B 4B 5B 6B Q I R GC S T U V W X Y Z a b c d e f g h i j k l m n o p q r s t u","2":"0 G B C H N O P HB v w x y z IB JB KB LB MB NB OB PB rC sC tC uC 7B ZC vC 8B"},G:{"1":"1C 2C 3C 4C 5C 6C 7C 8C 9C AD BD CD DD ED FD MC NC 9B GD AC OC PC QC RC SC HD BC TC UC VC WC XC YC CC","2":"F KC wC aC xC yC zC 0C"},H:{"2":"ID"},I:{"1":"D","2":"DC J JD KD LD MD aC ND OD"},J:{"2":"E A"},K:{"1":"I","2":"A B C 7B ZC 8B"},L:{"1":"D"},M:{"1":"D"},N:{"2":"A B"},O:{"1":"9B"},P:{"1":"0 v w x y z PD QD RD SD TD LC UD VD WD XD YD AC BC CC ZD","2":"J"},Q:{"1":"aD"},R:{"1":"bD"},S:{"1":"cD dD"}},B:6,C:"Array.prototype.includes",D:true};
|
||||
module.exports={A:{A:{"2":"K E F G A B bC"},B:{"1":"1 2 3 4 5 6 7 8 9 M H N O P Q I R S T U V W X Y Z a b c d e f g h i j k l m n o p q r s t u AB BB CB DB EB FB D","2":"C L"},C:{"1":"1 2 3 4 5 6 7 8 9 ZB aB bB cB dB eB fB gB hB iB jB kB lB mB nB oB EC pB FC qB rB sB tB uB vB wB xB yB zB 0B 1B 2B 3B 4B 5B 6B Q I R GC S T U V W X Y Z a b c d e f g h i j k l m n o p q r s t u AB BB CB DB EB FB D HC IC JC dC eC","2":"0 cC DC J GB K E F G A B C L M H N O P HB v w x y z IB JB KB LB MB NB OB PB QB RB SB TB UB VB WB XB YB fC gC"},D:{"1":"1 2 3 4 5 6 7 8 9 dB eB fB gB hB iB jB kB lB mB nB oB EC pB FC qB rB sB tB uB vB wB xB yB zB 0B 1B 2B 3B 4B 5B 6B Q I R S T U V W X Y Z a b c d e f g h i j k l m n o p q r s t u AB BB CB DB EB FB D HC IC JC","2":"0 J GB K E F G A B C L M H N O P HB v w x y z IB JB KB LB MB NB OB PB QB RB SB TB UB VB WB XB YB ZB aB bB cB"},E:{"1":"G A B C L M H lC LC 7B 8B mC nC oC MC NC 9B pC AC OC PC QC RC SC qC BC TC UC VC WC XC YC CC rC","2":"J GB K E F hC KC iC jC kC"},F:{"1":"QB RB SB TB UB VB WB XB YB ZB aB bB cB dB eB fB gB hB iB jB kB lB mB nB oB pB qB rB sB tB uB vB wB xB yB zB 0B 1B 2B 3B 4B 5B 6B Q I R GC S T U V W X Y Z a b c d e f g h i j k l m n o p q r s t u","2":"0 G B C H N O P HB v w x y z IB JB KB LB MB NB OB PB sC tC uC vC 7B ZC wC 8B"},G:{"1":"2C 3C 4C 5C 6C 7C 8C 9C AD BD CD DD ED FD GD MC NC 9B HD AC OC PC QC RC SC ID BC TC UC VC WC XC YC CC","2":"F KC xC aC yC zC 0C 1C"},H:{"2":"JD"},I:{"1":"D","2":"DC J KD LD MD ND aC OD PD"},J:{"2":"E A"},K:{"1":"I","2":"A B C 7B ZC 8B"},L:{"1":"D"},M:{"1":"D"},N:{"2":"A B"},O:{"1":"9B"},P:{"1":"0 v w x y z QD RD SD TD UD LC VD WD XD YD ZD AC BC CC aD","2":"J"},Q:{"1":"bD"},R:{"1":"cD"},S:{"1":"dD eD"}},B:6,C:"Array.prototype.includes",D:true};
|
||||
|
2
node_modules/caniuse-lite/data/features/arrow-functions.js
generated
vendored
2
node_modules/caniuse-lite/data/features/arrow-functions.js
generated
vendored
@ -1 +1 @@
|
||||
module.exports={A:{A:{"2":"K E F G A B bC"},B:{"1":"1 2 3 4 5 6 7 8 9 C L M H N O P Q I R S T U V W X Y Z a b c d e f g h i j k l m n o p q r s t u AB BB CB DB EB FB D"},C:{"1":"0 1 2 3 4 5 6 7 8 9 x y z IB JB KB LB MB NB OB PB QB RB SB TB UB VB WB XB YB ZB aB bB cB dB eB fB gB hB iB jB kB lB mB nB oB EC pB FC qB rB sB tB uB vB wB xB yB zB 0B 1B 2B 3B 4B 5B 6B Q I R GC S T U V W X Y Z a b c d e f g h i j k l m n o p q r s t u AB BB CB DB EB FB D HC IC JC dC","2":"cC DC J GB K E F G A B C L M H N O P HB v w eC fC"},D:{"1":"1 2 3 4 5 6 7 8 9 bB cB dB eB fB gB hB iB jB kB lB mB nB oB EC pB FC qB rB sB tB uB vB wB xB yB zB 0B 1B 2B 3B 4B 5B 6B Q I R S T U V W X Y Z a b c d e f g h i j k l m n o p q r s t u AB BB CB DB EB FB D HC IC JC","2":"0 J GB K E F G A B C L M H N O P HB v w x y z IB JB KB LB MB NB OB PB QB RB SB TB UB VB WB XB YB ZB aB"},E:{"1":"A B C L M H LC 7B 8B lC mC nC MC NC 9B oC AC OC PC QC RC SC pC BC TC UC VC WC XC YC CC qC","2":"J GB K E F G gC KC hC iC jC kC"},F:{"1":"OB PB QB RB SB TB UB VB WB XB YB ZB aB bB cB dB eB fB gB hB iB jB kB lB mB nB oB pB qB rB sB tB uB vB wB xB yB zB 0B 1B 2B 3B 4B 5B 6B Q I R GC S T U V W X Y Z a b c d e f g h i j k l m n o p q r s t u","2":"0 G B C H N O P HB v w x y z IB JB KB LB MB NB rC sC tC uC 7B ZC vC 8B"},G:{"1":"3C 4C 5C 6C 7C 8C 9C AD BD CD DD ED FD MC NC 9B GD AC OC PC QC RC SC HD BC TC UC VC WC XC YC CC","2":"F KC wC aC xC yC zC 0C 1C 2C"},H:{"2":"ID"},I:{"1":"D","2":"DC J JD KD LD MD aC ND OD"},J:{"2":"E A"},K:{"1":"I","2":"A B C 7B ZC 8B"},L:{"1":"D"},M:{"1":"D"},N:{"2":"A B"},O:{"1":"9B"},P:{"1":"0 v w x y z PD QD RD SD TD LC UD VD WD XD YD AC BC CC ZD","2":"J"},Q:{"1":"aD"},R:{"1":"bD"},S:{"1":"cD dD"}},B:6,C:"Arrow functions",D:true};
|
||||
module.exports={A:{A:{"2":"K E F G A B bC"},B:{"1":"1 2 3 4 5 6 7 8 9 C L M H N O P Q I R S T U V W X Y Z a b c d e f g h i j k l m n o p q r s t u AB BB CB DB EB FB D"},C:{"1":"0 1 2 3 4 5 6 7 8 9 x y z IB JB KB LB MB NB OB PB QB RB SB TB UB VB WB XB YB ZB aB bB cB dB eB fB gB hB iB jB kB lB mB nB oB EC pB FC qB rB sB tB uB vB wB xB yB zB 0B 1B 2B 3B 4B 5B 6B Q I R GC S T U V W X Y Z a b c d e f g h i j k l m n o p q r s t u AB BB CB DB EB FB D HC IC JC dC eC","2":"cC DC J GB K E F G A B C L M H N O P HB v w fC gC"},D:{"1":"1 2 3 4 5 6 7 8 9 bB cB dB eB fB gB hB iB jB kB lB mB nB oB EC pB FC qB rB sB tB uB vB wB xB yB zB 0B 1B 2B 3B 4B 5B 6B Q I R S T U V W X Y Z a b c d e f g h i j k l m n o p q r s t u AB BB CB DB EB FB D HC IC JC","2":"0 J GB K E F G A B C L M H N O P HB v w x y z IB JB KB LB MB NB OB PB QB RB SB TB UB VB WB XB YB ZB aB"},E:{"1":"A B C L M H LC 7B 8B mC nC oC MC NC 9B pC AC OC PC QC RC SC qC BC TC UC VC WC XC YC CC rC","2":"J GB K E F G hC KC iC jC kC lC"},F:{"1":"OB PB QB RB SB TB UB VB WB XB YB ZB aB bB cB dB eB fB gB hB iB jB kB lB mB nB oB pB qB rB sB tB uB vB wB xB yB zB 0B 1B 2B 3B 4B 5B 6B Q I R GC S T U V W X Y Z a b c d e f g h i j k l m n o p q r s t u","2":"0 G B C H N O P HB v w x y z IB JB KB LB MB NB sC tC uC vC 7B ZC wC 8B"},G:{"1":"4C 5C 6C 7C 8C 9C AD BD CD DD ED FD GD MC NC 9B HD AC OC PC QC RC SC ID BC TC UC VC WC XC YC CC","2":"F KC xC aC yC zC 0C 1C 2C 3C"},H:{"2":"JD"},I:{"1":"D","2":"DC J KD LD MD ND aC OD PD"},J:{"2":"E A"},K:{"1":"I","2":"A B C 7B ZC 8B"},L:{"1":"D"},M:{"1":"D"},N:{"2":"A B"},O:{"1":"9B"},P:{"1":"0 v w x y z QD RD SD TD UD LC VD WD XD YD ZD AC BC CC aD","2":"J"},Q:{"1":"bD"},R:{"1":"cD"},S:{"1":"dD eD"}},B:6,C:"Arrow functions",D:true};
|
||||
|
2
node_modules/caniuse-lite/data/features/asmjs.js
generated
vendored
2
node_modules/caniuse-lite/data/features/asmjs.js
generated
vendored
@ -1 +1 @@
|
||||
module.exports={A:{A:{"2":"K E F G A B bC"},B:{"1":"L M H N O P","132":"1 2 3 4 5 6 7 8 9 Q I R S T U V W X Y Z a b c d e f g h i j k l m n o p q r s t u AB BB CB DB EB FB D","322":"C"},C:{"1":"0 1 2 3 4 5 6 7 8 9 x y z IB JB KB LB MB NB OB PB QB RB SB TB UB VB WB XB YB ZB aB bB cB dB eB fB gB hB iB jB kB lB mB nB oB EC pB FC qB rB sB tB uB vB wB xB yB zB 0B 1B 2B 3B 4B 5B 6B Q I R GC S T U V W X Y Z a b c d e f g h i j k l m n o p q r s t u AB BB CB DB EB FB D HC IC JC dC","2":"cC DC J GB K E F G A B C L M H N O P HB v w eC fC"},D:{"2":"0 J GB K E F G A B C L M H N O P HB v w x y z IB JB","132":"1 2 3 4 5 6 7 8 9 KB LB MB NB OB PB QB RB SB TB UB VB WB XB YB ZB aB bB cB dB eB fB gB hB iB jB kB lB mB nB oB EC pB FC qB rB sB tB uB vB wB xB yB zB 0B 1B 2B 3B 4B 5B 6B Q I R S T U V W X Y Z a b c d e f g h i j k l m n o p q r s t u AB BB CB DB EB FB D HC IC JC"},E:{"2":"J GB K E F G A B C L M H gC KC hC iC jC kC LC 7B 8B lC mC nC MC NC 9B oC AC OC PC QC RC SC pC BC TC UC VC WC XC YC CC qC"},F:{"2":"G B C rC sC tC uC 7B ZC vC 8B","132":"0 H N O P HB v w x y z IB JB KB LB MB NB OB PB QB RB SB TB UB VB WB XB YB ZB aB bB cB dB eB fB gB hB iB jB kB lB mB nB oB pB qB rB sB tB uB vB wB xB yB zB 0B 1B 2B 3B 4B 5B 6B Q I R GC S T U V W X Y Z a b c d e f g h i j k l m n o p q r s t u"},G:{"2":"F KC wC aC xC yC zC 0C 1C 2C 3C 4C 5C 6C 7C 8C 9C AD BD CD DD ED FD MC NC 9B GD AC OC PC QC RC SC HD BC TC UC VC WC XC YC CC"},H:{"2":"ID"},I:{"2":"DC J JD KD LD MD aC ND OD","132":"D"},J:{"2":"E A"},K:{"2":"A B C 7B ZC 8B","132":"I"},L:{"132":"D"},M:{"1":"D"},N:{"2":"A B"},O:{"132":"9B"},P:{"2":"J","132":"0 v w x y z PD QD RD SD TD LC UD VD WD XD YD AC BC CC ZD"},Q:{"132":"aD"},R:{"132":"bD"},S:{"1":"cD dD"}},B:6,C:"asm.js",D:true};
|
||||
module.exports={A:{A:{"2":"K E F G A B bC"},B:{"1":"L M H N O P","132":"1 2 3 4 5 6 7 8 9 Q I R S T U V W X Y Z a b c d e f g h i j k l m n o p q r s t u AB BB CB DB EB FB D","322":"C"},C:{"1":"0 1 2 3 4 5 6 7 8 9 x y z IB JB KB LB MB NB OB PB QB RB SB TB UB VB WB XB YB ZB aB bB cB dB eB fB gB hB iB jB kB lB mB nB oB EC pB FC qB rB sB tB uB vB wB xB yB zB 0B 1B 2B 3B 4B 5B 6B Q I R GC S T U V W X Y Z a b c d e f g h i j k l m n o p q r s t u AB BB CB DB EB FB D HC IC JC dC eC","2":"cC DC J GB K E F G A B C L M H N O P HB v w fC gC"},D:{"2":"0 J GB K E F G A B C L M H N O P HB v w x y z IB JB","132":"1 2 3 4 5 6 7 8 9 KB LB MB NB OB PB QB RB SB TB UB VB WB XB YB ZB aB bB cB dB eB fB gB hB iB jB kB lB mB nB oB EC pB FC qB rB sB tB uB vB wB xB yB zB 0B 1B 2B 3B 4B 5B 6B Q I R S T U V W X Y Z a b c d e f g h i j k l m n o p q r s t u AB BB CB DB EB FB D HC IC JC"},E:{"2":"J GB K E F G A B C L M H hC KC iC jC kC lC LC 7B 8B mC nC oC MC NC 9B pC AC OC PC QC RC SC qC BC TC UC VC WC XC YC CC rC"},F:{"2":"G B C sC tC uC vC 7B ZC wC 8B","132":"0 H N O P HB v w x y z IB JB KB LB MB NB OB PB QB RB SB TB UB VB WB XB YB ZB aB bB cB dB eB fB gB hB iB jB kB lB mB nB oB pB qB rB sB tB uB vB wB xB yB zB 0B 1B 2B 3B 4B 5B 6B Q I R GC S T U V W X Y Z a b c d e f g h i j k l m n o p q r s t u"},G:{"2":"F KC xC aC yC zC 0C 1C 2C 3C 4C 5C 6C 7C 8C 9C AD BD CD DD ED FD GD MC NC 9B HD AC OC PC QC RC SC ID BC TC UC VC WC XC YC CC"},H:{"2":"JD"},I:{"2":"DC J KD LD MD ND aC OD PD","132":"D"},J:{"2":"E A"},K:{"2":"A B C 7B ZC 8B","132":"I"},L:{"132":"D"},M:{"1":"D"},N:{"2":"A B"},O:{"132":"9B"},P:{"2":"J","132":"0 v w x y z QD RD SD TD UD LC VD WD XD YD ZD AC BC CC aD"},Q:{"132":"bD"},R:{"132":"cD"},S:{"1":"dD eD"}},B:6,C:"asm.js",D:true};
|
||||
|
2
node_modules/caniuse-lite/data/features/async-clipboard.js
generated
vendored
2
node_modules/caniuse-lite/data/features/async-clipboard.js
generated
vendored
@ -1 +1 @@
|
||||
module.exports={A:{A:{"2":"K E F G A B bC"},B:{"1":"1 2 3 4 5 6 7 8 9 Q I R S T U V W X Y Z a b c d e f g h i j k l m n o p q r s t u AB BB CB DB EB FB D","2":"C L M H N O P"},C:{"1":"EB FB D HC IC JC dC","2":"0 cC DC J GB K E F G A B C L M H N O P HB v w x y z IB JB KB LB MB NB OB PB QB RB SB TB UB VB WB XB YB ZB aB bB cB dB eB fB gB hB iB jB kB lB mB nB oB EC pB FC qB eC fC","132":"1 2 3 4 5 6 7 8 9 rB sB tB uB vB wB xB yB zB 0B 1B 2B 3B 4B 5B 6B Q I R GC S T U V W X Y Z a b c d e f g h i j k l m n o p q r s t u AB BB CB DB"},D:{"1":"1 2 3 4 5 6 7 8 9 uB vB wB xB yB zB 0B 1B 2B 3B 4B 5B 6B Q I R S T U V W X Y Z a b c d e f g h i j k l m n o p q r s t u AB BB CB DB EB FB D HC IC JC","2":"0 J GB K E F G A B C L M H N O P HB v w x y z IB JB KB LB MB NB OB PB QB RB SB TB UB VB WB XB YB ZB aB bB cB dB eB fB gB hB iB jB kB lB mB nB oB EC pB FC qB rB sB tB"},E:{"1":"M H lC mC nC MC NC 9B oC AC OC PC QC RC SC pC BC TC UC VC WC XC YC CC qC","2":"J GB K E F G A B C L gC KC hC iC jC kC LC 7B 8B"},F:{"1":"jB kB lB mB nB oB pB qB rB sB tB uB vB wB xB yB zB 0B 1B 2B 3B 4B 5B 6B Q I R GC S T U V W X Y Z a b c d e f g h i j k l m n o p q r s t u","2":"0 G B C H N O P HB v w x y z IB JB KB LB MB NB OB PB QB RB SB TB UB VB WB XB YB ZB aB bB cB dB eB fB gB hB iB rC sC tC uC 7B ZC vC 8B"},G:{"1":"DD ED FD MC NC 9B GD AC OC PC QC RC SC HD BC TC UC VC WC XC YC CC","2":"F KC wC aC xC yC zC 0C 1C 2C 3C 4C 5C 6C 7C 8C 9C AD BD CD"},H:{"2":"ID"},I:{"2":"DC J JD KD LD MD aC ND OD","260":"D"},J:{"2":"E A"},K:{"1":"I","2":"A B C 7B ZC 8B"},L:{"1":"D"},M:{"1":"D"},N:{"2":"A B"},O:{"1":"9B"},P:{"1":"0","2":"J PD QD RD SD","260":"v w x y z TD LC UD VD WD XD YD AC BC CC ZD"},Q:{"1":"aD"},R:{"1":"bD"},S:{"2":"cD","132":"dD"}},B:5,C:"Asynchronous Clipboard API",D:true};
|
||||
module.exports={A:{A:{"2":"K E F G A B bC"},B:{"1":"1 2 3 4 5 6 7 8 9 Q I R S T U V W X Y Z a b c d e f g h i j k l m n o p q r s t u AB BB CB DB EB FB D","2":"C L M H N O P"},C:{"1":"EB FB D HC IC JC dC eC","2":"0 cC DC J GB K E F G A B C L M H N O P HB v w x y z IB JB KB LB MB NB OB PB QB RB SB TB UB VB WB XB YB ZB aB bB cB dB eB fB gB hB iB jB kB lB mB nB oB EC pB FC qB fC gC","132":"1 2 3 4 5 6 7 8 9 rB sB tB uB vB wB xB yB zB 0B 1B 2B 3B 4B 5B 6B Q I R GC S T U V W X Y Z a b c d e f g h i j k l m n o p q r s t u AB BB CB DB"},D:{"1":"1 2 3 4 5 6 7 8 9 uB vB wB xB yB zB 0B 1B 2B 3B 4B 5B 6B Q I R S T U V W X Y Z a b c d e f g h i j k l m n o p q r s t u AB BB CB DB EB FB D HC IC JC","2":"0 J GB K E F G A B C L M H N O P HB v w x y z IB JB KB LB MB NB OB PB QB RB SB TB UB VB WB XB YB ZB aB bB cB dB eB fB gB hB iB jB kB lB mB nB oB EC pB FC qB rB sB tB"},E:{"1":"M H mC nC oC MC NC 9B pC AC OC PC QC RC SC qC BC TC UC VC WC XC YC CC rC","2":"J GB K E F G A B C L hC KC iC jC kC lC LC 7B 8B"},F:{"1":"jB kB lB mB nB oB pB qB rB sB tB uB vB wB xB yB zB 0B 1B 2B 3B 4B 5B 6B Q I R GC S T U V W X Y Z a b c d e f g h i j k l m n o p q r s t u","2":"0 G B C H N O P HB v w x y z IB JB KB LB MB NB OB PB QB RB SB TB UB VB WB XB YB ZB aB bB cB dB eB fB gB hB iB sC tC uC vC 7B ZC wC 8B"},G:{"1":"ED FD GD MC NC 9B HD AC OC PC QC RC SC ID BC TC UC VC WC XC YC CC","2":"F KC xC aC yC zC 0C 1C 2C 3C 4C 5C 6C 7C 8C 9C AD BD CD DD"},H:{"2":"JD"},I:{"2":"DC J KD LD MD ND aC OD PD","260":"D"},J:{"2":"E A"},K:{"1":"I","2":"A B C 7B ZC 8B"},L:{"1":"D"},M:{"1":"D"},N:{"2":"A B"},O:{"1":"9B"},P:{"1":"0","2":"J QD RD SD TD","260":"v w x y z UD LC VD WD XD YD ZD AC BC CC aD"},Q:{"1":"bD"},R:{"1":"cD"},S:{"2":"dD","132":"eD"}},B:5,C:"Asynchronous Clipboard API",D:true};
|
||||
|
2
node_modules/caniuse-lite/data/features/async-functions.js
generated
vendored
2
node_modules/caniuse-lite/data/features/async-functions.js
generated
vendored
@ -1 +1 @@
|
||||
module.exports={A:{A:{"2":"K E F G A B bC"},B:{"1":"1 2 3 4 5 6 7 8 9 H N O P Q I R S T U V W X Y Z a b c d e f g h i j k l m n o p q r s t u AB BB CB DB EB FB D","2":"C L","194":"M"},C:{"1":"1 2 3 4 5 6 7 8 9 iB jB kB lB mB nB oB EC pB FC qB rB sB tB uB vB wB xB yB zB 0B 1B 2B 3B 4B 5B 6B Q I R GC S T U V W X Y Z a b c d e f g h i j k l m n o p q r s t u AB BB CB DB EB FB D HC IC JC dC","2":"0 cC DC J GB K E F G A B C L M H N O P HB v w x y z IB JB KB LB MB NB OB PB QB RB SB TB UB VB WB XB YB ZB aB bB cB dB eB fB gB hB eC fC"},D:{"1":"1 2 3 4 5 6 7 8 9 lB mB nB oB EC pB FC qB rB sB tB uB vB wB xB yB zB 0B 1B 2B 3B 4B 5B 6B Q I R S T U V W X Y Z a b c d e f g h i j k l m n o p q r s t u AB BB CB DB EB FB D HC IC JC","2":"0 J GB K E F G A B C L M H N O P HB v w x y z IB JB KB LB MB NB OB PB QB RB SB TB UB VB WB XB YB ZB aB bB cB dB eB fB gB hB iB jB kB"},E:{"1":"B C L M H 7B 8B lC mC nC MC NC 9B oC AC OC PC QC RC SC pC BC TC UC VC WC XC YC CC qC","2":"J GB K E F G A gC KC hC iC jC kC","258":"LC"},F:{"1":"YB ZB aB bB cB dB eB fB gB hB iB jB kB lB mB nB oB pB qB rB sB tB uB vB wB xB yB zB 0B 1B 2B 3B 4B 5B 6B Q I R GC S T U V W X Y Z a b c d e f g h i j k l m n o p q r s t u","2":"0 G B C H N O P HB v w x y z IB JB KB LB MB NB OB PB QB RB SB TB UB VB WB XB rC sC tC uC 7B ZC vC 8B"},G:{"1":"5C 6C 7C 8C 9C AD BD CD DD ED FD MC NC 9B GD AC OC PC QC RC SC HD BC TC UC VC WC XC YC CC","2":"F KC wC aC xC yC zC 0C 1C 2C 3C","258":"4C"},H:{"2":"ID"},I:{"1":"D","2":"DC J JD KD LD MD aC ND OD"},J:{"2":"E A"},K:{"1":"I","2":"A B C 7B ZC 8B"},L:{"1":"D"},M:{"1":"D"},N:{"2":"A B"},O:{"1":"9B"},P:{"1":"0 v w x y z QD RD SD TD LC UD VD WD XD YD AC BC CC ZD","2":"J PD"},Q:{"1":"aD"},R:{"1":"bD"},S:{"1":"dD","2":"cD"}},B:6,C:"Async functions",D:true};
|
||||
module.exports={A:{A:{"2":"K E F G A B bC"},B:{"1":"1 2 3 4 5 6 7 8 9 H N O P Q I R S T U V W X Y Z a b c d e f g h i j k l m n o p q r s t u AB BB CB DB EB FB D","2":"C L","194":"M"},C:{"1":"1 2 3 4 5 6 7 8 9 iB jB kB lB mB nB oB EC pB FC qB rB sB tB uB vB wB xB yB zB 0B 1B 2B 3B 4B 5B 6B Q I R GC S T U V W X Y Z a b c d e f g h i j k l m n o p q r s t u AB BB CB DB EB FB D HC IC JC dC eC","2":"0 cC DC J GB K E F G A B C L M H N O P HB v w x y z IB JB KB LB MB NB OB PB QB RB SB TB UB VB WB XB YB ZB aB bB cB dB eB fB gB hB fC gC"},D:{"1":"1 2 3 4 5 6 7 8 9 lB mB nB oB EC pB FC qB rB sB tB uB vB wB xB yB zB 0B 1B 2B 3B 4B 5B 6B Q I R S T U V W X Y Z a b c d e f g h i j k l m n o p q r s t u AB BB CB DB EB FB D HC IC JC","2":"0 J GB K E F G A B C L M H N O P HB v w x y z IB JB KB LB MB NB OB PB QB RB SB TB UB VB WB XB YB ZB aB bB cB dB eB fB gB hB iB jB kB"},E:{"1":"B C L M H 7B 8B mC nC oC MC NC 9B pC AC OC PC QC RC SC qC BC TC UC VC WC XC YC CC rC","2":"J GB K E F G A hC KC iC jC kC lC","258":"LC"},F:{"1":"YB ZB aB bB cB dB eB fB gB hB iB jB kB lB mB nB oB pB qB rB sB tB uB vB wB xB yB zB 0B 1B 2B 3B 4B 5B 6B Q I R GC S T U V W X Y Z a b c d e f g h i j k l m n o p q r s t u","2":"0 G B C H N O P HB v w x y z IB JB KB LB MB NB OB PB QB RB SB TB UB VB WB XB sC tC uC vC 7B ZC wC 8B"},G:{"1":"6C 7C 8C 9C AD BD CD DD ED FD GD MC NC 9B HD AC OC PC QC RC SC ID BC TC UC VC WC XC YC CC","2":"F KC xC aC yC zC 0C 1C 2C 3C 4C","258":"5C"},H:{"2":"JD"},I:{"1":"D","2":"DC J KD LD MD ND aC OD PD"},J:{"2":"E A"},K:{"1":"I","2":"A B C 7B ZC 8B"},L:{"1":"D"},M:{"1":"D"},N:{"2":"A B"},O:{"1":"9B"},P:{"1":"0 v w x y z RD SD TD UD LC VD WD XD YD ZD AC BC CC aD","2":"J QD"},Q:{"1":"bD"},R:{"1":"cD"},S:{"1":"eD","2":"dD"}},B:6,C:"Async functions",D:true};
|
||||
|
2
node_modules/caniuse-lite/data/features/atob-btoa.js
generated
vendored
2
node_modules/caniuse-lite/data/features/atob-btoa.js
generated
vendored
@ -1 +1 @@
|
||||
module.exports={A:{A:{"1":"A B","2":"K E F G bC"},B:{"1":"1 2 3 4 5 6 7 8 9 C L M H N O P Q I R S T U V W X Y Z a b c d e f g h i j k l m n o p q r s t u AB BB CB DB EB FB D"},C:{"1":"0 1 2 3 4 5 6 7 8 9 cC DC J GB K E F G A B C L M H N O P HB v w x y z IB JB KB LB MB NB OB PB QB RB SB TB UB VB WB XB YB ZB aB bB cB dB eB fB gB hB iB jB kB lB mB nB oB EC pB FC qB rB sB tB uB vB wB xB yB zB 0B 1B 2B 3B 4B 5B 6B Q I R GC S T U V W X Y Z a b c d e f g h i j k l m n o p q r s t u AB BB CB DB EB FB D HC IC JC dC eC fC"},D:{"1":"0 1 2 3 4 5 6 7 8 9 J GB K E F G A B C L M H N O P HB v w x y z IB JB KB LB MB NB OB PB QB RB SB TB UB VB WB XB YB ZB aB bB cB dB eB fB gB hB iB jB kB lB mB nB oB EC pB FC qB rB sB tB uB vB wB xB yB zB 0B 1B 2B 3B 4B 5B 6B Q I R S T U V W X Y Z a b c d e f g h i j k l m n o p q r s t u AB BB CB DB EB FB D HC IC JC"},E:{"1":"J GB K E F G A B C L M H gC KC hC iC jC kC LC 7B 8B lC mC nC MC NC 9B oC AC OC PC QC RC SC pC BC TC UC VC WC XC YC CC qC"},F:{"1":"0 B C H N O P HB v w x y z IB JB KB LB MB NB OB PB QB RB SB TB UB VB WB XB YB ZB aB bB cB dB eB fB gB hB iB jB kB lB mB nB oB pB qB rB sB tB uB vB wB xB yB zB 0B 1B 2B 3B 4B 5B 6B Q I R GC S T U V W X Y Z a b c d e f g h i j k l m n o p q r s t u uC 7B ZC vC 8B","2":"G rC sC","16":"tC"},G:{"1":"F KC wC aC xC yC zC 0C 1C 2C 3C 4C 5C 6C 7C 8C 9C AD BD CD DD ED FD MC NC 9B GD AC OC PC QC RC SC HD BC TC UC VC WC XC YC CC"},H:{"1":"ID"},I:{"1":"DC J D JD KD LD MD aC ND OD"},J:{"1":"E A"},K:{"1":"B C I 7B ZC 8B","16":"A"},L:{"1":"D"},M:{"1":"D"},N:{"1":"A B"},O:{"1":"9B"},P:{"1":"0 J v w x y z PD QD RD SD TD LC UD VD WD XD YD AC BC CC ZD"},Q:{"1":"aD"},R:{"1":"bD"},S:{"1":"cD dD"}},B:1,C:"Base64 encoding and decoding",D:true};
|
||||
module.exports={A:{A:{"1":"A B","2":"K E F G bC"},B:{"1":"1 2 3 4 5 6 7 8 9 C L M H N O P Q I R S T U V W X Y Z a b c d e f g h i j k l m n o p q r s t u AB BB CB DB EB FB D"},C:{"1":"0 1 2 3 4 5 6 7 8 9 cC DC J GB K E F G A B C L M H N O P HB v w x y z IB JB KB LB MB NB OB PB QB RB SB TB UB VB WB XB YB ZB aB bB cB dB eB fB gB hB iB jB kB lB mB nB oB EC pB FC qB rB sB tB uB vB wB xB yB zB 0B 1B 2B 3B 4B 5B 6B Q I R GC S T U V W X Y Z a b c d e f g h i j k l m n o p q r s t u AB BB CB DB EB FB D HC IC JC dC eC fC gC"},D:{"1":"0 1 2 3 4 5 6 7 8 9 J GB K E F G A B C L M H N O P HB v w x y z IB JB KB LB MB NB OB PB QB RB SB TB UB VB WB XB YB ZB aB bB cB dB eB fB gB hB iB jB kB lB mB nB oB EC pB FC qB rB sB tB uB vB wB xB yB zB 0B 1B 2B 3B 4B 5B 6B Q I R S T U V W X Y Z a b c d e f g h i j k l m n o p q r s t u AB BB CB DB EB FB D HC IC JC"},E:{"1":"J GB K E F G A B C L M H hC KC iC jC kC lC LC 7B 8B mC nC oC MC NC 9B pC AC OC PC QC RC SC qC BC TC UC VC WC XC YC CC rC"},F:{"1":"0 B C H N O P HB v w x y z IB JB KB LB MB NB OB PB QB RB SB TB UB VB WB XB YB ZB aB bB cB dB eB fB gB hB iB jB kB lB mB nB oB pB qB rB sB tB uB vB wB xB yB zB 0B 1B 2B 3B 4B 5B 6B Q I R GC S T U V W X Y Z a b c d e f g h i j k l m n o p q r s t u vC 7B ZC wC 8B","2":"G sC tC","16":"uC"},G:{"1":"F KC xC aC yC zC 0C 1C 2C 3C 4C 5C 6C 7C 8C 9C AD BD CD DD ED FD GD MC NC 9B HD AC OC PC QC RC SC ID BC TC UC VC WC XC YC CC"},H:{"1":"JD"},I:{"1":"DC J D KD LD MD ND aC OD PD"},J:{"1":"E A"},K:{"1":"B C I 7B ZC 8B","16":"A"},L:{"1":"D"},M:{"1":"D"},N:{"1":"A B"},O:{"1":"9B"},P:{"1":"0 J v w x y z QD RD SD TD UD LC VD WD XD YD ZD AC BC CC aD"},Q:{"1":"bD"},R:{"1":"cD"},S:{"1":"dD eD"}},B:1,C:"Base64 encoding and decoding",D:true};
|
||||
|
2
node_modules/caniuse-lite/data/features/audio-api.js
generated
vendored
2
node_modules/caniuse-lite/data/features/audio-api.js
generated
vendored
@ -1 +1 @@
|
||||
module.exports={A:{A:{"2":"K E F G A B bC"},B:{"1":"1 2 3 4 5 6 7 8 9 C L M H N O P Q I R S T U V W X Y Z a b c d e f g h i j k l m n o p q r s t u AB BB CB DB EB FB D"},C:{"1":"0 1 2 3 4 5 6 7 8 9 IB JB KB LB MB NB OB PB QB RB SB TB UB VB WB XB YB ZB aB bB cB dB eB fB gB hB iB jB kB lB mB nB oB EC pB FC qB rB sB tB uB vB wB xB yB zB 0B 1B 2B 3B 4B 5B 6B Q I R GC S T U V W X Y Z a b c d e f g h i j k l m n o p q r s t u AB BB CB DB EB FB D HC IC JC dC","2":"cC DC J GB K E F G A B C L M H N O P HB v w x y z eC fC"},D:{"1":"1 2 3 4 5 6 7 8 9 QB RB SB TB UB VB WB XB YB ZB aB bB cB dB eB fB gB hB iB jB kB lB mB nB oB EC pB FC qB rB sB tB uB vB wB xB yB zB 0B 1B 2B 3B 4B 5B 6B Q I R S T U V W X Y Z a b c d e f g h i j k l m n o p q r s t u AB BB CB DB EB FB D HC IC JC","2":"J GB K E F G A B C L","33":"0 M H N O P HB v w x y z IB JB KB LB MB NB OB PB"},E:{"1":"H mC nC MC NC 9B oC AC OC PC QC RC SC pC BC TC UC VC WC XC YC CC qC","2":"J GB gC KC hC","33":"K E F G A B C L M iC jC kC LC 7B 8B lC"},F:{"1":"0 x y z IB JB KB LB MB NB OB PB QB RB SB TB UB VB WB XB YB ZB aB bB cB dB eB fB gB hB iB jB kB lB mB nB oB pB qB rB sB tB uB vB wB xB yB zB 0B 1B 2B 3B 4B 5B 6B Q I R GC S T U V W X Y Z a b c d e f g h i j k l m n o p q r s t u","2":"G B C rC sC tC uC 7B ZC vC 8B","33":"H N O P HB v w"},G:{"1":"ED FD MC NC 9B GD AC OC PC QC RC SC HD BC TC UC VC WC XC YC CC","2":"KC wC aC xC","33":"F yC zC 0C 1C 2C 3C 4C 5C 6C 7C 8C 9C AD BD CD DD"},H:{"2":"ID"},I:{"1":"D","2":"DC J JD KD LD MD aC ND OD"},J:{"2":"E A"},K:{"1":"I","2":"A B C 7B ZC 8B"},L:{"1":"D"},M:{"1":"D"},N:{"2":"A B"},O:{"1":"9B"},P:{"1":"0 J v w x y z PD QD RD SD TD LC UD VD WD XD YD AC BC CC ZD"},Q:{"1":"aD"},R:{"1":"bD"},S:{"1":"cD dD"}},B:2,C:"Web Audio API",D:true};
|
||||
module.exports={A:{A:{"2":"K E F G A B bC"},B:{"1":"1 2 3 4 5 6 7 8 9 C L M H N O P Q I R S T U V W X Y Z a b c d e f g h i j k l m n o p q r s t u AB BB CB DB EB FB D"},C:{"1":"0 1 2 3 4 5 6 7 8 9 IB JB KB LB MB NB OB PB QB RB SB TB UB VB WB XB YB ZB aB bB cB dB eB fB gB hB iB jB kB lB mB nB oB EC pB FC qB rB sB tB uB vB wB xB yB zB 0B 1B 2B 3B 4B 5B 6B Q I R GC S T U V W X Y Z a b c d e f g h i j k l m n o p q r s t u AB BB CB DB EB FB D HC IC JC dC eC","2":"cC DC J GB K E F G A B C L M H N O P HB v w x y z fC gC"},D:{"1":"1 2 3 4 5 6 7 8 9 QB RB SB TB UB VB WB XB YB ZB aB bB cB dB eB fB gB hB iB jB kB lB mB nB oB EC pB FC qB rB sB tB uB vB wB xB yB zB 0B 1B 2B 3B 4B 5B 6B Q I R S T U V W X Y Z a b c d e f g h i j k l m n o p q r s t u AB BB CB DB EB FB D HC IC JC","2":"J GB K E F G A B C L","33":"0 M H N O P HB v w x y z IB JB KB LB MB NB OB PB"},E:{"1":"H nC oC MC NC 9B pC AC OC PC QC RC SC qC BC TC UC VC WC XC YC CC rC","2":"J GB hC KC iC","33":"K E F G A B C L M jC kC lC LC 7B 8B mC"},F:{"1":"0 x y z IB JB KB LB MB NB OB PB QB RB SB TB UB VB WB XB YB ZB aB bB cB dB eB fB gB hB iB jB kB lB mB nB oB pB qB rB sB tB uB vB wB xB yB zB 0B 1B 2B 3B 4B 5B 6B Q I R GC S T U V W X Y Z a b c d e f g h i j k l m n o p q r s t u","2":"G B C sC tC uC vC 7B ZC wC 8B","33":"H N O P HB v w"},G:{"1":"FD GD MC NC 9B HD AC OC PC QC RC SC ID BC TC UC VC WC XC YC CC","2":"KC xC aC yC","33":"F zC 0C 1C 2C 3C 4C 5C 6C 7C 8C 9C AD BD CD DD ED"},H:{"2":"JD"},I:{"1":"D","2":"DC J KD LD MD ND aC OD PD"},J:{"2":"E A"},K:{"1":"I","2":"A B C 7B ZC 8B"},L:{"1":"D"},M:{"1":"D"},N:{"2":"A B"},O:{"1":"9B"},P:{"1":"0 J v w x y z QD RD SD TD UD LC VD WD XD YD ZD AC BC CC aD"},Q:{"1":"bD"},R:{"1":"cD"},S:{"1":"dD eD"}},B:2,C:"Web Audio API",D:true};
|
||||
|
2
node_modules/caniuse-lite/data/features/audio.js
generated
vendored
2
node_modules/caniuse-lite/data/features/audio.js
generated
vendored
@ -1 +1 @@
|
||||
module.exports={A:{A:{"1":"G A B","2":"K E F bC"},B:{"1":"1 2 3 4 5 6 7 8 9 C L M H N O P Q I R S T U V W X Y Z a b c d e f g h i j k l m n o p q r s t u AB BB CB DB EB FB D"},C:{"1":"0 1 2 3 4 5 6 7 8 9 v w x y z IB JB KB LB MB NB OB PB QB RB SB TB UB VB WB XB YB ZB aB bB cB dB eB fB gB hB iB jB kB lB mB nB oB EC pB FC qB rB sB tB uB vB wB xB yB zB 0B 1B 2B 3B 4B 5B 6B Q I R GC S T U V W X Y Z a b c d e f g h i j k l m n o p q r s t u AB BB CB DB EB FB D HC IC JC dC","2":"cC DC","132":"J GB K E F G A B C L M H N O P HB eC fC"},D:{"1":"0 1 2 3 4 5 6 7 8 9 J GB K E F G A B C L M H N O P HB v w x y z IB JB KB LB MB NB OB PB QB RB SB TB UB VB WB XB YB ZB aB bB cB dB eB fB gB hB iB jB kB lB mB nB oB EC pB FC qB rB sB tB uB vB wB xB yB zB 0B 1B 2B 3B 4B 5B 6B Q I R S T U V W X Y Z a b c d e f g h i j k l m n o p q r s t u AB BB CB DB EB FB D HC IC JC"},E:{"1":"J GB K E F G A B C L M H gC KC hC iC jC kC LC 7B 8B lC mC nC MC NC 9B oC AC OC PC QC RC SC pC BC TC UC VC WC XC YC CC qC"},F:{"1":"0 B C H N O P HB v w x y z IB JB KB LB MB NB OB PB QB RB SB TB UB VB WB XB YB ZB aB bB cB dB eB fB gB hB iB jB kB lB mB nB oB pB qB rB sB tB uB vB wB xB yB zB 0B 1B 2B 3B 4B 5B 6B Q I R GC S T U V W X Y Z a b c d e f g h i j k l m n o p q r s t u tC uC 7B ZC vC 8B","2":"G","4":"rC sC"},G:{"260":"F KC wC aC xC yC zC 0C 1C 2C 3C 4C 5C 6C 7C 8C 9C AD BD CD DD ED FD MC NC 9B GD AC OC PC QC RC SC HD BC TC UC VC WC XC YC CC"},H:{"2":"ID"},I:{"1":"DC J D LD MD aC ND OD","2":"JD KD"},J:{"1":"E A"},K:{"1":"B C I 7B ZC 8B","2":"A"},L:{"1":"D"},M:{"1":"D"},N:{"1":"A B"},O:{"1":"9B"},P:{"1":"0 J v w x y z PD QD RD SD TD LC UD VD WD XD YD AC BC CC ZD"},Q:{"1":"aD"},R:{"1":"bD"},S:{"1":"cD dD"}},B:1,C:"Audio element",D:true};
|
||||
module.exports={A:{A:{"1":"G A B","2":"K E F bC"},B:{"1":"1 2 3 4 5 6 7 8 9 C L M H N O P Q I R S T U V W X Y Z a b c d e f g h i j k l m n o p q r s t u AB BB CB DB EB FB D"},C:{"1":"0 1 2 3 4 5 6 7 8 9 v w x y z IB JB KB LB MB NB OB PB QB RB SB TB UB VB WB XB YB ZB aB bB cB dB eB fB gB hB iB jB kB lB mB nB oB EC pB FC qB rB sB tB uB vB wB xB yB zB 0B 1B 2B 3B 4B 5B 6B Q I R GC S T U V W X Y Z a b c d e f g h i j k l m n o p q r s t u AB BB CB DB EB FB D HC IC JC dC eC","2":"cC DC","132":"J GB K E F G A B C L M H N O P HB fC gC"},D:{"1":"0 1 2 3 4 5 6 7 8 9 J GB K E F G A B C L M H N O P HB v w x y z IB JB KB LB MB NB OB PB QB RB SB TB UB VB WB XB YB ZB aB bB cB dB eB fB gB hB iB jB kB lB mB nB oB EC pB FC qB rB sB tB uB vB wB xB yB zB 0B 1B 2B 3B 4B 5B 6B Q I R S T U V W X Y Z a b c d e f g h i j k l m n o p q r s t u AB BB CB DB EB FB D HC IC JC"},E:{"1":"J GB K E F G A B C L M H hC KC iC jC kC lC LC 7B 8B mC nC oC MC NC 9B pC AC OC PC QC RC SC qC BC TC UC VC WC XC YC CC rC"},F:{"1":"0 B C H N O P HB v w x y z IB JB KB LB MB NB OB PB QB RB SB TB UB VB WB XB YB ZB aB bB cB dB eB fB gB hB iB jB kB lB mB nB oB pB qB rB sB tB uB vB wB xB yB zB 0B 1B 2B 3B 4B 5B 6B Q I R GC S T U V W X Y Z a b c d e f g h i j k l m n o p q r s t u uC vC 7B ZC wC 8B","2":"G","4":"sC tC"},G:{"260":"F KC xC aC yC zC 0C 1C 2C 3C 4C 5C 6C 7C 8C 9C AD BD CD DD ED FD GD MC NC 9B HD AC OC PC QC RC SC ID BC TC UC VC WC XC YC CC"},H:{"2":"JD"},I:{"1":"DC J D MD ND aC OD PD","2":"KD LD"},J:{"1":"E A"},K:{"1":"B C I 7B ZC 8B","2":"A"},L:{"1":"D"},M:{"1":"D"},N:{"1":"A B"},O:{"1":"9B"},P:{"1":"0 J v w x y z QD RD SD TD UD LC VD WD XD YD ZD AC BC CC aD"},Q:{"1":"bD"},R:{"1":"cD"},S:{"1":"dD eD"}},B:1,C:"Audio element",D:true};
|
||||
|
2
node_modules/caniuse-lite/data/features/audiotracks.js
generated
vendored
2
node_modules/caniuse-lite/data/features/audiotracks.js
generated
vendored
@ -1 +1 @@
|
||||
module.exports={A:{A:{"1":"A B","2":"K E F G bC"},B:{"1":"C L M H N O P","322":"1 2 3 4 5 6 7 8 9 Q I R S T U V W X Y Z a b c d e f g h i j k l m n o p q r s t u AB BB CB DB EB FB D"},C:{"2":"0 cC DC J GB K E F G A B C L M H N O P HB v w x y z IB JB KB LB MB NB OB eC fC","194":"1 2 3 4 5 6 7 8 9 PB QB RB SB TB UB VB WB XB YB ZB aB bB cB dB eB fB gB hB iB jB kB lB mB nB oB EC pB FC qB rB sB tB uB vB wB xB yB zB 0B 1B 2B 3B 4B 5B 6B Q I R GC S T U V W X Y Z a b c d e f g h i j k l m n o p q r s t u AB BB CB DB EB FB D HC IC JC dC"},D:{"2":"0 J GB K E F G A B C L M H N O P HB v w x y z IB JB KB LB MB NB OB PB QB RB SB TB UB VB WB XB YB ZB aB","322":"1 2 3 4 5 6 7 8 9 bB cB dB eB fB gB hB iB jB kB lB mB nB oB EC pB FC qB rB sB tB uB vB wB xB yB zB 0B 1B 2B 3B 4B 5B 6B Q I R S T U V W X Y Z a b c d e f g h i j k l m n o p q r s t u AB BB CB DB EB FB D HC IC JC"},E:{"1":"E F G A B C L M H iC jC kC LC 7B 8B lC mC nC MC NC 9B oC AC OC PC QC RC SC pC BC TC UC VC WC XC YC CC qC","2":"J GB K gC KC hC"},F:{"2":"0 G B C H N O P HB v w x y z IB JB KB LB MB NB rC sC tC uC 7B ZC vC 8B","322":"OB PB QB RB SB TB UB VB WB XB YB ZB aB bB cB dB eB fB gB hB iB jB kB lB mB nB oB pB qB rB sB tB uB vB wB xB yB zB 0B 1B 2B 3B 4B 5B 6B Q I R GC S T U V W X Y Z a b c d e f g h i j k l m n o p q r s t u"},G:{"1":"F zC 0C 1C 2C 3C 4C 5C 6C 7C 8C 9C AD BD CD DD ED FD MC NC 9B GD AC OC PC QC RC SC HD BC TC UC VC WC XC YC CC","2":"KC wC aC xC yC"},H:{"2":"ID"},I:{"2":"DC J D JD KD LD MD aC ND OD"},J:{"2":"E A"},K:{"2":"A B C 7B ZC 8B","322":"I"},L:{"322":"D"},M:{"2":"D"},N:{"1":"A B"},O:{"322":"9B"},P:{"2":"0 J v w x y z PD QD RD SD TD LC UD VD WD XD YD AC BC CC ZD"},Q:{"322":"aD"},R:{"322":"bD"},S:{"194":"cD dD"}},B:1,C:"Audio Tracks",D:true};
|
||||
module.exports={A:{A:{"1":"A B","2":"K E F G bC"},B:{"1":"C L M H N O P","322":"1 2 3 4 5 6 7 8 9 Q I R S T U V W X Y Z a b c d e f g h i j k l m n o p q r s t u AB BB CB DB EB FB D"},C:{"2":"0 cC DC J GB K E F G A B C L M H N O P HB v w x y z IB JB KB LB MB NB OB fC gC","194":"1 2 3 4 5 6 7 8 9 PB QB RB SB TB UB VB WB XB YB ZB aB bB cB dB eB fB gB hB iB jB kB lB mB nB oB EC pB FC qB rB sB tB uB vB wB xB yB zB 0B 1B 2B 3B 4B 5B 6B Q I R GC S T U V W X Y Z a b c d e f g h i j k l m n o p q r s t u AB BB CB DB EB FB D HC IC JC dC eC"},D:{"2":"0 J GB K E F G A B C L M H N O P HB v w x y z IB JB KB LB MB NB OB PB QB RB SB TB UB VB WB XB YB ZB aB","322":"1 2 3 4 5 6 7 8 9 bB cB dB eB fB gB hB iB jB kB lB mB nB oB EC pB FC qB rB sB tB uB vB wB xB yB zB 0B 1B 2B 3B 4B 5B 6B Q I R S T U V W X Y Z a b c d e f g h i j k l m n o p q r s t u AB BB CB DB EB FB D HC IC JC"},E:{"1":"E F G A B C L M H jC kC lC LC 7B 8B mC nC oC MC NC 9B pC AC OC PC QC RC SC qC BC TC UC VC WC XC YC CC rC","2":"J GB K hC KC iC"},F:{"2":"0 G B C H N O P HB v w x y z IB JB KB LB MB NB sC tC uC vC 7B ZC wC 8B","322":"OB PB QB RB SB TB UB VB WB XB YB ZB aB bB cB dB eB fB gB hB iB jB kB lB mB nB oB pB qB rB sB tB uB vB wB xB yB zB 0B 1B 2B 3B 4B 5B 6B Q I R GC S T U V W X Y Z a b c d e f g h i j k l m n o p q r s t u"},G:{"1":"F 0C 1C 2C 3C 4C 5C 6C 7C 8C 9C AD BD CD DD ED FD GD MC NC 9B HD AC OC PC QC RC SC ID BC TC UC VC WC XC YC CC","2":"KC xC aC yC zC"},H:{"2":"JD"},I:{"2":"DC J D KD LD MD ND aC OD PD"},J:{"2":"E A"},K:{"2":"A B C 7B ZC 8B","322":"I"},L:{"322":"D"},M:{"2":"D"},N:{"1":"A B"},O:{"322":"9B"},P:{"2":"0 J v w x y z QD RD SD TD UD LC VD WD XD YD ZD AC BC CC aD"},Q:{"322":"bD"},R:{"322":"cD"},S:{"194":"dD eD"}},B:1,C:"Audio Tracks",D:true};
|
||||
|
2
node_modules/caniuse-lite/data/features/autofocus.js
generated
vendored
2
node_modules/caniuse-lite/data/features/autofocus.js
generated
vendored
@ -1 +1 @@
|
||||
module.exports={A:{A:{"1":"A B","2":"K E F G bC"},B:{"1":"1 2 3 4 5 6 7 8 9 C L M H N O P Q I R S T U V W X Y Z a b c d e f g h i j k l m n o p q r s t u AB BB CB DB EB FB D"},C:{"1":"0 1 2 3 4 5 6 7 8 9 J GB K E F G A B C L M H N O P HB v w x y z IB JB KB LB MB NB OB PB QB RB SB TB UB VB WB XB YB ZB aB bB cB dB eB fB gB hB iB jB kB lB mB nB oB EC pB FC qB rB sB tB uB vB wB xB yB zB 0B 1B 2B 3B 4B 5B 6B Q I R GC S T U V W X Y Z a b c d e f g h i j k l m n o p q r s t u AB BB CB DB EB FB D HC IC JC dC","2":"cC DC eC fC"},D:{"1":"0 1 2 3 4 5 6 7 8 9 GB K E F G A B C L M H N O P HB v w x y z IB JB KB LB MB NB OB PB QB RB SB TB UB VB WB XB YB ZB aB bB cB dB eB fB gB hB iB jB kB lB mB nB oB EC pB FC qB rB sB tB uB vB wB xB yB zB 0B 1B 2B 3B 4B 5B 6B Q I R S T U V W X Y Z a b c d e f g h i j k l m n o p q r s t u AB BB CB DB EB FB D HC IC JC","2":"J"},E:{"1":"GB K E F G A B C L M H hC iC jC kC LC 7B 8B lC mC nC MC NC 9B oC AC OC PC QC RC SC pC BC TC UC VC WC XC YC CC qC","2":"J gC KC"},F:{"1":"0 B C H N O P HB v w x y z IB JB KB LB MB NB OB PB QB RB SB TB UB VB WB XB YB ZB aB bB cB dB eB fB gB hB iB jB kB lB mB nB oB pB qB rB sB tB uB vB wB xB yB zB 0B 1B 2B 3B 4B 5B 6B Q I R GC S T U V W X Y Z a b c d e f g h i j k l m n o p q r s t u rC sC tC uC 7B ZC vC 8B","2":"G"},G:{"2":"F KC wC aC xC yC zC 0C 1C 2C 3C 4C 5C 6C 7C 8C 9C AD BD CD DD ED FD MC NC 9B GD AC OC PC QC RC SC HD BC TC UC VC WC XC YC CC"},H:{"2":"ID"},I:{"1":"DC J D MD aC ND OD","2":"JD KD LD"},J:{"1":"E A"},K:{"1":"I","2":"A B C 7B ZC 8B"},L:{"1":"D"},M:{"1":"D"},N:{"1":"A B"},O:{"1":"9B"},P:{"1":"0 J v w x y z PD QD RD SD TD LC UD VD WD XD YD AC BC CC ZD"},Q:{"1":"aD"},R:{"1":"bD"},S:{"1":"dD","2":"cD"}},B:1,C:"Autofocus attribute",D:true};
|
||||
module.exports={A:{A:{"1":"A B","2":"K E F G bC"},B:{"1":"1 2 3 4 5 6 7 8 9 C L M H N O P Q I R S T U V W X Y Z a b c d e f g h i j k l m n o p q r s t u AB BB CB DB EB FB D"},C:{"1":"0 1 2 3 4 5 6 7 8 9 J GB K E F G A B C L M H N O P HB v w x y z IB JB KB LB MB NB OB PB QB RB SB TB UB VB WB XB YB ZB aB bB cB dB eB fB gB hB iB jB kB lB mB nB oB EC pB FC qB rB sB tB uB vB wB xB yB zB 0B 1B 2B 3B 4B 5B 6B Q I R GC S T U V W X Y Z a b c d e f g h i j k l m n o p q r s t u AB BB CB DB EB FB D HC IC JC dC eC","2":"cC DC fC gC"},D:{"1":"0 1 2 3 4 5 6 7 8 9 GB K E F G A B C L M H N O P HB v w x y z IB JB KB LB MB NB OB PB QB RB SB TB UB VB WB XB YB ZB aB bB cB dB eB fB gB hB iB jB kB lB mB nB oB EC pB FC qB rB sB tB uB vB wB xB yB zB 0B 1B 2B 3B 4B 5B 6B Q I R S T U V W X Y Z a b c d e f g h i j k l m n o p q r s t u AB BB CB DB EB FB D HC IC JC","2":"J"},E:{"1":"GB K E F G A B C L M H iC jC kC lC LC 7B 8B mC nC oC MC NC 9B pC AC OC PC QC RC SC qC BC TC UC VC WC XC YC CC rC","2":"J hC KC"},F:{"1":"0 B C H N O P HB v w x y z IB JB KB LB MB NB OB PB QB RB SB TB UB VB WB XB YB ZB aB bB cB dB eB fB gB hB iB jB kB lB mB nB oB pB qB rB sB tB uB vB wB xB yB zB 0B 1B 2B 3B 4B 5B 6B Q I R GC S T U V W X Y Z a b c d e f g h i j k l m n o p q r s t u sC tC uC vC 7B ZC wC 8B","2":"G"},G:{"2":"F KC xC aC yC zC 0C 1C 2C 3C 4C 5C 6C 7C 8C 9C AD BD CD DD ED FD GD MC NC 9B HD AC OC PC QC RC SC ID BC TC UC VC WC XC YC CC"},H:{"2":"JD"},I:{"1":"DC J D ND aC OD PD","2":"KD LD MD"},J:{"1":"E A"},K:{"1":"I","2":"A B C 7B ZC 8B"},L:{"1":"D"},M:{"1":"D"},N:{"1":"A B"},O:{"1":"9B"},P:{"1":"0 J v w x y z QD RD SD TD UD LC VD WD XD YD ZD AC BC CC aD"},Q:{"1":"bD"},R:{"1":"cD"},S:{"1":"eD","2":"dD"}},B:1,C:"Autofocus attribute",D:true};
|
||||
|
2
node_modules/caniuse-lite/data/features/auxclick.js
generated
vendored
2
node_modules/caniuse-lite/data/features/auxclick.js
generated
vendored
@ -1 +1 @@
|
||||
module.exports={A:{A:{"2":"K E F G A B bC"},B:{"1":"1 2 3 4 5 6 7 8 9 Q I R S T U V W X Y Z a b c d e f g h i j k l m n o p q r s t u AB BB CB DB EB FB D","2":"C L M H N O P"},C:{"2":"0 cC DC J GB K E F G A B C L M H N O P HB v w x y z IB JB KB LB MB NB OB PB QB RB SB TB UB VB WB XB YB ZB aB bB cB dB eB fB gB hB iB eC fC","129":"1 2 3 4 5 6 7 8 9 jB kB lB mB nB oB EC pB FC qB rB sB tB uB vB wB xB yB zB 0B 1B 2B 3B 4B 5B 6B Q I R GC S T U V W X Y Z a b c d e f g h i j k l m n o p q r s t u AB BB CB DB EB FB D HC IC JC dC"},D:{"1":"1 2 3 4 5 6 7 8 9 lB mB nB oB EC pB FC qB rB sB tB uB vB wB xB yB zB 0B 1B 2B 3B 4B 5B 6B Q I R S T U V W X Y Z a b c d e f g h i j k l m n o p q r s t u AB BB CB DB EB FB D HC IC JC","2":"0 J GB K E F G A B C L M H N O P HB v w x y z IB JB KB LB MB NB OB PB QB RB SB TB UB VB WB XB YB ZB aB bB cB dB eB fB gB hB iB jB kB"},E:{"2":"J GB K E F G A B C L M H gC KC hC iC jC kC LC 7B 8B lC mC nC MC NC 9B oC AC OC PC QC RC SC pC BC TC UC VC WC XC YC CC qC"},F:{"1":"YB ZB aB bB cB dB eB fB gB hB iB jB kB lB mB nB oB pB qB rB sB tB uB vB wB xB yB zB 0B 1B 2B 3B 4B 5B 6B Q I R GC S T U V W X Y Z a b c d e f g h i j k l m n o p q r s t u","2":"0 G B C H N O P HB v w x y z IB JB KB LB MB NB OB PB QB RB SB TB UB VB WB XB rC sC tC uC 7B ZC vC 8B"},G:{"2":"F KC wC aC xC yC zC 0C 1C 2C 3C 4C 5C 6C 7C 8C 9C AD BD CD DD ED FD MC NC 9B GD AC OC PC QC RC SC HD BC TC UC VC WC XC YC CC"},H:{"2":"ID"},I:{"1":"D","2":"DC J JD KD LD MD aC ND OD"},J:{"2":"E A"},K:{"1":"I","2":"A B C 7B ZC 8B"},L:{"1":"D"},M:{"1":"D"},N:{"2":"A B"},O:{"1":"9B"},P:{"1":"0 v w x y z PD QD RD SD TD LC UD VD WD XD YD AC BC CC ZD","2":"J"},Q:{"1":"aD"},R:{"1":"bD"},S:{"2":"cD dD"}},B:5,C:"Auxclick",D:true};
|
||||
module.exports={A:{A:{"2":"K E F G A B bC"},B:{"1":"1 2 3 4 5 6 7 8 9 Q I R S T U V W X Y Z a b c d e f g h i j k l m n o p q r s t u AB BB CB DB EB FB D","2":"C L M H N O P"},C:{"2":"0 cC DC J GB K E F G A B C L M H N O P HB v w x y z IB JB KB LB MB NB OB PB QB RB SB TB UB VB WB XB YB ZB aB bB cB dB eB fB gB hB iB fC gC","129":"1 2 3 4 5 6 7 8 9 jB kB lB mB nB oB EC pB FC qB rB sB tB uB vB wB xB yB zB 0B 1B 2B 3B 4B 5B 6B Q I R GC S T U V W X Y Z a b c d e f g h i j k l m n o p q r s t u AB BB CB DB EB FB D HC IC JC dC eC"},D:{"1":"1 2 3 4 5 6 7 8 9 lB mB nB oB EC pB FC qB rB sB tB uB vB wB xB yB zB 0B 1B 2B 3B 4B 5B 6B Q I R S T U V W X Y Z a b c d e f g h i j k l m n o p q r s t u AB BB CB DB EB FB D HC IC JC","2":"0 J GB K E F G A B C L M H N O P HB v w x y z IB JB KB LB MB NB OB PB QB RB SB TB UB VB WB XB YB ZB aB bB cB dB eB fB gB hB iB jB kB"},E:{"2":"J GB K E F G A B C L M H hC KC iC jC kC lC LC 7B 8B mC nC oC MC NC 9B pC AC OC PC QC RC SC qC BC TC UC VC WC XC YC CC rC"},F:{"1":"YB ZB aB bB cB dB eB fB gB hB iB jB kB lB mB nB oB pB qB rB sB tB uB vB wB xB yB zB 0B 1B 2B 3B 4B 5B 6B Q I R GC S T U V W X Y Z a b c d e f g h i j k l m n o p q r s t u","2":"0 G B C H N O P HB v w x y z IB JB KB LB MB NB OB PB QB RB SB TB UB VB WB XB sC tC uC vC 7B ZC wC 8B"},G:{"2":"F KC xC aC yC zC 0C 1C 2C 3C 4C 5C 6C 7C 8C 9C AD BD CD DD ED FD GD MC NC 9B HD AC OC PC QC RC SC ID BC TC UC VC WC XC YC CC"},H:{"2":"JD"},I:{"1":"D","2":"DC J KD LD MD ND aC OD PD"},J:{"2":"E A"},K:{"1":"I","2":"A B C 7B ZC 8B"},L:{"1":"D"},M:{"1":"D"},N:{"2":"A B"},O:{"1":"9B"},P:{"1":"0 v w x y z QD RD SD TD UD LC VD WD XD YD ZD AC BC CC aD","2":"J"},Q:{"1":"bD"},R:{"1":"cD"},S:{"2":"dD eD"}},B:5,C:"Auxclick",D:true};
|
||||
|
2
node_modules/caniuse-lite/data/features/av1.js
generated
vendored
2
node_modules/caniuse-lite/data/features/av1.js
generated
vendored
@ -1 +1 @@
|
||||
module.exports={A:{A:{"2":"K E F G A B bC"},B:{"1":"AB BB CB DB EB FB D","2":"5 6 7 8 9 C L M H N O","194":"1 2 3 4 P Q I R S T U V W X Y Z a b c d e f g h i j k l m n o p q r s t u"},C:{"1":"1 2 3 4 5 6 7 8 9 vB wB xB yB zB 0B 1B 2B 3B 4B 5B 6B Q I R GC S T U V W X Y Z a b c d e f g h i j k l m n o p q r s t u AB BB CB DB EB FB D HC IC JC dC","2":"0 cC DC J GB K E F G A B C L M H N O P HB v w x y z IB JB KB LB MB NB OB PB QB RB SB TB UB VB WB XB YB ZB aB bB cB dB eB fB gB hB iB jB kB eC fC","66":"lB mB nB oB EC pB FC qB rB sB","260":"tB","516":"uB"},D:{"1":"1 2 3 4 5 6 7 8 9 yB zB 0B 1B 2B 3B 4B 5B 6B Q I R S T U V W X Y Z a b c d e f g h i j k l m n o p q r s t u AB BB CB DB EB FB D HC IC JC","2":"0 J GB K E F G A B C L M H N O P HB v w x y z IB JB KB LB MB NB OB PB QB RB SB TB UB VB WB XB YB ZB aB bB cB dB eB fB gB hB iB jB kB lB mB nB oB EC pB FC qB rB sB tB uB","66":"vB wB xB"},E:{"2":"J GB K E F G A B C L M H gC KC hC iC jC kC LC 7B 8B lC mC nC MC NC 9B oC AC OC PC QC RC SC pC","1028":"BC TC UC VC WC XC YC CC qC"},F:{"1":"nB oB pB qB rB sB tB uB vB wB xB yB zB 0B 1B 2B 3B 4B 5B 6B Q I R GC S T U V W X Y Z a b c d e f g h i j k l m n o p q r s t u","2":"0 G B C H N O P HB v w x y z IB JB KB LB MB NB OB PB QB RB SB TB UB VB WB XB YB ZB aB bB cB dB eB fB gB hB iB jB kB lB mB rC sC tC uC 7B ZC vC 8B"},G:{"2":"F KC wC aC xC yC zC 0C 1C 2C 3C 4C 5C 6C 7C 8C 9C AD BD CD DD ED FD MC NC 9B GD AC OC PC QC RC SC HD","1028":"BC TC UC VC WC XC YC CC"},H:{"2":"ID"},I:{"1":"D","2":"DC J JD KD LD MD aC ND OD"},J:{"2":"E A"},K:{"1":"I","2":"A B C 7B ZC 8B"},L:{"1":"D"},M:{"1":"D"},N:{"2":"A B"},O:{"1":"9B"},P:{"1":"0 v w x y z VD WD XD YD AC BC CC ZD","2":"J PD QD RD SD TD LC UD"},Q:{"1":"aD"},R:{"1":"bD"},S:{"2":"cD dD"}},B:6,C:"AV1 video format",D:true};
|
||||
module.exports={A:{A:{"2":"K E F G A B bC"},B:{"1":"AB BB CB DB EB FB D","2":"5 6 7 8 9 C L M H N O","194":"1 2 3 4 P Q I R S T U V W X Y Z a b c d e f g h i j k l m n o p q r s t u"},C:{"1":"1 2 3 4 5 6 7 8 9 vB wB xB yB zB 0B 1B 2B 3B 4B 5B 6B Q I R GC S T U V W X Y Z a b c d e f g h i j k l m n o p q r s t u AB BB CB DB EB FB D HC IC JC dC eC","2":"0 cC DC J GB K E F G A B C L M H N O P HB v w x y z IB JB KB LB MB NB OB PB QB RB SB TB UB VB WB XB YB ZB aB bB cB dB eB fB gB hB iB jB kB fC gC","66":"lB mB nB oB EC pB FC qB rB sB","260":"tB","516":"uB"},D:{"1":"1 2 3 4 5 6 7 8 9 yB zB 0B 1B 2B 3B 4B 5B 6B Q I R S T U V W X Y Z a b c d e f g h i j k l m n o p q r s t u AB BB CB DB EB FB D HC IC JC","2":"0 J GB K E F G A B C L M H N O P HB v w x y z IB JB KB LB MB NB OB PB QB RB SB TB UB VB WB XB YB ZB aB bB cB dB eB fB gB hB iB jB kB lB mB nB oB EC pB FC qB rB sB tB uB","66":"vB wB xB"},E:{"2":"J GB K E F G A B C L M H hC KC iC jC kC lC LC 7B 8B mC nC oC MC NC 9B pC AC OC PC QC RC SC qC","1028":"BC TC UC VC WC XC YC CC rC"},F:{"1":"nB oB pB qB rB sB tB uB vB wB xB yB zB 0B 1B 2B 3B 4B 5B 6B Q I R GC S T U V W X Y Z a b c d e f g h i j k l m n o p q r s t u","2":"0 G B C H N O P HB v w x y z IB JB KB LB MB NB OB PB QB RB SB TB UB VB WB XB YB ZB aB bB cB dB eB fB gB hB iB jB kB lB mB sC tC uC vC 7B ZC wC 8B"},G:{"2":"F KC xC aC yC zC 0C 1C 2C 3C 4C 5C 6C 7C 8C 9C AD BD CD DD ED FD GD MC NC 9B HD AC OC PC QC RC SC ID","1028":"BC TC UC VC WC XC YC CC"},H:{"2":"JD"},I:{"1":"D","2":"DC J KD LD MD ND aC OD PD"},J:{"2":"E A"},K:{"1":"I","2":"A B C 7B ZC 8B"},L:{"1":"D"},M:{"1":"D"},N:{"2":"A B"},O:{"1":"9B"},P:{"1":"0 v w x y z WD XD YD ZD AC BC CC aD","2":"J QD RD SD TD UD LC VD"},Q:{"1":"bD"},R:{"1":"cD"},S:{"2":"dD eD"}},B:6,C:"AV1 video format",D:true};
|
||||
|
2
node_modules/caniuse-lite/data/features/avif.js
generated
vendored
2
node_modules/caniuse-lite/data/features/avif.js
generated
vendored
@ -1 +1 @@
|
||||
module.exports={A:{A:{"2":"K E F G A B bC"},B:{"1":"AB BB CB DB EB FB D","2":"1 2 7 8 9 C L M H N O P Q I R S T U V W X Y Z a b c d e f g h i j k l m n o p q r s t u","4162":"3 4 5 6"},C:{"1":"2 3 4 5 6 7 8 9 AB BB CB DB EB FB D HC IC JC dC","2":"0 cC DC J GB K E F G A B C L M H N O P HB v w x y z IB JB KB LB MB NB OB PB QB RB SB TB UB VB WB XB YB ZB aB bB cB dB eB fB gB hB iB jB kB lB mB nB oB EC pB FC qB rB sB tB uB vB wB xB yB zB 0B 1B 2B 3B 4B eC fC","194":"5B 6B Q I R GC S T U V W X Y Z a b","257":"c d e f g h i j k l m n o p q r s t","2049":"1 u"},D:{"1":"1 2 3 4 5 6 7 8 9 U V W X Y Z a b c d e f g h i j k l m n o p q r s t u AB BB CB DB EB FB D HC IC JC","2":"0 J GB K E F G A B C L M H N O P HB v w x y z IB JB KB LB MB NB OB PB QB RB SB TB UB VB WB XB YB ZB aB bB cB dB eB fB gB hB iB jB kB lB mB nB oB EC pB FC qB rB sB tB uB vB wB xB yB zB 0B 1B 2B 3B 4B 5B 6B Q I R S T"},E:{"1":"RC SC pC BC TC UC VC WC XC YC CC qC","2":"J GB K E F G A B C L M H gC KC hC iC jC kC LC 7B 8B lC mC nC MC NC 9B oC AC","1796":"OC PC QC"},F:{"1":"zB 0B 1B 2B 3B 4B 5B 6B Q I R GC S T U V W X Y Z a b c d e f g h i j k l m n o p q r s t u","2":"0 G B C H N O P HB v w x y z IB JB KB LB MB NB OB PB QB RB SB TB UB VB WB XB YB ZB aB bB cB dB eB fB gB hB iB jB kB lB mB nB oB pB qB rB sB tB uB vB wB xB yB rC sC tC uC 7B ZC vC 8B"},G:{"2":"F KC wC aC xC yC zC 0C 1C 2C 3C 4C 5C 6C 7C 8C 9C AD BD CD DD ED FD MC NC 9B GD","257":"RC SC HD BC TC UC VC WC XC YC CC","1281":"AC OC PC QC"},H:{"2":"ID"},I:{"1":"D","2":"DC J JD KD LD MD aC ND OD"},J:{"2":"E A"},K:{"1":"I","2":"A B C 7B ZC 8B"},L:{"1":"D"},M:{"1":"D"},N:{"2":"A B"},O:{"1":"9B"},P:{"1":"0 v w x y z XD YD AC BC CC ZD","2":"J PD QD RD SD TD LC UD VD WD"},Q:{"2":"aD"},R:{"1":"bD"},S:{"2":"cD dD"}},B:6,C:"AVIF image format",D:true};
|
||||
module.exports={A:{A:{"2":"K E F G A B bC"},B:{"1":"AB BB CB DB EB FB D","2":"1 2 7 8 9 C L M H N O P Q I R S T U V W X Y Z a b c d e f g h i j k l m n o p q r s t u","4162":"3 4 5 6"},C:{"1":"2 3 4 5 6 7 8 9 AB BB CB DB EB FB D HC IC JC dC eC","2":"0 cC DC J GB K E F G A B C L M H N O P HB v w x y z IB JB KB LB MB NB OB PB QB RB SB TB UB VB WB XB YB ZB aB bB cB dB eB fB gB hB iB jB kB lB mB nB oB EC pB FC qB rB sB tB uB vB wB xB yB zB 0B 1B 2B 3B 4B fC gC","194":"5B 6B Q I R GC S T U V W X Y Z a b","257":"c d e f g h i j k l m n o p q r s t","2049":"1 u"},D:{"1":"1 2 3 4 5 6 7 8 9 U V W X Y Z a b c d e f g h i j k l m n o p q r s t u AB BB CB DB EB FB D HC IC JC","2":"0 J GB K E F G A B C L M H N O P HB v w x y z IB JB KB LB MB NB OB PB QB RB SB TB UB VB WB XB YB ZB aB bB cB dB eB fB gB hB iB jB kB lB mB nB oB EC pB FC qB rB sB tB uB vB wB xB yB zB 0B 1B 2B 3B 4B 5B 6B Q I R S T"},E:{"1":"RC SC qC BC TC UC VC WC XC YC CC rC","2":"J GB K E F G A B C L M H hC KC iC jC kC lC LC 7B 8B mC nC oC MC NC 9B pC AC","1796":"OC PC QC"},F:{"1":"zB 0B 1B 2B 3B 4B 5B 6B Q I R GC S T U V W X Y Z a b c d e f g h i j k l m n o p q r s t u","2":"0 G B C H N O P HB v w x y z IB JB KB LB MB NB OB PB QB RB SB TB UB VB WB XB YB ZB aB bB cB dB eB fB gB hB iB jB kB lB mB nB oB pB qB rB sB tB uB vB wB xB yB sC tC uC vC 7B ZC wC 8B"},G:{"2":"F KC xC aC yC zC 0C 1C 2C 3C 4C 5C 6C 7C 8C 9C AD BD CD DD ED FD GD MC NC 9B HD","257":"RC SC ID BC TC UC VC WC XC YC CC","1281":"AC OC PC QC"},H:{"2":"JD"},I:{"1":"D","2":"DC J KD LD MD ND aC OD PD"},J:{"2":"E A"},K:{"1":"I","2":"A B C 7B ZC 8B"},L:{"1":"D"},M:{"1":"D"},N:{"2":"A B"},O:{"1":"9B"},P:{"1":"0 v w x y z YD ZD AC BC CC aD","2":"J QD RD SD TD UD LC VD WD XD"},Q:{"2":"bD"},R:{"1":"cD"},S:{"2":"dD eD"}},B:6,C:"AVIF image format",D:true};
|
||||
|
2
node_modules/caniuse-lite/data/features/background-attachment.js
generated
vendored
2
node_modules/caniuse-lite/data/features/background-attachment.js
generated
vendored
@ -1 +1 @@
|
||||
module.exports={A:{A:{"1":"G A B","132":"K E F bC"},B:{"1":"1 2 3 4 5 6 7 8 9 C L M H N O P Q I R S T U V W X Y Z a b c d e f g h i j k l m n o p q r s t u AB BB CB DB EB FB D"},C:{"1":"0 1 2 3 4 5 6 7 8 9 IB JB KB LB MB NB OB PB QB RB SB TB UB VB WB XB YB ZB aB bB cB dB eB fB gB hB iB jB kB lB mB nB oB EC pB FC qB rB sB tB uB vB wB xB yB zB 0B 1B 2B 3B 4B 5B 6B Q I R GC S T U V W X Y Z a b c d e f g h i j k l m n o p q r s t u AB BB CB DB EB FB D HC IC JC dC","132":"cC DC J GB K E F G A B C L M H N O P HB v w x y z eC fC"},D:{"1":"0 1 2 3 4 5 6 7 8 9 J GB K E F G A B C L M H N O P HB v w x y z IB JB KB LB MB NB OB PB QB RB SB TB UB VB WB XB YB ZB aB bB cB dB eB fB gB hB iB jB kB lB mB nB oB EC pB FC qB rB sB tB uB vB wB xB yB zB 0B 1B 2B 3B 4B 5B 6B Q I R S T U V W X Y Z a b c d e f g h i j k l m n o p q r s t u AB BB CB DB EB FB D HC IC JC"},E:{"1":"GB K E F G A B C hC iC jC kC LC 7B 8B NC 9B oC AC OC PC QC RC SC pC BC TC UC VC WC XC YC CC qC","132":"J L gC KC lC","2050":"M H mC nC MC"},F:{"1":"0 B C H N O P HB v w x y z IB JB KB LB MB NB OB PB QB RB SB TB UB VB WB XB YB ZB aB bB cB dB eB fB gB hB iB jB kB lB mB nB oB pB qB rB sB tB uB vB wB xB yB zB 0B 1B 2B 3B 4B 5B 6B Q I R GC S T U V W X Y Z a b c d e f g h i j k l m n o p q r s t u tC uC 7B ZC vC 8B","132":"G rC sC"},G:{"2":"KC wC aC","772":"F xC yC zC 0C 1C 2C 3C 4C 5C 6C 7C 8C","2050":"9C AD BD CD DD ED FD MC NC 9B GD AC OC PC QC RC SC HD BC TC UC VC WC XC YC CC"},H:{"2":"ID"},I:{"2":"DC J D JD KD LD ND OD","132":"MD aC"},J:{"260":"E A"},K:{"1":"B C I 7B ZC 8B","132":"A"},L:{"1":"D"},M:{"1":"D"},N:{"1":"A B"},O:{"1":"9B"},P:{"2":"J","1028":"0 v w x y z PD QD RD SD TD LC UD VD WD XD YD AC BC CC ZD"},Q:{"1":"aD"},R:{"1":"bD"},S:{"1":"cD dD"}},B:4,C:"CSS background-attachment",D:true};
|
||||
module.exports={A:{A:{"1":"G A B","132":"K E F bC"},B:{"1":"1 2 3 4 5 6 7 8 9 C L M H N O P Q I R S T U V W X Y Z a b c d e f g h i j k l m n o p q r s t u AB BB CB DB EB FB D"},C:{"1":"0 1 2 3 4 5 6 7 8 9 IB JB KB LB MB NB OB PB QB RB SB TB UB VB WB XB YB ZB aB bB cB dB eB fB gB hB iB jB kB lB mB nB oB EC pB FC qB rB sB tB uB vB wB xB yB zB 0B 1B 2B 3B 4B 5B 6B Q I R GC S T U V W X Y Z a b c d e f g h i j k l m n o p q r s t u AB BB CB DB EB FB D HC IC JC dC eC","132":"cC DC J GB K E F G A B C L M H N O P HB v w x y z fC gC"},D:{"1":"0 1 2 3 4 5 6 7 8 9 J GB K E F G A B C L M H N O P HB v w x y z IB JB KB LB MB NB OB PB QB RB SB TB UB VB WB XB YB ZB aB bB cB dB eB fB gB hB iB jB kB lB mB nB oB EC pB FC qB rB sB tB uB vB wB xB yB zB 0B 1B 2B 3B 4B 5B 6B Q I R S T U V W X Y Z a b c d e f g h i j k l m n o p q r s t u AB BB CB DB EB FB D HC IC JC"},E:{"1":"GB K E F G A B C iC jC kC lC LC 7B 8B NC 9B pC AC OC PC QC RC SC qC BC TC UC VC WC XC YC CC rC","132":"J L hC KC mC","2050":"M H nC oC MC"},F:{"1":"0 B C H N O P HB v w x y z IB JB KB LB MB NB OB PB QB RB SB TB UB VB WB XB YB ZB aB bB cB dB eB fB gB hB iB jB kB lB mB nB oB pB qB rB sB tB uB vB wB xB yB zB 0B 1B 2B 3B 4B 5B 6B Q I R GC S T U V W X Y Z a b c d e f g h i j k l m n o p q r s t u uC vC 7B ZC wC 8B","132":"G sC tC"},G:{"2":"KC xC aC","772":"F yC zC 0C 1C 2C 3C 4C 5C 6C 7C 8C 9C","2050":"AD BD CD DD ED FD GD MC NC 9B HD AC OC PC QC RC SC ID BC TC UC VC WC XC YC CC"},H:{"2":"JD"},I:{"2":"DC J D KD LD MD OD PD","132":"ND aC"},J:{"260":"E A"},K:{"1":"B C I 7B ZC 8B","132":"A"},L:{"1":"D"},M:{"1":"D"},N:{"1":"A B"},O:{"1":"9B"},P:{"2":"J","1028":"0 v w x y z QD RD SD TD UD LC VD WD XD YD ZD AC BC CC aD"},Q:{"1":"bD"},R:{"1":"cD"},S:{"1":"dD eD"}},B:4,C:"CSS background-attachment",D:true};
|
||||
|
2
node_modules/caniuse-lite/data/features/background-clip-text.js
generated
vendored
2
node_modules/caniuse-lite/data/features/background-clip-text.js
generated
vendored
@ -1 +1 @@
|
||||
module.exports={A:{A:{"2":"K E F G A B bC"},B:{"1":"H N O P","33":"C L M","132":"9 AB BB CB DB EB FB D","164":"1 2 3 4 5 6 7 8 Q I R S T U V W X Y Z a b c d e f g h i j k l m n o p q r s t u"},C:{"1":"1 2 3 4 5 6 7 8 9 fB gB hB iB jB kB lB mB nB oB EC pB FC qB rB sB tB uB vB wB xB yB zB 0B 1B 2B 3B 4B 5B 6B Q I R GC S T U V W X Y Z a b c d e f g h i j k l m n o p q r s t u AB BB CB DB EB FB D HC IC JC dC","2":"0 cC DC J GB K E F G A B C L M H N O P HB v w x y z IB JB KB LB MB NB OB PB QB RB SB TB UB VB WB XB YB ZB aB bB cB dB eB eC fC"},D:{"132":"9 AB BB CB DB EB FB D HC IC JC","164":"0 1 2 3 4 5 6 7 8 J GB K E F G A B C L M H N O P HB v w x y z IB JB KB LB MB NB OB PB QB RB SB TB UB VB WB XB YB ZB aB bB cB dB eB fB gB hB iB jB kB lB mB nB oB EC pB FC qB rB sB tB uB vB wB xB yB zB 0B 1B 2B 3B 4B 5B 6B Q I R S T U V W X Y Z a b c d e f g h i j k l m n o p q r s t u"},E:{"16":"gC KC","132":"9B oC AC OC PC QC RC SC pC BC TC UC VC WC XC YC CC qC","388":"M H mC nC MC NC","420":"J GB K E F G A B C L hC iC jC kC LC 7B 8B lC"},F:{"2":"G B C rC sC tC uC 7B ZC vC 8B","132":"p q r s t u","164":"0 H N O P HB v w x y z IB JB KB LB MB NB OB PB QB RB SB TB UB VB WB XB YB ZB aB bB cB dB eB fB gB hB iB jB kB lB mB nB oB pB qB rB sB tB uB vB wB xB yB zB 0B 1B 2B 3B 4B 5B 6B Q I R GC S T U V W X Y Z a b c d e f g h i j k l m n o"},G:{"16":"KC wC aC xC","132":"9B GD AC OC PC QC RC SC HD BC TC UC VC WC XC YC CC","388":"DD ED FD MC NC","420":"F yC zC 0C 1C 2C 3C 4C 5C 6C 7C 8C 9C AD BD CD"},H:{"2":"ID"},I:{"16":"DC JD KD LD","132":"D","164":"J MD aC ND OD"},J:{"164":"E A"},K:{"16":"A B C 7B ZC 8B","132":"I"},L:{"132":"D"},M:{"1":"D"},N:{"2":"A B"},O:{"164":"9B"},P:{"1":"0","164":"J v w x y z PD QD RD SD TD LC UD VD WD XD YD AC BC CC ZD"},Q:{"164":"aD"},R:{"164":"bD"},S:{"1":"cD dD"}},B:7,C:"Background-clip: text",D:true};
|
||||
module.exports={A:{A:{"2":"K E F G A B bC"},B:{"1":"H N O P","33":"C L M","132":"9 AB BB CB DB EB FB D","164":"1 2 3 4 5 6 7 8 Q I R S T U V W X Y Z a b c d e f g h i j k l m n o p q r s t u"},C:{"1":"1 2 3 4 5 6 7 8 9 fB gB hB iB jB kB lB mB nB oB EC pB FC qB rB sB tB uB vB wB xB yB zB 0B 1B 2B 3B 4B 5B 6B Q I R GC S T U V W X Y Z a b c d e f g h i j k l m n o p q r s t u AB BB CB DB EB FB D HC IC JC dC eC","2":"0 cC DC J GB K E F G A B C L M H N O P HB v w x y z IB JB KB LB MB NB OB PB QB RB SB TB UB VB WB XB YB ZB aB bB cB dB eB fC gC"},D:{"132":"9 AB BB CB DB EB FB D HC IC JC","164":"0 1 2 3 4 5 6 7 8 J GB K E F G A B C L M H N O P HB v w x y z IB JB KB LB MB NB OB PB QB RB SB TB UB VB WB XB YB ZB aB bB cB dB eB fB gB hB iB jB kB lB mB nB oB EC pB FC qB rB sB tB uB vB wB xB yB zB 0B 1B 2B 3B 4B 5B 6B Q I R S T U V W X Y Z a b c d e f g h i j k l m n o p q r s t u"},E:{"16":"hC KC","132":"9B pC AC OC PC QC RC SC qC BC TC UC VC WC XC YC CC rC","388":"M H nC oC MC NC","420":"J GB K E F G A B C L iC jC kC lC LC 7B 8B mC"},F:{"2":"G B C sC tC uC vC 7B ZC wC 8B","132":"p q r s t u","164":"0 H N O P HB v w x y z IB JB KB LB MB NB OB PB QB RB SB TB UB VB WB XB YB ZB aB bB cB dB eB fB gB hB iB jB kB lB mB nB oB pB qB rB sB tB uB vB wB xB yB zB 0B 1B 2B 3B 4B 5B 6B Q I R GC S T U V W X Y Z a b c d e f g h i j k l m n o"},G:{"16":"KC xC aC yC","132":"9B HD AC OC PC QC RC SC ID BC TC UC VC WC XC YC CC","388":"ED FD GD MC NC","420":"F zC 0C 1C 2C 3C 4C 5C 6C 7C 8C 9C AD BD CD DD"},H:{"2":"JD"},I:{"16":"DC KD LD MD","132":"D","164":"J ND aC OD PD"},J:{"164":"E A"},K:{"16":"A B C 7B ZC 8B","132":"I"},L:{"132":"D"},M:{"1":"D"},N:{"2":"A B"},O:{"164":"9B"},P:{"1":"0","164":"J v w x y z QD RD SD TD UD LC VD WD XD YD ZD AC BC CC aD"},Q:{"164":"bD"},R:{"164":"cD"},S:{"1":"dD eD"}},B:7,C:"Background-clip: text",D:true};
|
||||
|
2
node_modules/caniuse-lite/data/features/background-img-opts.js
generated
vendored
2
node_modules/caniuse-lite/data/features/background-img-opts.js
generated
vendored
@ -1 +1 @@
|
||||
module.exports={A:{A:{"1":"G A B","2":"K E F bC"},B:{"1":"1 2 3 4 5 6 7 8 9 C L M H N O P Q I R S T U V W X Y Z a b c d e f g h i j k l m n o p q r s t u AB BB CB DB EB FB D"},C:{"1":"0 1 2 3 4 5 6 7 8 9 J GB K E F G A B C L M H N O P HB v w x y z IB JB KB LB MB NB OB PB QB RB SB TB UB VB WB XB YB ZB aB bB cB dB eB fB gB hB iB jB kB lB mB nB oB EC pB FC qB rB sB tB uB vB wB xB yB zB 0B 1B 2B 3B 4B 5B 6B Q I R GC S T U V W X Y Z a b c d e f g h i j k l m n o p q r s t u AB BB CB DB EB FB D HC IC JC dC","2":"cC DC eC","36":"fC"},D:{"1":"0 1 2 3 4 5 6 7 8 9 H N O P HB v w x y z IB JB KB LB MB NB OB PB QB RB SB TB UB VB WB XB YB ZB aB bB cB dB eB fB gB hB iB jB kB lB mB nB oB EC pB FC qB rB sB tB uB vB wB xB yB zB 0B 1B 2B 3B 4B 5B 6B Q I R S T U V W X Y Z a b c d e f g h i j k l m n o p q r s t u AB BB CB DB EB FB D HC IC JC","516":"J GB K E F G A B C L M"},E:{"1":"E F G A B C L M H jC kC LC 7B 8B lC mC nC MC NC 9B oC AC OC PC QC RC SC pC BC TC UC VC WC XC YC CC qC","772":"J GB K gC KC hC iC"},F:{"1":"0 B C H N O P HB v w x y z IB JB KB LB MB NB OB PB QB RB SB TB UB VB WB XB YB ZB aB bB cB dB eB fB gB hB iB jB kB lB mB nB oB pB qB rB sB tB uB vB wB xB yB zB 0B 1B 2B 3B 4B 5B 6B Q I R GC S T U V W X Y Z a b c d e f g h i j k l m n o p q r s t u tC uC 7B ZC vC 8B","2":"G rC","36":"sC"},G:{"1":"F zC 0C 1C 2C 3C 4C 5C 6C 7C 8C 9C AD BD CD DD ED FD MC NC 9B GD AC OC PC QC RC SC HD BC TC UC VC WC XC YC CC","4":"KC wC aC yC","516":"xC"},H:{"132":"ID"},I:{"1":"D ND OD","36":"JD","516":"DC J MD aC","548":"KD LD"},J:{"1":"E A"},K:{"1":"A B C I 7B ZC 8B"},L:{"1":"D"},M:{"1":"D"},N:{"1":"A B"},O:{"1":"9B"},P:{"1":"0 J v w x y z PD QD RD SD TD LC UD VD WD XD YD AC BC CC ZD"},Q:{"1":"aD"},R:{"1":"bD"},S:{"1":"cD dD"}},B:4,C:"CSS3 Background-image options",D:true};
|
||||
module.exports={A:{A:{"1":"G A B","2":"K E F bC"},B:{"1":"1 2 3 4 5 6 7 8 9 C L M H N O P Q I R S T U V W X Y Z a b c d e f g h i j k l m n o p q r s t u AB BB CB DB EB FB D"},C:{"1":"0 1 2 3 4 5 6 7 8 9 J GB K E F G A B C L M H N O P HB v w x y z IB JB KB LB MB NB OB PB QB RB SB TB UB VB WB XB YB ZB aB bB cB dB eB fB gB hB iB jB kB lB mB nB oB EC pB FC qB rB sB tB uB vB wB xB yB zB 0B 1B 2B 3B 4B 5B 6B Q I R GC S T U V W X Y Z a b c d e f g h i j k l m n o p q r s t u AB BB CB DB EB FB D HC IC JC dC eC","2":"cC DC fC","36":"gC"},D:{"1":"0 1 2 3 4 5 6 7 8 9 H N O P HB v w x y z IB JB KB LB MB NB OB PB QB RB SB TB UB VB WB XB YB ZB aB bB cB dB eB fB gB hB iB jB kB lB mB nB oB EC pB FC qB rB sB tB uB vB wB xB yB zB 0B 1B 2B 3B 4B 5B 6B Q I R S T U V W X Y Z a b c d e f g h i j k l m n o p q r s t u AB BB CB DB EB FB D HC IC JC","516":"J GB K E F G A B C L M"},E:{"1":"E F G A B C L M H kC lC LC 7B 8B mC nC oC MC NC 9B pC AC OC PC QC RC SC qC BC TC UC VC WC XC YC CC rC","772":"J GB K hC KC iC jC"},F:{"1":"0 B C H N O P HB v w x y z IB JB KB LB MB NB OB PB QB RB SB TB UB VB WB XB YB ZB aB bB cB dB eB fB gB hB iB jB kB lB mB nB oB pB qB rB sB tB uB vB wB xB yB zB 0B 1B 2B 3B 4B 5B 6B Q I R GC S T U V W X Y Z a b c d e f g h i j k l m n o p q r s t u uC vC 7B ZC wC 8B","2":"G sC","36":"tC"},G:{"1":"F 0C 1C 2C 3C 4C 5C 6C 7C 8C 9C AD BD CD DD ED FD GD MC NC 9B HD AC OC PC QC RC SC ID BC TC UC VC WC XC YC CC","4":"KC xC aC zC","516":"yC"},H:{"132":"JD"},I:{"1":"D OD PD","36":"KD","516":"DC J ND aC","548":"LD MD"},J:{"1":"E A"},K:{"1":"A B C I 7B ZC 8B"},L:{"1":"D"},M:{"1":"D"},N:{"1":"A B"},O:{"1":"9B"},P:{"1":"0 J v w x y z QD RD SD TD UD LC VD WD XD YD ZD AC BC CC aD"},Q:{"1":"bD"},R:{"1":"cD"},S:{"1":"dD eD"}},B:4,C:"CSS3 Background-image options",D:true};
|
||||
|
2
node_modules/caniuse-lite/data/features/background-position-x-y.js
generated
vendored
2
node_modules/caniuse-lite/data/features/background-position-x-y.js
generated
vendored
@ -1 +1 @@
|
||||
module.exports={A:{A:{"1":"K E F G A B bC"},B:{"1":"1 2 3 4 5 6 7 8 9 C L M H N O P Q I R S T U V W X Y Z a b c d e f g h i j k l m n o p q r s t u AB BB CB DB EB FB D"},C:{"1":"1 2 3 4 5 6 7 8 9 fB gB hB iB jB kB lB mB nB oB EC pB FC qB rB sB tB uB vB wB xB yB zB 0B 1B 2B 3B 4B 5B 6B Q I R GC S T U V W X Y Z a b c d e f g h i j k l m n o p q r s t u AB BB CB DB EB FB D HC IC JC dC","2":"0 cC DC J GB K E F G A B C L M H N O P HB v w x y z IB JB KB LB MB NB OB PB QB RB SB TB UB VB WB XB YB ZB aB bB cB dB eB eC fC"},D:{"1":"0 1 2 3 4 5 6 7 8 9 J GB K E F G A B C L M H N O P HB v w x y z IB JB KB LB MB NB OB PB QB RB SB TB UB VB WB XB YB ZB aB bB cB dB eB fB gB hB iB jB kB lB mB nB oB EC pB FC qB rB sB tB uB vB wB xB yB zB 0B 1B 2B 3B 4B 5B 6B Q I R S T U V W X Y Z a b c d e f g h i j k l m n o p q r s t u AB BB CB DB EB FB D HC IC JC"},E:{"1":"J GB K E F G A B C L M H gC KC hC iC jC kC LC 7B 8B lC mC nC MC NC 9B oC AC OC PC QC RC SC pC BC TC UC VC WC XC YC CC qC"},F:{"1":"0 H N O P HB v w x y z IB JB KB LB MB NB OB PB QB RB SB TB UB VB WB XB YB ZB aB bB cB dB eB fB gB hB iB jB kB lB mB nB oB pB qB rB sB tB uB vB wB xB yB zB 0B 1B 2B 3B 4B 5B 6B Q I R GC S T U V W X Y Z a b c d e f g h i j k l m n o p q r s t u","2":"G B C rC sC tC uC 7B ZC vC 8B"},G:{"1":"F KC wC aC xC yC zC 0C 1C 2C 3C 4C 5C 6C 7C 8C 9C AD BD CD DD ED FD MC NC 9B GD AC OC PC QC RC SC HD BC TC UC VC WC XC YC CC"},H:{"2":"ID"},I:{"1":"DC J D JD KD LD MD aC ND OD"},J:{"1":"E A"},K:{"1":"I","2":"A B C 7B ZC 8B"},L:{"1":"D"},M:{"1":"D"},N:{"1":"A B"},O:{"1":"9B"},P:{"1":"0 J v w x y z PD QD RD SD TD LC UD VD WD XD YD AC BC CC ZD"},Q:{"1":"aD"},R:{"1":"bD"},S:{"1":"dD","2":"cD"}},B:7,C:"background-position-x & background-position-y",D:true};
|
||||
module.exports={A:{A:{"1":"K E F G A B bC"},B:{"1":"1 2 3 4 5 6 7 8 9 C L M H N O P Q I R S T U V W X Y Z a b c d e f g h i j k l m n o p q r s t u AB BB CB DB EB FB D"},C:{"1":"1 2 3 4 5 6 7 8 9 fB gB hB iB jB kB lB mB nB oB EC pB FC qB rB sB tB uB vB wB xB yB zB 0B 1B 2B 3B 4B 5B 6B Q I R GC S T U V W X Y Z a b c d e f g h i j k l m n o p q r s t u AB BB CB DB EB FB D HC IC JC dC eC","2":"0 cC DC J GB K E F G A B C L M H N O P HB v w x y z IB JB KB LB MB NB OB PB QB RB SB TB UB VB WB XB YB ZB aB bB cB dB eB fC gC"},D:{"1":"0 1 2 3 4 5 6 7 8 9 J GB K E F G A B C L M H N O P HB v w x y z IB JB KB LB MB NB OB PB QB RB SB TB UB VB WB XB YB ZB aB bB cB dB eB fB gB hB iB jB kB lB mB nB oB EC pB FC qB rB sB tB uB vB wB xB yB zB 0B 1B 2B 3B 4B 5B 6B Q I R S T U V W X Y Z a b c d e f g h i j k l m n o p q r s t u AB BB CB DB EB FB D HC IC JC"},E:{"1":"J GB K E F G A B C L M H hC KC iC jC kC lC LC 7B 8B mC nC oC MC NC 9B pC AC OC PC QC RC SC qC BC TC UC VC WC XC YC CC rC"},F:{"1":"0 H N O P HB v w x y z IB JB KB LB MB NB OB PB QB RB SB TB UB VB WB XB YB ZB aB bB cB dB eB fB gB hB iB jB kB lB mB nB oB pB qB rB sB tB uB vB wB xB yB zB 0B 1B 2B 3B 4B 5B 6B Q I R GC S T U V W X Y Z a b c d e f g h i j k l m n o p q r s t u","2":"G B C sC tC uC vC 7B ZC wC 8B"},G:{"1":"F KC xC aC yC zC 0C 1C 2C 3C 4C 5C 6C 7C 8C 9C AD BD CD DD ED FD GD MC NC 9B HD AC OC PC QC RC SC ID BC TC UC VC WC XC YC CC"},H:{"2":"JD"},I:{"1":"DC J D KD LD MD ND aC OD PD"},J:{"1":"E A"},K:{"1":"I","2":"A B C 7B ZC 8B"},L:{"1":"D"},M:{"1":"D"},N:{"1":"A B"},O:{"1":"9B"},P:{"1":"0 J v w x y z QD RD SD TD UD LC VD WD XD YD ZD AC BC CC aD"},Q:{"1":"bD"},R:{"1":"cD"},S:{"1":"eD","2":"dD"}},B:7,C:"background-position-x & background-position-y",D:true};
|
||||
|
2
node_modules/caniuse-lite/data/features/background-repeat-round-space.js
generated
vendored
2
node_modules/caniuse-lite/data/features/background-repeat-round-space.js
generated
vendored
@ -1 +1 @@
|
||||
module.exports={A:{A:{"1":"A B","2":"K E F bC","132":"G"},B:{"1":"1 2 3 4 5 6 7 8 9 C L M H N O P Q I R S T U V W X Y Z a b c d e f g h i j k l m n o p q r s t u AB BB CB DB EB FB D"},C:{"1":"1 2 3 4 5 6 7 8 9 fB gB hB iB jB kB lB mB nB oB EC pB FC qB rB sB tB uB vB wB xB yB zB 0B 1B 2B 3B 4B 5B 6B Q I R GC S T U V W X Y Z a b c d e f g h i j k l m n o p q r s t u AB BB CB DB EB FB D HC IC JC dC","2":"0 cC DC J GB K E F G A B C L M H N O P HB v w x y z IB JB KB LB MB NB OB PB QB RB SB TB UB VB WB XB YB ZB aB bB cB dB eB eC fC"},D:{"1":"1 2 3 4 5 6 7 8 9 OB PB QB RB SB TB UB VB WB XB YB ZB aB bB cB dB eB fB gB hB iB jB kB lB mB nB oB EC pB FC qB rB sB tB uB vB wB xB yB zB 0B 1B 2B 3B 4B 5B 6B Q I R S T U V W X Y Z a b c d e f g h i j k l m n o p q r s t u AB BB CB DB EB FB D HC IC JC","2":"0 J GB K E F G A B C L M H N O P HB v w x y z IB JB KB LB MB NB"},E:{"1":"E F G A B C L M H jC kC LC 7B 8B lC mC nC MC NC 9B oC AC OC PC QC RC SC pC BC TC UC VC WC XC YC CC qC","2":"J GB K gC KC hC iC"},F:{"1":"0 B C HB v w x y z IB JB KB LB MB NB OB PB QB RB SB TB UB VB WB XB YB ZB aB bB cB dB eB fB gB hB iB jB kB lB mB nB oB pB qB rB sB tB uB vB wB xB yB zB 0B 1B 2B 3B 4B 5B 6B Q I R GC S T U V W X Y Z a b c d e f g h i j k l m n o p q r s t u tC uC 7B ZC vC 8B","2":"G H N O P rC sC"},G:{"1":"F zC 0C 1C 2C 3C 4C 5C 6C 7C 8C 9C AD BD CD DD ED FD MC NC 9B GD AC OC PC QC RC SC HD BC TC UC VC WC XC YC CC","2":"KC wC aC xC yC"},H:{"1":"ID"},I:{"1":"D ND OD","2":"DC J JD KD LD MD aC"},J:{"1":"A","2":"E"},K:{"1":"B C I 7B ZC 8B","2":"A"},L:{"1":"D"},M:{"1":"D"},N:{"1":"A B"},O:{"1":"9B"},P:{"1":"0 J v w x y z PD QD RD SD TD LC UD VD WD XD YD AC BC CC ZD"},Q:{"1":"aD"},R:{"1":"bD"},S:{"1":"dD","2":"cD"}},B:4,C:"CSS background-repeat round and space",D:true};
|
||||
module.exports={A:{A:{"1":"A B","2":"K E F bC","132":"G"},B:{"1":"1 2 3 4 5 6 7 8 9 C L M H N O P Q I R S T U V W X Y Z a b c d e f g h i j k l m n o p q r s t u AB BB CB DB EB FB D"},C:{"1":"1 2 3 4 5 6 7 8 9 fB gB hB iB jB kB lB mB nB oB EC pB FC qB rB sB tB uB vB wB xB yB zB 0B 1B 2B 3B 4B 5B 6B Q I R GC S T U V W X Y Z a b c d e f g h i j k l m n o p q r s t u AB BB CB DB EB FB D HC IC JC dC eC","2":"0 cC DC J GB K E F G A B C L M H N O P HB v w x y z IB JB KB LB MB NB OB PB QB RB SB TB UB VB WB XB YB ZB aB bB cB dB eB fC gC"},D:{"1":"1 2 3 4 5 6 7 8 9 OB PB QB RB SB TB UB VB WB XB YB ZB aB bB cB dB eB fB gB hB iB jB kB lB mB nB oB EC pB FC qB rB sB tB uB vB wB xB yB zB 0B 1B 2B 3B 4B 5B 6B Q I R S T U V W X Y Z a b c d e f g h i j k l m n o p q r s t u AB BB CB DB EB FB D HC IC JC","2":"0 J GB K E F G A B C L M H N O P HB v w x y z IB JB KB LB MB NB"},E:{"1":"E F G A B C L M H kC lC LC 7B 8B mC nC oC MC NC 9B pC AC OC PC QC RC SC qC BC TC UC VC WC XC YC CC rC","2":"J GB K hC KC iC jC"},F:{"1":"0 B C HB v w x y z IB JB KB LB MB NB OB PB QB RB SB TB UB VB WB XB YB ZB aB bB cB dB eB fB gB hB iB jB kB lB mB nB oB pB qB rB sB tB uB vB wB xB yB zB 0B 1B 2B 3B 4B 5B 6B Q I R GC S T U V W X Y Z a b c d e f g h i j k l m n o p q r s t u uC vC 7B ZC wC 8B","2":"G H N O P sC tC"},G:{"1":"F 0C 1C 2C 3C 4C 5C 6C 7C 8C 9C AD BD CD DD ED FD GD MC NC 9B HD AC OC PC QC RC SC ID BC TC UC VC WC XC YC CC","2":"KC xC aC yC zC"},H:{"1":"JD"},I:{"1":"D OD PD","2":"DC J KD LD MD ND aC"},J:{"1":"A","2":"E"},K:{"1":"B C I 7B ZC 8B","2":"A"},L:{"1":"D"},M:{"1":"D"},N:{"1":"A B"},O:{"1":"9B"},P:{"1":"0 J v w x y z QD RD SD TD UD LC VD WD XD YD ZD AC BC CC aD"},Q:{"1":"bD"},R:{"1":"cD"},S:{"1":"eD","2":"dD"}},B:4,C:"CSS background-repeat round and space",D:true};
|
||||
|
2
node_modules/caniuse-lite/data/features/background-sync.js
generated
vendored
2
node_modules/caniuse-lite/data/features/background-sync.js
generated
vendored
@ -1 +1 @@
|
||||
module.exports={A:{A:{"2":"K E F G A B bC"},B:{"1":"1 2 3 4 5 6 7 8 9 Q I R S T U V W X Y Z a b c d e f g h i j k l m n o p q r s t u AB BB CB DB EB FB D","2":"C L M H N O P"},C:{"2":"0 1 2 3 4 5 6 7 8 9 cC DC J GB K E F G A B C L M H N O P HB v w x y z IB JB KB LB MB NB OB PB QB RB SB TB UB VB WB XB YB ZB aB bB cB dB eB fB gB hB iB jB kB lB mB nB oB EC pB FC qB rB sB tB uB vB wB xB yB zB 0B 1B 2B 3B 4B 5B 6B Q I R GC S T U V W X Y Z a b c d e f g h i j k l m n o p q r s t u AB BB CB DB EB FB D HC eC fC","16":"IC JC dC"},D:{"1":"1 2 3 4 5 6 7 8 9 fB gB hB iB jB kB lB mB nB oB EC pB FC qB rB sB tB uB vB wB xB yB zB 0B 1B 2B 3B 4B 5B 6B Q I R S T U V W X Y Z a b c d e f g h i j k l m n o p q r s t u AB BB CB DB EB FB D HC IC JC","2":"0 J GB K E F G A B C L M H N O P HB v w x y z IB JB KB LB MB NB OB PB QB RB SB TB UB VB WB XB YB ZB aB bB cB dB eB"},E:{"2":"J GB K E F G A B C L M H gC KC hC iC jC kC LC 7B 8B lC mC nC MC NC 9B oC AC OC PC QC RC SC pC BC TC UC VC WC XC YC CC qC"},F:{"1":"YB ZB aB bB cB dB eB fB gB hB iB jB kB lB mB nB oB pB qB rB sB tB uB vB wB xB yB zB 0B 1B 2B 3B 4B 5B 6B Q I R GC S T U V W X Y Z a b c d e f g h i j k l m n o p q r s t u","2":"0 G B C H N O P HB v w x y z IB JB KB LB MB NB OB PB QB RB SB TB UB VB WB XB rC sC tC uC 7B ZC vC 8B"},G:{"2":"F KC wC aC xC yC zC 0C 1C 2C 3C 4C 5C 6C 7C 8C 9C AD BD CD DD ED FD MC NC 9B GD AC OC PC QC RC SC HD BC TC UC VC WC XC YC CC"},H:{"2":"ID"},I:{"1":"D","2":"DC J JD KD LD MD aC ND OD"},J:{"2":"E A"},K:{"1":"I","2":"A B C 7B ZC 8B"},L:{"1":"D"},M:{"2":"D"},N:{"2":"A B"},O:{"1":"9B"},P:{"1":"0 v w x y z PD QD RD SD TD LC UD VD WD XD YD AC BC CC ZD","2":"J"},Q:{"1":"aD"},R:{"1":"bD"},S:{"2":"cD dD"}},B:7,C:"Background Sync API",D:true};
|
||||
module.exports={A:{A:{"2":"K E F G A B bC"},B:{"1":"1 2 3 4 5 6 7 8 9 Q I R S T U V W X Y Z a b c d e f g h i j k l m n o p q r s t u AB BB CB DB EB FB D","2":"C L M H N O P"},C:{"2":"0 1 2 3 4 5 6 7 8 9 cC DC J GB K E F G A B C L M H N O P HB v w x y z IB JB KB LB MB NB OB PB QB RB SB TB UB VB WB XB YB ZB aB bB cB dB eB fB gB hB iB jB kB lB mB nB oB EC pB FC qB rB sB tB uB vB wB xB yB zB 0B 1B 2B 3B 4B 5B 6B Q I R GC S T U V W X Y Z a b c d e f g h i j k l m n o p q r s t u AB BB CB DB EB FB D HC IC fC gC","16":"JC dC eC"},D:{"1":"1 2 3 4 5 6 7 8 9 fB gB hB iB jB kB lB mB nB oB EC pB FC qB rB sB tB uB vB wB xB yB zB 0B 1B 2B 3B 4B 5B 6B Q I R S T U V W X Y Z a b c d e f g h i j k l m n o p q r s t u AB BB CB DB EB FB D HC IC JC","2":"0 J GB K E F G A B C L M H N O P HB v w x y z IB JB KB LB MB NB OB PB QB RB SB TB UB VB WB XB YB ZB aB bB cB dB eB"},E:{"2":"J GB K E F G A B C L M H hC KC iC jC kC lC LC 7B 8B mC nC oC MC NC 9B pC AC OC PC QC RC SC qC BC TC UC VC WC XC YC CC rC"},F:{"1":"YB ZB aB bB cB dB eB fB gB hB iB jB kB lB mB nB oB pB qB rB sB tB uB vB wB xB yB zB 0B 1B 2B 3B 4B 5B 6B Q I R GC S T U V W X Y Z a b c d e f g h i j k l m n o p q r s t u","2":"0 G B C H N O P HB v w x y z IB JB KB LB MB NB OB PB QB RB SB TB UB VB WB XB sC tC uC vC 7B ZC wC 8B"},G:{"2":"F KC xC aC yC zC 0C 1C 2C 3C 4C 5C 6C 7C 8C 9C AD BD CD DD ED FD GD MC NC 9B HD AC OC PC QC RC SC ID BC TC UC VC WC XC YC CC"},H:{"2":"JD"},I:{"1":"D","2":"DC J KD LD MD ND aC OD PD"},J:{"2":"E A"},K:{"1":"I","2":"A B C 7B ZC 8B"},L:{"1":"D"},M:{"2":"D"},N:{"2":"A B"},O:{"1":"9B"},P:{"1":"0 v w x y z QD RD SD TD UD LC VD WD XD YD ZD AC BC CC aD","2":"J"},Q:{"1":"bD"},R:{"1":"cD"},S:{"2":"dD eD"}},B:7,C:"Background Sync API",D:true};
|
||||
|
2
node_modules/caniuse-lite/data/features/battery-status.js
generated
vendored
2
node_modules/caniuse-lite/data/features/battery-status.js
generated
vendored
@ -1 +1 @@
|
||||
module.exports={A:{A:{"2":"K E F G A B bC"},B:{"1":"1 2 3 4 5 6 7 8 9 Q I R S T U V W X Y Z a b c d e f g h i j k l m n o p q r s t u AB BB CB DB EB FB D","2":"C L M H N O P"},C:{"1":"ZB aB bB cB dB eB fB gB hB","2":"1 2 3 4 5 6 7 8 9 cC DC J GB K E F G iB jB kB lB mB nB oB EC pB FC qB rB sB tB uB vB wB xB yB zB 0B 1B 2B 3B 4B 5B 6B Q I R GC S T U V W X Y Z a b c d e f g h i j k l m n o p q r s t u AB BB CB DB EB FB D HC IC JC dC eC fC","132":"0 N O P HB v w x y z IB JB KB LB MB NB OB PB QB RB SB TB UB VB WB XB YB","164":"A B C L M H"},D:{"1":"1 2 3 4 5 6 7 8 9 UB VB WB XB YB ZB aB bB cB dB eB fB gB hB iB jB kB lB mB nB oB EC pB FC qB rB sB tB uB vB wB xB yB zB 0B 1B 2B 3B 4B 5B 6B Q I R S T U V W X Y Z a b c d e f g h i j k l m n o p q r s t u AB BB CB DB EB FB D HC IC JC","2":"0 J GB K E F G A B C L M H N O P HB v w x y z IB JB KB LB MB NB OB PB QB RB SB","66":"TB"},E:{"2":"J GB K E F G A B C L M H gC KC hC iC jC kC LC 7B 8B lC mC nC MC NC 9B oC AC OC PC QC RC SC pC BC TC UC VC WC XC YC CC qC"},F:{"1":"0 IB JB KB LB MB NB OB PB QB RB SB TB UB VB WB XB YB ZB aB bB cB dB eB fB gB hB iB jB kB lB mB nB oB pB qB rB sB tB uB vB wB xB yB zB 0B 1B 2B 3B 4B 5B 6B Q I R GC S T U V W X Y Z a b c d e f g h i j k l m n o p q r s t u","2":"G B C H N O P HB v w x y z rC sC tC uC 7B ZC vC 8B"},G:{"2":"F KC wC aC xC yC zC 0C 1C 2C 3C 4C 5C 6C 7C 8C 9C AD BD CD DD ED FD MC NC 9B GD AC OC PC QC RC SC HD BC TC UC VC WC XC YC CC"},H:{"2":"ID"},I:{"1":"D","2":"DC J JD KD LD MD aC ND OD"},J:{"2":"E A"},K:{"1":"I","2":"A B C 7B ZC 8B"},L:{"1":"D"},M:{"2":"D"},N:{"2":"A B"},O:{"1":"9B"},P:{"1":"0 J v w x y z PD QD RD SD TD LC UD VD WD XD YD AC BC CC ZD"},Q:{"1":"aD"},R:{"1":"bD"},S:{"1":"cD","2":"dD"}},B:4,C:"Battery Status API",D:true};
|
||||
module.exports={A:{A:{"2":"K E F G A B bC"},B:{"1":"1 2 3 4 5 6 7 8 9 Q I R S T U V W X Y Z a b c d e f g h i j k l m n o p q r s t u AB BB CB DB EB FB D","2":"C L M H N O P"},C:{"1":"ZB aB bB cB dB eB fB gB hB","2":"1 2 3 4 5 6 7 8 9 cC DC J GB K E F G iB jB kB lB mB nB oB EC pB FC qB rB sB tB uB vB wB xB yB zB 0B 1B 2B 3B 4B 5B 6B Q I R GC S T U V W X Y Z a b c d e f g h i j k l m n o p q r s t u AB BB CB DB EB FB D HC IC JC dC eC fC gC","132":"0 N O P HB v w x y z IB JB KB LB MB NB OB PB QB RB SB TB UB VB WB XB YB","164":"A B C L M H"},D:{"1":"1 2 3 4 5 6 7 8 9 UB VB WB XB YB ZB aB bB cB dB eB fB gB hB iB jB kB lB mB nB oB EC pB FC qB rB sB tB uB vB wB xB yB zB 0B 1B 2B 3B 4B 5B 6B Q I R S T U V W X Y Z a b c d e f g h i j k l m n o p q r s t u AB BB CB DB EB FB D HC IC JC","2":"0 J GB K E F G A B C L M H N O P HB v w x y z IB JB KB LB MB NB OB PB QB RB SB","66":"TB"},E:{"2":"J GB K E F G A B C L M H hC KC iC jC kC lC LC 7B 8B mC nC oC MC NC 9B pC AC OC PC QC RC SC qC BC TC UC VC WC XC YC CC rC"},F:{"1":"0 IB JB KB LB MB NB OB PB QB RB SB TB UB VB WB XB YB ZB aB bB cB dB eB fB gB hB iB jB kB lB mB nB oB pB qB rB sB tB uB vB wB xB yB zB 0B 1B 2B 3B 4B 5B 6B Q I R GC S T U V W X Y Z a b c d e f g h i j k l m n o p q r s t u","2":"G B C H N O P HB v w x y z sC tC uC vC 7B ZC wC 8B"},G:{"2":"F KC xC aC yC zC 0C 1C 2C 3C 4C 5C 6C 7C 8C 9C AD BD CD DD ED FD GD MC NC 9B HD AC OC PC QC RC SC ID BC TC UC VC WC XC YC CC"},H:{"2":"JD"},I:{"1":"D","2":"DC J KD LD MD ND aC OD PD"},J:{"2":"E A"},K:{"1":"I","2":"A B C 7B ZC 8B"},L:{"1":"D"},M:{"2":"D"},N:{"2":"A B"},O:{"1":"9B"},P:{"1":"0 J v w x y z QD RD SD TD UD LC VD WD XD YD ZD AC BC CC aD"},Q:{"1":"bD"},R:{"1":"cD"},S:{"1":"dD","2":"eD"}},B:4,C:"Battery Status API",D:true};
|
||||
|
2
node_modules/caniuse-lite/data/features/beacon.js
generated
vendored
2
node_modules/caniuse-lite/data/features/beacon.js
generated
vendored
@ -1 +1 @@
|
||||
module.exports={A:{A:{"2":"K E F G A B bC"},B:{"1":"1 2 3 4 5 6 7 8 9 M H N O P Q I R S T U V W X Y Z a b c d e f g h i j k l m n o p q r s t u AB BB CB DB EB FB D","2":"C L"},C:{"1":"1 2 3 4 5 6 7 8 9 NB OB PB QB RB SB TB UB VB WB XB YB ZB aB bB cB dB eB fB gB hB iB jB kB lB mB nB oB EC pB FC qB rB sB tB uB vB wB xB yB zB 0B 1B 2B 3B 4B 5B 6B Q I R GC S T U V W X Y Z a b c d e f g h i j k l m n o p q r s t u AB BB CB DB EB FB D HC IC JC dC","2":"0 cC DC J GB K E F G A B C L M H N O P HB v w x y z IB JB KB LB MB eC fC"},D:{"1":"1 2 3 4 5 6 7 8 9 VB WB XB YB ZB aB bB cB dB eB fB gB hB iB jB kB lB mB nB oB EC pB FC qB rB sB tB uB vB wB xB yB zB 0B 1B 2B 3B 4B 5B 6B Q I R S T U V W X Y Z a b c d e f g h i j k l m n o p q r s t u AB BB CB DB EB FB D HC IC JC","2":"0 J GB K E F G A B C L M H N O P HB v w x y z IB JB KB LB MB NB OB PB QB RB SB TB UB"},E:{"1":"C L M H 7B 8B lC mC nC MC NC 9B oC AC OC PC QC RC SC pC BC TC UC VC WC XC YC CC qC","2":"J GB K E F G A B gC KC hC iC jC kC LC"},F:{"1":"IB JB KB LB MB NB OB PB QB RB SB TB UB VB WB XB YB ZB aB bB cB dB eB fB gB hB iB jB kB lB mB nB oB pB qB rB sB tB uB vB wB xB yB zB 0B 1B 2B 3B 4B 5B 6B Q I R GC S T U V W X Y Z a b c d e f g h i j k l m n o p q r s t u","2":"0 G B C H N O P HB v w x y z rC sC tC uC 7B ZC vC 8B"},G:{"1":"6C 7C 8C 9C AD BD CD DD ED FD MC NC 9B GD AC OC PC QC RC SC HD BC TC UC VC WC XC YC CC","2":"F KC wC aC xC yC zC 0C 1C 2C 3C 4C 5C"},H:{"2":"ID"},I:{"1":"D","2":"DC J JD KD LD MD aC ND OD"},J:{"2":"E A"},K:{"1":"I","2":"A B C 7B ZC 8B"},L:{"1":"D"},M:{"1":"D"},N:{"2":"A B"},O:{"1":"9B"},P:{"1":"0 J v w x y z PD QD RD SD TD LC UD VD WD XD YD AC BC CC ZD"},Q:{"1":"aD"},R:{"1":"bD"},S:{"1":"cD dD"}},B:4,C:"Beacon API",D:true};
|
||||
module.exports={A:{A:{"2":"K E F G A B bC"},B:{"1":"1 2 3 4 5 6 7 8 9 M H N O P Q I R S T U V W X Y Z a b c d e f g h i j k l m n o p q r s t u AB BB CB DB EB FB D","2":"C L"},C:{"1":"1 2 3 4 5 6 7 8 9 NB OB PB QB RB SB TB UB VB WB XB YB ZB aB bB cB dB eB fB gB hB iB jB kB lB mB nB oB EC pB FC qB rB sB tB uB vB wB xB yB zB 0B 1B 2B 3B 4B 5B 6B Q I R GC S T U V W X Y Z a b c d e f g h i j k l m n o p q r s t u AB BB CB DB EB FB D HC IC JC dC eC","2":"0 cC DC J GB K E F G A B C L M H N O P HB v w x y z IB JB KB LB MB fC gC"},D:{"1":"1 2 3 4 5 6 7 8 9 VB WB XB YB ZB aB bB cB dB eB fB gB hB iB jB kB lB mB nB oB EC pB FC qB rB sB tB uB vB wB xB yB zB 0B 1B 2B 3B 4B 5B 6B Q I R S T U V W X Y Z a b c d e f g h i j k l m n o p q r s t u AB BB CB DB EB FB D HC IC JC","2":"0 J GB K E F G A B C L M H N O P HB v w x y z IB JB KB LB MB NB OB PB QB RB SB TB UB"},E:{"1":"C L M H 7B 8B mC nC oC MC NC 9B pC AC OC PC QC RC SC qC BC TC UC VC WC XC YC CC rC","2":"J GB K E F G A B hC KC iC jC kC lC LC"},F:{"1":"IB JB KB LB MB NB OB PB QB RB SB TB UB VB WB XB YB ZB aB bB cB dB eB fB gB hB iB jB kB lB mB nB oB pB qB rB sB tB uB vB wB xB yB zB 0B 1B 2B 3B 4B 5B 6B Q I R GC S T U V W X Y Z a b c d e f g h i j k l m n o p q r s t u","2":"0 G B C H N O P HB v w x y z sC tC uC vC 7B ZC wC 8B"},G:{"1":"7C 8C 9C AD BD CD DD ED FD GD MC NC 9B HD AC OC PC QC RC SC ID BC TC UC VC WC XC YC CC","2":"F KC xC aC yC zC 0C 1C 2C 3C 4C 5C 6C"},H:{"2":"JD"},I:{"1":"D","2":"DC J KD LD MD ND aC OD PD"},J:{"2":"E A"},K:{"1":"I","2":"A B C 7B ZC 8B"},L:{"1":"D"},M:{"1":"D"},N:{"2":"A B"},O:{"1":"9B"},P:{"1":"0 J v w x y z QD RD SD TD UD LC VD WD XD YD ZD AC BC CC aD"},Q:{"1":"bD"},R:{"1":"cD"},S:{"1":"dD eD"}},B:4,C:"Beacon API",D:true};
|
||||
|
2
node_modules/caniuse-lite/data/features/beforeafterprint.js
generated
vendored
2
node_modules/caniuse-lite/data/features/beforeafterprint.js
generated
vendored
@ -1 +1 @@
|
||||
module.exports={A:{A:{"1":"K E F G A B","16":"bC"},B:{"1":"1 2 3 4 5 6 7 8 9 C L M H N O P Q I R S T U V W X Y Z a b c d e f g h i j k l m n o p q r s t u AB BB CB DB EB FB D"},C:{"1":"0 1 2 3 4 5 6 7 8 9 K E F G A B C L M H N O P HB v w x y z IB JB KB LB MB NB OB PB QB RB SB TB UB VB WB XB YB ZB aB bB cB dB eB fB gB hB iB jB kB lB mB nB oB EC pB FC qB rB sB tB uB vB wB xB yB zB 0B 1B 2B 3B 4B 5B 6B Q I R GC S T U V W X Y Z a b c d e f g h i j k l m n o p q r s t u AB BB CB DB EB FB D HC IC JC dC","2":"cC DC J GB eC fC"},D:{"1":"1 2 3 4 5 6 7 8 9 rB sB tB uB vB wB xB yB zB 0B 1B 2B 3B 4B 5B 6B Q I R S T U V W X Y Z a b c d e f g h i j k l m n o p q r s t u AB BB CB DB EB FB D HC IC JC","2":"0 J GB K E F G A B C L M H N O P HB v w x y z IB JB KB LB MB NB OB PB QB RB SB TB UB VB WB XB YB ZB aB bB cB dB eB fB gB hB iB jB kB lB mB nB oB EC pB FC qB"},E:{"1":"L M H lC mC nC MC NC 9B oC AC OC PC QC RC SC pC BC TC UC VC WC XC YC CC qC","2":"J GB K E F G A B C gC KC hC iC jC kC LC 7B 8B"},F:{"1":"gB hB iB jB kB lB mB nB oB pB qB rB sB tB uB vB wB xB yB zB 0B 1B 2B 3B 4B 5B 6B Q I R GC S T U V W X Y Z a b c d e f g h i j k l m n o p q r s t u","2":"0 G B C H N O P HB v w x y z IB JB KB LB MB NB OB PB QB RB SB TB UB VB WB XB YB ZB aB bB cB dB eB fB rC sC tC uC 7B ZC vC 8B"},G:{"1":"9C AD BD CD DD ED FD MC NC 9B GD AC OC PC QC RC SC HD BC TC UC VC WC XC YC CC","2":"F KC wC aC xC yC zC 0C 1C 2C 3C 4C 5C 6C 7C 8C"},H:{"2":"ID"},I:{"2":"DC J D JD KD LD MD aC ND OD"},J:{"16":"E A"},K:{"1":"I","2":"A B C 7B ZC 8B"},L:{"1":"D"},M:{"1":"D"},N:{"16":"A B"},O:{"1":"9B"},P:{"2":"0 v w x y z PD QD RD SD TD LC UD VD WD XD YD AC BC CC ZD","16":"J"},Q:{"1":"aD"},R:{"1":"bD"},S:{"1":"cD dD"}},B:1,C:"Printing Events",D:true};
|
||||
module.exports={A:{A:{"1":"K E F G A B","16":"bC"},B:{"1":"1 2 3 4 5 6 7 8 9 C L M H N O P Q I R S T U V W X Y Z a b c d e f g h i j k l m n o p q r s t u AB BB CB DB EB FB D"},C:{"1":"0 1 2 3 4 5 6 7 8 9 K E F G A B C L M H N O P HB v w x y z IB JB KB LB MB NB OB PB QB RB SB TB UB VB WB XB YB ZB aB bB cB dB eB fB gB hB iB jB kB lB mB nB oB EC pB FC qB rB sB tB uB vB wB xB yB zB 0B 1B 2B 3B 4B 5B 6B Q I R GC S T U V W X Y Z a b c d e f g h i j k l m n o p q r s t u AB BB CB DB EB FB D HC IC JC dC eC","2":"cC DC J GB fC gC"},D:{"1":"1 2 3 4 5 6 7 8 9 rB sB tB uB vB wB xB yB zB 0B 1B 2B 3B 4B 5B 6B Q I R S T U V W X Y Z a b c d e f g h i j k l m n o p q r s t u AB BB CB DB EB FB D HC IC JC","2":"0 J GB K E F G A B C L M H N O P HB v w x y z IB JB KB LB MB NB OB PB QB RB SB TB UB VB WB XB YB ZB aB bB cB dB eB fB gB hB iB jB kB lB mB nB oB EC pB FC qB"},E:{"1":"L M H mC nC oC MC NC 9B pC AC OC PC QC RC SC qC BC TC UC VC WC XC YC CC rC","2":"J GB K E F G A B C hC KC iC jC kC lC LC 7B 8B"},F:{"1":"gB hB iB jB kB lB mB nB oB pB qB rB sB tB uB vB wB xB yB zB 0B 1B 2B 3B 4B 5B 6B Q I R GC S T U V W X Y Z a b c d e f g h i j k l m n o p q r s t u","2":"0 G B C H N O P HB v w x y z IB JB KB LB MB NB OB PB QB RB SB TB UB VB WB XB YB ZB aB bB cB dB eB fB sC tC uC vC 7B ZC wC 8B"},G:{"1":"AD BD CD DD ED FD GD MC NC 9B HD AC OC PC QC RC SC ID BC TC UC VC WC XC YC CC","2":"F KC xC aC yC zC 0C 1C 2C 3C 4C 5C 6C 7C 8C 9C"},H:{"2":"JD"},I:{"2":"DC J D KD LD MD ND aC OD PD"},J:{"16":"E A"},K:{"1":"I","2":"A B C 7B ZC 8B"},L:{"1":"D"},M:{"1":"D"},N:{"16":"A B"},O:{"1":"9B"},P:{"2":"0 v w x y z QD RD SD TD UD LC VD WD XD YD ZD AC BC CC aD","16":"J"},Q:{"1":"bD"},R:{"1":"cD"},S:{"1":"dD eD"}},B:1,C:"Printing Events",D:true};
|
||||
|
2
node_modules/caniuse-lite/data/features/bigint.js
generated
vendored
2
node_modules/caniuse-lite/data/features/bigint.js
generated
vendored
@ -1 +1 @@
|
||||
module.exports={A:{A:{"2":"K E F G A B bC"},B:{"1":"1 2 3 4 5 6 7 8 9 Q I R S T U V W X Y Z a b c d e f g h i j k l m n o p q r s t u AB BB CB DB EB FB D","2":"C L M H N O P"},C:{"1":"1 2 3 4 5 6 7 8 9 wB xB yB zB 0B 1B 2B 3B 4B 5B 6B Q I R GC S T U V W X Y Z a b c d e f g h i j k l m n o p q r s t u AB BB CB DB EB FB D HC IC JC dC","2":"0 cC DC J GB K E F G A B C L M H N O P HB v w x y z IB JB KB LB MB NB OB PB QB RB SB TB UB VB WB XB YB ZB aB bB cB dB eB fB gB hB iB jB kB lB mB nB oB EC pB FC qB rB sB eC fC","194":"tB uB vB"},D:{"1":"1 2 3 4 5 6 7 8 9 vB wB xB yB zB 0B 1B 2B 3B 4B 5B 6B Q I R S T U V W X Y Z a b c d e f g h i j k l m n o p q r s t u AB BB CB DB EB FB D HC IC JC","2":"0 J GB K E F G A B C L M H N O P HB v w x y z IB JB KB LB MB NB OB PB QB RB SB TB UB VB WB XB YB ZB aB bB cB dB eB fB gB hB iB jB kB lB mB nB oB EC pB FC qB rB sB tB uB"},E:{"1":"M H mC nC MC NC 9B oC AC OC PC QC RC SC pC BC TC UC VC WC XC YC CC qC","2":"J GB K E F G A B C L gC KC hC iC jC kC LC 7B 8B lC"},F:{"1":"kB lB mB nB oB pB qB rB sB tB uB vB wB xB yB zB 0B 1B 2B 3B 4B 5B 6B Q I R GC S T U V W X Y Z a b c d e f g h i j k l m n o p q r s t u","2":"0 G B C H N O P HB v w x y z IB JB KB LB MB NB OB PB QB RB SB TB UB VB WB XB YB ZB aB bB cB dB eB fB gB hB iB jB rC sC tC uC 7B ZC vC 8B"},G:{"1":"DD ED FD MC NC 9B GD AC OC PC QC RC SC HD BC TC UC VC WC XC YC CC","2":"F KC wC aC xC yC zC 0C 1C 2C 3C 4C 5C 6C 7C 8C 9C AD BD CD"},H:{"2":"ID"},I:{"1":"D","2":"DC J JD KD LD MD aC ND OD"},J:{"2":"E A"},K:{"1":"I","2":"A B C 7B ZC 8B"},L:{"1":"D"},M:{"1":"D"},N:{"2":"A B"},O:{"1":"9B"},P:{"1":"0 v w x y z TD LC UD VD WD XD YD AC BC CC ZD","2":"J PD QD RD SD"},Q:{"1":"aD"},R:{"1":"bD"},S:{"1":"dD","2":"cD"}},B:6,C:"BigInt",D:true};
|
||||
module.exports={A:{A:{"2":"K E F G A B bC"},B:{"1":"1 2 3 4 5 6 7 8 9 Q I R S T U V W X Y Z a b c d e f g h i j k l m n o p q r s t u AB BB CB DB EB FB D","2":"C L M H N O P"},C:{"1":"1 2 3 4 5 6 7 8 9 wB xB yB zB 0B 1B 2B 3B 4B 5B 6B Q I R GC S T U V W X Y Z a b c d e f g h i j k l m n o p q r s t u AB BB CB DB EB FB D HC IC JC dC eC","2":"0 cC DC J GB K E F G A B C L M H N O P HB v w x y z IB JB KB LB MB NB OB PB QB RB SB TB UB VB WB XB YB ZB aB bB cB dB eB fB gB hB iB jB kB lB mB nB oB EC pB FC qB rB sB fC gC","194":"tB uB vB"},D:{"1":"1 2 3 4 5 6 7 8 9 vB wB xB yB zB 0B 1B 2B 3B 4B 5B 6B Q I R S T U V W X Y Z a b c d e f g h i j k l m n o p q r s t u AB BB CB DB EB FB D HC IC JC","2":"0 J GB K E F G A B C L M H N O P HB v w x y z IB JB KB LB MB NB OB PB QB RB SB TB UB VB WB XB YB ZB aB bB cB dB eB fB gB hB iB jB kB lB mB nB oB EC pB FC qB rB sB tB uB"},E:{"1":"M H nC oC MC NC 9B pC AC OC PC QC RC SC qC BC TC UC VC WC XC YC CC rC","2":"J GB K E F G A B C L hC KC iC jC kC lC LC 7B 8B mC"},F:{"1":"kB lB mB nB oB pB qB rB sB tB uB vB wB xB yB zB 0B 1B 2B 3B 4B 5B 6B Q I R GC S T U V W X Y Z a b c d e f g h i j k l m n o p q r s t u","2":"0 G B C H N O P HB v w x y z IB JB KB LB MB NB OB PB QB RB SB TB UB VB WB XB YB ZB aB bB cB dB eB fB gB hB iB jB sC tC uC vC 7B ZC wC 8B"},G:{"1":"ED FD GD MC NC 9B HD AC OC PC QC RC SC ID BC TC UC VC WC XC YC CC","2":"F KC xC aC yC zC 0C 1C 2C 3C 4C 5C 6C 7C 8C 9C AD BD CD DD"},H:{"2":"JD"},I:{"1":"D","2":"DC J KD LD MD ND aC OD PD"},J:{"2":"E A"},K:{"1":"I","2":"A B C 7B ZC 8B"},L:{"1":"D"},M:{"1":"D"},N:{"2":"A B"},O:{"1":"9B"},P:{"1":"0 v w x y z UD LC VD WD XD YD ZD AC BC CC aD","2":"J QD RD SD TD"},Q:{"1":"bD"},R:{"1":"cD"},S:{"1":"eD","2":"dD"}},B:6,C:"BigInt",D:true};
|
||||
|
2
node_modules/caniuse-lite/data/features/blobbuilder.js
generated
vendored
2
node_modules/caniuse-lite/data/features/blobbuilder.js
generated
vendored
@ -1 +1 @@
|
||||
module.exports={A:{A:{"1":"A B","2":"K E F G bC"},B:{"1":"1 2 3 4 5 6 7 8 9 C L M H N O P Q I R S T U V W X Y Z a b c d e f g h i j k l m n o p q r s t u AB BB CB DB EB FB D"},C:{"1":"0 1 2 3 4 5 6 7 8 9 L M H N O P HB v w x y z IB JB KB LB MB NB OB PB QB RB SB TB UB VB WB XB YB ZB aB bB cB dB eB fB gB hB iB jB kB lB mB nB oB EC pB FC qB rB sB tB uB vB wB xB yB zB 0B 1B 2B 3B 4B 5B 6B Q I R GC S T U V W X Y Z a b c d e f g h i j k l m n o p q r s t u AB BB CB DB EB FB D HC IC JC dC","2":"cC DC J GB eC fC","36":"K E F G A B C"},D:{"1":"0 1 2 3 4 5 6 7 8 9 v w x y z IB JB KB LB MB NB OB PB QB RB SB TB UB VB WB XB YB ZB aB bB cB dB eB fB gB hB iB jB kB lB mB nB oB EC pB FC qB rB sB tB uB vB wB xB yB zB 0B 1B 2B 3B 4B 5B 6B Q I R S T U V W X Y Z a b c d e f g h i j k l m n o p q r s t u AB BB CB DB EB FB D HC IC JC","2":"J GB K E","36":"F G A B C L M H N O P HB"},E:{"1":"K E F G A B C L M H iC jC kC LC 7B 8B lC mC nC MC NC 9B oC AC OC PC QC RC SC pC BC TC UC VC WC XC YC CC qC","2":"J GB gC KC hC"},F:{"1":"0 H N O P HB v w x y z IB JB KB LB MB NB OB PB QB RB SB TB UB VB WB XB YB ZB aB bB cB dB eB fB gB hB iB jB kB lB mB nB oB pB qB rB sB tB uB vB wB xB yB zB 0B 1B 2B 3B 4B 5B 6B Q I R GC S T U V W X Y Z a b c d e f g h i j k l m n o p q r s t u 8B","2":"G B C rC sC tC uC 7B ZC vC"},G:{"1":"F yC zC 0C 1C 2C 3C 4C 5C 6C 7C 8C 9C AD BD CD DD ED FD MC NC 9B GD AC OC PC QC RC SC HD BC TC UC VC WC XC YC CC","2":"KC wC aC xC"},H:{"2":"ID"},I:{"1":"D","2":"JD KD LD","36":"DC J MD aC ND OD"},J:{"1":"A","2":"E"},K:{"1":"I 8B","2":"A B C 7B ZC"},L:{"1":"D"},M:{"1":"D"},N:{"1":"A B"},O:{"1":"9B"},P:{"1":"0 J v w x y z PD QD RD SD TD LC UD VD WD XD YD AC BC CC ZD"},Q:{"1":"aD"},R:{"1":"bD"},S:{"1":"cD dD"}},B:5,C:"Blob constructing",D:true};
|
||||
module.exports={A:{A:{"1":"A B","2":"K E F G bC"},B:{"1":"1 2 3 4 5 6 7 8 9 C L M H N O P Q I R S T U V W X Y Z a b c d e f g h i j k l m n o p q r s t u AB BB CB DB EB FB D"},C:{"1":"0 1 2 3 4 5 6 7 8 9 L M H N O P HB v w x y z IB JB KB LB MB NB OB PB QB RB SB TB UB VB WB XB YB ZB aB bB cB dB eB fB gB hB iB jB kB lB mB nB oB EC pB FC qB rB sB tB uB vB wB xB yB zB 0B 1B 2B 3B 4B 5B 6B Q I R GC S T U V W X Y Z a b c d e f g h i j k l m n o p q r s t u AB BB CB DB EB FB D HC IC JC dC eC","2":"cC DC J GB fC gC","36":"K E F G A B C"},D:{"1":"0 1 2 3 4 5 6 7 8 9 v w x y z IB JB KB LB MB NB OB PB QB RB SB TB UB VB WB XB YB ZB aB bB cB dB eB fB gB hB iB jB kB lB mB nB oB EC pB FC qB rB sB tB uB vB wB xB yB zB 0B 1B 2B 3B 4B 5B 6B Q I R S T U V W X Y Z a b c d e f g h i j k l m n o p q r s t u AB BB CB DB EB FB D HC IC JC","2":"J GB K E","36":"F G A B C L M H N O P HB"},E:{"1":"K E F G A B C L M H jC kC lC LC 7B 8B mC nC oC MC NC 9B pC AC OC PC QC RC SC qC BC TC UC VC WC XC YC CC rC","2":"J GB hC KC iC"},F:{"1":"0 H N O P HB v w x y z IB JB KB LB MB NB OB PB QB RB SB TB UB VB WB XB YB ZB aB bB cB dB eB fB gB hB iB jB kB lB mB nB oB pB qB rB sB tB uB vB wB xB yB zB 0B 1B 2B 3B 4B 5B 6B Q I R GC S T U V W X Y Z a b c d e f g h i j k l m n o p q r s t u 8B","2":"G B C sC tC uC vC 7B ZC wC"},G:{"1":"F zC 0C 1C 2C 3C 4C 5C 6C 7C 8C 9C AD BD CD DD ED FD GD MC NC 9B HD AC OC PC QC RC SC ID BC TC UC VC WC XC YC CC","2":"KC xC aC yC"},H:{"2":"JD"},I:{"1":"D","2":"KD LD MD","36":"DC J ND aC OD PD"},J:{"1":"A","2":"E"},K:{"1":"I 8B","2":"A B C 7B ZC"},L:{"1":"D"},M:{"1":"D"},N:{"1":"A B"},O:{"1":"9B"},P:{"1":"0 J v w x y z QD RD SD TD UD LC VD WD XD YD ZD AC BC CC aD"},Q:{"1":"bD"},R:{"1":"cD"},S:{"1":"dD eD"}},B:5,C:"Blob constructing",D:true};
|
||||
|
2
node_modules/caniuse-lite/data/features/bloburls.js
generated
vendored
2
node_modules/caniuse-lite/data/features/bloburls.js
generated
vendored
@ -1 +1 @@
|
||||
module.exports={A:{A:{"2":"K E F G bC","129":"A B"},B:{"1":"1 2 3 4 5 6 7 8 9 H N O P Q I R S T U V W X Y Z a b c d e f g h i j k l m n o p q r s t u AB BB CB DB EB FB D","129":"C L M"},C:{"1":"0 1 2 3 4 5 6 7 8 9 J GB K E F G A B C L M H N O P HB v w x y z IB JB KB LB MB NB OB PB QB RB SB TB UB VB WB XB YB ZB aB bB cB dB eB fB gB hB iB jB kB lB mB nB oB EC pB FC qB rB sB tB uB vB wB xB yB zB 0B 1B 2B 3B 4B 5B 6B Q I R GC S T U V W X Y Z a b c d e f g h i j k l m n o p q r s t u AB BB CB DB EB FB D HC IC JC dC","2":"cC DC eC fC"},D:{"1":"0 1 2 3 4 5 6 7 8 9 y z IB JB KB LB MB NB OB PB QB RB SB TB UB VB WB XB YB ZB aB bB cB dB eB fB gB hB iB jB kB lB mB nB oB EC pB FC qB rB sB tB uB vB wB xB yB zB 0B 1B 2B 3B 4B 5B 6B Q I R S T U V W X Y Z a b c d e f g h i j k l m n o p q r s t u AB BB CB DB EB FB D HC IC JC","2":"J GB K E","33":"F G A B C L M H N O P HB v w x"},E:{"1":"E F G A B C L M H iC jC kC LC 7B 8B lC mC nC MC NC 9B oC AC OC PC QC RC SC pC BC TC UC VC WC XC YC CC qC","2":"J GB gC KC hC","33":"K"},F:{"1":"0 H N O P HB v w x y z IB JB KB LB MB NB OB PB QB RB SB TB UB VB WB XB YB ZB aB bB cB dB eB fB gB hB iB jB kB lB mB nB oB pB qB rB sB tB uB vB wB xB yB zB 0B 1B 2B 3B 4B 5B 6B Q I R GC S T U V W X Y Z a b c d e f g h i j k l m n o p q r s t u","2":"G B C rC sC tC uC 7B ZC vC 8B"},G:{"1":"F zC 0C 1C 2C 3C 4C 5C 6C 7C 8C 9C AD BD CD DD ED FD MC NC 9B GD AC OC PC QC RC SC HD BC TC UC VC WC XC YC CC","2":"KC wC aC xC","33":"yC"},H:{"2":"ID"},I:{"1":"D ND OD","2":"DC JD KD LD","33":"J MD aC"},J:{"1":"A","2":"E"},K:{"1":"I","2":"A B C 7B ZC 8B"},L:{"1":"D"},M:{"1":"D"},N:{"1":"B","2":"A"},O:{"1":"9B"},P:{"1":"0 J v w x y z PD QD RD SD TD LC UD VD WD XD YD AC BC CC ZD"},Q:{"1":"aD"},R:{"1":"bD"},S:{"1":"cD dD"}},B:5,C:"Blob URLs",D:true};
|
||||
module.exports={A:{A:{"2":"K E F G bC","129":"A B"},B:{"1":"1 2 3 4 5 6 7 8 9 H N O P Q I R S T U V W X Y Z a b c d e f g h i j k l m n o p q r s t u AB BB CB DB EB FB D","129":"C L M"},C:{"1":"0 1 2 3 4 5 6 7 8 9 J GB K E F G A B C L M H N O P HB v w x y z IB JB KB LB MB NB OB PB QB RB SB TB UB VB WB XB YB ZB aB bB cB dB eB fB gB hB iB jB kB lB mB nB oB EC pB FC qB rB sB tB uB vB wB xB yB zB 0B 1B 2B 3B 4B 5B 6B Q I R GC S T U V W X Y Z a b c d e f g h i j k l m n o p q r s t u AB BB CB DB EB FB D HC IC JC dC eC","2":"cC DC fC gC"},D:{"1":"0 1 2 3 4 5 6 7 8 9 y z IB JB KB LB MB NB OB PB QB RB SB TB UB VB WB XB YB ZB aB bB cB dB eB fB gB hB iB jB kB lB mB nB oB EC pB FC qB rB sB tB uB vB wB xB yB zB 0B 1B 2B 3B 4B 5B 6B Q I R S T U V W X Y Z a b c d e f g h i j k l m n o p q r s t u AB BB CB DB EB FB D HC IC JC","2":"J GB K E","33":"F G A B C L M H N O P HB v w x"},E:{"1":"E F G A B C L M H jC kC lC LC 7B 8B mC nC oC MC NC 9B pC AC OC PC QC RC SC qC BC TC UC VC WC XC YC CC rC","2":"J GB hC KC iC","33":"K"},F:{"1":"0 H N O P HB v w x y z IB JB KB LB MB NB OB PB QB RB SB TB UB VB WB XB YB ZB aB bB cB dB eB fB gB hB iB jB kB lB mB nB oB pB qB rB sB tB uB vB wB xB yB zB 0B 1B 2B 3B 4B 5B 6B Q I R GC S T U V W X Y Z a b c d e f g h i j k l m n o p q r s t u","2":"G B C sC tC uC vC 7B ZC wC 8B"},G:{"1":"F 0C 1C 2C 3C 4C 5C 6C 7C 8C 9C AD BD CD DD ED FD GD MC NC 9B HD AC OC PC QC RC SC ID BC TC UC VC WC XC YC CC","2":"KC xC aC yC","33":"zC"},H:{"2":"JD"},I:{"1":"D OD PD","2":"DC KD LD MD","33":"J ND aC"},J:{"1":"A","2":"E"},K:{"1":"I","2":"A B C 7B ZC 8B"},L:{"1":"D"},M:{"1":"D"},N:{"1":"B","2":"A"},O:{"1":"9B"},P:{"1":"0 J v w x y z QD RD SD TD UD LC VD WD XD YD ZD AC BC CC aD"},Q:{"1":"bD"},R:{"1":"cD"},S:{"1":"dD eD"}},B:5,C:"Blob URLs",D:true};
|
||||
|
2
node_modules/caniuse-lite/data/features/border-image.js
generated
vendored
2
node_modules/caniuse-lite/data/features/border-image.js
generated
vendored
@ -1 +1 @@
|
||||
module.exports={A:{A:{"1":"B","2":"K E F G A bC"},B:{"1":"1 2 3 4 5 6 7 8 9 M H N O P Q I R S T U V W X Y Z a b c d e f g h i j k l m n o p q r s t u AB BB CB DB EB FB D","129":"C L"},C:{"1":"1 2 3 4 5 6 7 8 9 gB hB iB jB kB lB mB nB oB EC pB FC qB rB sB tB uB vB wB xB yB zB 0B 1B 2B 3B 4B 5B 6B Q I R GC S T U V W X Y Z a b c d e f g h i j k l m n o p q r s t u AB BB CB DB EB FB D HC IC JC dC","2":"cC DC","260":"0 H N O P HB v w x y z IB JB KB LB MB NB OB PB QB RB SB TB UB VB WB XB YB ZB aB bB cB dB eB fB","804":"J GB K E F G A B C L M eC fC"},D:{"1":"1 2 3 4 5 6 7 8 9 mB nB oB EC pB FC qB rB sB tB uB vB wB xB yB zB 0B 1B 2B 3B 4B 5B 6B Q I R S T U V W X Y Z a b c d e f g h i j k l m n o p q r s t u AB BB CB DB EB FB D HC IC JC","260":"hB iB jB kB lB","388":"MB NB OB PB QB RB SB TB UB VB WB XB YB ZB aB bB cB dB eB fB gB","1412":"0 H N O P HB v w x y z IB JB KB LB","1956":"J GB K E F G A B C L M"},E:{"1":"NC 9B oC AC OC PC QC RC SC pC BC TC UC VC WC XC YC CC qC","129":"A B C L M H kC LC 7B 8B lC mC nC MC","1412":"K E F G iC jC","1956":"J GB gC KC hC"},F:{"1":"ZB aB bB cB dB eB fB gB hB iB jB kB lB mB nB oB pB qB rB sB tB uB vB wB xB yB zB 0B 1B 2B 3B 4B 5B 6B Q I R GC S T U V W X Y Z a b c d e f g h i j k l m n o p q r s t u","2":"G rC sC","260":"UB VB WB XB YB","388":"0 H N O P HB v w x y z IB JB KB LB MB NB OB PB QB RB SB TB","1796":"tC uC","1828":"B C 7B ZC vC 8B"},G:{"1":"NC 9B GD AC OC PC QC RC SC HD BC TC UC VC WC XC YC CC","129":"2C 3C 4C 5C 6C 7C 8C 9C AD BD CD DD ED FD MC","1412":"F yC zC 0C 1C","1956":"KC wC aC xC"},H:{"1828":"ID"},I:{"1":"D","388":"ND OD","1956":"DC J JD KD LD MD aC"},J:{"1412":"A","1924":"E"},K:{"1":"I","2":"A","1828":"B C 7B ZC 8B"},L:{"1":"D"},M:{"1":"D"},N:{"1":"B","2":"A"},O:{"1":"9B"},P:{"1":"0 v w x y z RD SD TD LC UD VD WD XD YD AC BC CC ZD","260":"PD QD","388":"J"},Q:{"1":"aD"},R:{"1":"bD"},S:{"1":"dD","260":"cD"}},B:4,C:"CSS3 Border images",D:true};
|
||||
module.exports={A:{A:{"1":"B","2":"K E F G A bC"},B:{"1":"1 2 3 4 5 6 7 8 9 M H N O P Q I R S T U V W X Y Z a b c d e f g h i j k l m n o p q r s t u AB BB CB DB EB FB D","129":"C L"},C:{"1":"1 2 3 4 5 6 7 8 9 gB hB iB jB kB lB mB nB oB EC pB FC qB rB sB tB uB vB wB xB yB zB 0B 1B 2B 3B 4B 5B 6B Q I R GC S T U V W X Y Z a b c d e f g h i j k l m n o p q r s t u AB BB CB DB EB FB D HC IC JC dC eC","2":"cC DC","260":"0 H N O P HB v w x y z IB JB KB LB MB NB OB PB QB RB SB TB UB VB WB XB YB ZB aB bB cB dB eB fB","804":"J GB K E F G A B C L M fC gC"},D:{"1":"1 2 3 4 5 6 7 8 9 mB nB oB EC pB FC qB rB sB tB uB vB wB xB yB zB 0B 1B 2B 3B 4B 5B 6B Q I R S T U V W X Y Z a b c d e f g h i j k l m n o p q r s t u AB BB CB DB EB FB D HC IC JC","260":"hB iB jB kB lB","388":"MB NB OB PB QB RB SB TB UB VB WB XB YB ZB aB bB cB dB eB fB gB","1412":"0 H N O P HB v w x y z IB JB KB LB","1956":"J GB K E F G A B C L M"},E:{"1":"NC 9B pC AC OC PC QC RC SC qC BC TC UC VC WC XC YC CC rC","129":"A B C L M H lC LC 7B 8B mC nC oC MC","1412":"K E F G jC kC","1956":"J GB hC KC iC"},F:{"1":"ZB aB bB cB dB eB fB gB hB iB jB kB lB mB nB oB pB qB rB sB tB uB vB wB xB yB zB 0B 1B 2B 3B 4B 5B 6B Q I R GC S T U V W X Y Z a b c d e f g h i j k l m n o p q r s t u","2":"G sC tC","260":"UB VB WB XB YB","388":"0 H N O P HB v w x y z IB JB KB LB MB NB OB PB QB RB SB TB","1796":"uC vC","1828":"B C 7B ZC wC 8B"},G:{"1":"NC 9B HD AC OC PC QC RC SC ID BC TC UC VC WC XC YC CC","129":"3C 4C 5C 6C 7C 8C 9C AD BD CD DD ED FD GD MC","1412":"F zC 0C 1C 2C","1956":"KC xC aC yC"},H:{"1828":"JD"},I:{"1":"D","388":"OD PD","1956":"DC J KD LD MD ND aC"},J:{"1412":"A","1924":"E"},K:{"1":"I","2":"A","1828":"B C 7B ZC 8B"},L:{"1":"D"},M:{"1":"D"},N:{"1":"B","2":"A"},O:{"1":"9B"},P:{"1":"0 v w x y z SD TD UD LC VD WD XD YD ZD AC BC CC aD","260":"QD RD","388":"J"},Q:{"1":"bD"},R:{"1":"cD"},S:{"1":"eD","260":"dD"}},B:4,C:"CSS3 Border images",D:true};
|
||||
|
2
node_modules/caniuse-lite/data/features/border-radius.js
generated
vendored
2
node_modules/caniuse-lite/data/features/border-radius.js
generated
vendored
@ -1 +1 @@
|
||||
module.exports={A:{A:{"1":"G A B","2":"K E F bC"},B:{"1":"1 2 3 4 5 6 7 8 9 C L M H N O P Q I R S T U V W X Y Z a b c d e f g h i j k l m n o p q r s t u AB BB CB DB EB FB D"},C:{"1":"1 2 3 4 5 6 7 8 9 gB hB iB jB kB lB mB nB oB EC pB FC qB rB sB tB uB vB wB xB yB zB 0B 1B 2B 3B 4B 5B 6B Q I R GC S T U V W X Y Z a b c d e f g h i j k l m n o p q r s t u AB BB CB DB EB FB D HC IC JC dC","257":"0 J GB K E F G A B C L M H N O P HB v w x y z IB JB KB LB MB NB OB PB QB RB SB TB UB VB WB XB YB ZB aB bB cB dB eB fB","289":"DC eC fC","292":"cC"},D:{"1":"0 1 2 3 4 5 6 7 8 9 GB K E F G A B C L M H N O P HB v w x y z IB JB KB LB MB NB OB PB QB RB SB TB UB VB WB XB YB ZB aB bB cB dB eB fB gB hB iB jB kB lB mB nB oB EC pB FC qB rB sB tB uB vB wB xB yB zB 0B 1B 2B 3B 4B 5B 6B Q I R S T U V W X Y Z a b c d e f g h i j k l m n o p q r s t u AB BB CB DB EB FB D HC IC JC","33":"J"},E:{"1":"GB E F G A B C L M H jC kC LC 7B 8B lC mC nC MC NC 9B oC AC OC PC QC RC SC pC BC TC UC VC WC XC YC CC qC","33":"J gC KC","129":"K hC iC"},F:{"1":"0 B C H N O P HB v w x y z IB JB KB LB MB NB OB PB QB RB SB TB UB VB WB XB YB ZB aB bB cB dB eB fB gB hB iB jB kB lB mB nB oB pB qB rB sB tB uB vB wB xB yB zB 0B 1B 2B 3B 4B 5B 6B Q I R GC S T U V W X Y Z a b c d e f g h i j k l m n o p q r s t u tC uC 7B ZC vC 8B","2":"G rC sC"},G:{"1":"F wC aC xC yC zC 0C 1C 2C 3C 4C 5C 6C 7C 8C 9C AD BD CD DD ED FD MC NC 9B GD AC OC PC QC RC SC HD BC TC UC VC WC XC YC CC","33":"KC"},H:{"2":"ID"},I:{"1":"DC J D KD LD MD aC ND OD","33":"JD"},J:{"1":"E A"},K:{"1":"B C I 7B ZC 8B","2":"A"},L:{"1":"D"},M:{"1":"D"},N:{"1":"A B"},O:{"1":"9B"},P:{"1":"0 J v w x y z PD QD RD SD TD LC UD VD WD XD YD AC BC CC ZD"},Q:{"1":"aD"},R:{"1":"bD"},S:{"1":"dD","257":"cD"}},B:4,C:"CSS3 Border-radius (rounded corners)",D:true};
|
||||
module.exports={A:{A:{"1":"G A B","2":"K E F bC"},B:{"1":"1 2 3 4 5 6 7 8 9 C L M H N O P Q I R S T U V W X Y Z a b c d e f g h i j k l m n o p q r s t u AB BB CB DB EB FB D"},C:{"1":"1 2 3 4 5 6 7 8 9 gB hB iB jB kB lB mB nB oB EC pB FC qB rB sB tB uB vB wB xB yB zB 0B 1B 2B 3B 4B 5B 6B Q I R GC S T U V W X Y Z a b c d e f g h i j k l m n o p q r s t u AB BB CB DB EB FB D HC IC JC dC eC","257":"0 J GB K E F G A B C L M H N O P HB v w x y z IB JB KB LB MB NB OB PB QB RB SB TB UB VB WB XB YB ZB aB bB cB dB eB fB","289":"DC fC gC","292":"cC"},D:{"1":"0 1 2 3 4 5 6 7 8 9 GB K E F G A B C L M H N O P HB v w x y z IB JB KB LB MB NB OB PB QB RB SB TB UB VB WB XB YB ZB aB bB cB dB eB fB gB hB iB jB kB lB mB nB oB EC pB FC qB rB sB tB uB vB wB xB yB zB 0B 1B 2B 3B 4B 5B 6B Q I R S T U V W X Y Z a b c d e f g h i j k l m n o p q r s t u AB BB CB DB EB FB D HC IC JC","33":"J"},E:{"1":"GB E F G A B C L M H kC lC LC 7B 8B mC nC oC MC NC 9B pC AC OC PC QC RC SC qC BC TC UC VC WC XC YC CC rC","33":"J hC KC","129":"K iC jC"},F:{"1":"0 B C H N O P HB v w x y z IB JB KB LB MB NB OB PB QB RB SB TB UB VB WB XB YB ZB aB bB cB dB eB fB gB hB iB jB kB lB mB nB oB pB qB rB sB tB uB vB wB xB yB zB 0B 1B 2B 3B 4B 5B 6B Q I R GC S T U V W X Y Z a b c d e f g h i j k l m n o p q r s t u uC vC 7B ZC wC 8B","2":"G sC tC"},G:{"1":"F xC aC yC zC 0C 1C 2C 3C 4C 5C 6C 7C 8C 9C AD BD CD DD ED FD GD MC NC 9B HD AC OC PC QC RC SC ID BC TC UC VC WC XC YC CC","33":"KC"},H:{"2":"JD"},I:{"1":"DC J D LD MD ND aC OD PD","33":"KD"},J:{"1":"E A"},K:{"1":"B C I 7B ZC 8B","2":"A"},L:{"1":"D"},M:{"1":"D"},N:{"1":"A B"},O:{"1":"9B"},P:{"1":"0 J v w x y z QD RD SD TD UD LC VD WD XD YD ZD AC BC CC aD"},Q:{"1":"bD"},R:{"1":"cD"},S:{"1":"eD","257":"dD"}},B:4,C:"CSS3 Border-radius (rounded corners)",D:true};
|
||||
|
2
node_modules/caniuse-lite/data/features/broadcastchannel.js
generated
vendored
2
node_modules/caniuse-lite/data/features/broadcastchannel.js
generated
vendored
@ -1 +1 @@
|
||||
module.exports={A:{A:{"2":"K E F G A B bC"},B:{"1":"1 2 3 4 5 6 7 8 9 Q I R S T U V W X Y Z a b c d e f g h i j k l m n o p q r s t u AB BB CB DB EB FB D","2":"C L M H N O P"},C:{"1":"1 2 3 4 5 6 7 8 9 UB VB WB XB YB ZB aB bB cB dB eB fB gB hB iB jB kB lB mB nB oB EC pB FC qB rB sB tB uB vB wB xB yB zB 0B 1B 2B 3B 4B 5B 6B Q I R GC S T U V W X Y Z a b c d e f g h i j k l m n o p q r s t u AB BB CB DB EB FB D HC IC JC dC","2":"0 cC DC J GB K E F G A B C L M H N O P HB v w x y z IB JB KB LB MB NB OB PB QB RB SB TB eC fC"},D:{"1":"1 2 3 4 5 6 7 8 9 kB lB mB nB oB EC pB FC qB rB sB tB uB vB wB xB yB zB 0B 1B 2B 3B 4B 5B 6B Q I R S T U V W X Y Z a b c d e f g h i j k l m n o p q r s t u AB BB CB DB EB FB D HC IC JC","2":"0 J GB K E F G A B C L M H N O P HB v w x y z IB JB KB LB MB NB OB PB QB RB SB TB UB VB WB XB YB ZB aB bB cB dB eB fB gB hB iB jB"},E:{"1":"NC 9B oC AC OC PC QC RC SC pC BC TC UC VC WC XC YC CC qC","2":"J GB K E F G A B C L M H gC KC hC iC jC kC LC 7B 8B lC mC nC MC"},F:{"1":"XB YB ZB aB bB cB dB eB fB gB hB iB jB kB lB mB nB oB pB qB rB sB tB uB vB wB xB yB zB 0B 1B 2B 3B 4B 5B 6B Q I R GC S T U V W X Y Z a b c d e f g h i j k l m n o p q r s t u","2":"0 G B C H N O P HB v w x y z IB JB KB LB MB NB OB PB QB RB SB TB UB VB WB rC sC tC uC 7B ZC vC 8B"},G:{"1":"NC 9B GD AC OC PC QC RC SC HD BC TC UC VC WC XC YC CC","2":"F KC wC aC xC yC zC 0C 1C 2C 3C 4C 5C 6C 7C 8C 9C AD BD CD DD ED FD MC"},H:{"2":"ID"},I:{"1":"D","2":"DC J JD KD LD MD aC ND OD"},J:{"2":"E A"},K:{"1":"I","2":"A B C 7B ZC 8B"},L:{"1":"D"},M:{"1":"D"},N:{"2":"A B"},O:{"1":"9B"},P:{"1":"0 v w x y z RD SD TD LC UD VD WD XD YD AC BC CC ZD","2":"J PD QD"},Q:{"1":"aD"},R:{"1":"bD"},S:{"1":"cD dD"}},B:1,C:"BroadcastChannel",D:true};
|
||||
module.exports={A:{A:{"2":"K E F G A B bC"},B:{"1":"1 2 3 4 5 6 7 8 9 Q I R S T U V W X Y Z a b c d e f g h i j k l m n o p q r s t u AB BB CB DB EB FB D","2":"C L M H N O P"},C:{"1":"1 2 3 4 5 6 7 8 9 UB VB WB XB YB ZB aB bB cB dB eB fB gB hB iB jB kB lB mB nB oB EC pB FC qB rB sB tB uB vB wB xB yB zB 0B 1B 2B 3B 4B 5B 6B Q I R GC S T U V W X Y Z a b c d e f g h i j k l m n o p q r s t u AB BB CB DB EB FB D HC IC JC dC eC","2":"0 cC DC J GB K E F G A B C L M H N O P HB v w x y z IB JB KB LB MB NB OB PB QB RB SB TB fC gC"},D:{"1":"1 2 3 4 5 6 7 8 9 kB lB mB nB oB EC pB FC qB rB sB tB uB vB wB xB yB zB 0B 1B 2B 3B 4B 5B 6B Q I R S T U V W X Y Z a b c d e f g h i j k l m n o p q r s t u AB BB CB DB EB FB D HC IC JC","2":"0 J GB K E F G A B C L M H N O P HB v w x y z IB JB KB LB MB NB OB PB QB RB SB TB UB VB WB XB YB ZB aB bB cB dB eB fB gB hB iB jB"},E:{"1":"NC 9B pC AC OC PC QC RC SC qC BC TC UC VC WC XC YC CC rC","2":"J GB K E F G A B C L M H hC KC iC jC kC lC LC 7B 8B mC nC oC MC"},F:{"1":"XB YB ZB aB bB cB dB eB fB gB hB iB jB kB lB mB nB oB pB qB rB sB tB uB vB wB xB yB zB 0B 1B 2B 3B 4B 5B 6B Q I R GC S T U V W X Y Z a b c d e f g h i j k l m n o p q r s t u","2":"0 G B C H N O P HB v w x y z IB JB KB LB MB NB OB PB QB RB SB TB UB VB WB sC tC uC vC 7B ZC wC 8B"},G:{"1":"NC 9B HD AC OC PC QC RC SC ID BC TC UC VC WC XC YC CC","2":"F KC xC aC yC zC 0C 1C 2C 3C 4C 5C 6C 7C 8C 9C AD BD CD DD ED FD GD MC"},H:{"2":"JD"},I:{"1":"D","2":"DC J KD LD MD ND aC OD PD"},J:{"2":"E A"},K:{"1":"I","2":"A B C 7B ZC 8B"},L:{"1":"D"},M:{"1":"D"},N:{"2":"A B"},O:{"1":"9B"},P:{"1":"0 v w x y z SD TD UD LC VD WD XD YD ZD AC BC CC aD","2":"J QD RD"},Q:{"1":"bD"},R:{"1":"cD"},S:{"1":"dD eD"}},B:1,C:"BroadcastChannel",D:true};
|
||||
|
2
node_modules/caniuse-lite/data/features/brotli.js
generated
vendored
2
node_modules/caniuse-lite/data/features/brotli.js
generated
vendored
@ -1 +1 @@
|
||||
module.exports={A:{A:{"2":"K E F G A B bC"},B:{"1":"1 2 3 4 5 6 7 8 9 H N O P Q I R S T U V W X Y Z a b c d e f g h i j k l m n o p q r s t u AB BB CB DB EB FB D","2":"C L M"},C:{"1":"1 2 3 4 5 6 7 8 9 aB bB cB dB eB fB gB hB iB jB kB lB mB nB oB EC pB FC qB rB sB tB uB vB wB xB yB zB 0B 1B 2B 3B 4B 5B 6B Q I R GC S T U V W X Y Z a b c d e f g h i j k l m n o p q r s t u AB BB CB DB EB FB D HC IC JC dC","2":"0 cC DC J GB K E F G A B C L M H N O P HB v w x y z IB JB KB LB MB NB OB PB QB RB SB TB UB VB WB XB YB ZB eC fC"},D:{"1":"1 2 3 4 5 6 7 8 9 hB iB jB kB lB mB nB oB EC pB FC qB rB sB tB uB vB wB xB yB zB 0B 1B 2B 3B 4B 5B 6B Q I R S T U V W X Y Z a b c d e f g h i j k l m n o p q r s t u AB BB CB DB EB FB D HC IC JC","2":"0 J GB K E F G A B C L M H N O P HB v w x y z IB JB KB LB MB NB OB PB QB RB SB TB UB VB WB XB YB ZB aB bB cB dB eB","194":"fB","257":"gB"},E:{"1":"L M H lC mC nC MC NC 9B oC AC OC PC QC RC SC pC BC TC UC VC WC XC YC CC qC","2":"J GB K E F G A gC KC hC iC jC kC LC","513":"B C 7B 8B"},F:{"1":"UB VB WB XB YB ZB aB bB cB dB eB fB gB hB iB jB kB lB mB nB oB pB qB rB sB tB uB vB wB xB yB zB 0B 1B 2B 3B 4B 5B 6B Q I R GC S T U V W X Y Z a b c d e f g h i j k l m n o p q r s t u","2":"0 G B C H N O P HB v w x y z IB JB KB LB MB NB OB PB QB RB rC sC tC uC 7B ZC vC 8B","194":"SB TB"},G:{"1":"5C 6C 7C 8C 9C AD BD CD DD ED FD MC NC 9B GD AC OC PC QC RC SC HD BC TC UC VC WC XC YC CC","2":"F KC wC aC xC yC zC 0C 1C 2C 3C 4C"},H:{"2":"ID"},I:{"1":"D","2":"DC J JD KD LD MD aC ND OD"},J:{"2":"E A"},K:{"1":"I","2":"A B C 7B ZC 8B"},L:{"1":"D"},M:{"1":"D"},N:{"2":"A B"},O:{"1":"9B"},P:{"1":"0 v w x y z PD QD RD SD TD LC UD VD WD XD YD AC BC CC ZD","2":"J"},Q:{"1":"aD"},R:{"1":"bD"},S:{"1":"cD dD"}},B:6,C:"Brotli Accept-Encoding/Content-Encoding",D:true};
|
||||
module.exports={A:{A:{"2":"K E F G A B bC"},B:{"1":"1 2 3 4 5 6 7 8 9 H N O P Q I R S T U V W X Y Z a b c d e f g h i j k l m n o p q r s t u AB BB CB DB EB FB D","2":"C L M"},C:{"1":"1 2 3 4 5 6 7 8 9 aB bB cB dB eB fB gB hB iB jB kB lB mB nB oB EC pB FC qB rB sB tB uB vB wB xB yB zB 0B 1B 2B 3B 4B 5B 6B Q I R GC S T U V W X Y Z a b c d e f g h i j k l m n o p q r s t u AB BB CB DB EB FB D HC IC JC dC eC","2":"0 cC DC J GB K E F G A B C L M H N O P HB v w x y z IB JB KB LB MB NB OB PB QB RB SB TB UB VB WB XB YB ZB fC gC"},D:{"1":"1 2 3 4 5 6 7 8 9 hB iB jB kB lB mB nB oB EC pB FC qB rB sB tB uB vB wB xB yB zB 0B 1B 2B 3B 4B 5B 6B Q I R S T U V W X Y Z a b c d e f g h i j k l m n o p q r s t u AB BB CB DB EB FB D HC IC JC","2":"0 J GB K E F G A B C L M H N O P HB v w x y z IB JB KB LB MB NB OB PB QB RB SB TB UB VB WB XB YB ZB aB bB cB dB eB","194":"fB","257":"gB"},E:{"1":"L M H mC nC oC MC NC 9B pC AC OC PC QC RC SC qC BC TC UC VC WC XC YC CC rC","2":"J GB K E F G A hC KC iC jC kC lC LC","513":"B C 7B 8B"},F:{"1":"UB VB WB XB YB ZB aB bB cB dB eB fB gB hB iB jB kB lB mB nB oB pB qB rB sB tB uB vB wB xB yB zB 0B 1B 2B 3B 4B 5B 6B Q I R GC S T U V W X Y Z a b c d e f g h i j k l m n o p q r s t u","2":"0 G B C H N O P HB v w x y z IB JB KB LB MB NB OB PB QB RB sC tC uC vC 7B ZC wC 8B","194":"SB TB"},G:{"1":"6C 7C 8C 9C AD BD CD DD ED FD GD MC NC 9B HD AC OC PC QC RC SC ID BC TC UC VC WC XC YC CC","2":"F KC xC aC yC zC 0C 1C 2C 3C 4C 5C"},H:{"2":"JD"},I:{"1":"D","2":"DC J KD LD MD ND aC OD PD"},J:{"2":"E A"},K:{"1":"I","2":"A B C 7B ZC 8B"},L:{"1":"D"},M:{"1":"D"},N:{"2":"A B"},O:{"1":"9B"},P:{"1":"0 v w x y z QD RD SD TD UD LC VD WD XD YD ZD AC BC CC aD","2":"J"},Q:{"1":"bD"},R:{"1":"cD"},S:{"1":"dD eD"}},B:6,C:"Brotli Accept-Encoding/Content-Encoding",D:true};
|
||||
|
2
node_modules/caniuse-lite/data/features/calc.js
generated
vendored
2
node_modules/caniuse-lite/data/features/calc.js
generated
vendored
@ -1 +1 @@
|
||||
module.exports={A:{A:{"2":"K E F bC","260":"G","516":"A B"},B:{"1":"1 2 3 4 5 6 7 8 9 C L M H N O P Q I R S T U V W X Y Z a b c d e f g h i j k l m n o p q r s t u AB BB CB DB EB FB D"},C:{"1":"0 1 2 3 4 5 6 7 8 9 N O P HB v w x y z IB JB KB LB MB NB OB PB QB RB SB TB UB VB WB XB YB ZB aB bB cB dB eB fB gB hB iB jB kB lB mB nB oB EC pB FC qB rB sB tB uB vB wB xB yB zB 0B 1B 2B 3B 4B 5B 6B Q I R GC S T U V W X Y Z a b c d e f g h i j k l m n o p q r s t u AB BB CB DB EB FB D HC IC JC dC","2":"cC DC eC fC","33":"J GB K E F G A B C L M H"},D:{"1":"1 2 3 4 5 6 7 8 9 IB JB KB LB MB NB OB PB QB RB SB TB UB VB WB XB YB ZB aB bB cB dB eB fB gB hB iB jB kB lB mB nB oB EC pB FC qB rB sB tB uB vB wB xB yB zB 0B 1B 2B 3B 4B 5B 6B Q I R S T U V W X Y Z a b c d e f g h i j k l m n o p q r s t u AB BB CB DB EB FB D HC IC JC","2":"J GB K E F G A B C L M H N O P","33":"0 HB v w x y z"},E:{"1":"E F G A B C L M H iC jC kC LC 7B 8B lC mC nC MC NC 9B oC AC OC PC QC RC SC pC BC TC UC VC WC XC YC CC qC","2":"J GB gC KC hC","33":"K"},F:{"1":"0 H N O P HB v w x y z IB JB KB LB MB NB OB PB QB RB SB TB UB VB WB XB YB ZB aB bB cB dB eB fB gB hB iB jB kB lB mB nB oB pB qB rB sB tB uB vB wB xB yB zB 0B 1B 2B 3B 4B 5B 6B Q I R GC S T U V W X Y Z a b c d e f g h i j k l m n o p q r s t u","2":"G B C rC sC tC uC 7B ZC vC 8B"},G:{"1":"F zC 0C 1C 2C 3C 4C 5C 6C 7C 8C 9C AD BD CD DD ED FD MC NC 9B GD AC OC PC QC RC SC HD BC TC UC VC WC XC YC CC","2":"KC wC aC xC","33":"yC"},H:{"2":"ID"},I:{"1":"D","2":"DC J JD KD LD MD aC","132":"ND OD"},J:{"1":"A","2":"E"},K:{"1":"I","2":"A B C 7B ZC 8B"},L:{"1":"D"},M:{"1":"D"},N:{"1":"A B"},O:{"1":"9B"},P:{"1":"0 J v w x y z PD QD RD SD TD LC UD VD WD XD YD AC BC CC ZD"},Q:{"1":"aD"},R:{"1":"bD"},S:{"1":"cD dD"}},B:4,C:"calc() as CSS unit value",D:true};
|
||||
module.exports={A:{A:{"2":"K E F bC","260":"G","516":"A B"},B:{"1":"1 2 3 4 5 6 7 8 9 C L M H N O P Q I R S T U V W X Y Z a b c d e f g h i j k l m n o p q r s t u AB BB CB DB EB FB D"},C:{"1":"0 1 2 3 4 5 6 7 8 9 N O P HB v w x y z IB JB KB LB MB NB OB PB QB RB SB TB UB VB WB XB YB ZB aB bB cB dB eB fB gB hB iB jB kB lB mB nB oB EC pB FC qB rB sB tB uB vB wB xB yB zB 0B 1B 2B 3B 4B 5B 6B Q I R GC S T U V W X Y Z a b c d e f g h i j k l m n o p q r s t u AB BB CB DB EB FB D HC IC JC dC eC","2":"cC DC fC gC","33":"J GB K E F G A B C L M H"},D:{"1":"1 2 3 4 5 6 7 8 9 IB JB KB LB MB NB OB PB QB RB SB TB UB VB WB XB YB ZB aB bB cB dB eB fB gB hB iB jB kB lB mB nB oB EC pB FC qB rB sB tB uB vB wB xB yB zB 0B 1B 2B 3B 4B 5B 6B Q I R S T U V W X Y Z a b c d e f g h i j k l m n o p q r s t u AB BB CB DB EB FB D HC IC JC","2":"J GB K E F G A B C L M H N O P","33":"0 HB v w x y z"},E:{"1":"E F G A B C L M H jC kC lC LC 7B 8B mC nC oC MC NC 9B pC AC OC PC QC RC SC qC BC TC UC VC WC XC YC CC rC","2":"J GB hC KC iC","33":"K"},F:{"1":"0 H N O P HB v w x y z IB JB KB LB MB NB OB PB QB RB SB TB UB VB WB XB YB ZB aB bB cB dB eB fB gB hB iB jB kB lB mB nB oB pB qB rB sB tB uB vB wB xB yB zB 0B 1B 2B 3B 4B 5B 6B Q I R GC S T U V W X Y Z a b c d e f g h i j k l m n o p q r s t u","2":"G B C sC tC uC vC 7B ZC wC 8B"},G:{"1":"F 0C 1C 2C 3C 4C 5C 6C 7C 8C 9C AD BD CD DD ED FD GD MC NC 9B HD AC OC PC QC RC SC ID BC TC UC VC WC XC YC CC","2":"KC xC aC yC","33":"zC"},H:{"2":"JD"},I:{"1":"D","2":"DC J KD LD MD ND aC","132":"OD PD"},J:{"1":"A","2":"E"},K:{"1":"I","2":"A B C 7B ZC 8B"},L:{"1":"D"},M:{"1":"D"},N:{"1":"A B"},O:{"1":"9B"},P:{"1":"0 J v w x y z QD RD SD TD UD LC VD WD XD YD ZD AC BC CC aD"},Q:{"1":"bD"},R:{"1":"cD"},S:{"1":"dD eD"}},B:4,C:"calc() as CSS unit value",D:true};
|
||||
|
2
node_modules/caniuse-lite/data/features/canvas-blending.js
generated
vendored
2
node_modules/caniuse-lite/data/features/canvas-blending.js
generated
vendored
@ -1 +1 @@
|
||||
module.exports={A:{A:{"2":"K E F G A B bC"},B:{"1":"1 2 3 4 5 6 7 8 9 L M H N O P Q I R S T U V W X Y Z a b c d e f g h i j k l m n o p q r s t u AB BB CB DB EB FB D","2":"C"},C:{"1":"0 1 2 3 4 5 6 7 8 9 v w x y z IB JB KB LB MB NB OB PB QB RB SB TB UB VB WB XB YB ZB aB bB cB dB eB fB gB hB iB jB kB lB mB nB oB EC pB FC qB rB sB tB uB vB wB xB yB zB 0B 1B 2B 3B 4B 5B 6B Q I R GC S T U V W X Y Z a b c d e f g h i j k l m n o p q r s t u AB BB CB DB EB FB D HC IC JC dC","2":"cC DC J GB K E F G A B C L M H N O P HB eC fC"},D:{"1":"1 2 3 4 5 6 7 8 9 MB NB OB PB QB RB SB TB UB VB WB XB YB ZB aB bB cB dB eB fB gB hB iB jB kB lB mB nB oB EC pB FC qB rB sB tB uB vB wB xB yB zB 0B 1B 2B 3B 4B 5B 6B Q I R S T U V W X Y Z a b c d e f g h i j k l m n o p q r s t u AB BB CB DB EB FB D HC IC JC","2":"0 J GB K E F G A B C L M H N O P HB v w x y z IB JB KB LB"},E:{"1":"E F G A B C L M H iC jC kC LC 7B 8B lC mC nC MC NC 9B oC AC OC PC QC RC SC pC BC TC UC VC WC XC YC CC qC","2":"J GB K gC KC hC"},F:{"1":"0 O P HB v w x y z IB JB KB LB MB NB OB PB QB RB SB TB UB VB WB XB YB ZB aB bB cB dB eB fB gB hB iB jB kB lB mB nB oB pB qB rB sB tB uB vB wB xB yB zB 0B 1B 2B 3B 4B 5B 6B Q I R GC S T U V W X Y Z a b c d e f g h i j k l m n o p q r s t u","2":"G B C H N rC sC tC uC 7B ZC vC 8B"},G:{"1":"F zC 0C 1C 2C 3C 4C 5C 6C 7C 8C 9C AD BD CD DD ED FD MC NC 9B GD AC OC PC QC RC SC HD BC TC UC VC WC XC YC CC","2":"KC wC aC xC yC"},H:{"2":"ID"},I:{"1":"D ND OD","2":"DC J JD KD LD MD aC"},J:{"2":"E A"},K:{"1":"I","2":"A B C 7B ZC 8B"},L:{"1":"D"},M:{"1":"D"},N:{"2":"A B"},O:{"1":"9B"},P:{"1":"0 J v w x y z PD QD RD SD TD LC UD VD WD XD YD AC BC CC ZD"},Q:{"1":"aD"},R:{"1":"bD"},S:{"1":"cD dD"}},B:4,C:"Canvas blend modes",D:true};
|
||||
module.exports={A:{A:{"2":"K E F G A B bC"},B:{"1":"1 2 3 4 5 6 7 8 9 L M H N O P Q I R S T U V W X Y Z a b c d e f g h i j k l m n o p q r s t u AB BB CB DB EB FB D","2":"C"},C:{"1":"0 1 2 3 4 5 6 7 8 9 v w x y z IB JB KB LB MB NB OB PB QB RB SB TB UB VB WB XB YB ZB aB bB cB dB eB fB gB hB iB jB kB lB mB nB oB EC pB FC qB rB sB tB uB vB wB xB yB zB 0B 1B 2B 3B 4B 5B 6B Q I R GC S T U V W X Y Z a b c d e f g h i j k l m n o p q r s t u AB BB CB DB EB FB D HC IC JC dC eC","2":"cC DC J GB K E F G A B C L M H N O P HB fC gC"},D:{"1":"1 2 3 4 5 6 7 8 9 MB NB OB PB QB RB SB TB UB VB WB XB YB ZB aB bB cB dB eB fB gB hB iB jB kB lB mB nB oB EC pB FC qB rB sB tB uB vB wB xB yB zB 0B 1B 2B 3B 4B 5B 6B Q I R S T U V W X Y Z a b c d e f g h i j k l m n o p q r s t u AB BB CB DB EB FB D HC IC JC","2":"0 J GB K E F G A B C L M H N O P HB v w x y z IB JB KB LB"},E:{"1":"E F G A B C L M H jC kC lC LC 7B 8B mC nC oC MC NC 9B pC AC OC PC QC RC SC qC BC TC UC VC WC XC YC CC rC","2":"J GB K hC KC iC"},F:{"1":"0 O P HB v w x y z IB JB KB LB MB NB OB PB QB RB SB TB UB VB WB XB YB ZB aB bB cB dB eB fB gB hB iB jB kB lB mB nB oB pB qB rB sB tB uB vB wB xB yB zB 0B 1B 2B 3B 4B 5B 6B Q I R GC S T U V W X Y Z a b c d e f g h i j k l m n o p q r s t u","2":"G B C H N sC tC uC vC 7B ZC wC 8B"},G:{"1":"F 0C 1C 2C 3C 4C 5C 6C 7C 8C 9C AD BD CD DD ED FD GD MC NC 9B HD AC OC PC QC RC SC ID BC TC UC VC WC XC YC CC","2":"KC xC aC yC zC"},H:{"2":"JD"},I:{"1":"D OD PD","2":"DC J KD LD MD ND aC"},J:{"2":"E A"},K:{"1":"I","2":"A B C 7B ZC 8B"},L:{"1":"D"},M:{"1":"D"},N:{"2":"A B"},O:{"1":"9B"},P:{"1":"0 J v w x y z QD RD SD TD UD LC VD WD XD YD ZD AC BC CC aD"},Q:{"1":"bD"},R:{"1":"cD"},S:{"1":"dD eD"}},B:4,C:"Canvas blend modes",D:true};
|
||||
|
2
node_modules/caniuse-lite/data/features/canvas-text.js
generated
vendored
2
node_modules/caniuse-lite/data/features/canvas-text.js
generated
vendored
@ -1 +1 @@
|
||||
module.exports={A:{A:{"1":"G A B","2":"bC","8":"K E F"},B:{"1":"1 2 3 4 5 6 7 8 9 C L M H N O P Q I R S T U V W X Y Z a b c d e f g h i j k l m n o p q r s t u AB BB CB DB EB FB D"},C:{"1":"0 1 2 3 4 5 6 7 8 9 J GB K E F G A B C L M H N O P HB v w x y z IB JB KB LB MB NB OB PB QB RB SB TB UB VB WB XB YB ZB aB bB cB dB eB fB gB hB iB jB kB lB mB nB oB EC pB FC qB rB sB tB uB vB wB xB yB zB 0B 1B 2B 3B 4B 5B 6B Q I R GC S T U V W X Y Z a b c d e f g h i j k l m n o p q r s t u AB BB CB DB EB FB D HC IC JC dC eC fC","8":"cC DC"},D:{"1":"0 1 2 3 4 5 6 7 8 9 J GB K E F G A B C L M H N O P HB v w x y z IB JB KB LB MB NB OB PB QB RB SB TB UB VB WB XB YB ZB aB bB cB dB eB fB gB hB iB jB kB lB mB nB oB EC pB FC qB rB sB tB uB vB wB xB yB zB 0B 1B 2B 3B 4B 5B 6B Q I R S T U V W X Y Z a b c d e f g h i j k l m n o p q r s t u AB BB CB DB EB FB D HC IC JC"},E:{"1":"J GB K E F G A B C L M H hC iC jC kC LC 7B 8B lC mC nC MC NC 9B oC AC OC PC QC RC SC pC BC TC UC VC WC XC YC CC qC","8":"gC KC"},F:{"1":"0 B C H N O P HB v w x y z IB JB KB LB MB NB OB PB QB RB SB TB UB VB WB XB YB ZB aB bB cB dB eB fB gB hB iB jB kB lB mB nB oB pB qB rB sB tB uB vB wB xB yB zB 0B 1B 2B 3B 4B 5B 6B Q I R GC S T U V W X Y Z a b c d e f g h i j k l m n o p q r s t u tC uC 7B ZC vC 8B","8":"G rC sC"},G:{"1":"F KC wC aC xC yC zC 0C 1C 2C 3C 4C 5C 6C 7C 8C 9C AD BD CD DD ED FD MC NC 9B GD AC OC PC QC RC SC HD BC TC UC VC WC XC YC CC"},H:{"2":"ID"},I:{"1":"DC J D JD KD LD MD aC ND OD"},J:{"1":"E A"},K:{"1":"B C I 7B ZC 8B","8":"A"},L:{"1":"D"},M:{"1":"D"},N:{"1":"A B"},O:{"1":"9B"},P:{"1":"0 J v w x y z PD QD RD SD TD LC UD VD WD XD YD AC BC CC ZD"},Q:{"1":"aD"},R:{"1":"bD"},S:{"1":"cD dD"}},B:1,C:"Text API for Canvas",D:true};
|
||||
module.exports={A:{A:{"1":"G A B","2":"bC","8":"K E F"},B:{"1":"1 2 3 4 5 6 7 8 9 C L M H N O P Q I R S T U V W X Y Z a b c d e f g h i j k l m n o p q r s t u AB BB CB DB EB FB D"},C:{"1":"0 1 2 3 4 5 6 7 8 9 J GB K E F G A B C L M H N O P HB v w x y z IB JB KB LB MB NB OB PB QB RB SB TB UB VB WB XB YB ZB aB bB cB dB eB fB gB hB iB jB kB lB mB nB oB EC pB FC qB rB sB tB uB vB wB xB yB zB 0B 1B 2B 3B 4B 5B 6B Q I R GC S T U V W X Y Z a b c d e f g h i j k l m n o p q r s t u AB BB CB DB EB FB D HC IC JC dC eC fC gC","8":"cC DC"},D:{"1":"0 1 2 3 4 5 6 7 8 9 J GB K E F G A B C L M H N O P HB v w x y z IB JB KB LB MB NB OB PB QB RB SB TB UB VB WB XB YB ZB aB bB cB dB eB fB gB hB iB jB kB lB mB nB oB EC pB FC qB rB sB tB uB vB wB xB yB zB 0B 1B 2B 3B 4B 5B 6B Q I R S T U V W X Y Z a b c d e f g h i j k l m n o p q r s t u AB BB CB DB EB FB D HC IC JC"},E:{"1":"J GB K E F G A B C L M H iC jC kC lC LC 7B 8B mC nC oC MC NC 9B pC AC OC PC QC RC SC qC BC TC UC VC WC XC YC CC rC","8":"hC KC"},F:{"1":"0 B C H N O P HB v w x y z IB JB KB LB MB NB OB PB QB RB SB TB UB VB WB XB YB ZB aB bB cB dB eB fB gB hB iB jB kB lB mB nB oB pB qB rB sB tB uB vB wB xB yB zB 0B 1B 2B 3B 4B 5B 6B Q I R GC S T U V W X Y Z a b c d e f g h i j k l m n o p q r s t u uC vC 7B ZC wC 8B","8":"G sC tC"},G:{"1":"F KC xC aC yC zC 0C 1C 2C 3C 4C 5C 6C 7C 8C 9C AD BD CD DD ED FD GD MC NC 9B HD AC OC PC QC RC SC ID BC TC UC VC WC XC YC CC"},H:{"2":"JD"},I:{"1":"DC J D KD LD MD ND aC OD PD"},J:{"1":"E A"},K:{"1":"B C I 7B ZC 8B","8":"A"},L:{"1":"D"},M:{"1":"D"},N:{"1":"A B"},O:{"1":"9B"},P:{"1":"0 J v w x y z QD RD SD TD UD LC VD WD XD YD ZD AC BC CC aD"},Q:{"1":"bD"},R:{"1":"cD"},S:{"1":"dD eD"}},B:1,C:"Text API for Canvas",D:true};
|
||||
|
2
node_modules/caniuse-lite/data/features/canvas.js
generated
vendored
2
node_modules/caniuse-lite/data/features/canvas.js
generated
vendored
@ -1 +1 @@
|
||||
module.exports={A:{A:{"1":"G A B","2":"bC","8":"K E F"},B:{"1":"1 2 3 4 5 6 7 8 9 C L M H N O P Q I R S T U V W X Y Z a b c d e f g h i j k l m n o p q r s t u AB BB CB DB EB FB D"},C:{"1":"0 1 2 3 4 5 6 7 8 9 J GB K E F G A B C L M H N O P HB v w x y z IB JB KB LB MB NB OB PB QB RB SB TB UB VB WB XB YB ZB aB bB cB dB eB fB gB hB iB jB kB lB mB nB oB EC pB FC qB rB sB tB uB vB wB xB yB zB 0B 1B 2B 3B 4B 5B 6B Q I R GC S T U V W X Y Z a b c d e f g h i j k l m n o p q r s t u AB BB CB DB EB FB D HC IC JC dC fC","132":"cC DC eC"},D:{"1":"0 1 2 3 4 5 6 7 8 9 J GB K E F G A B C L M H N O P HB v w x y z IB JB KB LB MB NB OB PB QB RB SB TB UB VB WB XB YB ZB aB bB cB dB eB fB gB hB iB jB kB lB mB nB oB EC pB FC qB rB sB tB uB vB wB xB yB zB 0B 1B 2B 3B 4B 5B 6B Q I R S T U V W X Y Z a b c d e f g h i j k l m n o p q r s t u AB BB CB DB EB FB D HC IC JC"},E:{"1":"J GB K E F G A B C L M H hC iC jC kC LC 7B 8B lC mC nC MC NC 9B oC AC OC PC QC RC SC pC BC TC UC VC WC XC YC CC qC","132":"gC KC"},F:{"1":"0 G B C H N O P HB v w x y z IB JB KB LB MB NB OB PB QB RB SB TB UB VB WB XB YB ZB aB bB cB dB eB fB gB hB iB jB kB lB mB nB oB pB qB rB sB tB uB vB wB xB yB zB 0B 1B 2B 3B 4B 5B 6B Q I R GC S T U V W X Y Z a b c d e f g h i j k l m n o p q r s t u rC sC tC uC 7B ZC vC 8B"},G:{"1":"F KC wC aC xC yC zC 0C 1C 2C 3C 4C 5C 6C 7C 8C 9C AD BD CD DD ED FD MC NC 9B GD AC OC PC QC RC SC HD BC TC UC VC WC XC YC CC"},H:{"260":"ID"},I:{"1":"DC J D MD aC ND OD","132":"JD KD LD"},J:{"1":"E A"},K:{"1":"A B C I 7B ZC 8B"},L:{"1":"D"},M:{"1":"D"},N:{"1":"A B"},O:{"1":"9B"},P:{"1":"0 J v w x y z PD QD RD SD TD LC UD VD WD XD YD AC BC CC ZD"},Q:{"1":"aD"},R:{"1":"bD"},S:{"1":"cD dD"}},B:1,C:"Canvas (basic support)",D:true};
|
||||
module.exports={A:{A:{"1":"G A B","2":"bC","8":"K E F"},B:{"1":"1 2 3 4 5 6 7 8 9 C L M H N O P Q I R S T U V W X Y Z a b c d e f g h i j k l m n o p q r s t u AB BB CB DB EB FB D"},C:{"1":"0 1 2 3 4 5 6 7 8 9 J GB K E F G A B C L M H N O P HB v w x y z IB JB KB LB MB NB OB PB QB RB SB TB UB VB WB XB YB ZB aB bB cB dB eB fB gB hB iB jB kB lB mB nB oB EC pB FC qB rB sB tB uB vB wB xB yB zB 0B 1B 2B 3B 4B 5B 6B Q I R GC S T U V W X Y Z a b c d e f g h i j k l m n o p q r s t u AB BB CB DB EB FB D HC IC JC dC eC gC","132":"cC DC fC"},D:{"1":"0 1 2 3 4 5 6 7 8 9 J GB K E F G A B C L M H N O P HB v w x y z IB JB KB LB MB NB OB PB QB RB SB TB UB VB WB XB YB ZB aB bB cB dB eB fB gB hB iB jB kB lB mB nB oB EC pB FC qB rB sB tB uB vB wB xB yB zB 0B 1B 2B 3B 4B 5B 6B Q I R S T U V W X Y Z a b c d e f g h i j k l m n o p q r s t u AB BB CB DB EB FB D HC IC JC"},E:{"1":"J GB K E F G A B C L M H iC jC kC lC LC 7B 8B mC nC oC MC NC 9B pC AC OC PC QC RC SC qC BC TC UC VC WC XC YC CC rC","132":"hC KC"},F:{"1":"0 G B C H N O P HB v w x y z IB JB KB LB MB NB OB PB QB RB SB TB UB VB WB XB YB ZB aB bB cB dB eB fB gB hB iB jB kB lB mB nB oB pB qB rB sB tB uB vB wB xB yB zB 0B 1B 2B 3B 4B 5B 6B Q I R GC S T U V W X Y Z a b c d e f g h i j k l m n o p q r s t u sC tC uC vC 7B ZC wC 8B"},G:{"1":"F KC xC aC yC zC 0C 1C 2C 3C 4C 5C 6C 7C 8C 9C AD BD CD DD ED FD GD MC NC 9B HD AC OC PC QC RC SC ID BC TC UC VC WC XC YC CC"},H:{"260":"JD"},I:{"1":"DC J D ND aC OD PD","132":"KD LD MD"},J:{"1":"E A"},K:{"1":"A B C I 7B ZC 8B"},L:{"1":"D"},M:{"1":"D"},N:{"1":"A B"},O:{"1":"9B"},P:{"1":"0 J v w x y z QD RD SD TD UD LC VD WD XD YD ZD AC BC CC aD"},Q:{"1":"bD"},R:{"1":"cD"},S:{"1":"dD eD"}},B:1,C:"Canvas (basic support)",D:true};
|
||||
|
2
node_modules/caniuse-lite/data/features/ch-unit.js
generated
vendored
2
node_modules/caniuse-lite/data/features/ch-unit.js
generated
vendored
@ -1 +1 @@
|
||||
module.exports={A:{A:{"2":"K E F bC","132":"G A B"},B:{"1":"1 2 3 4 5 6 7 8 9 C L M H N O P Q I R S T U V W X Y Z a b c d e f g h i j k l m n o p q r s t u AB BB CB DB EB FB D"},C:{"1":"0 1 2 3 4 5 6 7 8 9 cC DC J GB K E F G A B C L M H N O P HB v w x y z IB JB KB LB MB NB OB PB QB RB SB TB UB VB WB XB YB ZB aB bB cB dB eB fB gB hB iB jB kB lB mB nB oB EC pB FC qB rB sB tB uB vB wB xB yB zB 0B 1B 2B 3B 4B 5B 6B Q I R GC S T U V W X Y Z a b c d e f g h i j k l m n o p q r s t u AB BB CB DB EB FB D HC IC JC dC eC fC"},D:{"1":"1 2 3 4 5 6 7 8 9 JB KB LB MB NB OB PB QB RB SB TB UB VB WB XB YB ZB aB bB cB dB eB fB gB hB iB jB kB lB mB nB oB EC pB FC qB rB sB tB uB vB wB xB yB zB 0B 1B 2B 3B 4B 5B 6B Q I R S T U V W X Y Z a b c d e f g h i j k l m n o p q r s t u AB BB CB DB EB FB D HC IC JC","2":"0 J GB K E F G A B C L M H N O P HB v w x y z IB"},E:{"1":"E F G A B C L M H jC kC LC 7B 8B lC mC nC MC NC 9B oC AC OC PC QC RC SC pC BC TC UC VC WC XC YC CC qC","2":"J GB K gC KC hC iC"},F:{"1":"0 H N O P HB v w x y z IB JB KB LB MB NB OB PB QB RB SB TB UB VB WB XB YB ZB aB bB cB dB eB fB gB hB iB jB kB lB mB nB oB pB qB rB sB tB uB vB wB xB yB zB 0B 1B 2B 3B 4B 5B 6B Q I R GC S T U V W X Y Z a b c d e f g h i j k l m n o p q r s t u","2":"G B C rC sC tC uC 7B ZC vC 8B"},G:{"1":"F zC 0C 1C 2C 3C 4C 5C 6C 7C 8C 9C AD BD CD DD ED FD MC NC 9B GD AC OC PC QC RC SC HD BC TC UC VC WC XC YC CC","2":"KC wC aC xC yC"},H:{"2":"ID"},I:{"1":"D ND OD","2":"DC J JD KD LD MD aC"},J:{"1":"A","2":"E"},K:{"1":"I","2":"A B C 7B ZC 8B"},L:{"1":"D"},M:{"1":"D"},N:{"1":"A B"},O:{"1":"9B"},P:{"1":"0 J v w x y z PD QD RD SD TD LC UD VD WD XD YD AC BC CC ZD"},Q:{"1":"aD"},R:{"1":"bD"},S:{"1":"cD dD"}},B:4,C:"ch (character) unit",D:true};
|
||||
module.exports={A:{A:{"2":"K E F bC","132":"G A B"},B:{"1":"1 2 3 4 5 6 7 8 9 C L M H N O P Q I R S T U V W X Y Z a b c d e f g h i j k l m n o p q r s t u AB BB CB DB EB FB D"},C:{"1":"0 1 2 3 4 5 6 7 8 9 cC DC J GB K E F G A B C L M H N O P HB v w x y z IB JB KB LB MB NB OB PB QB RB SB TB UB VB WB XB YB ZB aB bB cB dB eB fB gB hB iB jB kB lB mB nB oB EC pB FC qB rB sB tB uB vB wB xB yB zB 0B 1B 2B 3B 4B 5B 6B Q I R GC S T U V W X Y Z a b c d e f g h i j k l m n o p q r s t u AB BB CB DB EB FB D HC IC JC dC eC fC gC"},D:{"1":"1 2 3 4 5 6 7 8 9 JB KB LB MB NB OB PB QB RB SB TB UB VB WB XB YB ZB aB bB cB dB eB fB gB hB iB jB kB lB mB nB oB EC pB FC qB rB sB tB uB vB wB xB yB zB 0B 1B 2B 3B 4B 5B 6B Q I R S T U V W X Y Z a b c d e f g h i j k l m n o p q r s t u AB BB CB DB EB FB D HC IC JC","2":"0 J GB K E F G A B C L M H N O P HB v w x y z IB"},E:{"1":"E F G A B C L M H kC lC LC 7B 8B mC nC oC MC NC 9B pC AC OC PC QC RC SC qC BC TC UC VC WC XC YC CC rC","2":"J GB K hC KC iC jC"},F:{"1":"0 H N O P HB v w x y z IB JB KB LB MB NB OB PB QB RB SB TB UB VB WB XB YB ZB aB bB cB dB eB fB gB hB iB jB kB lB mB nB oB pB qB rB sB tB uB vB wB xB yB zB 0B 1B 2B 3B 4B 5B 6B Q I R GC S T U V W X Y Z a b c d e f g h i j k l m n o p q r s t u","2":"G B C sC tC uC vC 7B ZC wC 8B"},G:{"1":"F 0C 1C 2C 3C 4C 5C 6C 7C 8C 9C AD BD CD DD ED FD GD MC NC 9B HD AC OC PC QC RC SC ID BC TC UC VC WC XC YC CC","2":"KC xC aC yC zC"},H:{"2":"JD"},I:{"1":"D OD PD","2":"DC J KD LD MD ND aC"},J:{"1":"A","2":"E"},K:{"1":"I","2":"A B C 7B ZC 8B"},L:{"1":"D"},M:{"1":"D"},N:{"1":"A B"},O:{"1":"9B"},P:{"1":"0 J v w x y z QD RD SD TD UD LC VD WD XD YD ZD AC BC CC aD"},Q:{"1":"bD"},R:{"1":"cD"},S:{"1":"dD eD"}},B:4,C:"ch (character) unit",D:true};
|
||||
|
2
node_modules/caniuse-lite/data/features/chacha20-poly1305.js
generated
vendored
2
node_modules/caniuse-lite/data/features/chacha20-poly1305.js
generated
vendored
@ -1 +1 @@
|
||||
module.exports={A:{A:{"2":"K E F G A B bC"},B:{"1":"1 2 3 4 5 6 7 8 9 Q I R S T U V W X Y Z a b c d e f g h i j k l m n o p q r s t u AB BB CB DB EB FB D","2":"C L M H N O P"},C:{"1":"1 2 3 4 5 6 7 8 9 dB eB fB gB hB iB jB kB lB mB nB oB EC pB FC qB rB sB tB uB vB wB xB yB zB 0B 1B 2B 3B 4B 5B 6B Q I R GC S T U V W X Y Z a b c d e f g h i j k l m n o p q r s t u AB BB CB DB EB FB D HC IC JC dC","2":"0 cC DC J GB K E F G A B C L M H N O P HB v w x y z IB JB KB LB MB NB OB PB QB RB SB TB UB VB WB XB YB ZB aB bB cB eC fC"},D:{"1":"1 2 3 4 5 6 7 8 9 fB gB hB iB jB kB lB mB nB oB EC pB FC qB rB sB tB uB vB wB xB yB zB 0B 1B 2B 3B 4B 5B 6B Q I R S T U V W X Y Z a b c d e f g h i j k l m n o p q r s t u AB BB CB DB EB FB D HC IC JC","2":"0 J GB K E F G A B C L M H N O P HB v w x y z IB JB KB LB MB NB OB","129":"PB QB RB SB TB UB VB WB XB YB ZB aB bB cB dB eB"},E:{"1":"C L M H 7B 8B lC mC nC MC NC 9B oC AC OC PC QC RC SC pC BC TC UC VC WC XC YC CC qC","2":"J GB K E F G A B gC KC hC iC jC kC LC"},F:{"1":"SB TB UB VB WB XB YB ZB aB bB cB dB eB fB gB hB iB jB kB lB mB nB oB pB qB rB sB tB uB vB wB xB yB zB 0B 1B 2B 3B 4B 5B 6B Q I R GC S T U V W X Y Z a b c d e f g h i j k l m n o p q r s t u","2":"0 G B C H N O P HB v w x y z IB JB KB LB MB NB OB PB QB RB rC sC tC uC 7B ZC vC 8B"},G:{"1":"5C 6C 7C 8C 9C AD BD CD DD ED FD MC NC 9B GD AC OC PC QC RC SC HD BC TC UC VC WC XC YC CC","2":"F KC wC aC xC yC zC 0C 1C 2C 3C 4C"},H:{"2":"ID"},I:{"1":"D","2":"DC J JD KD LD MD aC ND","16":"OD"},J:{"2":"E A"},K:{"1":"I","2":"A B C 7B ZC 8B"},L:{"1":"D"},M:{"1":"D"},N:{"2":"A B"},O:{"1":"9B"},P:{"1":"0 J v w x y z PD QD RD SD TD LC UD VD WD XD YD AC BC CC ZD"},Q:{"1":"aD"},R:{"1":"bD"},S:{"1":"cD dD"}},B:6,C:"ChaCha20-Poly1305 cipher suites for TLS",D:true};
|
||||
module.exports={A:{A:{"2":"K E F G A B bC"},B:{"1":"1 2 3 4 5 6 7 8 9 Q I R S T U V W X Y Z a b c d e f g h i j k l m n o p q r s t u AB BB CB DB EB FB D","2":"C L M H N O P"},C:{"1":"1 2 3 4 5 6 7 8 9 dB eB fB gB hB iB jB kB lB mB nB oB EC pB FC qB rB sB tB uB vB wB xB yB zB 0B 1B 2B 3B 4B 5B 6B Q I R GC S T U V W X Y Z a b c d e f g h i j k l m n o p q r s t u AB BB CB DB EB FB D HC IC JC dC eC","2":"0 cC DC J GB K E F G A B C L M H N O P HB v w x y z IB JB KB LB MB NB OB PB QB RB SB TB UB VB WB XB YB ZB aB bB cB fC gC"},D:{"1":"1 2 3 4 5 6 7 8 9 fB gB hB iB jB kB lB mB nB oB EC pB FC qB rB sB tB uB vB wB xB yB zB 0B 1B 2B 3B 4B 5B 6B Q I R S T U V W X Y Z a b c d e f g h i j k l m n o p q r s t u AB BB CB DB EB FB D HC IC JC","2":"0 J GB K E F G A B C L M H N O P HB v w x y z IB JB KB LB MB NB OB","129":"PB QB RB SB TB UB VB WB XB YB ZB aB bB cB dB eB"},E:{"1":"C L M H 7B 8B mC nC oC MC NC 9B pC AC OC PC QC RC SC qC BC TC UC VC WC XC YC CC rC","2":"J GB K E F G A B hC KC iC jC kC lC LC"},F:{"1":"SB TB UB VB WB XB YB ZB aB bB cB dB eB fB gB hB iB jB kB lB mB nB oB pB qB rB sB tB uB vB wB xB yB zB 0B 1B 2B 3B 4B 5B 6B Q I R GC S T U V W X Y Z a b c d e f g h i j k l m n o p q r s t u","2":"0 G B C H N O P HB v w x y z IB JB KB LB MB NB OB PB QB RB sC tC uC vC 7B ZC wC 8B"},G:{"1":"6C 7C 8C 9C AD BD CD DD ED FD GD MC NC 9B HD AC OC PC QC RC SC ID BC TC UC VC WC XC YC CC","2":"F KC xC aC yC zC 0C 1C 2C 3C 4C 5C"},H:{"2":"JD"},I:{"1":"D","2":"DC J KD LD MD ND aC OD","16":"PD"},J:{"2":"E A"},K:{"1":"I","2":"A B C 7B ZC 8B"},L:{"1":"D"},M:{"1":"D"},N:{"2":"A B"},O:{"1":"9B"},P:{"1":"0 J v w x y z QD RD SD TD UD LC VD WD XD YD ZD AC BC CC aD"},Q:{"1":"bD"},R:{"1":"cD"},S:{"1":"dD eD"}},B:6,C:"ChaCha20-Poly1305 cipher suites for TLS",D:true};
|
||||
|
2
node_modules/caniuse-lite/data/features/channel-messaging.js
generated
vendored
2
node_modules/caniuse-lite/data/features/channel-messaging.js
generated
vendored
@ -1 +1 @@
|
||||
module.exports={A:{A:{"1":"A B","2":"K E F G bC"},B:{"1":"1 2 3 4 5 6 7 8 9 C L M H N O P Q I R S T U V W X Y Z a b c d e f g h i j k l m n o p q r s t u AB BB CB DB EB FB D"},C:{"1":"1 2 3 4 5 6 7 8 9 XB YB ZB aB bB cB dB eB fB gB hB iB jB kB lB mB nB oB EC pB FC qB rB sB tB uB vB wB xB yB zB 0B 1B 2B 3B 4B 5B 6B Q I R GC S T U V W X Y Z a b c d e f g h i j k l m n o p q r s t u AB BB CB DB EB FB D HC IC JC dC","2":"0 cC DC J GB K E F G A B C L M H N O P HB v w x y z eC fC","194":"IB JB KB LB MB NB OB PB QB RB SB TB UB VB WB"},D:{"1":"0 1 2 3 4 5 6 7 8 9 J GB K E F G A B C L M H N O P HB v w x y z IB JB KB LB MB NB OB PB QB RB SB TB UB VB WB XB YB ZB aB bB cB dB eB fB gB hB iB jB kB lB mB nB oB EC pB FC qB rB sB tB uB vB wB xB yB zB 0B 1B 2B 3B 4B 5B 6B Q I R S T U V W X Y Z a b c d e f g h i j k l m n o p q r s t u AB BB CB DB EB FB D HC IC JC"},E:{"1":"GB K E F G A B C L M H hC iC jC kC LC 7B 8B lC mC nC MC NC 9B oC AC OC PC QC RC SC pC BC TC UC VC WC XC YC CC qC","2":"J gC KC"},F:{"1":"0 B C H N O P HB v w x y z IB JB KB LB MB NB OB PB QB RB SB TB UB VB WB XB YB ZB aB bB cB dB eB fB gB hB iB jB kB lB mB nB oB pB qB rB sB tB uB vB wB xB yB zB 0B 1B 2B 3B 4B 5B 6B Q I R GC S T U V W X Y Z a b c d e f g h i j k l m n o p q r s t u uC 7B ZC vC 8B","2":"G rC sC","16":"tC"},G:{"1":"F xC yC zC 0C 1C 2C 3C 4C 5C 6C 7C 8C 9C AD BD CD DD ED FD MC NC 9B GD AC OC PC QC RC SC HD BC TC UC VC WC XC YC CC","2":"KC wC aC"},H:{"2":"ID"},I:{"1":"D ND OD","2":"DC J JD KD LD MD aC"},J:{"1":"E A"},K:{"1":"B C I 7B ZC 8B","2":"A"},L:{"1":"D"},M:{"1":"D"},N:{"1":"A B"},O:{"1":"9B"},P:{"1":"0 J v w x y z PD QD RD SD TD LC UD VD WD XD YD AC BC CC ZD"},Q:{"1":"aD"},R:{"1":"bD"},S:{"1":"cD dD"}},B:1,C:"Channel messaging",D:true};
|
||||
module.exports={A:{A:{"1":"A B","2":"K E F G bC"},B:{"1":"1 2 3 4 5 6 7 8 9 C L M H N O P Q I R S T U V W X Y Z a b c d e f g h i j k l m n o p q r s t u AB BB CB DB EB FB D"},C:{"1":"1 2 3 4 5 6 7 8 9 XB YB ZB aB bB cB dB eB fB gB hB iB jB kB lB mB nB oB EC pB FC qB rB sB tB uB vB wB xB yB zB 0B 1B 2B 3B 4B 5B 6B Q I R GC S T U V W X Y Z a b c d e f g h i j k l m n o p q r s t u AB BB CB DB EB FB D HC IC JC dC eC","2":"0 cC DC J GB K E F G A B C L M H N O P HB v w x y z fC gC","194":"IB JB KB LB MB NB OB PB QB RB SB TB UB VB WB"},D:{"1":"0 1 2 3 4 5 6 7 8 9 J GB K E F G A B C L M H N O P HB v w x y z IB JB KB LB MB NB OB PB QB RB SB TB UB VB WB XB YB ZB aB bB cB dB eB fB gB hB iB jB kB lB mB nB oB EC pB FC qB rB sB tB uB vB wB xB yB zB 0B 1B 2B 3B 4B 5B 6B Q I R S T U V W X Y Z a b c d e f g h i j k l m n o p q r s t u AB BB CB DB EB FB D HC IC JC"},E:{"1":"GB K E F G A B C L M H iC jC kC lC LC 7B 8B mC nC oC MC NC 9B pC AC OC PC QC RC SC qC BC TC UC VC WC XC YC CC rC","2":"J hC KC"},F:{"1":"0 B C H N O P HB v w x y z IB JB KB LB MB NB OB PB QB RB SB TB UB VB WB XB YB ZB aB bB cB dB eB fB gB hB iB jB kB lB mB nB oB pB qB rB sB tB uB vB wB xB yB zB 0B 1B 2B 3B 4B 5B 6B Q I R GC S T U V W X Y Z a b c d e f g h i j k l m n o p q r s t u vC 7B ZC wC 8B","2":"G sC tC","16":"uC"},G:{"1":"F yC zC 0C 1C 2C 3C 4C 5C 6C 7C 8C 9C AD BD CD DD ED FD GD MC NC 9B HD AC OC PC QC RC SC ID BC TC UC VC WC XC YC CC","2":"KC xC aC"},H:{"2":"JD"},I:{"1":"D OD PD","2":"DC J KD LD MD ND aC"},J:{"1":"E A"},K:{"1":"B C I 7B ZC 8B","2":"A"},L:{"1":"D"},M:{"1":"D"},N:{"1":"A B"},O:{"1":"9B"},P:{"1":"0 J v w x y z QD RD SD TD UD LC VD WD XD YD ZD AC BC CC aD"},Q:{"1":"bD"},R:{"1":"cD"},S:{"1":"dD eD"}},B:1,C:"Channel messaging",D:true};
|
||||
|
2
node_modules/caniuse-lite/data/features/childnode-remove.js
generated
vendored
2
node_modules/caniuse-lite/data/features/childnode-remove.js
generated
vendored
@ -1 +1 @@
|
||||
module.exports={A:{A:{"2":"K E F G A B bC"},B:{"1":"1 2 3 4 5 6 7 8 9 L M H N O P Q I R S T U V W X Y Z a b c d e f g h i j k l m n o p q r s t u AB BB CB DB EB FB D","16":"C"},C:{"1":"0 1 2 3 4 5 6 7 8 9 y z IB JB KB LB MB NB OB PB QB RB SB TB UB VB WB XB YB ZB aB bB cB dB eB fB gB hB iB jB kB lB mB nB oB EC pB FC qB rB sB tB uB vB wB xB yB zB 0B 1B 2B 3B 4B 5B 6B Q I R GC S T U V W X Y Z a b c d e f g h i j k l m n o p q r s t u AB BB CB DB EB FB D HC IC JC dC","2":"cC DC J GB K E F G A B C L M H N O P HB v w x eC fC"},D:{"1":"0 1 2 3 4 5 6 7 8 9 z IB JB KB LB MB NB OB PB QB RB SB TB UB VB WB XB YB ZB aB bB cB dB eB fB gB hB iB jB kB lB mB nB oB EC pB FC qB rB sB tB uB vB wB xB yB zB 0B 1B 2B 3B 4B 5B 6B Q I R S T U V W X Y Z a b c d e f g h i j k l m n o p q r s t u AB BB CB DB EB FB D HC IC JC","2":"J GB K E F G A B C L M H N O P HB v w x y"},E:{"1":"E F G A B C L M H iC jC kC LC 7B 8B lC mC nC MC NC 9B oC AC OC PC QC RC SC pC BC TC UC VC WC XC YC CC qC","2":"J GB gC KC hC","16":"K"},F:{"1":"0 H N O P HB v w x y z IB JB KB LB MB NB OB PB QB RB SB TB UB VB WB XB YB ZB aB bB cB dB eB fB gB hB iB jB kB lB mB nB oB pB qB rB sB tB uB vB wB xB yB zB 0B 1B 2B 3B 4B 5B 6B Q I R GC S T U V W X Y Z a b c d e f g h i j k l m n o p q r s t u","2":"G B C rC sC tC uC 7B ZC vC 8B"},G:{"1":"F zC 0C 1C 2C 3C 4C 5C 6C 7C 8C 9C AD BD CD DD ED FD MC NC 9B GD AC OC PC QC RC SC HD BC TC UC VC WC XC YC CC","2":"KC wC aC xC yC"},H:{"2":"ID"},I:{"1":"D ND OD","2":"DC J JD KD LD MD aC"},J:{"1":"A","2":"E"},K:{"1":"I","2":"A B C 7B ZC 8B"},L:{"1":"D"},M:{"1":"D"},N:{"2":"A B"},O:{"1":"9B"},P:{"1":"0 J v w x y z PD QD RD SD TD LC UD VD WD XD YD AC BC CC ZD"},Q:{"1":"aD"},R:{"1":"bD"},S:{"1":"cD dD"}},B:1,C:"ChildNode.remove()",D:true};
|
||||
module.exports={A:{A:{"2":"K E F G A B bC"},B:{"1":"1 2 3 4 5 6 7 8 9 L M H N O P Q I R S T U V W X Y Z a b c d e f g h i j k l m n o p q r s t u AB BB CB DB EB FB D","16":"C"},C:{"1":"0 1 2 3 4 5 6 7 8 9 y z IB JB KB LB MB NB OB PB QB RB SB TB UB VB WB XB YB ZB aB bB cB dB eB fB gB hB iB jB kB lB mB nB oB EC pB FC qB rB sB tB uB vB wB xB yB zB 0B 1B 2B 3B 4B 5B 6B Q I R GC S T U V W X Y Z a b c d e f g h i j k l m n o p q r s t u AB BB CB DB EB FB D HC IC JC dC eC","2":"cC DC J GB K E F G A B C L M H N O P HB v w x fC gC"},D:{"1":"0 1 2 3 4 5 6 7 8 9 z IB JB KB LB MB NB OB PB QB RB SB TB UB VB WB XB YB ZB aB bB cB dB eB fB gB hB iB jB kB lB mB nB oB EC pB FC qB rB sB tB uB vB wB xB yB zB 0B 1B 2B 3B 4B 5B 6B Q I R S T U V W X Y Z a b c d e f g h i j k l m n o p q r s t u AB BB CB DB EB FB D HC IC JC","2":"J GB K E F G A B C L M H N O P HB v w x y"},E:{"1":"E F G A B C L M H jC kC lC LC 7B 8B mC nC oC MC NC 9B pC AC OC PC QC RC SC qC BC TC UC VC WC XC YC CC rC","2":"J GB hC KC iC","16":"K"},F:{"1":"0 H N O P HB v w x y z IB JB KB LB MB NB OB PB QB RB SB TB UB VB WB XB YB ZB aB bB cB dB eB fB gB hB iB jB kB lB mB nB oB pB qB rB sB tB uB vB wB xB yB zB 0B 1B 2B 3B 4B 5B 6B Q I R GC S T U V W X Y Z a b c d e f g h i j k l m n o p q r s t u","2":"G B C sC tC uC vC 7B ZC wC 8B"},G:{"1":"F 0C 1C 2C 3C 4C 5C 6C 7C 8C 9C AD BD CD DD ED FD GD MC NC 9B HD AC OC PC QC RC SC ID BC TC UC VC WC XC YC CC","2":"KC xC aC yC zC"},H:{"2":"JD"},I:{"1":"D OD PD","2":"DC J KD LD MD ND aC"},J:{"1":"A","2":"E"},K:{"1":"I","2":"A B C 7B ZC 8B"},L:{"1":"D"},M:{"1":"D"},N:{"2":"A B"},O:{"1":"9B"},P:{"1":"0 J v w x y z QD RD SD TD UD LC VD WD XD YD ZD AC BC CC aD"},Q:{"1":"bD"},R:{"1":"cD"},S:{"1":"dD eD"}},B:1,C:"ChildNode.remove()",D:true};
|
||||
|
2
node_modules/caniuse-lite/data/features/classlist.js
generated
vendored
2
node_modules/caniuse-lite/data/features/classlist.js
generated
vendored
@ -1 +1 @@
|
||||
module.exports={A:{A:{"8":"K E F G bC","1924":"A B"},B:{"1":"1 2 3 4 5 6 7 8 9 C L M H N O P Q I R S T U V W X Y Z a b c d e f g h i j k l m n o p q r s t u AB BB CB DB EB FB D"},C:{"1":"1 2 3 4 5 6 7 8 9 IB JB KB LB MB NB OB PB QB RB SB TB UB VB WB XB YB ZB aB bB cB dB eB fB gB hB iB jB kB lB mB nB oB EC pB FC qB rB sB tB uB vB wB xB yB zB 0B 1B 2B 3B 4B 5B 6B Q I R GC S T U V W X Y Z a b c d e f g h i j k l m n o p q r s t u AB BB CB DB EB FB D HC IC JC dC","8":"cC DC eC","516":"0 z","772":"J GB K E F G A B C L M H N O P HB v w x y fC"},D:{"1":"1 2 3 4 5 6 7 8 9 KB LB MB NB OB PB QB RB SB TB UB VB WB XB YB ZB aB bB cB dB eB fB gB hB iB jB kB lB mB nB oB EC pB FC qB rB sB tB uB vB wB xB yB zB 0B 1B 2B 3B 4B 5B 6B Q I R S T U V W X Y Z a b c d e f g h i j k l m n o p q r s t u AB BB CB DB EB FB D HC IC JC","8":"J GB K E","516":"0 z IB JB","772":"y","900":"F G A B C L M H N O P HB v w x"},E:{"1":"E F G A B C L M H jC kC LC 7B 8B lC mC nC MC NC 9B oC AC OC PC QC RC SC pC BC TC UC VC WC XC YC CC qC","8":"J GB gC KC","900":"K hC iC"},F:{"1":"0 H N O P HB v w x y z IB JB KB LB MB NB OB PB QB RB SB TB UB VB WB XB YB ZB aB bB cB dB eB fB gB hB iB jB kB lB mB nB oB pB qB rB sB tB uB vB wB xB yB zB 0B 1B 2B 3B 4B 5B 6B Q I R GC S T U V W X Y Z a b c d e f g h i j k l m n o p q r s t u","8":"G B rC sC tC uC 7B","900":"C ZC vC 8B"},G:{"1":"F zC 0C 1C 2C 3C 4C 5C 6C 7C 8C 9C AD BD CD DD ED FD MC NC 9B GD AC OC PC QC RC SC HD BC TC UC VC WC XC YC CC","8":"KC wC aC","900":"xC yC"},H:{"900":"ID"},I:{"1":"D ND OD","8":"JD KD LD","900":"DC J MD aC"},J:{"1":"A","900":"E"},K:{"1":"I","8":"A B","900":"C 7B ZC 8B"},L:{"1":"D"},M:{"1":"D"},N:{"900":"A B"},O:{"1":"9B"},P:{"1":"0 J v w x y z PD QD RD SD TD LC UD VD WD XD YD AC BC CC ZD"},Q:{"1":"aD"},R:{"1":"bD"},S:{"1":"cD dD"}},B:1,C:"classList (DOMTokenList)",D:true};
|
||||
module.exports={A:{A:{"8":"K E F G bC","1924":"A B"},B:{"1":"1 2 3 4 5 6 7 8 9 C L M H N O P Q I R S T U V W X Y Z a b c d e f g h i j k l m n o p q r s t u AB BB CB DB EB FB D"},C:{"1":"1 2 3 4 5 6 7 8 9 IB JB KB LB MB NB OB PB QB RB SB TB UB VB WB XB YB ZB aB bB cB dB eB fB gB hB iB jB kB lB mB nB oB EC pB FC qB rB sB tB uB vB wB xB yB zB 0B 1B 2B 3B 4B 5B 6B Q I R GC S T U V W X Y Z a b c d e f g h i j k l m n o p q r s t u AB BB CB DB EB FB D HC IC JC dC eC","8":"cC DC fC","516":"0 z","772":"J GB K E F G A B C L M H N O P HB v w x y gC"},D:{"1":"1 2 3 4 5 6 7 8 9 KB LB MB NB OB PB QB RB SB TB UB VB WB XB YB ZB aB bB cB dB eB fB gB hB iB jB kB lB mB nB oB EC pB FC qB rB sB tB uB vB wB xB yB zB 0B 1B 2B 3B 4B 5B 6B Q I R S T U V W X Y Z a b c d e f g h i j k l m n o p q r s t u AB BB CB DB EB FB D HC IC JC","8":"J GB K E","516":"0 z IB JB","772":"y","900":"F G A B C L M H N O P HB v w x"},E:{"1":"E F G A B C L M H kC lC LC 7B 8B mC nC oC MC NC 9B pC AC OC PC QC RC SC qC BC TC UC VC WC XC YC CC rC","8":"J GB hC KC","900":"K iC jC"},F:{"1":"0 H N O P HB v w x y z IB JB KB LB MB NB OB PB QB RB SB TB UB VB WB XB YB ZB aB bB cB dB eB fB gB hB iB jB kB lB mB nB oB pB qB rB sB tB uB vB wB xB yB zB 0B 1B 2B 3B 4B 5B 6B Q I R GC S T U V W X Y Z a b c d e f g h i j k l m n o p q r s t u","8":"G B sC tC uC vC 7B","900":"C ZC wC 8B"},G:{"1":"F 0C 1C 2C 3C 4C 5C 6C 7C 8C 9C AD BD CD DD ED FD GD MC NC 9B HD AC OC PC QC RC SC ID BC TC UC VC WC XC YC CC","8":"KC xC aC","900":"yC zC"},H:{"900":"JD"},I:{"1":"D OD PD","8":"KD LD MD","900":"DC J ND aC"},J:{"1":"A","900":"E"},K:{"1":"I","8":"A B","900":"C 7B ZC 8B"},L:{"1":"D"},M:{"1":"D"},N:{"900":"A B"},O:{"1":"9B"},P:{"1":"0 J v w x y z QD RD SD TD UD LC VD WD XD YD ZD AC BC CC aD"},Q:{"1":"bD"},R:{"1":"cD"},S:{"1":"dD eD"}},B:1,C:"classList (DOMTokenList)",D:true};
|
||||
|
2
node_modules/caniuse-lite/data/features/client-hints-dpr-width-viewport.js
generated
vendored
2
node_modules/caniuse-lite/data/features/client-hints-dpr-width-viewport.js
generated
vendored
@ -1 +1 @@
|
||||
module.exports={A:{A:{"2":"K E F G A B bC"},B:{"1":"1 2 3 4 5 6 7 8 9 Q I R S T U V W X Y Z a b c d e f g h i j k l m n o p q r s t u AB BB CB DB EB FB D","2":"C L M H N O P"},C:{"2":"0 1 2 3 4 5 6 7 8 9 cC DC J GB K E F G A B C L M H N O P HB v w x y z IB JB KB LB MB NB OB PB QB RB SB TB UB VB WB XB YB ZB aB bB cB dB eB fB gB hB iB jB kB lB mB nB oB EC pB FC qB rB sB tB uB vB wB xB yB zB 0B 1B 2B 3B 4B 5B 6B Q I R GC S T U V W X Y Z a b c d e f g h i j k l m n o p q r s t u AB BB CB DB EB FB D HC IC JC dC eC fC"},D:{"1":"1 2 3 4 5 6 7 8 9 cB dB eB fB gB hB iB jB kB lB mB nB oB EC pB FC qB rB sB tB uB vB wB xB yB zB 0B 1B 2B 3B 4B 5B 6B Q I R S T U V W X Y Z a b c d e f g h i j k l m n o p q r s t u AB BB CB DB EB FB D HC IC JC","2":"0 J GB K E F G A B C L M H N O P HB v w x y z IB JB KB LB MB NB OB PB QB RB SB TB UB VB WB XB YB ZB aB bB"},E:{"2":"J GB K E F G A B C L M H gC KC hC iC jC kC LC 7B 8B lC mC nC MC NC 9B oC AC OC PC QC RC SC pC BC TC UC VC WC XC YC CC qC"},F:{"1":"PB QB RB SB TB UB VB WB XB YB ZB aB bB cB dB eB fB gB hB iB jB kB lB mB nB oB pB qB rB sB tB uB vB wB xB yB zB 0B 1B 2B 3B 4B 5B 6B Q I R GC S T U V W X Y Z a b c d e f g h i j k l m n o p q r s t u","2":"0 G B C H N O P HB v w x y z IB JB KB LB MB NB OB rC sC tC uC 7B ZC vC 8B"},G:{"2":"F KC wC aC xC yC zC 0C 1C 2C 3C 4C 5C 6C 7C 8C 9C AD BD CD DD ED FD MC NC 9B GD AC OC PC QC RC SC HD BC TC UC VC WC XC YC CC"},H:{"2":"ID"},I:{"1":"D","2":"DC J JD KD LD MD aC ND OD"},J:{"2":"E A"},K:{"1":"I","2":"A B C 7B ZC 8B"},L:{"1":"D"},M:{"2":"D"},N:{"2":"A B"},O:{"1":"9B"},P:{"1":"0 v w x y z PD QD RD SD TD LC UD VD WD XD YD AC BC CC ZD","2":"J"},Q:{"1":"aD"},R:{"1":"bD"},S:{"2":"cD dD"}},B:6,C:"Client Hints: DPR, Width, Viewport-Width",D:true};
|
||||
module.exports={A:{A:{"2":"K E F G A B bC"},B:{"1":"1 2 3 4 5 6 7 8 9 Q I R S T U V W X Y Z a b c d e f g h i j k l m n o p q r s t u AB BB CB DB EB FB D","2":"C L M H N O P"},C:{"2":"0 1 2 3 4 5 6 7 8 9 cC DC J GB K E F G A B C L M H N O P HB v w x y z IB JB KB LB MB NB OB PB QB RB SB TB UB VB WB XB YB ZB aB bB cB dB eB fB gB hB iB jB kB lB mB nB oB EC pB FC qB rB sB tB uB vB wB xB yB zB 0B 1B 2B 3B 4B 5B 6B Q I R GC S T U V W X Y Z a b c d e f g h i j k l m n o p q r s t u AB BB CB DB EB FB D HC IC JC dC eC fC gC"},D:{"1":"1 2 3 4 5 6 7 8 9 cB dB eB fB gB hB iB jB kB lB mB nB oB EC pB FC qB rB sB tB uB vB wB xB yB zB 0B 1B 2B 3B 4B 5B 6B Q I R S T U V W X Y Z a b c d e f g h i j k l m n o p q r s t u AB BB CB DB EB FB D HC IC JC","2":"0 J GB K E F G A B C L M H N O P HB v w x y z IB JB KB LB MB NB OB PB QB RB SB TB UB VB WB XB YB ZB aB bB"},E:{"2":"J GB K E F G A B C L M H hC KC iC jC kC lC LC 7B 8B mC nC oC MC NC 9B pC AC OC PC QC RC SC qC BC TC UC VC WC XC YC CC rC"},F:{"1":"PB QB RB SB TB UB VB WB XB YB ZB aB bB cB dB eB fB gB hB iB jB kB lB mB nB oB pB qB rB sB tB uB vB wB xB yB zB 0B 1B 2B 3B 4B 5B 6B Q I R GC S T U V W X Y Z a b c d e f g h i j k l m n o p q r s t u","2":"0 G B C H N O P HB v w x y z IB JB KB LB MB NB OB sC tC uC vC 7B ZC wC 8B"},G:{"2":"F KC xC aC yC zC 0C 1C 2C 3C 4C 5C 6C 7C 8C 9C AD BD CD DD ED FD GD MC NC 9B HD AC OC PC QC RC SC ID BC TC UC VC WC XC YC CC"},H:{"2":"JD"},I:{"1":"D","2":"DC J KD LD MD ND aC OD PD"},J:{"2":"E A"},K:{"1":"I","2":"A B C 7B ZC 8B"},L:{"1":"D"},M:{"2":"D"},N:{"2":"A B"},O:{"1":"9B"},P:{"1":"0 v w x y z QD RD SD TD UD LC VD WD XD YD ZD AC BC CC aD","2":"J"},Q:{"1":"bD"},R:{"1":"cD"},S:{"2":"dD eD"}},B:6,C:"Client Hints: DPR, Width, Viewport-Width",D:true};
|
||||
|
2
node_modules/caniuse-lite/data/features/clipboard.js
generated
vendored
2
node_modules/caniuse-lite/data/features/clipboard.js
generated
vendored
@ -1 +1 @@
|
||||
module.exports={A:{A:{"2436":"K E F G A B bC"},B:{"260":"O P","2436":"C L M H N","8196":"1 2 3 4 5 6 7 8 9 Q I R S T U V W X Y Z a b c d e f g h i j k l m n o p q r s t u AB BB CB DB EB FB D"},C:{"2":"cC DC J GB K E F G A B C L M H N O P HB v w eC fC","772":"0 x y z IB JB KB LB MB NB OB PB QB RB SB TB UB VB WB","4100":"1 2 3 4 5 6 7 8 9 XB YB ZB aB bB cB dB eB fB gB hB iB jB kB lB mB nB oB EC pB FC qB rB sB tB uB vB wB xB yB zB 0B 1B 2B 3B 4B 5B 6B Q I R GC S T U V W X Y Z a b c d e f g h i j k l m n o p q r s t u AB BB CB DB EB FB D HC IC JC dC"},D:{"2":"J GB K E F G A B C","2564":"0 L M H N O P HB v w x y z IB JB KB LB MB NB OB PB QB RB SB TB UB VB WB XB YB","8196":"1 2 3 4 5 6 7 8 9 oB EC pB FC qB rB sB tB uB vB wB xB yB zB 0B 1B 2B 3B 4B 5B 6B Q I R S T U V W X Y Z a b c d e f g h i j k l m n o p q r s t u AB BB CB DB EB FB D HC IC JC","10244":"ZB aB bB cB dB eB fB gB hB iB jB kB lB mB nB"},E:{"1":"C L M H 8B lC mC nC MC NC 9B oC AC OC PC QC RC SC pC BC TC UC VC WC XC YC CC qC","16":"gC KC","2308":"A B LC 7B","2820":"J GB K E F G hC iC jC kC"},F:{"2":"G B rC sC tC uC 7B ZC vC","16":"C","516":"8B","2564":"0 H N O P HB v w x y z IB JB KB LB","8196":"bB cB dB eB fB gB hB iB jB kB lB mB nB oB pB qB rB sB tB uB vB wB xB yB zB 0B 1B 2B 3B 4B 5B 6B Q I R GC S T U V W X Y Z a b c d e f g h i j k l m n o p q r s t u","10244":"MB NB OB PB QB RB SB TB UB VB WB XB YB ZB aB"},G:{"1":"7C 8C 9C AD BD CD DD ED FD MC NC 9B GD AC OC PC QC RC SC HD BC TC UC VC WC XC YC CC","2":"KC wC aC","2820":"F xC yC zC 0C 1C 2C 3C 4C 5C 6C"},H:{"2":"ID"},I:{"2":"DC J JD KD LD MD aC","260":"D","2308":"ND OD"},J:{"2":"E","2308":"A"},K:{"2":"A B C 7B ZC","16":"8B","8196":"I"},L:{"8196":"D"},M:{"1028":"D"},N:{"2":"A B"},O:{"8196":"9B"},P:{"2052":"PD QD","2308":"J","8196":"0 v w x y z RD SD TD LC UD VD WD XD YD AC BC CC ZD"},Q:{"8196":"aD"},R:{"8196":"bD"},S:{"4100":"cD dD"}},B:5,C:"Synchronous Clipboard API",D:true};
|
||||
module.exports={A:{A:{"2436":"K E F G A B bC"},B:{"260":"O P","2436":"C L M H N","8196":"1 2 3 4 5 6 7 8 9 Q I R S T U V W X Y Z a b c d e f g h i j k l m n o p q r s t u AB BB CB DB EB FB D"},C:{"2":"cC DC J GB K E F G A B C L M H N O P HB v w fC gC","772":"0 x y z IB JB KB LB MB NB OB PB QB RB SB TB UB VB WB","4100":"1 2 3 4 5 6 7 8 9 XB YB ZB aB bB cB dB eB fB gB hB iB jB kB lB mB nB oB EC pB FC qB rB sB tB uB vB wB xB yB zB 0B 1B 2B 3B 4B 5B 6B Q I R GC S T U V W X Y Z a b c d e f g h i j k l m n o p q r s t u AB BB CB DB EB FB D HC IC JC dC eC"},D:{"2":"J GB K E F G A B C","2564":"0 L M H N O P HB v w x y z IB JB KB LB MB NB OB PB QB RB SB TB UB VB WB XB YB","8196":"1 2 3 4 5 6 7 8 9 oB EC pB FC qB rB sB tB uB vB wB xB yB zB 0B 1B 2B 3B 4B 5B 6B Q I R S T U V W X Y Z a b c d e f g h i j k l m n o p q r s t u AB BB CB DB EB FB D HC IC JC","10244":"ZB aB bB cB dB eB fB gB hB iB jB kB lB mB nB"},E:{"1":"C L M H 8B mC nC oC MC NC 9B pC AC OC PC QC RC SC qC BC TC UC VC WC XC YC CC rC","16":"hC KC","2308":"A B LC 7B","2820":"J GB K E F G iC jC kC lC"},F:{"2":"G B sC tC uC vC 7B ZC wC","16":"C","516":"8B","2564":"0 H N O P HB v w x y z IB JB KB LB","8196":"bB cB dB eB fB gB hB iB jB kB lB mB nB oB pB qB rB sB tB uB vB wB xB yB zB 0B 1B 2B 3B 4B 5B 6B Q I R GC S T U V W X Y Z a b c d e f g h i j k l m n o p q r s t u","10244":"MB NB OB PB QB RB SB TB UB VB WB XB YB ZB aB"},G:{"1":"8C 9C AD BD CD DD ED FD GD MC NC 9B HD AC OC PC QC RC SC ID BC TC UC VC WC XC YC CC","2":"KC xC aC","2820":"F yC zC 0C 1C 2C 3C 4C 5C 6C 7C"},H:{"2":"JD"},I:{"2":"DC J KD LD MD ND aC","260":"D","2308":"OD PD"},J:{"2":"E","2308":"A"},K:{"2":"A B C 7B ZC","16":"8B","8196":"I"},L:{"8196":"D"},M:{"1028":"D"},N:{"2":"A B"},O:{"8196":"9B"},P:{"2052":"QD RD","2308":"J","8196":"0 v w x y z SD TD UD LC VD WD XD YD ZD AC BC CC aD"},Q:{"8196":"bD"},R:{"8196":"cD"},S:{"4100":"dD eD"}},B:5,C:"Synchronous Clipboard API",D:true};
|
||||
|
2
node_modules/caniuse-lite/data/features/colr-v1.js
generated
vendored
2
node_modules/caniuse-lite/data/features/colr-v1.js
generated
vendored
@ -1 +1 @@
|
||||
module.exports={A:{A:{"2":"K E F G A B bC"},B:{"1":"1 2 3 4 5 6 7 8 9 h i j k l m n o p q r s t u AB BB CB DB EB FB D","2":"C L M H N O P Q I R S T U V W X Y Z a b c d e f g"},C:{"1":"1 2 3 4 5 6 7 8 9 q r s t u AB BB CB DB EB FB D HC IC JC dC","2":"0 cC DC J GB K E F G A B C L M H N O P HB v w x y z IB JB KB LB MB NB OB PB QB RB SB TB UB VB WB XB YB ZB aB bB cB dB eB fB gB hB iB jB kB lB mB nB oB EC pB FC qB rB sB tB uB vB wB xB yB zB 0B 1B 2B 3B 4B 5B 6B Q I R GC S T U V W X Y Z a b c d e f g eC fC","258":"h i j k l m n","578":"o p"},D:{"1":"1 2 3 4 5 6 7 8 9 h i j k l m n o p q r s t u AB BB CB DB EB FB D HC IC JC","2":"0 J GB K E F G A B C L M H N O P HB v w x y z IB JB KB LB MB NB OB PB QB RB SB TB UB VB WB XB YB ZB aB bB cB dB eB fB gB hB iB jB kB lB mB nB oB EC pB FC qB rB sB tB uB vB wB xB yB zB 0B 1B 2B 3B 4B 5B 6B Q I R S T U V W X Y","194":"Z a b c d e f g"},E:{"2":"J GB K E F G A B C L M H gC KC hC iC jC kC LC 7B 8B lC mC nC MC NC 9B oC AC OC PC QC RC SC pC BC TC UC VC WC XC YC CC qC"},F:{"1":"V W X Y Z a b c d e f g h i j k l m n o p q r s t u","2":"0 G B C H N O P HB v w x y z IB JB KB LB MB NB OB PB QB RB SB TB UB VB WB XB YB ZB aB bB cB dB eB fB gB hB iB jB kB lB mB nB oB pB qB rB sB tB uB vB wB xB yB zB 0B 1B 2B 3B 4B 5B 6B Q I R GC S T U rC sC tC uC 7B ZC vC 8B"},G:{"2":"F KC wC aC xC yC zC 0C 1C 2C 3C 4C 5C 6C 7C 8C 9C AD BD CD DD ED FD MC NC 9B GD AC OC PC QC RC SC HD BC TC UC VC WC XC YC CC"},H:{"2":"ID"},I:{"1":"D","2":"DC J JD KD LD MD aC ND OD"},J:{"16":"E A"},K:{"1":"I","2":"A B C 7B ZC 8B"},L:{"1":"D"},M:{"1":"D"},N:{"16":"A B"},O:{"1":"9B"},P:{"1":"0 v w x y z CC ZD","2":"J PD QD RD SD TD LC UD VD WD XD YD AC BC"},Q:{"2":"aD"},R:{"2":"bD"},S:{"2":"cD dD"}},B:6,C:"COLR/CPAL(v1) Font Formats",D:true};
|
||||
module.exports={A:{A:{"2":"K E F G A B bC"},B:{"1":"1 2 3 4 5 6 7 8 9 h i j k l m n o p q r s t u AB BB CB DB EB FB D","2":"C L M H N O P Q I R S T U V W X Y Z a b c d e f g"},C:{"1":"1 2 3 4 5 6 7 8 9 q r s t u AB BB CB DB EB FB D HC IC JC dC eC","2":"0 cC DC J GB K E F G A B C L M H N O P HB v w x y z IB JB KB LB MB NB OB PB QB RB SB TB UB VB WB XB YB ZB aB bB cB dB eB fB gB hB iB jB kB lB mB nB oB EC pB FC qB rB sB tB uB vB wB xB yB zB 0B 1B 2B 3B 4B 5B 6B Q I R GC S T U V W X Y Z a b c d e f g fC gC","258":"h i j k l m n","578":"o p"},D:{"1":"1 2 3 4 5 6 7 8 9 h i j k l m n o p q r s t u AB BB CB DB EB FB D HC IC JC","2":"0 J GB K E F G A B C L M H N O P HB v w x y z IB JB KB LB MB NB OB PB QB RB SB TB UB VB WB XB YB ZB aB bB cB dB eB fB gB hB iB jB kB lB mB nB oB EC pB FC qB rB sB tB uB vB wB xB yB zB 0B 1B 2B 3B 4B 5B 6B Q I R S T U V W X Y","194":"Z a b c d e f g"},E:{"2":"J GB K E F G A B C L M H hC KC iC jC kC lC LC 7B 8B mC nC oC MC NC 9B pC AC OC PC QC RC SC qC BC TC UC VC WC XC YC CC rC"},F:{"1":"V W X Y Z a b c d e f g h i j k l m n o p q r s t u","2":"0 G B C H N O P HB v w x y z IB JB KB LB MB NB OB PB QB RB SB TB UB VB WB XB YB ZB aB bB cB dB eB fB gB hB iB jB kB lB mB nB oB pB qB rB sB tB uB vB wB xB yB zB 0B 1B 2B 3B 4B 5B 6B Q I R GC S T U sC tC uC vC 7B ZC wC 8B"},G:{"2":"F KC xC aC yC zC 0C 1C 2C 3C 4C 5C 6C 7C 8C 9C AD BD CD DD ED FD GD MC NC 9B HD AC OC PC QC RC SC ID BC TC UC VC WC XC YC CC"},H:{"2":"JD"},I:{"1":"D","2":"DC J KD LD MD ND aC OD PD"},J:{"16":"E A"},K:{"1":"I","2":"A B C 7B ZC 8B"},L:{"1":"D"},M:{"1":"D"},N:{"16":"A B"},O:{"1":"9B"},P:{"1":"0 v w x y z CC aD","2":"J QD RD SD TD UD LC VD WD XD YD ZD AC BC"},Q:{"2":"bD"},R:{"2":"cD"},S:{"2":"dD eD"}},B:6,C:"COLR/CPAL(v1) Font Formats",D:true};
|
||||
|
2
node_modules/caniuse-lite/data/features/colr.js
generated
vendored
2
node_modules/caniuse-lite/data/features/colr.js
generated
vendored
@ -1 +1 @@
|
||||
module.exports={A:{A:{"2":"K E F bC","257":"G A B"},B:{"1":"1 2 3 4 5 6 7 8 9 C L M H N O P t u AB BB CB DB EB FB D","513":"Q I R S T U V W X Y Z a b c d e f g h i j k l m n o p q r s"},C:{"1":"1 2 3 4 5 6 7 8 9 OB PB QB RB SB TB UB VB WB XB YB ZB aB bB cB dB eB fB gB hB iB jB kB lB mB nB oB EC pB FC qB rB sB tB uB vB wB xB yB zB 0B 1B 2B 3B 4B 5B 6B Q I R GC S T U V W X Y Z a b c d e f g h i j k l m n o p q r s t u AB BB CB DB EB FB D HC IC JC dC","2":"0 cC DC J GB K E F G A B C L M H N O P HB v w x y z IB JB KB LB MB NB eC fC"},D:{"1":"1 2 3 4 5 6 7 8 9 t u AB BB CB DB EB FB D HC IC JC","2":"0 J GB K E F G A B C L M H N O P HB v w x y z IB JB KB LB MB NB OB PB QB RB SB TB UB VB WB XB YB ZB aB bB cB dB eB fB gB hB iB jB kB lB mB nB oB EC pB FC qB rB sB tB uB vB wB xB yB","513":"zB 0B 1B 2B 3B 4B 5B 6B Q I R S T U V W X Y Z a b c d e f g h i j k l m n o p q r s"},E:{"1":"M H mC nC MC NC 9B oC AC OC PC QC RC SC pC UC VC WC XC YC CC qC","2":"J GB K E F G A gC KC hC iC jC kC LC","129":"B C L 7B 8B lC","1026":"BC TC"},F:{"1":"f g h i j k l m n o p q r s t u","2":"0 G B C H N O P HB v w x y z IB JB KB LB MB NB OB PB QB RB SB TB UB VB WB XB YB ZB aB bB cB dB eB fB gB hB iB jB kB lB mB nB rC sC tC uC 7B ZC vC 8B","513":"oB pB qB rB sB tB uB vB wB xB yB zB 0B 1B 2B 3B 4B 5B 6B Q I R GC S T U V W X Y Z a b c d e"},G:{"1":"5C 6C 7C 8C 9C AD BD CD DD ED FD MC NC 9B GD AC OC PC QC RC SC HD UC VC WC XC YC CC","2":"F KC wC aC xC yC zC 0C 1C 2C 3C 4C","1026":"BC TC"},H:{"2":"ID"},I:{"1":"D","2":"DC J JD KD LD MD aC ND OD"},J:{"16":"E A"},K:{"1":"I","2":"A B C 7B ZC 8B"},L:{"1":"D"},M:{"1":"D"},N:{"16":"A B"},O:{"1":"9B"},P:{"1":"0 v w x y z LC UD VD WD XD YD AC BC CC ZD","2":"J PD QD RD SD TD"},Q:{"1":"aD"},R:{"1":"bD"},S:{"1":"cD dD"}},B:6,C:"COLR/CPAL(v0) Font Formats",D:true};
|
||||
module.exports={A:{A:{"2":"K E F bC","257":"G A B"},B:{"1":"1 2 3 4 5 6 7 8 9 C L M H N O P t u AB BB CB DB EB FB D","513":"Q I R S T U V W X Y Z a b c d e f g h i j k l m n o p q r s"},C:{"1":"1 2 3 4 5 6 7 8 9 OB PB QB RB SB TB UB VB WB XB YB ZB aB bB cB dB eB fB gB hB iB jB kB lB mB nB oB EC pB FC qB rB sB tB uB vB wB xB yB zB 0B 1B 2B 3B 4B 5B 6B Q I R GC S T U V W X Y Z a b c d e f g h i j k l m n o p q r s t u AB BB CB DB EB FB D HC IC JC dC eC","2":"0 cC DC J GB K E F G A B C L M H N O P HB v w x y z IB JB KB LB MB NB fC gC"},D:{"1":"1 2 3 4 5 6 7 8 9 t u AB BB CB DB EB FB D HC IC JC","2":"0 J GB K E F G A B C L M H N O P HB v w x y z IB JB KB LB MB NB OB PB QB RB SB TB UB VB WB XB YB ZB aB bB cB dB eB fB gB hB iB jB kB lB mB nB oB EC pB FC qB rB sB tB uB vB wB xB yB","513":"zB 0B 1B 2B 3B 4B 5B 6B Q I R S T U V W X Y Z a b c d e f g h i j k l m n o p q r s"},E:{"1":"M H nC oC MC NC 9B pC AC OC PC QC RC SC qC UC VC WC XC YC CC rC","2":"J GB K E F G A hC KC iC jC kC lC LC","129":"B C L 7B 8B mC","1026":"BC TC"},F:{"1":"f g h i j k l m n o p q r s t u","2":"0 G B C H N O P HB v w x y z IB JB KB LB MB NB OB PB QB RB SB TB UB VB WB XB YB ZB aB bB cB dB eB fB gB hB iB jB kB lB mB nB sC tC uC vC 7B ZC wC 8B","513":"oB pB qB rB sB tB uB vB wB xB yB zB 0B 1B 2B 3B 4B 5B 6B Q I R GC S T U V W X Y Z a b c d e"},G:{"1":"6C 7C 8C 9C AD BD CD DD ED FD GD MC NC 9B HD AC OC PC QC RC SC ID UC VC WC XC YC CC","2":"F KC xC aC yC zC 0C 1C 2C 3C 4C 5C","1026":"BC TC"},H:{"2":"JD"},I:{"1":"D","2":"DC J KD LD MD ND aC OD PD"},J:{"16":"E A"},K:{"1":"I","2":"A B C 7B ZC 8B"},L:{"1":"D"},M:{"1":"D"},N:{"16":"A B"},O:{"1":"9B"},P:{"1":"0 v w x y z LC VD WD XD YD ZD AC BC CC aD","2":"J QD RD SD TD UD"},Q:{"1":"bD"},R:{"1":"cD"},S:{"1":"dD eD"}},B:6,C:"COLR/CPAL(v0) Font Formats",D:true};
|
||||
|
2
node_modules/caniuse-lite/data/features/comparedocumentposition.js
generated
vendored
2
node_modules/caniuse-lite/data/features/comparedocumentposition.js
generated
vendored
@ -1 +1 @@
|
||||
module.exports={A:{A:{"1":"G A B","2":"K E F bC"},B:{"1":"1 2 3 4 5 6 7 8 9 C L M H N O P Q I R S T U V W X Y Z a b c d e f g h i j k l m n o p q r s t u AB BB CB DB EB FB D"},C:{"1":"0 1 2 3 4 5 6 7 8 9 J GB K E F G A B C L M H N O P HB v w x y z IB JB KB LB MB NB OB PB QB RB SB TB UB VB WB XB YB ZB aB bB cB dB eB fB gB hB iB jB kB lB mB nB oB EC pB FC qB rB sB tB uB vB wB xB yB zB 0B 1B 2B 3B 4B 5B 6B Q I R GC S T U V W X Y Z a b c d e f g h i j k l m n o p q r s t u AB BB CB DB EB FB D HC IC JC dC","16":"cC DC eC fC"},D:{"1":"1 2 3 4 5 6 7 8 9 MB NB OB PB QB RB SB TB UB VB WB XB YB ZB aB bB cB dB eB fB gB hB iB jB kB lB mB nB oB EC pB FC qB rB sB tB uB vB wB xB yB zB 0B 1B 2B 3B 4B 5B 6B Q I R S T U V W X Y Z a b c d e f g h i j k l m n o p q r s t u AB BB CB DB EB FB D HC IC JC","16":"J GB K E F G A B C L M","132":"0 H N O P HB v w x y z IB JB KB LB"},E:{"1":"A B C L M H LC 7B 8B lC mC nC MC NC 9B oC AC OC PC QC RC SC pC BC TC UC VC WC XC YC CC qC","16":"J GB K gC KC","132":"E F G iC jC kC","260":"hC"},F:{"1":"0 C O P HB v w x y z IB JB KB LB MB NB OB PB QB RB SB TB UB VB WB XB YB ZB aB bB cB dB eB fB gB hB iB jB kB lB mB nB oB pB qB rB sB tB uB vB wB xB yB zB 0B 1B 2B 3B 4B 5B 6B Q I R GC S T U V W X Y Z a b c d e f g h i j k l m n o p q r s t u vC 8B","16":"G B rC sC tC uC 7B ZC","132":"H N"},G:{"1":"3C 4C 5C 6C 7C 8C 9C AD BD CD DD ED FD MC NC 9B GD AC OC PC QC RC SC HD BC TC UC VC WC XC YC CC","16":"KC","132":"F wC aC xC yC zC 0C 1C 2C"},H:{"1":"ID"},I:{"1":"D ND OD","16":"JD KD","132":"DC J LD MD aC"},J:{"132":"E A"},K:{"1":"C I 8B","16":"A B 7B ZC"},L:{"1":"D"},M:{"1":"D"},N:{"1":"A B"},O:{"1":"9B"},P:{"1":"0 J v w x y z PD QD RD SD TD LC UD VD WD XD YD AC BC CC ZD"},Q:{"1":"aD"},R:{"1":"bD"},S:{"1":"cD dD"}},B:1,C:"Node.compareDocumentPosition()",D:true};
|
||||
module.exports={A:{A:{"1":"G A B","2":"K E F bC"},B:{"1":"1 2 3 4 5 6 7 8 9 C L M H N O P Q I R S T U V W X Y Z a b c d e f g h i j k l m n o p q r s t u AB BB CB DB EB FB D"},C:{"1":"0 1 2 3 4 5 6 7 8 9 J GB K E F G A B C L M H N O P HB v w x y z IB JB KB LB MB NB OB PB QB RB SB TB UB VB WB XB YB ZB aB bB cB dB eB fB gB hB iB jB kB lB mB nB oB EC pB FC qB rB sB tB uB vB wB xB yB zB 0B 1B 2B 3B 4B 5B 6B Q I R GC S T U V W X Y Z a b c d e f g h i j k l m n o p q r s t u AB BB CB DB EB FB D HC IC JC dC eC","16":"cC DC fC gC"},D:{"1":"1 2 3 4 5 6 7 8 9 MB NB OB PB QB RB SB TB UB VB WB XB YB ZB aB bB cB dB eB fB gB hB iB jB kB lB mB nB oB EC pB FC qB rB sB tB uB vB wB xB yB zB 0B 1B 2B 3B 4B 5B 6B Q I R S T U V W X Y Z a b c d e f g h i j k l m n o p q r s t u AB BB CB DB EB FB D HC IC JC","16":"J GB K E F G A B C L M","132":"0 H N O P HB v w x y z IB JB KB LB"},E:{"1":"A B C L M H LC 7B 8B mC nC oC MC NC 9B pC AC OC PC QC RC SC qC BC TC UC VC WC XC YC CC rC","16":"J GB K hC KC","132":"E F G jC kC lC","260":"iC"},F:{"1":"0 C O P HB v w x y z IB JB KB LB MB NB OB PB QB RB SB TB UB VB WB XB YB ZB aB bB cB dB eB fB gB hB iB jB kB lB mB nB oB pB qB rB sB tB uB vB wB xB yB zB 0B 1B 2B 3B 4B 5B 6B Q I R GC S T U V W X Y Z a b c d e f g h i j k l m n o p q r s t u wC 8B","16":"G B sC tC uC vC 7B ZC","132":"H N"},G:{"1":"4C 5C 6C 7C 8C 9C AD BD CD DD ED FD GD MC NC 9B HD AC OC PC QC RC SC ID BC TC UC VC WC XC YC CC","16":"KC","132":"F xC aC yC zC 0C 1C 2C 3C"},H:{"1":"JD"},I:{"1":"D OD PD","16":"KD LD","132":"DC J MD ND aC"},J:{"132":"E A"},K:{"1":"C I 8B","16":"A B 7B ZC"},L:{"1":"D"},M:{"1":"D"},N:{"1":"A B"},O:{"1":"9B"},P:{"1":"0 J v w x y z QD RD SD TD UD LC VD WD XD YD ZD AC BC CC aD"},Q:{"1":"bD"},R:{"1":"cD"},S:{"1":"dD eD"}},B:1,C:"Node.compareDocumentPosition()",D:true};
|
||||
|
2
node_modules/caniuse-lite/data/features/console-basic.js
generated
vendored
2
node_modules/caniuse-lite/data/features/console-basic.js
generated
vendored
@ -1 +1 @@
|
||||
module.exports={A:{A:{"1":"A B","2":"K E bC","132":"F G"},B:{"1":"1 2 3 4 5 6 7 8 9 C L M H N O P Q I R S T U V W X Y Z a b c d e f g h i j k l m n o p q r s t u AB BB CB DB EB FB D"},C:{"1":"0 1 2 3 4 5 6 7 8 9 J GB K E F G A B C L M H N O P HB v w x y z IB JB KB LB MB NB OB PB QB RB SB TB UB VB WB XB YB ZB aB bB cB dB eB fB gB hB iB jB kB lB mB nB oB EC pB FC qB rB sB tB uB vB wB xB yB zB 0B 1B 2B 3B 4B 5B 6B Q I R GC S T U V W X Y Z a b c d e f g h i j k l m n o p q r s t u AB BB CB DB EB FB D HC IC JC dC","2":"cC DC eC fC"},D:{"1":"0 1 2 3 4 5 6 7 8 9 J GB K E F G A B C L M H N O P HB v w x y z IB JB KB LB MB NB OB PB QB RB SB TB UB VB WB XB YB ZB aB bB cB dB eB fB gB hB iB jB kB lB mB nB oB EC pB FC qB rB sB tB uB vB wB xB yB zB 0B 1B 2B 3B 4B 5B 6B Q I R S T U V W X Y Z a b c d e f g h i j k l m n o p q r s t u AB BB CB DB EB FB D HC IC JC"},E:{"1":"J GB K E F G A B C L M H gC KC hC iC jC kC LC 7B 8B lC mC nC MC NC 9B oC AC OC PC QC RC SC pC BC TC UC VC WC XC YC CC qC"},F:{"1":"0 B C H N O P HB v w x y z IB JB KB LB MB NB OB PB QB RB SB TB UB VB WB XB YB ZB aB bB cB dB eB fB gB hB iB jB kB lB mB nB oB pB qB rB sB tB uB vB wB xB yB zB 0B 1B 2B 3B 4B 5B 6B Q I R GC S T U V W X Y Z a b c d e f g h i j k l m n o p q r s t u 7B ZC vC 8B","2":"G rC sC tC uC"},G:{"1":"KC wC aC xC","513":"F yC zC 0C 1C 2C 3C 4C 5C 6C 7C 8C 9C AD BD CD DD ED FD MC NC 9B GD AC OC PC QC RC SC HD BC TC UC VC WC XC YC CC"},H:{"4097":"ID"},I:{"1025":"DC J D JD KD LD MD aC ND OD"},J:{"258":"E A"},K:{"2":"A","258":"B C 7B ZC 8B","1025":"I"},L:{"1025":"D"},M:{"2049":"D"},N:{"258":"A B"},O:{"258":"9B"},P:{"1025":"0 J v w x y z PD QD RD SD TD LC UD VD WD XD YD AC BC CC ZD"},Q:{"1":"aD"},R:{"1025":"bD"},S:{"1":"cD dD"}},B:1,C:"Basic console logging functions",D:true};
|
||||
module.exports={A:{A:{"1":"A B","2":"K E bC","132":"F G"},B:{"1":"1 2 3 4 5 6 7 8 9 C L M H N O P Q I R S T U V W X Y Z a b c d e f g h i j k l m n o p q r s t u AB BB CB DB EB FB D"},C:{"1":"0 1 2 3 4 5 6 7 8 9 J GB K E F G A B C L M H N O P HB v w x y z IB JB KB LB MB NB OB PB QB RB SB TB UB VB WB XB YB ZB aB bB cB dB eB fB gB hB iB jB kB lB mB nB oB EC pB FC qB rB sB tB uB vB wB xB yB zB 0B 1B 2B 3B 4B 5B 6B Q I R GC S T U V W X Y Z a b c d e f g h i j k l m n o p q r s t u AB BB CB DB EB FB D HC IC JC dC eC","2":"cC DC fC gC"},D:{"1":"0 1 2 3 4 5 6 7 8 9 J GB K E F G A B C L M H N O P HB v w x y z IB JB KB LB MB NB OB PB QB RB SB TB UB VB WB XB YB ZB aB bB cB dB eB fB gB hB iB jB kB lB mB nB oB EC pB FC qB rB sB tB uB vB wB xB yB zB 0B 1B 2B 3B 4B 5B 6B Q I R S T U V W X Y Z a b c d e f g h i j k l m n o p q r s t u AB BB CB DB EB FB D HC IC JC"},E:{"1":"J GB K E F G A B C L M H hC KC iC jC kC lC LC 7B 8B mC nC oC MC NC 9B pC AC OC PC QC RC SC qC BC TC UC VC WC XC YC CC rC"},F:{"1":"0 B C H N O P HB v w x y z IB JB KB LB MB NB OB PB QB RB SB TB UB VB WB XB YB ZB aB bB cB dB eB fB gB hB iB jB kB lB mB nB oB pB qB rB sB tB uB vB wB xB yB zB 0B 1B 2B 3B 4B 5B 6B Q I R GC S T U V W X Y Z a b c d e f g h i j k l m n o p q r s t u 7B ZC wC 8B","2":"G sC tC uC vC"},G:{"1":"KC xC aC yC","513":"F zC 0C 1C 2C 3C 4C 5C 6C 7C 8C 9C AD BD CD DD ED FD GD MC NC 9B HD AC OC PC QC RC SC ID BC TC UC VC WC XC YC CC"},H:{"4097":"JD"},I:{"1025":"DC J D KD LD MD ND aC OD PD"},J:{"258":"E A"},K:{"2":"A","258":"B C 7B ZC 8B","1025":"I"},L:{"1025":"D"},M:{"2049":"D"},N:{"258":"A B"},O:{"258":"9B"},P:{"1025":"0 J v w x y z QD RD SD TD UD LC VD WD XD YD ZD AC BC CC aD"},Q:{"1":"bD"},R:{"1025":"cD"},S:{"1":"dD eD"}},B:1,C:"Basic console logging functions",D:true};
|
||||
|
2
node_modules/caniuse-lite/data/features/console-time.js
generated
vendored
2
node_modules/caniuse-lite/data/features/console-time.js
generated
vendored
@ -1 +1 @@
|
||||
module.exports={A:{A:{"1":"B","2":"K E F G A bC"},B:{"1":"1 2 3 4 5 6 7 8 9 C L M H N O P Q I R S T U V W X Y Z a b c d e f g h i j k l m n o p q r s t u AB BB CB DB EB FB D"},C:{"1":"0 1 2 3 4 5 6 7 8 9 A B C L M H N O P HB v w x y z IB JB KB LB MB NB OB PB QB RB SB TB UB VB WB XB YB ZB aB bB cB dB eB fB gB hB iB jB kB lB mB nB oB EC pB FC qB rB sB tB uB vB wB xB yB zB 0B 1B 2B 3B 4B 5B 6B Q I R GC S T U V W X Y Z a b c d e f g h i j k l m n o p q r s t u AB BB CB DB EB FB D HC IC JC dC","2":"cC DC J GB K E F G eC fC"},D:{"1":"0 1 2 3 4 5 6 7 8 9 J GB K E F G A B C L M H N O P HB v w x y z IB JB KB LB MB NB OB PB QB RB SB TB UB VB WB XB YB ZB aB bB cB dB eB fB gB hB iB jB kB lB mB nB oB EC pB FC qB rB sB tB uB vB wB xB yB zB 0B 1B 2B 3B 4B 5B 6B Q I R S T U V W X Y Z a b c d e f g h i j k l m n o p q r s t u AB BB CB DB EB FB D HC IC JC"},E:{"1":"J GB K E F G A B C L M H hC iC jC kC LC 7B 8B lC mC nC MC NC 9B oC AC OC PC QC RC SC pC BC TC UC VC WC XC YC CC qC","2":"gC KC"},F:{"1":"0 C H N O P HB v w x y z IB JB KB LB MB NB OB PB QB RB SB TB UB VB WB XB YB ZB aB bB cB dB eB fB gB hB iB jB kB lB mB nB oB pB qB rB sB tB uB vB wB xB yB zB 0B 1B 2B 3B 4B 5B 6B Q I R GC S T U V W X Y Z a b c d e f g h i j k l m n o p q r s t u 7B ZC vC 8B","2":"G rC sC tC uC","16":"B"},G:{"1":"F KC wC aC xC yC zC 0C 1C 2C 3C 4C 5C 6C 7C 8C 9C AD BD CD DD ED FD MC NC 9B GD AC OC PC QC RC SC HD BC TC UC VC WC XC YC CC"},H:{"1":"ID"},I:{"1":"DC J D JD KD LD MD aC ND OD"},J:{"1":"E A"},K:{"1":"I","16":"A B C 7B ZC 8B"},L:{"1":"D"},M:{"1":"D"},N:{"1":"B","2":"A"},O:{"1":"9B"},P:{"1":"0 J v w x y z PD QD RD SD TD LC UD VD WD XD YD AC BC CC ZD"},Q:{"1":"aD"},R:{"1":"bD"},S:{"1":"cD dD"}},B:1,C:"console.time and console.timeEnd",D:true};
|
||||
module.exports={A:{A:{"1":"B","2":"K E F G A bC"},B:{"1":"1 2 3 4 5 6 7 8 9 C L M H N O P Q I R S T U V W X Y Z a b c d e f g h i j k l m n o p q r s t u AB BB CB DB EB FB D"},C:{"1":"0 1 2 3 4 5 6 7 8 9 A B C L M H N O P HB v w x y z IB JB KB LB MB NB OB PB QB RB SB TB UB VB WB XB YB ZB aB bB cB dB eB fB gB hB iB jB kB lB mB nB oB EC pB FC qB rB sB tB uB vB wB xB yB zB 0B 1B 2B 3B 4B 5B 6B Q I R GC S T U V W X Y Z a b c d e f g h i j k l m n o p q r s t u AB BB CB DB EB FB D HC IC JC dC eC","2":"cC DC J GB K E F G fC gC"},D:{"1":"0 1 2 3 4 5 6 7 8 9 J GB K E F G A B C L M H N O P HB v w x y z IB JB KB LB MB NB OB PB QB RB SB TB UB VB WB XB YB ZB aB bB cB dB eB fB gB hB iB jB kB lB mB nB oB EC pB FC qB rB sB tB uB vB wB xB yB zB 0B 1B 2B 3B 4B 5B 6B Q I R S T U V W X Y Z a b c d e f g h i j k l m n o p q r s t u AB BB CB DB EB FB D HC IC JC"},E:{"1":"J GB K E F G A B C L M H iC jC kC lC LC 7B 8B mC nC oC MC NC 9B pC AC OC PC QC RC SC qC BC TC UC VC WC XC YC CC rC","2":"hC KC"},F:{"1":"0 C H N O P HB v w x y z IB JB KB LB MB NB OB PB QB RB SB TB UB VB WB XB YB ZB aB bB cB dB eB fB gB hB iB jB kB lB mB nB oB pB qB rB sB tB uB vB wB xB yB zB 0B 1B 2B 3B 4B 5B 6B Q I R GC S T U V W X Y Z a b c d e f g h i j k l m n o p q r s t u 7B ZC wC 8B","2":"G sC tC uC vC","16":"B"},G:{"1":"F KC xC aC yC zC 0C 1C 2C 3C 4C 5C 6C 7C 8C 9C AD BD CD DD ED FD GD MC NC 9B HD AC OC PC QC RC SC ID BC TC UC VC WC XC YC CC"},H:{"1":"JD"},I:{"1":"DC J D KD LD MD ND aC OD PD"},J:{"1":"E A"},K:{"1":"I","16":"A B C 7B ZC 8B"},L:{"1":"D"},M:{"1":"D"},N:{"1":"B","2":"A"},O:{"1":"9B"},P:{"1":"0 J v w x y z QD RD SD TD UD LC VD WD XD YD ZD AC BC CC aD"},Q:{"1":"bD"},R:{"1":"cD"},S:{"1":"dD eD"}},B:1,C:"console.time and console.timeEnd",D:true};
|
||||
|
2
node_modules/caniuse-lite/data/features/const.js
generated
vendored
2
node_modules/caniuse-lite/data/features/const.js
generated
vendored
@ -1 +1 @@
|
||||
module.exports={A:{A:{"2":"K E F G A bC","2052":"B"},B:{"1":"1 2 3 4 5 6 7 8 9 C L M H N O P Q I R S T U V W X Y Z a b c d e f g h i j k l m n o p q r s t u AB BB CB DB EB FB D"},C:{"1":"1 2 3 4 5 6 7 8 9 SB TB UB VB WB XB YB ZB aB bB cB dB eB fB gB hB iB jB kB lB mB nB oB EC pB FC qB rB sB tB uB vB wB xB yB zB 0B 1B 2B 3B 4B 5B 6B Q I R GC S T U V W X Y Z a b c d e f g h i j k l m n o p q r s t u AB BB CB DB EB FB D HC IC JC dC","132":"cC DC J GB K E F G A B C eC fC","260":"0 L M H N O P HB v w x y z IB JB KB LB MB NB OB PB QB RB"},D:{"1":"1 2 3 4 5 6 7 8 9 fB gB hB iB jB kB lB mB nB oB EC pB FC qB rB sB tB uB vB wB xB yB zB 0B 1B 2B 3B 4B 5B 6B Q I R S T U V W X Y Z a b c d e f g h i j k l m n o p q r s t u AB BB CB DB EB FB D HC IC JC","260":"J GB K E F G A B C L M H N O P HB v","772":"0 w x y z IB JB KB LB MB NB OB PB QB RB SB TB UB VB WB","1028":"XB YB ZB aB bB cB dB eB"},E:{"1":"B C L M H 7B 8B lC mC nC MC NC 9B oC AC OC PC QC RC SC pC BC TC UC VC WC XC YC CC qC","260":"J GB A gC KC LC","772":"K E F G hC iC jC kC"},F:{"1":"SB TB UB VB WB XB YB ZB aB bB cB dB eB fB gB hB iB jB kB lB mB nB oB pB qB rB sB tB uB vB wB xB yB zB 0B 1B 2B 3B 4B 5B 6B Q I R GC S T U V W X Y Z a b c d e f g h i j k l m n o p q r s t u","2":"G rC","132":"B sC tC uC 7B ZC","644":"C vC 8B","772":"0 H N O P HB v w x y z IB JB","1028":"KB LB MB NB OB PB QB RB"},G:{"1":"5C 6C 7C 8C 9C AD BD CD DD ED FD MC NC 9B GD AC OC PC QC RC SC HD BC TC UC VC WC XC YC CC","260":"KC wC aC 3C 4C","772":"F xC yC zC 0C 1C 2C"},H:{"644":"ID"},I:{"1":"D","16":"JD KD","260":"LD","772":"DC J MD aC ND OD"},J:{"772":"E A"},K:{"1":"I","132":"A B 7B ZC","644":"C 8B"},L:{"1":"D"},M:{"1":"D"},N:{"1":"B","2":"A"},O:{"1":"9B"},P:{"1":"0 v w x y z PD QD RD SD TD LC UD VD WD XD YD AC BC CC ZD","1028":"J"},Q:{"1":"aD"},R:{"1":"bD"},S:{"1":"cD dD"}},B:6,C:"const",D:true};
|
||||
module.exports={A:{A:{"2":"K E F G A bC","2052":"B"},B:{"1":"1 2 3 4 5 6 7 8 9 C L M H N O P Q I R S T U V W X Y Z a b c d e f g h i j k l m n o p q r s t u AB BB CB DB EB FB D"},C:{"1":"1 2 3 4 5 6 7 8 9 SB TB UB VB WB XB YB ZB aB bB cB dB eB fB gB hB iB jB kB lB mB nB oB EC pB FC qB rB sB tB uB vB wB xB yB zB 0B 1B 2B 3B 4B 5B 6B Q I R GC S T U V W X Y Z a b c d e f g h i j k l m n o p q r s t u AB BB CB DB EB FB D HC IC JC dC eC","132":"cC DC J GB K E F G A B C fC gC","260":"0 L M H N O P HB v w x y z IB JB KB LB MB NB OB PB QB RB"},D:{"1":"1 2 3 4 5 6 7 8 9 fB gB hB iB jB kB lB mB nB oB EC pB FC qB rB sB tB uB vB wB xB yB zB 0B 1B 2B 3B 4B 5B 6B Q I R S T U V W X Y Z a b c d e f g h i j k l m n o p q r s t u AB BB CB DB EB FB D HC IC JC","260":"J GB K E F G A B C L M H N O P HB v","772":"0 w x y z IB JB KB LB MB NB OB PB QB RB SB TB UB VB WB","1028":"XB YB ZB aB bB cB dB eB"},E:{"1":"B C L M H 7B 8B mC nC oC MC NC 9B pC AC OC PC QC RC SC qC BC TC UC VC WC XC YC CC rC","260":"J GB A hC KC LC","772":"K E F G iC jC kC lC"},F:{"1":"SB TB UB VB WB XB YB ZB aB bB cB dB eB fB gB hB iB jB kB lB mB nB oB pB qB rB sB tB uB vB wB xB yB zB 0B 1B 2B 3B 4B 5B 6B Q I R GC S T U V W X Y Z a b c d e f g h i j k l m n o p q r s t u","2":"G sC","132":"B tC uC vC 7B ZC","644":"C wC 8B","772":"0 H N O P HB v w x y z IB JB","1028":"KB LB MB NB OB PB QB RB"},G:{"1":"6C 7C 8C 9C AD BD CD DD ED FD GD MC NC 9B HD AC OC PC QC RC SC ID BC TC UC VC WC XC YC CC","260":"KC xC aC 4C 5C","772":"F yC zC 0C 1C 2C 3C"},H:{"644":"JD"},I:{"1":"D","16":"KD LD","260":"MD","772":"DC J ND aC OD PD"},J:{"772":"E A"},K:{"1":"I","132":"A B 7B ZC","644":"C 8B"},L:{"1":"D"},M:{"1":"D"},N:{"1":"B","2":"A"},O:{"1":"9B"},P:{"1":"0 v w x y z QD RD SD TD UD LC VD WD XD YD ZD AC BC CC aD","1028":"J"},Q:{"1":"bD"},R:{"1":"cD"},S:{"1":"dD eD"}},B:6,C:"const",D:true};
|
||||
|
2
node_modules/caniuse-lite/data/features/constraint-validation.js
generated
vendored
2
node_modules/caniuse-lite/data/features/constraint-validation.js
generated
vendored
@ -1 +1 @@
|
||||
module.exports={A:{A:{"2":"K E F G bC","900":"A B"},B:{"1":"1 2 3 4 5 6 7 8 9 O P Q I R S T U V W X Y Z a b c d e f g h i j k l m n o p q r s t u AB BB CB DB EB FB D","388":"M H N","900":"C L"},C:{"1":"1 2 3 4 5 6 7 8 9 hB iB jB kB lB mB nB oB EC pB FC qB rB sB tB uB vB wB xB yB zB 0B 1B 2B 3B 4B 5B 6B Q I R GC S T U V W X Y Z a b c d e f g h i j k l m n o p q r s t u AB BB CB DB EB FB D HC IC JC dC","2":"cC DC eC fC","260":"fB gB","388":"LB MB NB OB PB QB RB SB TB UB VB WB XB YB ZB aB bB cB dB eB","900":"0 J GB K E F G A B C L M H N O P HB v w x y z IB JB KB"},D:{"1":"1 2 3 4 5 6 7 8 9 WB XB YB ZB aB bB cB dB eB fB gB hB iB jB kB lB mB nB oB EC pB FC qB rB sB tB uB vB wB xB yB zB 0B 1B 2B 3B 4B 5B 6B Q I R S T U V W X Y Z a b c d e f g h i j k l m n o p q r s t u AB BB CB DB EB FB D HC IC JC","16":"J GB K E F G A B C L M","388":"0 IB JB KB LB MB NB OB PB QB RB SB TB UB VB","900":"H N O P HB v w x y z"},E:{"1":"A B C L M H LC 7B 8B lC mC nC MC NC 9B oC AC OC PC QC RC SC pC BC TC UC VC WC XC YC CC qC","16":"J GB gC KC","388":"F G jC kC","900":"K E hC iC"},F:{"1":"JB KB LB MB NB OB PB QB RB SB TB UB VB WB XB YB ZB aB bB cB dB eB fB gB hB iB jB kB lB mB nB oB pB qB rB sB tB uB vB wB xB yB zB 0B 1B 2B 3B 4B 5B 6B Q I R GC S T U V W X Y Z a b c d e f g h i j k l m n o p q r s t u","16":"G B rC sC tC uC 7B ZC","388":"0 H N O P HB v w x y z IB","900":"C vC 8B"},G:{"1":"3C 4C 5C 6C 7C 8C 9C AD BD CD DD ED FD MC NC 9B GD AC OC PC QC RC SC HD BC TC UC VC WC XC YC CC","16":"KC wC aC","388":"F zC 0C 1C 2C","900":"xC yC"},H:{"2":"ID"},I:{"1":"D","16":"DC JD KD LD","388":"ND OD","900":"J MD aC"},J:{"16":"E","388":"A"},K:{"1":"I","16":"A B 7B ZC","900":"C 8B"},L:{"1":"D"},M:{"1":"D"},N:{"900":"A B"},O:{"1":"9B"},P:{"1":"0 J v w x y z PD QD RD SD TD LC UD VD WD XD YD AC BC CC ZD"},Q:{"1":"aD"},R:{"1":"bD"},S:{"1":"dD","388":"cD"}},B:1,C:"Constraint Validation API",D:true};
|
||||
module.exports={A:{A:{"2":"K E F G bC","900":"A B"},B:{"1":"1 2 3 4 5 6 7 8 9 O P Q I R S T U V W X Y Z a b c d e f g h i j k l m n o p q r s t u AB BB CB DB EB FB D","388":"M H N","900":"C L"},C:{"1":"1 2 3 4 5 6 7 8 9 hB iB jB kB lB mB nB oB EC pB FC qB rB sB tB uB vB wB xB yB zB 0B 1B 2B 3B 4B 5B 6B Q I R GC S T U V W X Y Z a b c d e f g h i j k l m n o p q r s t u AB BB CB DB EB FB D HC IC JC dC eC","2":"cC DC fC gC","260":"fB gB","388":"LB MB NB OB PB QB RB SB TB UB VB WB XB YB ZB aB bB cB dB eB","900":"0 J GB K E F G A B C L M H N O P HB v w x y z IB JB KB"},D:{"1":"1 2 3 4 5 6 7 8 9 WB XB YB ZB aB bB cB dB eB fB gB hB iB jB kB lB mB nB oB EC pB FC qB rB sB tB uB vB wB xB yB zB 0B 1B 2B 3B 4B 5B 6B Q I R S T U V W X Y Z a b c d e f g h i j k l m n o p q r s t u AB BB CB DB EB FB D HC IC JC","16":"J GB K E F G A B C L M","388":"0 IB JB KB LB MB NB OB PB QB RB SB TB UB VB","900":"H N O P HB v w x y z"},E:{"1":"A B C L M H LC 7B 8B mC nC oC MC NC 9B pC AC OC PC QC RC SC qC BC TC UC VC WC XC YC CC rC","16":"J GB hC KC","388":"F G kC lC","900":"K E iC jC"},F:{"1":"JB KB LB MB NB OB PB QB RB SB TB UB VB WB XB YB ZB aB bB cB dB eB fB gB hB iB jB kB lB mB nB oB pB qB rB sB tB uB vB wB xB yB zB 0B 1B 2B 3B 4B 5B 6B Q I R GC S T U V W X Y Z a b c d e f g h i j k l m n o p q r s t u","16":"G B sC tC uC vC 7B ZC","388":"0 H N O P HB v w x y z IB","900":"C wC 8B"},G:{"1":"4C 5C 6C 7C 8C 9C AD BD CD DD ED FD GD MC NC 9B HD AC OC PC QC RC SC ID BC TC UC VC WC XC YC CC","16":"KC xC aC","388":"F 0C 1C 2C 3C","900":"yC zC"},H:{"2":"JD"},I:{"1":"D","16":"DC KD LD MD","388":"OD PD","900":"J ND aC"},J:{"16":"E","388":"A"},K:{"1":"I","16":"A B 7B ZC","900":"C 8B"},L:{"1":"D"},M:{"1":"D"},N:{"900":"A B"},O:{"1":"9B"},P:{"1":"0 J v w x y z QD RD SD TD UD LC VD WD XD YD ZD AC BC CC aD"},Q:{"1":"bD"},R:{"1":"cD"},S:{"1":"eD","388":"dD"}},B:1,C:"Constraint Validation API",D:true};
|
||||
|
2
node_modules/caniuse-lite/data/features/contenteditable.js
generated
vendored
2
node_modules/caniuse-lite/data/features/contenteditable.js
generated
vendored
@ -1 +1 @@
|
||||
module.exports={A:{A:{"1":"K E F G A B bC"},B:{"1":"1 2 3 4 5 6 7 8 9 C L M H N O P Q I R S T U V W X Y Z a b c d e f g h i j k l m n o p q r s t u AB BB CB DB EB FB D"},C:{"1":"0 1 2 3 4 5 6 7 8 9 J GB K E F G A B C L M H N O P HB v w x y z IB JB KB LB MB NB OB PB QB RB SB TB UB VB WB XB YB ZB aB bB cB dB eB fB gB hB iB jB kB lB mB nB oB EC pB FC qB rB sB tB uB vB wB xB yB zB 0B 1B 2B 3B 4B 5B 6B Q I R GC S T U V W X Y Z a b c d e f g h i j k l m n o p q r s t u AB BB CB DB EB FB D HC IC JC dC eC fC","2":"cC","4":"DC"},D:{"1":"0 1 2 3 4 5 6 7 8 9 J GB K E F G A B C L M H N O P HB v w x y z IB JB KB LB MB NB OB PB QB RB SB TB UB VB WB XB YB ZB aB bB cB dB eB fB gB hB iB jB kB lB mB nB oB EC pB FC qB rB sB tB uB vB wB xB yB zB 0B 1B 2B 3B 4B 5B 6B Q I R S T U V W X Y Z a b c d e f g h i j k l m n o p q r s t u AB BB CB DB EB FB D HC IC JC"},E:{"1":"J GB K E F G A B C L M H gC KC hC iC jC kC LC 7B 8B lC mC nC MC NC 9B oC AC OC PC QC RC SC pC BC TC UC VC WC XC YC CC qC"},F:{"1":"0 G B C H N O P HB v w x y z IB JB KB LB MB NB OB PB QB RB SB TB UB VB WB XB YB ZB aB bB cB dB eB fB gB hB iB jB kB lB mB nB oB pB qB rB sB tB uB vB wB xB yB zB 0B 1B 2B 3B 4B 5B 6B Q I R GC S T U V W X Y Z a b c d e f g h i j k l m n o p q r s t u rC sC tC uC 7B ZC vC 8B"},G:{"1":"F xC yC zC 0C 1C 2C 3C 4C 5C 6C 7C 8C 9C AD BD CD DD ED FD MC NC 9B GD AC OC PC QC RC SC HD BC TC UC VC WC XC YC CC","2":"KC wC aC"},H:{"2":"ID"},I:{"1":"DC J D MD aC ND OD","2":"JD KD LD"},J:{"1":"E A"},K:{"1":"I 8B","2":"A B C 7B ZC"},L:{"1":"D"},M:{"1":"D"},N:{"1":"A B"},O:{"1":"9B"},P:{"1":"0 J v w x y z PD QD RD SD TD LC UD VD WD XD YD AC BC CC ZD"},Q:{"1":"aD"},R:{"1":"bD"},S:{"1":"cD dD"}},B:1,C:"contenteditable attribute (basic support)",D:true};
|
||||
module.exports={A:{A:{"1":"K E F G A B bC"},B:{"1":"1 2 3 4 5 6 7 8 9 C L M H N O P Q I R S T U V W X Y Z a b c d e f g h i j k l m n o p q r s t u AB BB CB DB EB FB D"},C:{"1":"0 1 2 3 4 5 6 7 8 9 J GB K E F G A B C L M H N O P HB v w x y z IB JB KB LB MB NB OB PB QB RB SB TB UB VB WB XB YB ZB aB bB cB dB eB fB gB hB iB jB kB lB mB nB oB EC pB FC qB rB sB tB uB vB wB xB yB zB 0B 1B 2B 3B 4B 5B 6B Q I R GC S T U V W X Y Z a b c d e f g h i j k l m n o p q r s t u AB BB CB DB EB FB D HC IC JC dC eC fC gC","2":"cC","4":"DC"},D:{"1":"0 1 2 3 4 5 6 7 8 9 J GB K E F G A B C L M H N O P HB v w x y z IB JB KB LB MB NB OB PB QB RB SB TB UB VB WB XB YB ZB aB bB cB dB eB fB gB hB iB jB kB lB mB nB oB EC pB FC qB rB sB tB uB vB wB xB yB zB 0B 1B 2B 3B 4B 5B 6B Q I R S T U V W X Y Z a b c d e f g h i j k l m n o p q r s t u AB BB CB DB EB FB D HC IC JC"},E:{"1":"J GB K E F G A B C L M H hC KC iC jC kC lC LC 7B 8B mC nC oC MC NC 9B pC AC OC PC QC RC SC qC BC TC UC VC WC XC YC CC rC"},F:{"1":"0 G B C H N O P HB v w x y z IB JB KB LB MB NB OB PB QB RB SB TB UB VB WB XB YB ZB aB bB cB dB eB fB gB hB iB jB kB lB mB nB oB pB qB rB sB tB uB vB wB xB yB zB 0B 1B 2B 3B 4B 5B 6B Q I R GC S T U V W X Y Z a b c d e f g h i j k l m n o p q r s t u sC tC uC vC 7B ZC wC 8B"},G:{"1":"F yC zC 0C 1C 2C 3C 4C 5C 6C 7C 8C 9C AD BD CD DD ED FD GD MC NC 9B HD AC OC PC QC RC SC ID BC TC UC VC WC XC YC CC","2":"KC xC aC"},H:{"2":"JD"},I:{"1":"DC J D ND aC OD PD","2":"KD LD MD"},J:{"1":"E A"},K:{"1":"I 8B","2":"A B C 7B ZC"},L:{"1":"D"},M:{"1":"D"},N:{"1":"A B"},O:{"1":"9B"},P:{"1":"0 J v w x y z QD RD SD TD UD LC VD WD XD YD ZD AC BC CC aD"},Q:{"1":"bD"},R:{"1":"cD"},S:{"1":"dD eD"}},B:1,C:"contenteditable attribute (basic support)",D:true};
|
||||
|
2
node_modules/caniuse-lite/data/features/contentsecuritypolicy.js
generated
vendored
2
node_modules/caniuse-lite/data/features/contentsecuritypolicy.js
generated
vendored
@ -1 +1 @@
|
||||
module.exports={A:{A:{"2":"K E F G bC","132":"A B"},B:{"1":"1 2 3 4 5 6 7 8 9 C L M H N O P Q I R S T U V W X Y Z a b c d e f g h i j k l m n o p q r s t u AB BB CB DB EB FB D"},C:{"1":"0 1 2 3 4 5 6 7 8 9 y z IB JB KB LB MB NB OB PB QB RB SB TB UB VB WB XB YB ZB aB bB cB dB eB fB gB hB iB jB kB lB mB nB oB EC pB FC qB rB sB tB uB vB wB xB yB zB 0B 1B 2B 3B 4B 5B 6B Q I R GC S T U V W X Y Z a b c d e f g h i j k l m n o p q r s t u AB BB CB DB EB FB D HC IC JC dC","2":"cC DC eC fC","129":"J GB K E F G A B C L M H N O P HB v w x"},D:{"1":"0 1 2 3 4 5 6 7 8 9 IB JB KB LB MB NB OB PB QB RB SB TB UB VB WB XB YB ZB aB bB cB dB eB fB gB hB iB jB kB lB mB nB oB EC pB FC qB rB sB tB uB vB wB xB yB zB 0B 1B 2B 3B 4B 5B 6B Q I R S T U V W X Y Z a b c d e f g h i j k l m n o p q r s t u AB BB CB DB EB FB D HC IC JC","2":"J GB K E F G A B C L","257":"M H N O P HB v w x y z"},E:{"1":"E F G A B C L M H jC kC LC 7B 8B lC mC nC MC NC 9B oC AC OC PC QC RC SC pC BC TC UC VC WC XC YC CC qC","2":"J GB gC KC","257":"K iC","260":"hC"},F:{"1":"0 H N O P HB v w x y z IB JB KB LB MB NB OB PB QB RB SB TB UB VB WB XB YB ZB aB bB cB dB eB fB gB hB iB jB kB lB mB nB oB pB qB rB sB tB uB vB wB xB yB zB 0B 1B 2B 3B 4B 5B 6B Q I R GC S T U V W X Y Z a b c d e f g h i j k l m n o p q r s t u","2":"G B C rC sC tC uC 7B ZC vC 8B"},G:{"1":"F zC 0C 1C 2C 3C 4C 5C 6C 7C 8C 9C AD BD CD DD ED FD MC NC 9B GD AC OC PC QC RC SC HD BC TC UC VC WC XC YC CC","2":"KC wC aC","257":"yC","260":"xC"},H:{"2":"ID"},I:{"1":"D ND OD","2":"DC J JD KD LD MD aC"},J:{"2":"E","257":"A"},K:{"1":"I","2":"A B C 7B ZC 8B"},L:{"1":"D"},M:{"1":"D"},N:{"132":"A B"},O:{"1":"9B"},P:{"1":"0 J v w x y z PD QD RD SD TD LC UD VD WD XD YD AC BC CC ZD"},Q:{"1":"aD"},R:{"1":"bD"},S:{"1":"cD dD"}},B:4,C:"Content Security Policy 1.0",D:true};
|
||||
module.exports={A:{A:{"2":"K E F G bC","132":"A B"},B:{"1":"1 2 3 4 5 6 7 8 9 C L M H N O P Q I R S T U V W X Y Z a b c d e f g h i j k l m n o p q r s t u AB BB CB DB EB FB D"},C:{"1":"0 1 2 3 4 5 6 7 8 9 y z IB JB KB LB MB NB OB PB QB RB SB TB UB VB WB XB YB ZB aB bB cB dB eB fB gB hB iB jB kB lB mB nB oB EC pB FC qB rB sB tB uB vB wB xB yB zB 0B 1B 2B 3B 4B 5B 6B Q I R GC S T U V W X Y Z a b c d e f g h i j k l m n o p q r s t u AB BB CB DB EB FB D HC IC JC dC eC","2":"cC DC fC gC","129":"J GB K E F G A B C L M H N O P HB v w x"},D:{"1":"0 1 2 3 4 5 6 7 8 9 IB JB KB LB MB NB OB PB QB RB SB TB UB VB WB XB YB ZB aB bB cB dB eB fB gB hB iB jB kB lB mB nB oB EC pB FC qB rB sB tB uB vB wB xB yB zB 0B 1B 2B 3B 4B 5B 6B Q I R S T U V W X Y Z a b c d e f g h i j k l m n o p q r s t u AB BB CB DB EB FB D HC IC JC","2":"J GB K E F G A B C L","257":"M H N O P HB v w x y z"},E:{"1":"E F G A B C L M H kC lC LC 7B 8B mC nC oC MC NC 9B pC AC OC PC QC RC SC qC BC TC UC VC WC XC YC CC rC","2":"J GB hC KC","257":"K jC","260":"iC"},F:{"1":"0 H N O P HB v w x y z IB JB KB LB MB NB OB PB QB RB SB TB UB VB WB XB YB ZB aB bB cB dB eB fB gB hB iB jB kB lB mB nB oB pB qB rB sB tB uB vB wB xB yB zB 0B 1B 2B 3B 4B 5B 6B Q I R GC S T U V W X Y Z a b c d e f g h i j k l m n o p q r s t u","2":"G B C sC tC uC vC 7B ZC wC 8B"},G:{"1":"F 0C 1C 2C 3C 4C 5C 6C 7C 8C 9C AD BD CD DD ED FD GD MC NC 9B HD AC OC PC QC RC SC ID BC TC UC VC WC XC YC CC","2":"KC xC aC","257":"zC","260":"yC"},H:{"2":"JD"},I:{"1":"D OD PD","2":"DC J KD LD MD ND aC"},J:{"2":"E","257":"A"},K:{"1":"I","2":"A B C 7B ZC 8B"},L:{"1":"D"},M:{"1":"D"},N:{"132":"A B"},O:{"1":"9B"},P:{"1":"0 J v w x y z QD RD SD TD UD LC VD WD XD YD ZD AC BC CC aD"},Q:{"1":"bD"},R:{"1":"cD"},S:{"1":"dD eD"}},B:4,C:"Content Security Policy 1.0",D:true};
|
||||
|
2
node_modules/caniuse-lite/data/features/contentsecuritypolicy2.js
generated
vendored
2
node_modules/caniuse-lite/data/features/contentsecuritypolicy2.js
generated
vendored
@ -1 +1 @@
|
||||
module.exports={A:{A:{"2":"K E F G A B bC"},B:{"1":"1 2 3 4 5 6 7 8 9 Q I R S T U V W X Y Z a b c d e f g h i j k l m n o p q r s t u AB BB CB DB EB FB D","2":"C L M","4100":"H N O P"},C:{"1":"1 2 3 4 5 6 7 8 9 bB cB dB eB fB gB hB iB jB kB lB mB nB oB EC pB FC qB rB sB tB uB vB wB xB yB zB 0B 1B 2B 3B 4B 5B 6B Q I R GC S T U V W X Y Z a b c d e f g h i j k l m n o p q r s t u AB BB CB DB EB FB D HC IC JC dC","2":"0 cC DC J GB K E F G A B C L M H N O P HB v w x y z IB JB KB LB MB eC fC","132":"NB OB PB QB","260":"RB","516":"SB TB UB VB WB XB YB ZB aB"},D:{"1":"1 2 3 4 5 6 7 8 9 WB XB YB ZB aB bB cB dB eB fB gB hB iB jB kB lB mB nB oB EC pB FC qB rB sB tB uB vB wB xB yB zB 0B 1B 2B 3B 4B 5B 6B Q I R S T U V W X Y Z a b c d e f g h i j k l m n o p q r s t u AB BB CB DB EB FB D HC IC JC","2":"0 J GB K E F G A B C L M H N O P HB v w x y z IB JB KB LB MB NB OB PB QB RB","1028":"SB TB UB","2052":"VB"},E:{"1":"A B C L M H LC 7B 8B lC mC nC MC NC 9B oC AC OC PC QC RC SC pC BC TC UC VC WC XC YC CC qC","2":"J GB K E F G gC KC hC iC jC kC"},F:{"1":"JB KB LB MB NB OB PB QB RB SB TB UB VB WB XB YB ZB aB bB cB dB eB fB gB hB iB jB kB lB mB nB oB pB qB rB sB tB uB vB wB xB yB zB 0B 1B 2B 3B 4B 5B 6B Q I R GC S T U V W X Y Z a b c d e f g h i j k l m n o p q r s t u","2":"G B C H N O P HB v w x rC sC tC uC 7B ZC vC 8B","1028":"0 y z","2052":"IB"},G:{"1":"3C 4C 5C 6C 7C 8C 9C AD BD CD DD ED FD MC NC 9B GD AC OC PC QC RC SC HD BC TC UC VC WC XC YC CC","2":"F KC wC aC xC yC zC 0C 1C 2C"},H:{"2":"ID"},I:{"1":"D","2":"DC J JD KD LD MD aC ND OD"},J:{"2":"E A"},K:{"1":"I","2":"A B C 7B ZC 8B"},L:{"1":"D"},M:{"1":"D"},N:{"2":"A B"},O:{"1":"9B"},P:{"1":"0 J v w x y z PD QD RD SD TD LC UD VD WD XD YD AC BC CC ZD"},Q:{"1":"aD"},R:{"1":"bD"},S:{"1":"cD dD"}},B:2,C:"Content Security Policy Level 2",D:true};
|
||||
module.exports={A:{A:{"2":"K E F G A B bC"},B:{"1":"1 2 3 4 5 6 7 8 9 Q I R S T U V W X Y Z a b c d e f g h i j k l m n o p q r s t u AB BB CB DB EB FB D","2":"C L M","4100":"H N O P"},C:{"1":"1 2 3 4 5 6 7 8 9 bB cB dB eB fB gB hB iB jB kB lB mB nB oB EC pB FC qB rB sB tB uB vB wB xB yB zB 0B 1B 2B 3B 4B 5B 6B Q I R GC S T U V W X Y Z a b c d e f g h i j k l m n o p q r s t u AB BB CB DB EB FB D HC IC JC dC eC","2":"0 cC DC J GB K E F G A B C L M H N O P HB v w x y z IB JB KB LB MB fC gC","132":"NB OB PB QB","260":"RB","516":"SB TB UB VB WB XB YB ZB aB"},D:{"1":"1 2 3 4 5 6 7 8 9 WB XB YB ZB aB bB cB dB eB fB gB hB iB jB kB lB mB nB oB EC pB FC qB rB sB tB uB vB wB xB yB zB 0B 1B 2B 3B 4B 5B 6B Q I R S T U V W X Y Z a b c d e f g h i j k l m n o p q r s t u AB BB CB DB EB FB D HC IC JC","2":"0 J GB K E F G A B C L M H N O P HB v w x y z IB JB KB LB MB NB OB PB QB RB","1028":"SB TB UB","2052":"VB"},E:{"1":"A B C L M H LC 7B 8B mC nC oC MC NC 9B pC AC OC PC QC RC SC qC BC TC UC VC WC XC YC CC rC","2":"J GB K E F G hC KC iC jC kC lC"},F:{"1":"JB KB LB MB NB OB PB QB RB SB TB UB VB WB XB YB ZB aB bB cB dB eB fB gB hB iB jB kB lB mB nB oB pB qB rB sB tB uB vB wB xB yB zB 0B 1B 2B 3B 4B 5B 6B Q I R GC S T U V W X Y Z a b c d e f g h i j k l m n o p q r s t u","2":"G B C H N O P HB v w x sC tC uC vC 7B ZC wC 8B","1028":"0 y z","2052":"IB"},G:{"1":"4C 5C 6C 7C 8C 9C AD BD CD DD ED FD GD MC NC 9B HD AC OC PC QC RC SC ID BC TC UC VC WC XC YC CC","2":"F KC xC aC yC zC 0C 1C 2C 3C"},H:{"2":"JD"},I:{"1":"D","2":"DC J KD LD MD ND aC OD PD"},J:{"2":"E A"},K:{"1":"I","2":"A B C 7B ZC 8B"},L:{"1":"D"},M:{"1":"D"},N:{"2":"A B"},O:{"1":"9B"},P:{"1":"0 J v w x y z QD RD SD TD UD LC VD WD XD YD ZD AC BC CC aD"},Q:{"1":"bD"},R:{"1":"cD"},S:{"1":"dD eD"}},B:2,C:"Content Security Policy Level 2",D:true};
|
||||
|
2
node_modules/caniuse-lite/data/features/cookie-store-api.js
generated
vendored
2
node_modules/caniuse-lite/data/features/cookie-store-api.js
generated
vendored
@ -1 +1 @@
|
||||
module.exports={A:{A:{"2":"K E F G A B bC"},B:{"1":"1 2 3 4 5 6 7 8 9 W X Y Z a b c d e f g h i j k l m n o p q r s t u AB BB CB DB EB FB D","2":"C L M H N O P","194":"Q I R S T U V"},C:{"2":"0 1 2 3 4 5 6 7 8 9 cC DC J GB K E F G A B C L M H N O P HB v w x y z IB JB KB LB MB NB OB PB QB RB SB TB UB VB WB XB YB ZB aB bB cB dB eB fB gB hB iB jB kB lB mB nB oB EC pB FC qB rB sB tB uB vB wB xB yB zB 0B 1B 2B 3B 4B 5B 6B Q I R GC S T U V W X Y Z a b c d e f g h i j k l m n o p q r s t u AB BB CB DB EB FB D HC IC JC dC eC fC"},D:{"1":"1 2 3 4 5 6 7 8 9 W X Y Z a b c d e f g h i j k l m n o p q r s t u AB BB CB DB EB FB D HC IC JC","2":"0 J GB K E F G A B C L M H N O P HB v w x y z IB JB KB LB MB NB OB PB QB RB SB TB UB VB WB XB YB ZB aB bB cB dB eB fB gB hB iB jB kB lB mB nB oB EC pB FC qB rB","194":"sB tB uB vB wB xB yB zB 0B 1B 2B 3B 4B 5B 6B Q I R S T U V"},E:{"2":"J GB K E F G A B C L M H gC KC hC iC jC kC LC 7B 8B lC mC nC MC NC 9B oC AC OC PC QC RC SC pC BC TC UC VC WC XC YC CC qC"},F:{"1":"2B 3B 4B 5B 6B Q I R GC S T U V W X Y Z a b c d e f g h i j k l m n o p q r s t u","2":"0 G B C H N O P HB v w x y z IB JB KB LB MB NB OB PB QB RB SB TB UB VB WB XB YB ZB aB bB cB dB eB fB gB rC sC tC uC 7B ZC vC 8B","194":"hB iB jB kB lB mB nB oB pB qB rB sB tB uB vB wB xB yB zB 0B 1B"},G:{"2":"F KC wC aC xC yC zC 0C 1C 2C 3C 4C 5C 6C 7C 8C 9C AD BD CD DD ED FD MC NC 9B GD AC OC PC QC RC SC HD BC TC UC VC WC XC YC CC"},H:{"2":"ID"},I:{"1":"D","2":"DC J JD KD LD MD aC ND OD"},J:{"2":"E A"},K:{"1":"I","2":"A B C 7B ZC 8B"},L:{"1":"D"},M:{"2":"D"},N:{"2":"A B"},O:{"1":"9B"},P:{"1":"0 v w x y z XD YD AC BC CC ZD","2":"J PD QD RD SD TD LC UD VD WD"},Q:{"2":"aD"},R:{"1":"bD"},S:{"2":"cD dD"}},B:7,C:"Cookie Store API",D:true};
|
||||
module.exports={A:{A:{"2":"K E F G A B bC"},B:{"1":"1 2 3 4 5 6 7 8 9 W X Y Z a b c d e f g h i j k l m n o p q r s t u AB BB CB DB EB FB D","2":"C L M H N O P","194":"Q I R S T U V"},C:{"2":"0 1 2 3 4 5 6 7 8 9 cC DC J GB K E F G A B C L M H N O P HB v w x y z IB JB KB LB MB NB OB PB QB RB SB TB UB VB WB XB YB ZB aB bB cB dB eB fB gB hB iB jB kB lB mB nB oB EC pB FC qB rB sB tB uB vB wB xB yB zB 0B 1B 2B 3B 4B 5B 6B Q I R GC S T U V W X Y Z a b c d e f g h i j k l m n o p q r s t u AB BB CB DB EB FB D HC IC JC dC eC fC gC"},D:{"1":"1 2 3 4 5 6 7 8 9 W X Y Z a b c d e f g h i j k l m n o p q r s t u AB BB CB DB EB FB D HC IC JC","2":"0 J GB K E F G A B C L M H N O P HB v w x y z IB JB KB LB MB NB OB PB QB RB SB TB UB VB WB XB YB ZB aB bB cB dB eB fB gB hB iB jB kB lB mB nB oB EC pB FC qB rB","194":"sB tB uB vB wB xB yB zB 0B 1B 2B 3B 4B 5B 6B Q I R S T U V"},E:{"2":"J GB K E F G A B C L M H hC KC iC jC kC lC LC 7B 8B mC nC oC MC NC 9B pC AC OC PC QC RC SC qC BC TC UC VC WC XC YC CC rC"},F:{"1":"2B 3B 4B 5B 6B Q I R GC S T U V W X Y Z a b c d e f g h i j k l m n o p q r s t u","2":"0 G B C H N O P HB v w x y z IB JB KB LB MB NB OB PB QB RB SB TB UB VB WB XB YB ZB aB bB cB dB eB fB gB sC tC uC vC 7B ZC wC 8B","194":"hB iB jB kB lB mB nB oB pB qB rB sB tB uB vB wB xB yB zB 0B 1B"},G:{"2":"F KC xC aC yC zC 0C 1C 2C 3C 4C 5C 6C 7C 8C 9C AD BD CD DD ED FD GD MC NC 9B HD AC OC PC QC RC SC ID BC TC UC VC WC XC YC CC"},H:{"2":"JD"},I:{"1":"D","2":"DC J KD LD MD ND aC OD PD"},J:{"2":"E A"},K:{"1":"I","2":"A B C 7B ZC 8B"},L:{"1":"D"},M:{"2":"D"},N:{"2":"A B"},O:{"1":"9B"},P:{"1":"0 v w x y z YD ZD AC BC CC aD","2":"J QD RD SD TD UD LC VD WD XD"},Q:{"2":"bD"},R:{"1":"cD"},S:{"2":"dD eD"}},B:7,C:"Cookie Store API",D:true};
|
||||
|
2
node_modules/caniuse-lite/data/features/cors.js
generated
vendored
2
node_modules/caniuse-lite/data/features/cors.js
generated
vendored
@ -1 +1 @@
|
||||
module.exports={A:{A:{"1":"B","2":"K E bC","132":"A","260":"F G"},B:{"1":"1 2 3 4 5 6 7 8 9 C L M H N O P Q I R S T U V W X Y Z a b c d e f g h i j k l m n o p q r s t u AB BB CB DB EB FB D"},C:{"1":"0 1 2 3 4 5 6 7 8 9 J GB K E F G A B C L M H N O P HB v w x y z IB JB KB LB MB NB OB PB QB RB SB TB UB VB WB XB YB ZB aB bB cB dB eB fB gB hB iB jB kB lB mB nB oB EC pB zB 0B 1B 2B 3B 4B 5B 6B Q I R GC S T U V W X Y Z a b c d e f g h i j k l m n o p q r s t u AB BB CB DB EB FB D HC IC JC dC eC fC","2":"cC DC","1025":"FC qB rB sB tB uB vB wB xB yB"},D:{"1":"0 1 2 3 4 5 6 7 8 9 L M H N O P HB v w x y z IB JB KB LB MB NB OB PB QB RB SB TB UB VB WB XB YB ZB aB bB cB dB eB fB gB hB iB jB kB lB mB nB oB EC pB FC qB rB sB tB uB vB wB xB yB zB 0B 1B 2B 3B 4B 5B 6B Q I R S T U V W X Y Z a b c d e f g h i j k l m n o p q r s t u AB BB CB DB EB FB D HC IC JC","132":"J GB K E F G A B C"},E:{"2":"gC KC","513":"K E F G A B C L M H iC jC kC LC 7B 8B lC mC nC MC NC 9B oC AC OC PC QC RC SC pC BC TC UC VC WC XC YC CC qC","644":"J GB hC"},F:{"1":"0 C H N O P HB v w x y z IB JB KB LB MB NB OB PB QB RB SB TB UB VB WB XB YB ZB aB bB cB dB eB fB gB hB iB jB kB lB mB nB oB pB qB rB sB tB uB vB wB xB yB zB 0B 1B 2B 3B 4B 5B 6B Q I R GC S T U V W X Y Z a b c d e f g h i j k l m n o p q r s t u 8B","2":"G B rC sC tC uC 7B ZC vC"},G:{"513":"F yC zC 0C 1C 2C 3C 4C 5C 6C 7C 8C 9C AD BD CD DD ED FD MC NC 9B GD AC OC PC QC RC SC HD BC TC UC VC WC XC YC CC","644":"KC wC aC xC"},H:{"2":"ID"},I:{"1":"D ND OD","132":"DC J JD KD LD MD aC"},J:{"1":"A","132":"E"},K:{"1":"C I 8B","2":"A B 7B ZC"},L:{"1":"D"},M:{"1":"D"},N:{"1":"B","132":"A"},O:{"1":"9B"},P:{"1":"0 J v w x y z PD QD RD SD TD LC UD VD WD XD YD AC BC CC ZD"},Q:{"1":"aD"},R:{"1":"bD"},S:{"1":"cD dD"}},B:1,C:"Cross-Origin Resource Sharing",D:true};
|
||||
module.exports={A:{A:{"1":"B","2":"K E bC","132":"A","260":"F G"},B:{"1":"1 2 3 4 5 6 7 8 9 C L M H N O P Q I R S T U V W X Y Z a b c d e f g h i j k l m n o p q r s t u AB BB CB DB EB FB D"},C:{"1":"0 1 2 3 4 5 6 7 8 9 J GB K E F G A B C L M H N O P HB v w x y z IB JB KB LB MB NB OB PB QB RB SB TB UB VB WB XB YB ZB aB bB cB dB eB fB gB hB iB jB kB lB mB nB oB EC pB zB 0B 1B 2B 3B 4B 5B 6B Q I R GC S T U V W X Y Z a b c d e f g h i j k l m n o p q r s t u AB BB CB DB EB FB D HC IC JC dC eC fC gC","2":"cC DC","1025":"FC qB rB sB tB uB vB wB xB yB"},D:{"1":"0 1 2 3 4 5 6 7 8 9 L M H N O P HB v w x y z IB JB KB LB MB NB OB PB QB RB SB TB UB VB WB XB YB ZB aB bB cB dB eB fB gB hB iB jB kB lB mB nB oB EC pB FC qB rB sB tB uB vB wB xB yB zB 0B 1B 2B 3B 4B 5B 6B Q I R S T U V W X Y Z a b c d e f g h i j k l m n o p q r s t u AB BB CB DB EB FB D HC IC JC","132":"J GB K E F G A B C"},E:{"2":"hC KC","513":"K E F G A B C L M H jC kC lC LC 7B 8B mC nC oC MC NC 9B pC AC OC PC QC RC SC qC BC TC UC VC WC XC YC CC rC","644":"J GB iC"},F:{"1":"0 C H N O P HB v w x y z IB JB KB LB MB NB OB PB QB RB SB TB UB VB WB XB YB ZB aB bB cB dB eB fB gB hB iB jB kB lB mB nB oB pB qB rB sB tB uB vB wB xB yB zB 0B 1B 2B 3B 4B 5B 6B Q I R GC S T U V W X Y Z a b c d e f g h i j k l m n o p q r s t u 8B","2":"G B sC tC uC vC 7B ZC wC"},G:{"513":"F zC 0C 1C 2C 3C 4C 5C 6C 7C 8C 9C AD BD CD DD ED FD GD MC NC 9B HD AC OC PC QC RC SC ID BC TC UC VC WC XC YC CC","644":"KC xC aC yC"},H:{"2":"JD"},I:{"1":"D OD PD","132":"DC J KD LD MD ND aC"},J:{"1":"A","132":"E"},K:{"1":"C I 8B","2":"A B 7B ZC"},L:{"1":"D"},M:{"1":"D"},N:{"1":"B","132":"A"},O:{"1":"9B"},P:{"1":"0 J v w x y z QD RD SD TD UD LC VD WD XD YD ZD AC BC CC aD"},Q:{"1":"bD"},R:{"1":"cD"},S:{"1":"dD eD"}},B:1,C:"Cross-Origin Resource Sharing",D:true};
|
||||
|
2
node_modules/caniuse-lite/data/features/createimagebitmap.js
generated
vendored
2
node_modules/caniuse-lite/data/features/createimagebitmap.js
generated
vendored
@ -1 +1 @@
|
||||
module.exports={A:{A:{"2":"K E F G A B bC"},B:{"1":"1 2 3 4 5 6 7 8 9 Q I R S T U V W X Y Z a b c d e f g h i j k l m n o p q r s t u AB BB CB DB EB FB D","2":"C L M H N O P"},C:{"2":"0 cC DC J GB K E F G A B C L M H N O P HB v w x y z IB JB KB LB MB NB OB PB QB RB SB TB UB VB WB XB eC fC","1028":"c d e f g","3076":"YB ZB aB bB cB dB eB fB gB hB iB jB kB lB mB nB oB EC pB FC qB rB sB tB uB vB wB xB yB zB 0B 1B 2B 3B 4B 5B 6B Q I R GC S T U V W X Y Z a b","8196":"1 2 3 4 5 6 7 8 9 h i j k l m n o p q r s t u AB BB CB DB EB FB D HC IC JC dC"},D:{"1":"1 2 3 4 5 6 7 8 9 EC pB FC qB rB sB tB uB vB wB xB yB zB 0B 1B 2B 3B 4B 5B 6B Q I R S T U V W X Y Z a b c d e f g h i j k l m n o p q r s t u AB BB CB DB EB FB D HC IC JC","2":"0 J GB K E F G A B C L M H N O P HB v w x y z IB JB KB LB MB NB OB PB QB RB SB TB UB VB WB XB YB ZB aB bB cB dB eB fB","132":"gB hB","260":"iB jB","516":"kB lB mB nB oB"},E:{"2":"J GB K E F G A B C L M gC KC hC iC jC kC LC 7B 8B lC mC","4100":"H nC MC NC 9B oC AC OC PC QC RC SC pC BC TC UC VC WC XC YC CC qC"},F:{"1":"cB dB eB fB gB hB iB jB kB lB mB nB oB pB qB rB sB tB uB vB wB xB yB zB 0B 1B 2B 3B 4B 5B 6B Q I R GC S T U V W X Y Z a b c d e f g h i j k l m n o p q r s t u","2":"0 G B C H N O P HB v w x y z IB JB KB LB MB NB OB PB QB RB SB rC sC tC uC 7B ZC vC 8B","132":"TB UB","260":"VB WB","516":"XB YB ZB aB bB"},G:{"2":"F KC wC aC xC yC zC 0C 1C 2C 3C 4C 5C 6C 7C 8C 9C AD BD CD DD ED","4100":"FD MC NC 9B GD AC OC PC QC RC SC HD BC TC UC VC WC XC YC CC"},H:{"2":"ID"},I:{"1":"D","2":"DC J JD KD LD MD aC ND OD"},J:{"2":"E A"},K:{"1":"I","2":"A B C 7B ZC 8B"},L:{"1":"D"},M:{"8196":"D"},N:{"2":"A B"},O:{"1":"9B"},P:{"1":"0 v w x y z QD RD SD TD LC UD VD WD XD YD AC BC CC ZD","16":"J PD"},Q:{"1":"aD"},R:{"1":"bD"},S:{"3076":"cD dD"}},B:1,C:"createImageBitmap",D:true};
|
||||
module.exports={A:{A:{"2":"K E F G A B bC"},B:{"1":"1 2 3 4 5 6 7 8 9 Q I R S T U V W X Y Z a b c d e f g h i j k l m n o p q r s t u AB BB CB DB EB FB D","2":"C L M H N O P"},C:{"2":"0 cC DC J GB K E F G A B C L M H N O P HB v w x y z IB JB KB LB MB NB OB PB QB RB SB TB UB VB WB XB fC gC","1028":"c d e f g","3076":"YB ZB aB bB cB dB eB fB gB hB iB jB kB lB mB nB oB EC pB FC qB rB sB tB uB vB wB xB yB zB 0B 1B 2B 3B 4B 5B 6B Q I R GC S T U V W X Y Z a b","8196":"1 2 3 4 5 6 7 8 9 h i j k l m n o p q r s t u AB BB CB DB EB FB D HC IC JC dC eC"},D:{"1":"1 2 3 4 5 6 7 8 9 EC pB FC qB rB sB tB uB vB wB xB yB zB 0B 1B 2B 3B 4B 5B 6B Q I R S T U V W X Y Z a b c d e f g h i j k l m n o p q r s t u AB BB CB DB EB FB D HC IC JC","2":"0 J GB K E F G A B C L M H N O P HB v w x y z IB JB KB LB MB NB OB PB QB RB SB TB UB VB WB XB YB ZB aB bB cB dB eB fB","132":"gB hB","260":"iB jB","516":"kB lB mB nB oB"},E:{"2":"J GB K E F G A B C L M hC KC iC jC kC lC LC 7B 8B mC nC","4100":"H oC MC NC 9B pC AC OC PC QC RC SC qC BC TC UC VC WC XC YC CC rC"},F:{"1":"cB dB eB fB gB hB iB jB kB lB mB nB oB pB qB rB sB tB uB vB wB xB yB zB 0B 1B 2B 3B 4B 5B 6B Q I R GC S T U V W X Y Z a b c d e f g h i j k l m n o p q r s t u","2":"0 G B C H N O P HB v w x y z IB JB KB LB MB NB OB PB QB RB SB sC tC uC vC 7B ZC wC 8B","132":"TB UB","260":"VB WB","516":"XB YB ZB aB bB"},G:{"2":"F KC xC aC yC zC 0C 1C 2C 3C 4C 5C 6C 7C 8C 9C AD BD CD DD ED FD","4100":"GD MC NC 9B HD AC OC PC QC RC SC ID BC TC UC VC WC XC YC CC"},H:{"2":"JD"},I:{"1":"D","2":"DC J KD LD MD ND aC OD PD"},J:{"2":"E A"},K:{"1":"I","2":"A B C 7B ZC 8B"},L:{"1":"D"},M:{"8196":"D"},N:{"2":"A B"},O:{"1":"9B"},P:{"1":"0 v w x y z RD SD TD UD LC VD WD XD YD ZD AC BC CC aD","16":"J QD"},Q:{"1":"bD"},R:{"1":"cD"},S:{"3076":"dD eD"}},B:1,C:"createImageBitmap",D:true};
|
||||
|
Some files were not shown because too many files have changed in this diff Show More
Loading…
x
Reference in New Issue
Block a user