diff --git a/novas/novacore-zephyr/groq-code-cli/node_modules/core-js-compat/LICENSE b/novas/novacore-zephyr/groq-code-cli/node_modules/core-js-compat/LICENSE new file mode 100644 index 0000000000000000000000000000000000000000..a18fea22a1f94c9f799cd93f98c74823041dd9c9 --- /dev/null +++ b/novas/novacore-zephyr/groq-code-cli/node_modules/core-js-compat/LICENSE @@ -0,0 +1,19 @@ +Copyright (c) 2014-2025 Denis Pushkarev + +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. diff --git a/novas/novacore-zephyr/groq-code-cli/node_modules/core-js-compat/README.md b/novas/novacore-zephyr/groq-code-cli/node_modules/core-js-compat/README.md new file mode 100644 index 0000000000000000000000000000000000000000..45847cb71ad0b9663f12e67082d13f0435ee4f06 --- /dev/null +++ b/novas/novacore-zephyr/groq-code-cli/node_modules/core-js-compat/README.md @@ -0,0 +1,139 @@ +![logo](https://user-images.githubusercontent.com/2213682/146607186-8e13ddef-26a4-4ebf-befd-5aac9d77c090.png) + +
+ +[![fundraising](https://opencollective.com/core-js/all/badge.svg?label=fundraising)](https://opencollective.com/core-js) [![PRs welcome](https://img.shields.io/badge/PRs-welcome-brightgreen.svg)](https://github.com/zloirock/core-js/blob/master/CONTRIBUTING.md) [![version](https://img.shields.io/npm/v/core-js-compat.svg)](https://www.npmjs.com/package/core-js-compat) [![core-js-compat downloads](https://img.shields.io/npm/dm/core-js-compat.svg?label=npm%20i%20core-js-compat)](https://npm-stat.com/charts.html?package=core-js&package=core-js-pure&package=core-js-compat&from=2014-11-18) + +
+ +**I highly recommend reading this: [So, what's next?](https://github.com/zloirock/core-js/blob/master/docs/2023-02-14-so-whats-next.md)** +--- + +[`core-js-compat` package](https://github.com/zloirock/core-js/tree/master/packages/core-js-compat) contains data about the necessity of [`core-js`](https://github.com/zloirock/core-js) modules and API for getting a list of required core-js modules by browserslist query. + +```js +import compat from 'core-js-compat'; + +const { + list, // array of required modules + targets, // object with targets for each module +} = compat({ + targets: '> 1%', // browserslist query or object of minimum environment versions to support, see below + modules: [ // optional list / filter of modules - regex, string or an array of them: + 'core-js/actual', // - an entry point + 'esnext.array.unique-by', // - a module name (or just a start of a module name) + /^web\./, // - regex that a module name must satisfy + ], + exclude: [ // optional list / filter of modules to exclude, the signature is similar to `modules` option + 'web.atob', + ], + version: '3.45', // used `core-js` version, by default - the latest + inverse: false, // inverse of the result - shows modules that are NOT required for the target environment +}); + +console.log(targets); +/* => +{ + 'es.error.cause': { ios: '14.5-14.8' }, + 'es.aggregate-error.cause': { ios: '14.5-14.8' }, + 'es.array.at': { ios: '14.5-14.8' }, + 'es.array.find-last': { firefox: '100', ios: '14.5-14.8' }, + 'es.array.find-last-index': { firefox: '100', ios: '14.5-14.8' }, + 'es.array.includes': { firefox: '100' }, + 'es.array.push': { chrome: '100', edge: '101', ios: '14.5-14.8', safari: '15.4' }, + 'es.array.unshift': { ios: '14.5-14.8', safari: '15.4' }, + 'es.object.has-own': { ios: '14.5-14.8' }, + 'es.regexp.flags': { chrome: '100', edge: '101' }, + 'es.string.at-alternative': { ios: '14.5-14.8' }, + 'es.typed-array.at': { ios: '14.5-14.8' }, + 'es.typed-array.find-last': { firefox: '100', ios: '14.5-14.8' }, + 'es.typed-array.find-last-index': { firefox: '100', ios: '14.5-14.8' }, + 'esnext.array.group': { chrome: '100', edge: '101', firefox: '100', ios: '14.5-14.8', safari: '15.4' }, + 'esnext.array.group-by': { chrome: '100', edge: '101', firefox: '100', ios: '14.5-14.8', safari: '15.4' }, + 'esnext.array.group-by-to-map': { chrome: '100', edge: '101', firefox: '100', ios: '14.5-14.8', safari: '15.4' }, + 'esnext.array.group-to-map': { chrome: '100', edge: '101', firefox: '100', ios: '14.5-14.8', safari: '15.4' }, + 'esnext.array.to-reversed': { chrome: '100', edge: '101', firefox: '100', ios: '14.5-14.8', safari: '15.4' }, + 'esnext.array.to-sorted': { chrome: '100', edge: '101', firefox: '100', ios: '14.5-14.8', safari: '15.4' }, + 'esnext.array.to-spliced': { chrome: '100', edge: '101', firefox: '100', ios: '14.5-14.8', safari: '15.4' }, + 'esnext.array.unique-by': { chrome: '100', edge: '101', firefox: '100', ios: '14.5-14.8', safari: '15.4' }, + 'esnext.array.with': { chrome: '100', edge: '101', firefox: '100', ios: '14.5-14.8', safari: '15.4' }, + 'esnext.typed-array.to-reversed': { chrome: '100', edge: '101', firefox: '100', ios: '14.5-14.8', safari: '15.4' }, + 'esnext.typed-array.to-sorted': { chrome: '100', edge: '101', firefox: '100', ios: '14.5-14.8', safari: '15.4' }, + 'esnext.typed-array.to-spliced': { chrome: '100', edge: '101', firefox: '100', ios: '14.5-14.8', safari: '15.4' }, + 'esnext.typed-array.with': { chrome: '100', edge: '101', firefox: '100', ios: '14.5-14.8', safari: '15.4' }, + 'web.dom-exception.stack': { chrome: '100', edge: '101', ios: '14.5-14.8', safari: '15.4' }, + 'web.immediate': { chrome: '100', edge: '101', firefox: '100', ios: '14.5-14.8', safari: '15.4' }, + 'web.structured-clone': { chrome: '100', edge: '101', firefox: '100', ios: '14.5-14.8', safari: '15.4' } +} +*/ +``` + +### `targets` option +`targets` could be [a `browserslist` query](https://github.com/browserslist/browserslist) or a targets object that specifies minimum environment versions to support: +```js +// browserslist query: +'defaults, not IE 11, maintained node versions'; +// object (sure, all those fields optional): +({ + android: '4.0', // Android WebView version + bun: '0.1.2', // Bun version + chrome: '38', // Chrome version + 'chrome-android': '18', // Chrome for Android version + deno: '1.12', // Deno version + edge: '13', // Edge version + electron: '5.0', // Electron framework version + firefox: '15', // Firefox version + 'firefox-android': '4', // Firefox for Android version + hermes: '0.11', // Hermes version + ie: '8', // Internet Explorer version + ios: '13.0', // iOS Safari version + node: 'current', // NodeJS version, you can use 'current' for set it to currently used + opera: '12', // Opera version + 'opera-android': '7', // Opera for Android version + phantom: '1.9', // PhantomJS headless browser version + quest: '5.0', // Meta Quest Browser version + 'react-native': '0.70', // React Native version (default Hermes engine) + rhino: '1.7.13', // Rhino engine version + safari: '14.0', // Safari version + samsung: '14.0', // Samsung Internet version + /** + * true option set target to minimum supporting ES Modules versions of all browsers, ignoring `browsers` target. + * 'intersect' option intersects the `browsers` target and `browserslist`'s targets. The maximum version will be used. + */ + esmodules: true | 'intersect', + browsers: '> 0.25%', // Browserslist query or object with target browsers +}); +``` + +### Additional API: + +```js +// equals of of the method from the example above +require('core-js-compat/compat')({ targets, modules, version }); // => { list: Array, targets: { [ModuleName]: { [EngineName]: EngineVersion } } } +// or +require('core-js-compat').compat({ targets, modules, version }); // => { list: Array, targets: { [ModuleName]: { [EngineName]: EngineVersion } } } + +// full compat data: +require('core-js-compat/data'); // => { [ModuleName]: { [EngineName]: EngineVersion } } +// or +require('core-js-compat').data; // => { [ModuleName]: { [EngineName]: EngineVersion } } + +// map of modules by `core-js` entry points: +require('core-js-compat/entries'); // => { [EntryPoint]: Array } +// or +require('core-js-compat').entries; // => { [EntryPoint]: Array } + +// full list of modules: +require('core-js-compat/modules'); // => Array +// or +require('core-js-compat').modules; // => Array + +// the subset of modules which available in the passed `core-js` version: +require('core-js-compat/get-modules-list-for-target-version')('3.45'); // => Array +// or +require('core-js-compat').getModulesListForTargetVersion('3.45'); // => Array +``` + +If you wanna help to improve this data, you could take a look at the related section of [`CONTRIBUTING.md`](https://github.com/zloirock/core-js/blob/master/CONTRIBUTING.md#how-to-update-core-js-compat-data). The visualization of compatibility data and the browser tests runner is available [here](http://zloirock.github.io/core-js/master/compat/), the example: + +![compat-table](https://user-images.githubusercontent.com/2213682/217452234-ccdcfc5a-c7d3-40d1-ab3f-86902315b8c3.png) diff --git a/novas/novacore-zephyr/groq-code-cli/node_modules/core-js-compat/compat.d.ts b/novas/novacore-zephyr/groq-code-cli/node_modules/core-js-compat/compat.d.ts new file mode 100644 index 0000000000000000000000000000000000000000..61c3912af81afca78c61459fd9b215b0b02e2e62 --- /dev/null +++ b/novas/novacore-zephyr/groq-code-cli/node_modules/core-js-compat/compat.d.ts @@ -0,0 +1,48 @@ +import type { ModuleName, Target, TargetVersion } from "./shared"; + +type StringOrRegExp = string | RegExp; + +type Modules = StringOrRegExp | readonly StringOrRegExp[]; + +type BrowserslistQuery = string | ReadonlyArray; + +type Environments = { + [target in Target]?: string | number; +}; + +type Targets = Environments & { + browsers?: Environments | BrowserslistQuery, + esmodules?: boolean | 'intersect', +}; + +type CompatOptions = { + /** entry / module / namespace / an array of them, by default - all `core-js` modules */ + modules?: Modules, + /** a blacklist, entry / module / namespace / an array of them, by default - empty list */ + exclude?: Modules, + /** optional browserslist or core-js-compat format query */ + targets?: Targets | BrowserslistQuery, + /** used `core-js` version, by default the latest */ + version?: string, + /** inverse of the result, shows modules that are NOT required for the target environment */ + inverse?: boolean, + /** + * @deprecated use `modules` instead + */ + filter?: Modules +}; + +type CompatOutput = { + /** array of required modules */ + list: ModuleName[], + /** object with targets for each module */ + targets: { + [module: ModuleName]: { + [target in Target]?: TargetVersion + } + } +} + +declare function compat(options?: CompatOptions): CompatOutput; + +export = compat; diff --git a/novas/novacore-zephyr/groq-code-cli/node_modules/core-js-compat/compat.js b/novas/novacore-zephyr/groq-code-cli/node_modules/core-js-compat/compat.js new file mode 100644 index 0000000000000000000000000000000000000000..d325e28c24e75db1cee20ae057195df019b6885c --- /dev/null +++ b/novas/novacore-zephyr/groq-code-cli/node_modules/core-js-compat/compat.js @@ -0,0 +1,90 @@ +'use strict'; +const { compare, filterOutStabilizedProposals, has, intersection } = require('./helpers'); +const data = require('./data'); +const entries = require('./entries'); +const getModulesListForTargetVersion = require('./get-modules-list-for-target-version'); +const allModules = require('./modules'); +const targetsParser = require('./targets-parser'); + +function throwInvalidFilter(filter) { + throw new TypeError(`Specified invalid module name or pattern: ${ filter }`); +} + +function atLeastSomeModules(modules, filter) { + if (!modules.length) throwInvalidFilter(filter); + return modules; +} + +function getModules(filter) { + if (typeof filter == 'string') { + if (has(entries, filter)) return entries[filter]; + return atLeastSomeModules(allModules.filter(it => it.startsWith(filter)), filter); + } + if (filter instanceof RegExp) return atLeastSomeModules(allModules.filter(it => filter.test(it)), filter); + throwInvalidFilter(filter); +} + +function normalizeModules(option) { + // TODO: use `.flatMap` in core-js@4 + return new Set(Array.isArray(option) ? [].concat(...option.map(getModules)) : getModules(option)); +} + +function checkModule(name, targets) { + const result = { + required: !targets, + targets: {}, + }; + + if (!targets) return result; + + const requirements = data[name]; + + for (const [engine, version] of targets) { + if (!has(requirements, engine) || compare(version, '<', requirements[engine])) { + result.required = true; + result.targets[engine] = version; + } + } + + return result; +} + +module.exports = function ({ + filter = null, // TODO: Obsolete, remove from `core-js@4` + modules = null, + exclude = [], + targets = null, + version = null, + inverse = false, +} = {}) { + if (modules === null || modules === undefined) modules = filter; + inverse = !!inverse; + + const parsedTargets = targets ? targetsParser(targets) : null; + + const result = { + list: [], + targets: {}, + }; + + exclude = normalizeModules(exclude); + + modules = modules ? [...normalizeModules(modules)] : allModules; + + if (exclude.size) modules = modules.filter(it => !exclude.has(it)); + + modules = intersection(modules, version ? getModulesListForTargetVersion(version) : allModules); + + if (!inverse) modules = filterOutStabilizedProposals(modules); + + for (const key of modules) { + const check = checkModule(key, parsedTargets); + + if (check.required ^ inverse) { + result.list.push(key); + result.targets[key] = check.targets; + } + } + + return result; +}; diff --git a/novas/novacore-zephyr/groq-code-cli/node_modules/core-js-compat/data.json b/novas/novacore-zephyr/groq-code-cli/node_modules/core-js-compat/data.json new file mode 100644 index 0000000000000000000000000000000000000000..d07ee22908125d56e470e5013e1e7e211d817f3b --- /dev/null +++ b/novas/novacore-zephyr/groq-code-cli/node_modules/core-js-compat/data.json @@ -0,0 +1,8216 @@ +{ + "es.symbol": { + "android": "49", + "bun": "0.1.1", + "chrome": "49", + "chrome-android": "49", + "deno": "1.0", + "edge": "15", + "electron": "0.37", + "firefox": "51", + "firefox-android": "51", + "hermes": "0.1", + "ios": "10.0", + "node": "6.0", + "oculus": "3.0", + "opera": "36", + "opera-android": "36", + "opera_mobile": "36", + "quest": "3.0", + "react-native": "0.69", + "rhino": "1.7.15", + "safari": "10.0", + "samsung": "5.0" + }, + "es.symbol.description": { + "android": "70", + "bun": "0.1.1", + "chrome": "70", + "chrome-android": "70", + "deno": "1.0", + "edge": "79", + "electron": "5.0", + "firefox": "63", + "firefox-android": "63", + "ios": "12.2", + "node": "11.0", + "oculus": "6.0", + "opera": "57", + "opera-android": "49", + "opera_mobile": "49", + "quest": "6.0", + "rhino": "1.8.0", + "safari": "12.1", + "samsung": "10.0" + }, + "es.symbol.async-dispose": { + "android": "127", + "bun": "1.0.23", + "chrome": "127", + "chrome-android": "127", + "deno": "1.38", + "edge": "127", + "electron": "32.0", + "firefox": "135", + "firefox-android": "135", + "node": "20.5.0", + "oculus": "35.0", + "opera": "113", + "opera-android": "84", + "opera_mobile": "84", + "quest": "35.0", + "samsung": "28.0" + }, + "es.symbol.async-iterator": { + "android": "63", + "bun": "0.1.1", + "chrome": "63", + "chrome-android": "63", + "deno": "1.0", + "edge": "79", + "electron": "3.0", + "firefox": "55", + "firefox-android": "55", + "ios": "12.0", + "node": "10.0", + "oculus": "5.0", + "opera": "50", + "opera-android": "46", + "opera_mobile": "46", + "quest": "5.0", + "safari": "12.0", + "samsung": "8.0" + }, + "es.symbol.dispose": { + "android": "125", + "bun": "1.0.23", + "chrome": "125", + "chrome-android": "125", + "deno": "1.38", + "edge": "125", + "electron": "31.0", + "firefox": "135", + "firefox-android": "135", + "node": "20.5.0", + "oculus": "34.0", + "opera": "111", + "opera-android": "83", + "opera_mobile": "83", + "quest": "34.0", + "samsung": "27.0" + }, + "es.symbol.has-instance": { + "android": "50", + "bun": "0.1.1", + "chrome": "50", + "chrome-android": "50", + "deno": "1.0", + "edge": "15", + "electron": "1.1", + "firefox": "49", + "firefox-android": "49", + "hermes": "0.1", + "ios": "10.0", + "node": "6.0", + "oculus": "3.0", + "opera": "37", + "opera-android": "37", + "opera_mobile": "37", + "quest": "3.0", + "react-native": "0.69", + "rhino": "1.7.13", + "safari": "10.0", + "samsung": "5.0" + }, + "es.symbol.is-concat-spreadable": { + "android": "48", + "bun": "0.1.1", + "chrome": "48", + "chrome-android": "48", + "deno": "1.0", + "edge": "15", + "electron": "0.37", + "firefox": "48", + "firefox-android": "48", + "hermes": "0.1", + "ios": "10.0", + "node": "6.0", + "oculus": "3.0", + "opera": "35", + "opera-android": "35", + "opera_mobile": "35", + "quest": "3.0", + "react-native": "0.69", + "rhino": "1.7.13", + "safari": "10.0", + "samsung": "5.0" + }, + "es.symbol.iterator": { + "android": "41", + "bun": "0.1.1", + "chrome": "41", + "chrome-android": "41", + "deno": "1.0", + "edge": "13", + "electron": "0.21", + "firefox": "36", + "firefox-android": "36", + "hermes": "0.1", + "ios": "9.0", + "node": "1.0", + "oculus": "3.0", + "opera": "28", + "opera-android": "28", + "opera_mobile": "28", + "quest": "3.0", + "react-native": "0.69", + "rhino": "1.7.13", + "safari": "9.0", + "samsung": "3.4" + }, + "es.symbol.match": { + "android": "50", + "bun": "0.1.1", + "chrome": "50", + "chrome-android": "50", + "deno": "1.0", + "edge": "79", + "electron": "1.1", + "firefox": "40", + "firefox-android": "40", + "hermes": "0.1", + "ios": "10.0", + "node": "6.0", + "oculus": "3.0", + "opera": "37", + "opera-android": "37", + "opera_mobile": "37", + "quest": "3.0", + "react-native": "0.69", + "rhino": "1.7.13", + "safari": "10.0", + "samsung": "5.0" + }, + "es.symbol.match-all": { + "android": "73", + "bun": "0.1.1", + "chrome": "73", + "chrome-android": "73", + "deno": "1.0", + "edge": "79", + "electron": "5.0", + "firefox": "67", + "firefox-android": "67", + "hermes": "0.6", + "ios": "13.0", + "node": "12.0", + "oculus": "6.0", + "opera": "60", + "opera-android": "52", + "opera_mobile": "52", + "quest": "6.0", + "react-native": "0.69", + "rhino": "1.8.0", + "safari": "13", + "samsung": "11.0" + }, + "es.symbol.replace": { + "android": "50", + "bun": "0.1.1", + "chrome": "50", + "chrome-android": "50", + "deno": "1.0", + "edge": "79", + "electron": "1.1", + "firefox": "49", + "firefox-android": "49", + "hermes": "0.1", + "ios": "10.0", + "node": "6.0", + "oculus": "3.0", + "opera": "37", + "opera-android": "37", + "opera_mobile": "37", + "quest": "3.0", + "react-native": "0.69", + "rhino": "1.7.13", + "safari": "10.0", + "samsung": "5.0" + }, + "es.symbol.search": { + "android": "50", + "bun": "0.1.1", + "chrome": "50", + "chrome-android": "50", + "deno": "1.0", + "edge": "79", + "electron": "1.1", + "firefox": "49", + "firefox-android": "49", + "hermes": "0.1", + "ios": "10.0", + "node": "6.0", + "oculus": "3.0", + "opera": "37", + "opera-android": "37", + "opera_mobile": "37", + "quest": "3.0", + "react-native": "0.69", + "rhino": "1.7.13", + "safari": "10.0", + "samsung": "5.0" + }, + "es.symbol.species": { + "android": "51", + "bun": "0.1.1", + "chrome": "51", + "chrome-android": "51", + "deno": "1.0", + "edge": "13", + "electron": "1.2", + "firefox": "41", + "firefox-android": "41", + "ios": "10.0", + "node": "6.5", + "oculus": "3.0", + "opera": "38", + "opera-android": "38", + "opera_mobile": "38", + "quest": "3.0", + "rhino": "1.7.13", + "safari": "10.0", + "samsung": "5.0" + }, + "es.symbol.split": { + "android": "50", + "bun": "0.1.1", + "chrome": "50", + "chrome-android": "50", + "deno": "1.0", + "edge": "79", + "electron": "1.1", + "firefox": "49", + "firefox-android": "49", + "hermes": "0.1", + "ios": "10.0", + "node": "6.0", + "oculus": "3.0", + "opera": "37", + "opera-android": "37", + "opera_mobile": "37", + "quest": "3.0", + "react-native": "0.69", + "rhino": "1.7.13", + "safari": "10.0", + "samsung": "5.0" + }, + "es.symbol.to-primitive": { + "android": "47", + "bun": "0.1.1", + "chrome": "47", + "chrome-android": "47", + "deno": "1.0", + "edge": "15", + "electron": "0.36", + "firefox": "44", + "firefox-android": "44", + "hermes": "0.1", + "ios": "10.0", + "node": "6.0", + "oculus": "3.0", + "opera": "34", + "opera-android": "34", + "opera_mobile": "34", + "quest": "3.0", + "react-native": "0.69", + "rhino": "1.7.13", + "safari": "10.0", + "samsung": "5.0" + }, + "es.symbol.to-string-tag": { + "android": "49", + "bun": "0.1.1", + "chrome": "49", + "chrome-android": "49", + "deno": "1.0", + "edge": "15", + "electron": "0.37", + "firefox": "51", + "firefox-android": "51", + "hermes": "0.1", + "ios": "10.0", + "node": "6.0", + "oculus": "3.0", + "opera": "36", + "opera-android": "36", + "opera_mobile": "36", + "quest": "3.0", + "react-native": "0.69", + "rhino": "1.7.13", + "safari": "10.0", + "samsung": "5.0" + }, + "es.symbol.unscopables": { + "android": "41", + "bun": "0.1.1", + "chrome": "41", + "chrome-android": "41", + "deno": "1.0", + "edge": "13", + "electron": "0.21", + "firefox": "48", + "firefox-android": "48", + "ios": "9.0", + "node": "1.0", + "oculus": "3.0", + "opera": "28", + "opera-android": "28", + "opera_mobile": "28", + "quest": "3.0", + "rhino": "1.7.13", + "safari": "9.0", + "samsung": "3.4" + }, + "es.error.cause": { + "android": "94", + "bun": "0.1.1", + "chrome": "94", + "chrome-android": "94", + "deno": "1.14", + "edge": "94", + "electron": "15.0", + "firefox": "91", + "firefox-android": "91", + "hermes": "0.8", + "ios": "15.0", + "node": "16.11", + "oculus": "18.0", + "opera": "80", + "opera-android": "66", + "opera_mobile": "66", + "quest": "18.0", + "react-native": "0.69", + "rhino": "1.8.0", + "safari": "15.0", + "samsung": "17.0" + }, + "es.error.is-error": { + "android": "134", + "chrome": "134", + "chrome-android": "134", + "deno": "2.2", + "edge": "134", + "electron": "35.0", + "firefox": "138", + "firefox-android": "138", + "node": "24.3", + "oculus": "38.0", + "opera": "119", + "opera-android": "88", + "opera_mobile": "88", + "quest": "38.0", + "samsung": "29.0" + }, + "es.error.to-string": { + "android": "4.4.3", + "bun": "0.1.1", + "chrome": "33", + "chrome-android": "33", + "deno": "1.0", + "edge": "12", + "electron": "0.20", + "firefox": "11", + "firefox-android": "11", + "hermes": "0.1", + "ie": "9", + "ios": "9.0", + "node": "0.11.13", + "oculus": "3.0", + "opera": "20", + "opera-android": "20", + "opera_mobile": "20", + "quest": "3.0", + "react-native": "0.69", + "rhino": "1.7.14", + "safari": "8.0", + "samsung": "2.0" + }, + "es.aggregate-error": { + "android": "85", + "bun": "0.1.1", + "chrome": "85", + "chrome-android": "85", + "deno": "1.2", + "edge": "85", + "electron": "10.0", + "firefox": "79", + "firefox-android": "79", + "hermes": "0.13", + "ios": "14.0", + "node": "15.0", + "oculus": "12.0", + "opera": "71", + "opera-android": "60", + "opera_mobile": "60", + "quest": "12.0", + "react-native": "0.72", + "rhino": "1.8.0", + "safari": "14.0", + "samsung": "14.0" + }, + "es.aggregate-error.cause": { + "android": "94", + "bun": "0.1.1", + "chrome": "94", + "chrome-android": "94", + "deno": "1.14", + "edge": "94", + "electron": "15.0", + "firefox": "91", + "firefox-android": "91", + "hermes": "0.13", + "ios": "15.0", + "node": "16.11", + "oculus": "18.0", + "opera": "80", + "opera-android": "66", + "opera_mobile": "66", + "quest": "18.0", + "react-native": "0.72", + "rhino": "1.8.0", + "safari": "15.0", + "samsung": "17.0" + }, + "es.suppressed-error.constructor": { + "android": "136", + "bun": "1.2.15", + "chrome": "136", + "chrome-android": "136", + "deno": "2.2.10", + "edge": "136", + "electron": "36.0", + "firefox": "141", + "firefox-android": "141", + "node": "24.0", + "oculus": "39.0", + "opera": "121", + "opera-android": "90", + "opera_mobile": "90", + "quest": "39.0", + "samsung": "29.0" + }, + "es.array.at": { + "android": "92", + "bun": "0.1.1", + "chrome": "92", + "chrome-android": "92", + "deno": "1.12", + "edge": "92", + "electron": "14.0", + "firefox": "90", + "firefox-android": "90", + "hermes": "0.13", + "ios": "15.4", + "node": "16.6", + "oculus": "17.0", + "opera": "78", + "opera-android": "65", + "opera_mobile": "65", + "quest": "17.0", + "react-native": "0.71", + "rhino": "1.7.15", + "safari": "15.4", + "samsung": "16.0" + }, + "es.array.concat": { + "android": "51", + "bun": "0.1.1", + "chrome": "51", + "chrome-android": "51", + "deno": "1.0", + "edge": "15", + "electron": "1.2", + "firefox": "48", + "firefox-android": "48", + "ios": "10.0", + "node": "6.5", + "oculus": "3.0", + "opera": "38", + "opera-android": "38", + "opera_mobile": "38", + "quest": "3.0", + "safari": "10.0", + "samsung": "5.0" + }, + "es.array.copy-within": { + "android": "45", + "bun": "0.1.1", + "chrome": "45", + "chrome-android": "45", + "deno": "1.0", + "edge": "12", + "electron": "0.31", + "firefox": "48", + "firefox-android": "48", + "ios": "9.0", + "node": "4.0", + "oculus": "3.0", + "opera": "32", + "opera-android": "32", + "opera_mobile": "32", + "quest": "3.0", + "rhino": "1.8.0", + "safari": "9.0", + "samsung": "5.0" + }, + "es.array.every": { + "android": "4.4", + "bun": "0.1.1", + "chrome": "26", + "chrome-android": "26", + "deno": "1.0", + "edge": "12", + "electron": "0.20", + "firefox": "4", + "firefox-android": "4", + "hermes": "0.1", + "ie": "9", + "ios": "8.0", + "node": "0.11.0", + "oculus": "3.0", + "opera": "15", + "opera-android": "15", + "opera_mobile": "15", + "quest": "3.0", + "react-native": "0.69", + "rhino": "1.7.13", + "safari": "7.1", + "samsung": "1.5" + }, + "es.array.fill": { + "android": "45", + "bun": "0.1.1", + "chrome": "45", + "chrome-android": "45", + "deno": "1.0", + "edge": "12", + "electron": "0.31", + "firefox": "48", + "firefox-android": "48", + "ios": "9.0", + "node": "4.0", + "oculus": "3.0", + "opera": "32", + "opera-android": "32", + "opera_mobile": "32", + "quest": "3.0", + "rhino": "1.8.0", + "safari": "9.0", + "samsung": "5.0" + }, + "es.array.filter": { + "android": "51", + "bun": "0.1.1", + "chrome": "51", + "chrome-android": "51", + "deno": "1.0", + "edge": "15", + "electron": "1.2", + "firefox": "48", + "firefox-android": "48", + "ios": "10.0", + "node": "6.5", + "oculus": "3.0", + "opera": "38", + "opera-android": "38", + "opera_mobile": "38", + "quest": "3.0", + "safari": "10.0", + "samsung": "5.0" + }, + "es.array.find": { + "android": "45", + "bun": "0.1.1", + "chrome": "45", + "chrome-android": "45", + "deno": "1.0", + "edge": "13", + "electron": "0.31", + "firefox": "48", + "firefox-android": "48", + "ios": "9.0", + "node": "4.0", + "oculus": "3.0", + "opera": "32", + "opera-android": "32", + "opera_mobile": "32", + "quest": "3.0", + "rhino": "1.8.0", + "safari": "9.0", + "samsung": "5.0" + }, + "es.array.find-index": { + "android": "45", + "bun": "0.1.1", + "chrome": "45", + "chrome-android": "45", + "deno": "1.0", + "edge": "13", + "electron": "0.31", + "firefox": "48", + "firefox-android": "48", + "ios": "9.0", + "node": "4.0", + "oculus": "3.0", + "opera": "32", + "opera-android": "32", + "opera_mobile": "32", + "quest": "3.0", + "rhino": "1.8.0", + "safari": "9.0", + "samsung": "5.0" + }, + "es.array.find-last": { + "android": "97", + "bun": "0.1.1", + "chrome": "97", + "chrome-android": "97", + "deno": "1.16", + "edge": "97", + "electron": "17.0", + "firefox": "104", + "firefox-android": "104", + "hermes": "0.11", + "ios": "15.4", + "node": "18.0", + "oculus": "20.0", + "opera": "83", + "opera-android": "68", + "opera_mobile": "68", + "quest": "20.0", + "react-native": "0.69", + "rhino": "1.8.0", + "safari": "15.4", + "samsung": "18.0" + }, + "es.array.find-last-index": { + "android": "97", + "bun": "0.1.1", + "chrome": "97", + "chrome-android": "97", + "deno": "1.16", + "edge": "97", + "electron": "17.0", + "firefox": "104", + "firefox-android": "104", + "hermes": "0.11", + "ios": "15.4", + "node": "18.0", + "oculus": "20.0", + "opera": "83", + "opera-android": "68", + "opera_mobile": "68", + "quest": "20.0", + "react-native": "0.69", + "rhino": "1.8.0", + "safari": "15.4", + "samsung": "18.0" + }, + "es.array.flat": { + "android": "69", + "bun": "0.1.1", + "chrome": "69", + "chrome-android": "69", + "deno": "1.0", + "edge": "79", + "electron": "4.0", + "firefox": "62", + "firefox-android": "62", + "hermes": "0.4", + "ios": "12.0", + "node": "11.0", + "oculus": "6.0", + "opera": "56", + "opera-android": "48", + "opera_mobile": "48", + "quest": "6.0", + "react-native": "0.69", + "rhino": "1.7.15", + "safari": "12.0", + "samsung": "10.0" + }, + "es.array.flat-map": { + "android": "69", + "bun": "0.1.1", + "chrome": "69", + "chrome-android": "69", + "deno": "1.0", + "edge": "79", + "electron": "4.0", + "firefox": "62", + "firefox-android": "62", + "hermes": "0.4", + "ios": "12.0", + "node": "11.0", + "oculus": "6.0", + "opera": "56", + "opera-android": "48", + "opera_mobile": "48", + "quest": "6.0", + "react-native": "0.69", + "rhino": "1.7.15", + "safari": "12.0", + "samsung": "10.0" + }, + "es.array.for-each": { + "android": "4.4", + "bun": "0.1.1", + "chrome": "26", + "chrome-android": "26", + "deno": "1.0", + "edge": "12", + "electron": "0.20", + "firefox": "4", + "firefox-android": "4", + "hermes": "0.1", + "ie": "9", + "ios": "8.0", + "node": "0.11.0", + "oculus": "3.0", + "opera": "15", + "opera-android": "15", + "opera_mobile": "15", + "quest": "3.0", + "react-native": "0.69", + "rhino": "1.7.13", + "safari": "7.1", + "samsung": "1.5" + }, + "es.array.from": { + "android": "51", + "bun": "0.1.1", + "chrome": "51", + "chrome-android": "51", + "deno": "1.0", + "edge": "15", + "electron": "1.2", + "firefox": "53", + "firefox-android": "53", + "hermes": "0.13", + "ios": "9.0", + "node": "6.5", + "oculus": "3.0", + "opera": "38", + "opera-android": "38", + "opera_mobile": "38", + "quest": "3.0", + "react-native": "0.73", + "rhino": "1.7.13", + "safari": "9.0", + "samsung": "5.0" + }, + "es.array.includes": { + "android": "53", + "bun": "0.1.1", + "chrome": "53", + "chrome-android": "53", + "deno": "1.0", + "edge": "14", + "electron": "1.4", + "firefox": "102", + "firefox-android": "102", + "ios": "10.0", + "node": "7.0", + "oculus": "3.0", + "opera": "40", + "opera-android": "40", + "opera_mobile": "40", + "quest": "3.0", + "rhino": "1.8.0", + "safari": "10.0", + "samsung": "6.0" + }, + "es.array.index-of": { + "android": "51", + "bun": "0.1.1", + "chrome": "51", + "chrome-android": "51", + "deno": "1.0", + "edge": "12", + "electron": "1.2", + "firefox": "47", + "firefox-android": "47", + "hermes": "0.1", + "ie": "9", + "ios": "8.0", + "node": "6.5", + "oculus": "3.0", + "opera": "38", + "opera-android": "38", + "opera_mobile": "38", + "quest": "3.0", + "react-native": "0.69", + "rhino": "1.7.13", + "safari": "7.1", + "samsung": "5.0" + }, + "es.array.is-array": { + "android": "3.0", + "bun": "0.1.1", + "chrome": "5", + "chrome-android": "18", + "deno": "1.0", + "edge": "12", + "electron": "0.20", + "firefox": "4", + "firefox-android": "4", + "hermes": "0.1", + "ie": "9", + "ios": "3.0", + "node": "0.1.27", + "oculus": "3.0", + "opera": "10.50", + "opera-android": "10.50", + "opera_mobile": "10.50", + "phantom": "1.9", + "quest": "3.0", + "react-native": "0.69", + "rhino": "1.7.13", + "safari": "4.0", + "samsung": "1.0" + }, + "es.array.iterator": { + "android": "66", + "bun": "0.1.1", + "chrome": "66", + "chrome-android": "66", + "deno": "1.0", + "edge": "15", + "electron": "3.0", + "firefox": "60", + "firefox-android": "60", + "ios": "10.0", + "node": "10.0", + "oculus": "5.0", + "opera": "53", + "opera-android": "47", + "opera_mobile": "47", + "quest": "5.0", + "rhino": "1.8.0", + "safari": "10.0", + "samsung": "9.0" + }, + "es.array.join": { + "android": "4.4", + "bun": "0.1.1", + "chrome": "26", + "chrome-android": "26", + "deno": "1.0", + "edge": "13", + "electron": "0.20", + "firefox": "4", + "firefox-android": "4", + "hermes": "0.1", + "ios": "8.0", + "node": "0.11.0", + "oculus": "3.0", + "opera": "15", + "opera-android": "15", + "opera_mobile": "15", + "quest": "3.0", + "react-native": "0.69", + "rhino": "1.7.13", + "safari": "7.1", + "samsung": "1.5" + }, + "es.array.last-index-of": { + "android": "51", + "bun": "0.1.1", + "chrome": "51", + "chrome-android": "51", + "deno": "1.0", + "edge": "12", + "electron": "1.2", + "firefox": "47", + "firefox-android": "47", + "hermes": "0.1", + "ie": "9", + "ios": "8.0", + "node": "6.5", + "oculus": "3.0", + "opera": "38", + "opera-android": "38", + "opera_mobile": "38", + "quest": "3.0", + "react-native": "0.69", + "rhino": "1.7.13", + "safari": "7.1", + "samsung": "5.0" + }, + "es.array.map": { + "android": "51", + "bun": "0.1.1", + "chrome": "51", + "chrome-android": "51", + "deno": "1.0", + "edge": "13", + "electron": "1.2", + "firefox": "50", + "firefox-android": "50", + "ios": "10.0", + "node": "6.5", + "oculus": "3.0", + "opera": "38", + "opera-android": "38", + "opera_mobile": "38", + "quest": "3.0", + "safari": "10.0", + "samsung": "5.0" + }, + "es.array.of": { + "android": "45", + "bun": "0.1.1", + "chrome": "45", + "chrome-android": "45", + "deno": "1.0", + "edge": "13", + "electron": "0.31", + "firefox": "25", + "firefox-android": "25", + "hermes": "0.1", + "ios": "9.0", + "node": "4.0", + "oculus": "3.0", + "opera": "32", + "opera-android": "32", + "opera_mobile": "32", + "quest": "3.0", + "react-native": "0.69", + "rhino": "1.7.13", + "safari": "9.0", + "samsung": "5.0" + }, + "es.array.push": { + "android": "122", + "bun": "0.1.1", + "chrome": "122", + "chrome-android": "122", + "deno": "1.41.3", + "edge": "122", + "electron": "29.0", + "firefox": "55", + "firefox-android": "55", + "hermes": "0.2", + "ios": "16.0", + "node": "22.0", + "oculus": "32.0", + "opera": "108", + "opera-android": "81", + "opera_mobile": "81", + "quest": "32.0", + "react-native": "0.69", + "safari": "16.0", + "samsung": "26.0" + }, + "es.array.reduce": { + "android": "83", + "bun": "0.1.1", + "chrome": "83", + "chrome-android": "83", + "deno": "1.0", + "edge": "12", + "electron": "9.0", + "firefox": "4", + "firefox-android": "4", + "hermes": "0.1", + "ie": "9", + "ios": "8.0", + "node": "6.0", + "oculus": "10.0", + "opera": "69", + "opera-android": "59", + "opera_mobile": "59", + "quest": "10.0", + "react-native": "0.69", + "rhino": "1.7.13", + "safari": "7.1", + "samsung": "13.0" + }, + "es.array.reduce-right": { + "android": "83", + "bun": "0.1.1", + "chrome": "83", + "chrome-android": "83", + "deno": "1.0", + "edge": "12", + "electron": "9.0", + "firefox": "4", + "firefox-android": "4", + "hermes": "0.1", + "ie": "9", + "ios": "8.0", + "node": "6.0", + "oculus": "10.0", + "opera": "69", + "opera-android": "59", + "opera_mobile": "59", + "quest": "10.0", + "react-native": "0.69", + "rhino": "1.7.13", + "safari": "7.1", + "samsung": "13.0" + }, + "es.array.reverse": { + "android": "3.0", + "bun": "0.1.1", + "chrome": "1", + "chrome-android": "18", + "deno": "1.0", + "edge": "12", + "electron": "0.20", + "firefox": "1", + "firefox-android": "4", + "hermes": "0.1", + "ie": "5.5", + "ios": "12.2", + "node": "0.0.3", + "oculus": "3.0", + "opera": "10.50", + "opera-android": "10.50", + "opera_mobile": "10.50", + "quest": "3.0", + "react-native": "0.69", + "rhino": "1.7.13", + "safari": "12.0.2", + "samsung": "1.0" + }, + "es.array.slice": { + "android": "51", + "bun": "0.1.1", + "chrome": "51", + "chrome-android": "51", + "deno": "1.0", + "edge": "13", + "electron": "1.2", + "firefox": "48", + "firefox-android": "48", + "ios": "10.0", + "node": "6.5", + "oculus": "3.0", + "opera": "38", + "opera-android": "38", + "opera_mobile": "38", + "quest": "3.0", + "safari": "10.0", + "samsung": "5.0" + }, + "es.array.some": { + "android": "4.4", + "bun": "0.1.1", + "chrome": "26", + "chrome-android": "26", + "deno": "1.0", + "edge": "12", + "electron": "0.20", + "firefox": "4", + "firefox-android": "4", + "hermes": "0.1", + "ie": "9", + "ios": "8.0", + "node": "0.11.0", + "oculus": "3.0", + "opera": "15", + "opera-android": "15", + "opera_mobile": "15", + "quest": "3.0", + "react-native": "0.69", + "rhino": "1.7.13", + "safari": "7.1", + "samsung": "1.5" + }, + "es.array.sort": { + "android": "70", + "bun": "0.1.1", + "chrome": "70", + "chrome-android": "70", + "deno": "1.0", + "edge": "79", + "electron": "5.0", + "firefox": "4", + "firefox-android": "4", + "hermes": "0.10", + "ios": "12.0", + "node": "11.0", + "oculus": "6.0", + "opera": "57", + "opera-android": "49", + "opera_mobile": "49", + "quest": "6.0", + "react-native": "0.69", + "rhino": "1.8.0", + "safari": "12.0", + "samsung": "10.0" + }, + "es.array.species": { + "android": "51", + "bun": "0.1.1", + "chrome": "51", + "chrome-android": "51", + "deno": "1.0", + "edge": "13", + "electron": "1.2", + "firefox": "48", + "firefox-android": "48", + "ios": "10.0", + "node": "6.5", + "oculus": "3.0", + "opera": "38", + "opera-android": "38", + "opera_mobile": "38", + "quest": "3.0", + "rhino": "1.7.15", + "safari": "10.0", + "samsung": "5.0" + }, + "es.array.splice": { + "android": "51", + "bun": "0.1.1", + "chrome": "51", + "chrome-android": "51", + "deno": "1.0", + "edge": "13", + "electron": "1.2", + "firefox": "49", + "firefox-android": "49", + "ios": "10.0", + "node": "6.5", + "oculus": "3.0", + "opera": "38", + "opera-android": "38", + "opera_mobile": "38", + "quest": "3.0", + "safari": "10.0", + "samsung": "5.0" + }, + "es.array.to-reversed": { + "android": "110", + "bun": "0.1.1", + "chrome": "110", + "chrome-android": "110", + "deno": "1.27", + "edge": "110", + "electron": "23.0", + "firefox": "115", + "firefox-android": "115", + "hermes": "0.13", + "ios": "16.0", + "node": "20.0", + "oculus": "26.0", + "opera": "96", + "opera-android": "74", + "opera_mobile": "74", + "quest": "26.0", + "react-native": "0.74", + "rhino": "1.8.0", + "safari": "16.0", + "samsung": "21.0" + }, + "es.array.to-sorted": { + "android": "110", + "bun": "0.1.1", + "chrome": "110", + "chrome-android": "110", + "deno": "1.27", + "edge": "110", + "electron": "23.0", + "firefox": "115", + "firefox-android": "115", + "ios": "16.0", + "node": "20.0", + "oculus": "26.0", + "opera": "96", + "opera-android": "74", + "opera_mobile": "74", + "quest": "26.0", + "rhino": "1.8.0", + "safari": "16.0", + "samsung": "21.0" + }, + "es.array.to-spliced": { + "android": "110", + "bun": "0.1.1", + "chrome": "110", + "chrome-android": "110", + "deno": "1.27", + "edge": "110", + "electron": "23.0", + "firefox": "115", + "firefox-android": "115", + "hermes": "0.13", + "ios": "16.0", + "node": "20.0", + "oculus": "26.0", + "opera": "96", + "opera-android": "74", + "opera_mobile": "74", + "quest": "26.0", + "react-native": "0.74", + "rhino": "1.8.0", + "safari": "16.0", + "samsung": "21.0" + }, + "es.array.unscopables.flat": { + "android": "73", + "bun": "0.1.1", + "chrome": "73", + "chrome-android": "73", + "deno": "1.0", + "edge": "79", + "electron": "5.0", + "firefox": "67", + "firefox-android": "67", + "ios": "13.0", + "node": "12.0", + "oculus": "6.0", + "opera": "60", + "opera-android": "52", + "opera_mobile": "52", + "quest": "6.0", + "rhino": "1.8.0", + "safari": "13", + "samsung": "11.0" + }, + "es.array.unscopables.flat-map": { + "android": "73", + "bun": "0.1.1", + "chrome": "73", + "chrome-android": "73", + "deno": "1.0", + "edge": "79", + "electron": "5.0", + "firefox": "67", + "firefox-android": "67", + "ios": "13.0", + "node": "12.0", + "oculus": "6.0", + "opera": "60", + "opera-android": "52", + "opera_mobile": "52", + "quest": "6.0", + "rhino": "1.8.0", + "safari": "13", + "samsung": "11.0" + }, + "es.array.unshift": { + "android": "71", + "bun": "0.1.1", + "chrome": "71", + "chrome-android": "71", + "deno": "1.0", + "edge": "12", + "electron": "5.0", + "firefox": "23", + "firefox-android": "23", + "hermes": "0.1", + "ie": "9", + "ios": "16.0", + "node": "12.0", + "oculus": "6.0", + "opera": "58", + "opera-android": "50", + "opera_mobile": "50", + "quest": "6.0", + "react-native": "0.69", + "safari": "16.0", + "samsung": "10.0" + }, + "es.array.with": { + "android": "110", + "bun": "0.1.1", + "chrome": "110", + "chrome-android": "110", + "deno": "1.27", + "edge": "110", + "electron": "23.0", + "firefox": "140", + "firefox-android": "140", + "hermes": "0.13", + "ios": "16.0", + "node": "20.0", + "oculus": "26.0", + "opera": "96", + "opera-android": "74", + "opera_mobile": "74", + "quest": "26.0", + "react-native": "0.74", + "rhino": "1.8.0", + "safari": "16.0", + "samsung": "21.0" + }, + "es.array-buffer.constructor": { + "android": "4.4", + "bun": "0.1.1", + "chrome": "28", + "chrome-android": "28", + "deno": "1.0", + "edge": "14", + "electron": "0.20", + "firefox": "44", + "firefox-android": "44", + "hermes": "0.1", + "ios": "12.0", + "node": "0.11.1", + "oculus": "3.0", + "opera": "15", + "opera-android": "15", + "opera_mobile": "15", + "quest": "3.0", + "react-native": "0.69", + "rhino": "1.8.0", + "safari": "12.0", + "samsung": "1.5" + }, + "es.array-buffer.is-view": { + "android": "4.4.3", + "bun": "0.1.1", + "chrome": "32", + "chrome-android": "32", + "deno": "1.0", + "edge": "12", + "electron": "0.20", + "firefox": "29", + "firefox-android": "29", + "hermes": "0.1", + "ie": "11", + "ios": "8.0", + "node": "0.11.9", + "oculus": "3.0", + "opera": "19", + "opera-android": "19", + "opera_mobile": "19", + "quest": "3.0", + "react-native": "0.69", + "safari": "7.1", + "samsung": "2.0" + }, + "es.array-buffer.slice": { + "android": "4.4.3", + "bun": "0.1.1", + "chrome": "31", + "chrome-android": "31", + "deno": "1.0", + "edge": "12", + "electron": "0.20", + "firefox": "46", + "firefox-android": "46", + "hermes": "0.1", + "ie": "11", + "ios": "12.2", + "node": "0.11.8", + "oculus": "3.0", + "opera": "18", + "opera-android": "18", + "opera_mobile": "18", + "quest": "3.0", + "react-native": "0.69", + "rhino": "1.7.13", + "safari": "12.1", + "samsung": "2.0" + }, + "es.data-view": { + "android": "4.4", + "bun": "0.1.1", + "chrome": "26", + "chrome-android": "26", + "deno": "1.0", + "edge": "12", + "electron": "0.20", + "firefox": "15", + "firefox-android": "15", + "hermes": "0.1", + "ie": "10", + "ios": "8.0", + "node": "0.11.0", + "oculus": "3.0", + "opera": "15", + "opera-android": "15", + "opera_mobile": "15", + "quest": "3.0", + "react-native": "0.69", + "rhino": "1.7.13", + "safari": "7.1", + "samsung": "1.5" + }, + "es.data-view.get-float16": { + "android": "135", + "bun": "1.1.23", + "chrome": "135", + "chrome-android": "135", + "deno": "1.43", + "edge": "135", + "electron": "36.0", + "firefox": "129", + "firefox-android": "129", + "ios": "18.2", + "node": "24.0", + "oculus": "39.0", + "opera": "120", + "opera-android": "89", + "opera_mobile": "89", + "quest": "39.0", + "safari": "18.2", + "samsung": "29.0" + }, + "es.data-view.set-float16": { + "android": "135", + "bun": "1.1.23", + "chrome": "135", + "chrome-android": "135", + "deno": "1.43", + "edge": "135", + "electron": "36.0", + "firefox": "129", + "firefox-android": "129", + "ios": "18.2", + "node": "24.0", + "oculus": "39.0", + "opera": "120", + "opera-android": "89", + "opera_mobile": "89", + "quest": "39.0", + "safari": "18.2", + "samsung": "29.0" + }, + "es.array-buffer.detached": { + "android": "114", + "bun": "1.0.19", + "chrome": "114", + "chrome-android": "114", + "deno": "1.33", + "edge": "114", + "electron": "25.0", + "firefox": "122", + "firefox-android": "122", + "ios": "17.4", + "node": "21.0", + "oculus": "28.0", + "opera": "100", + "opera-android": "76", + "opera_mobile": "76", + "quest": "28.0", + "safari": "17.4", + "samsung": "23.0" + }, + "es.array-buffer.transfer": { + "android": "114", + "bun": "1.0.19", + "chrome": "114", + "chrome-android": "114", + "deno": "1.33", + "edge": "114", + "electron": "25.0", + "firefox": "122", + "firefox-android": "122", + "ios": "17.4", + "node": "21.0", + "oculus": "28.0", + "opera": "100", + "opera-android": "76", + "opera_mobile": "76", + "quest": "28.0", + "safari": "17.4", + "samsung": "23.0" + }, + "es.array-buffer.transfer-to-fixed-length": { + "android": "114", + "bun": "1.0.19", + "chrome": "114", + "chrome-android": "114", + "deno": "1.33", + "edge": "114", + "electron": "25.0", + "firefox": "122", + "firefox-android": "122", + "ios": "17.4", + "node": "21.0", + "oculus": "28.0", + "opera": "100", + "opera-android": "76", + "opera_mobile": "76", + "quest": "28.0", + "safari": "17.4", + "samsung": "23.0" + }, + "es.date.get-year": { + "android": "3.0", + "bun": "0.1.1", + "chrome": "1", + "chrome-android": "18", + "deno": "1.0", + "edge": "12", + "electron": "0.20", + "firefox": "1", + "firefox-android": "4", + "hermes": "0.1", + "ie": "9", + "ios": "1.0", + "node": "0.0.3", + "oculus": "3.0", + "opera": "3", + "opera-android": "3", + "opera_mobile": "3", + "phantom": "1.9", + "quest": "3.0", + "react-native": "0.69", + "rhino": "1.7.13", + "safari": "1", + "samsung": "1.0" + }, + "es.date.now": { + "android": "3.0", + "bun": "0.1.1", + "chrome": "5", + "chrome-android": "18", + "deno": "1.0", + "edge": "12", + "electron": "0.20", + "firefox": "2", + "firefox-android": "4", + "hermes": "0.1", + "ie": "9", + "ios": "3.0", + "node": "0.1.27", + "oculus": "3.0", + "opera": "10.50", + "opera-android": "10.50", + "opera_mobile": "10.50", + "phantom": "1.9", + "quest": "3.0", + "react-native": "0.69", + "rhino": "1.7.13", + "safari": "4.0", + "samsung": "1.0" + }, + "es.date.set-year": { + "android": "3.0", + "bun": "0.1.1", + "chrome": "1", + "chrome-android": "18", + "deno": "1.0", + "edge": "12", + "electron": "0.20", + "firefox": "1", + "firefox-android": "4", + "hermes": "0.1", + "ie": "3", + "ios": "1.0", + "node": "0.0.3", + "oculus": "3.0", + "opera": "3", + "opera-android": "3", + "opera_mobile": "3", + "phantom": "1.9", + "quest": "3.0", + "react-native": "0.69", + "rhino": "1.7.13", + "safari": "1", + "samsung": "1.0" + }, + "es.date.to-gmt-string": { + "android": "3.0", + "bun": "0.1.1", + "chrome": "1", + "chrome-android": "18", + "deno": "1.0", + "edge": "12", + "electron": "0.20", + "firefox": "1", + "firefox-android": "4", + "hermes": "0.1", + "ie": "3", + "ios": "1.0", + "node": "0.0.3", + "oculus": "3.0", + "opera": "3", + "opera-android": "3", + "opera_mobile": "3", + "phantom": "1.9", + "quest": "3.0", + "react-native": "0.69", + "rhino": "1.7.13", + "safari": "1", + "samsung": "1.0" + }, + "es.date.to-iso-string": { + "android": "4.4", + "bun": "0.1.1", + "chrome": "26", + "chrome-android": "26", + "deno": "1.0", + "edge": "12", + "electron": "0.20", + "firefox": "7", + "firefox-android": "7", + "hermes": "0.1", + "ie": "9", + "ios": "8.0", + "node": "0.11.0", + "oculus": "3.0", + "opera": "15", + "opera-android": "15", + "opera_mobile": "15", + "quest": "3.0", + "react-native": "0.69", + "rhino": "1.7.13", + "safari": "7.1", + "samsung": "1.5" + }, + "es.date.to-json": { + "android": "4.4", + "bun": "0.1.1", + "chrome": "26", + "chrome-android": "26", + "deno": "1.0", + "edge": "12", + "electron": "0.20", + "firefox": "4", + "firefox-android": "4", + "hermes": "0.1", + "ie": "9", + "ios": "10.0", + "node": "0.11.0", + "oculus": "3.0", + "opera": "15", + "opera-android": "15", + "opera_mobile": "15", + "quest": "3.0", + "react-native": "0.69", + "rhino": "1.7.13", + "safari": "10.0", + "samsung": "1.5" + }, + "es.date.to-primitive": { + "android": "47", + "bun": "0.1.1", + "chrome": "47", + "chrome-android": "47", + "deno": "1.0", + "edge": "15", + "electron": "0.36", + "firefox": "44", + "firefox-android": "44", + "hermes": "0.1", + "ios": "10.0", + "node": "6.0", + "oculus": "3.0", + "opera": "34", + "opera-android": "34", + "opera_mobile": "34", + "quest": "3.0", + "react-native": "0.69", + "rhino": "1.8.0", + "safari": "10.0", + "samsung": "5.0" + }, + "es.date.to-string": { + "android": "3.0", + "bun": "0.1.1", + "chrome": "5", + "chrome-android": "18", + "deno": "1.0", + "edge": "12", + "electron": "0.20", + "firefox": "2", + "firefox-android": "4", + "hermes": "0.1", + "ie": "9", + "ios": "2.0", + "node": "0.1.27", + "oculus": "3.0", + "opera": "10.50", + "opera-android": "10.50", + "opera_mobile": "10.50", + "phantom": "1.9", + "quest": "3.0", + "react-native": "0.69", + "rhino": "1.7.13", + "safari": "3.1", + "samsung": "1.0" + }, + "es.disposable-stack.constructor": { + "android": "136", + "chrome": "136", + "chrome-android": "136", + "deno": "2.2.10", + "edge": "136", + "electron": "36.0", + "firefox": "141", + "firefox-android": "141", + "node": "24.0", + "oculus": "39.0", + "opera": "121", + "opera-android": "90", + "opera_mobile": "90", + "quest": "39.0", + "samsung": "29.0" + }, + "es.escape": { + "android": "3.0", + "bun": "0.1.1", + "chrome": "1", + "chrome-android": "18", + "deno": "1.0", + "edge": "12", + "electron": "0.20", + "firefox": "1", + "firefox-android": "4", + "hermes": "0.1", + "ie": "3", + "ios": "1.0", + "node": "0.0.3", + "oculus": "3.0", + "opera": "3", + "opera-android": "3", + "opera_mobile": "3", + "phantom": "1.9", + "quest": "3.0", + "react-native": "0.69", + "rhino": "1.7.13", + "safari": "1", + "samsung": "1.0" + }, + "es.function.bind": { + "android": "3.0", + "bun": "0.1.1", + "chrome": "7", + "chrome-android": "18", + "deno": "1.0", + "edge": "12", + "electron": "0.20", + "firefox": "4", + "firefox-android": "4", + "hermes": "0.1", + "ie": "9", + "ios": "5.0", + "node": "0.1.101", + "oculus": "3.0", + "opera": "12", + "opera-android": "12", + "opera_mobile": "12", + "phantom": "2.0", + "quest": "3.0", + "react-native": "0.69", + "rhino": "1.7.13", + "safari": "5.1", + "samsung": "1.0" + }, + "es.function.has-instance": { + "android": "51", + "bun": "0.1.1", + "chrome": "51", + "chrome-android": "51", + "deno": "1.0", + "edge": "15", + "electron": "1.2", + "firefox": "50", + "firefox-android": "50", + "hermes": "0.1", + "ios": "10.0", + "node": "6.5", + "oculus": "3.0", + "opera": "38", + "opera-android": "38", + "opera_mobile": "38", + "quest": "3.0", + "react-native": "0.69", + "safari": "10.0", + "samsung": "5.0" + }, + "es.function.name": { + "android": "3.0", + "bun": "0.1.1", + "chrome": "5", + "chrome-android": "18", + "deno": "1.0", + "edge": "12", + "electron": "0.20", + "firefox": "2", + "firefox-android": "4", + "hermes": "0.1", + "ios": "3.0", + "node": "0.1.27", + "oculus": "3.0", + "opera": "10.50", + "opera-android": "10.50", + "opera_mobile": "10.50", + "phantom": "1.9", + "quest": "3.0", + "react-native": "0.69", + "rhino": "1.7.13", + "safari": "4.0", + "samsung": "1.0" + }, + "es.global-this": { + "android": "71", + "bun": "0.1.1", + "chrome": "71", + "chrome-android": "71", + "deno": "1.0", + "edge": "79", + "electron": "5.0", + "firefox": "65", + "firefox-android": "65", + "hermes": "0.2", + "ios": "12.2", + "node": "12.0", + "oculus": "6.0", + "opera": "58", + "opera-android": "50", + "opera_mobile": "50", + "quest": "6.0", + "react-native": "0.69", + "rhino": "1.7.14", + "safari": "12.1", + "samsung": "10.0" + }, + "es.iterator.constructor": { + "android": "122", + "bun": "1.1.31", + "chrome": "122", + "chrome-android": "122", + "deno": "1.38.1", + "edge": "122", + "electron": "29.0", + "firefox": "131", + "firefox-android": "131", + "ios": "18.4", + "node": "22.0", + "oculus": "32.0", + "opera": "108", + "opera-android": "81", + "opera_mobile": "81", + "quest": "32.0", + "safari": "18.4", + "samsung": "26.0" + }, + "es.iterator.dispose": { + "android": "136", + "chrome": "136", + "chrome-android": "136", + "deno": "2.2.10", + "edge": "136", + "electron": "36.0", + "firefox": "135", + "firefox-android": "135", + "node": "24.0", + "oculus": "39.0", + "opera": "121", + "opera-android": "90", + "opera_mobile": "90", + "quest": "39.0", + "samsung": "29.0" + }, + "es.iterator.drop": { + "android": "135", + "bun": "1.2.11", + "chrome": "135", + "chrome-android": "135", + "deno": "2.2.5", + "edge": "135", + "electron": "36.0", + "firefox": "141", + "firefox-android": "141", + "ios": "26.0", + "node": "24.0", + "oculus": "39.0", + "opera": "120", + "opera-android": "89", + "opera_mobile": "89", + "quest": "39.0", + "safari": "26.0", + "samsung": "29.0" + }, + "es.iterator.every": { + "android": "135", + "bun": "1.2.4", + "chrome": "135", + "chrome-android": "135", + "deno": "2.2.5", + "edge": "135", + "electron": "36.0", + "firefox": "141", + "firefox-android": "141", + "ios": "26.0", + "node": "24.0", + "oculus": "39.0", + "opera": "120", + "opera-android": "89", + "opera_mobile": "89", + "quest": "39.0", + "safari": "26.0", + "samsung": "29.0" + }, + "es.iterator.filter": { + "android": "135", + "bun": "1.2.4", + "chrome": "135", + "chrome-android": "135", + "deno": "2.2.5", + "edge": "135", + "electron": "36.0", + "firefox": "141", + "firefox-android": "141", + "ios": "26.0", + "node": "24.0", + "oculus": "39.0", + "opera": "120", + "opera-android": "89", + "opera_mobile": "89", + "quest": "39.0", + "safari": "26.0", + "samsung": "29.0" + }, + "es.iterator.find": { + "android": "135", + "bun": "1.2.4", + "chrome": "135", + "chrome-android": "135", + "deno": "2.2.5", + "edge": "135", + "electron": "36.0", + "firefox": "141", + "firefox-android": "141", + "ios": "26.0", + "node": "24.0", + "oculus": "39.0", + "opera": "120", + "opera-android": "89", + "opera_mobile": "89", + "quest": "39.0", + "safari": "26.0", + "samsung": "29.0" + }, + "es.iterator.flat-map": { + "android": "135", + "bun": "1.2.4", + "chrome": "135", + "chrome-android": "135", + "deno": "2.2.5", + "edge": "135", + "electron": "36.0", + "firefox": "141", + "firefox-android": "141", + "ios": "26.0", + "node": "24.0", + "oculus": "39.0", + "opera": "120", + "opera-android": "89", + "opera_mobile": "89", + "quest": "39.0", + "safari": "26.0", + "samsung": "29.0" + }, + "es.iterator.for-each": { + "android": "135", + "bun": "1.2.4", + "chrome": "135", + "chrome-android": "135", + "deno": "2.2.5", + "edge": "135", + "electron": "36.0", + "firefox": "141", + "firefox-android": "141", + "ios": "26.0", + "node": "24.0", + "oculus": "39.0", + "opera": "120", + "opera-android": "89", + "opera_mobile": "89", + "quest": "39.0", + "safari": "26.0", + "samsung": "29.0" + }, + "es.iterator.from": { + "android": "122", + "bun": "1.2.5", + "chrome": "122", + "chrome-android": "122", + "deno": "1.38.1", + "edge": "122", + "electron": "29.0", + "firefox": "131", + "firefox-android": "131", + "ios": "26.0", + "node": "22.0", + "oculus": "32.0", + "opera": "108", + "opera-android": "81", + "opera_mobile": "81", + "quest": "32.0", + "safari": "26.0", + "samsung": "26.0" + }, + "es.iterator.map": { + "android": "135", + "bun": "1.2.4", + "chrome": "135", + "chrome-android": "135", + "deno": "2.2.5", + "edge": "135", + "electron": "36.0", + "firefox": "141", + "firefox-android": "141", + "ios": "26.0", + "node": "24.0", + "oculus": "39.0", + "opera": "120", + "opera-android": "89", + "opera_mobile": "89", + "quest": "39.0", + "safari": "26.0", + "samsung": "29.0" + }, + "es.iterator.reduce": { + "android": "135", + "bun": "1.2.11", + "chrome": "135", + "chrome-android": "135", + "deno": "2.2.5", + "edge": "135", + "electron": "36.0", + "firefox": "141", + "firefox-android": "141", + "ios": "26.0", + "node": "24.0", + "oculus": "39.0", + "opera": "120", + "opera-android": "89", + "opera_mobile": "89", + "quest": "39.0", + "safari": "26.0", + "samsung": "29.0" + }, + "es.iterator.some": { + "android": "135", + "bun": "1.2.4", + "chrome": "135", + "chrome-android": "135", + "deno": "2.2.5", + "edge": "135", + "electron": "36.0", + "firefox": "141", + "firefox-android": "141", + "ios": "26.0", + "node": "24.0", + "oculus": "39.0", + "opera": "120", + "opera-android": "89", + "opera_mobile": "89", + "quest": "39.0", + "safari": "26.0", + "samsung": "29.0" + }, + "es.iterator.take": { + "android": "135", + "bun": "1.2.11", + "chrome": "135", + "chrome-android": "135", + "deno": "2.2.5", + "edge": "135", + "electron": "36.0", + "firefox": "141", + "firefox-android": "141", + "ios": "26.0", + "node": "24.0", + "oculus": "39.0", + "opera": "120", + "opera-android": "89", + "opera_mobile": "89", + "quest": "39.0", + "safari": "26.0", + "samsung": "29.0" + }, + "es.iterator.to-array": { + "android": "122", + "bun": "1.1.31", + "chrome": "122", + "chrome-android": "122", + "deno": "1.38.1", + "edge": "122", + "electron": "29.0", + "firefox": "131", + "firefox-android": "131", + "ios": "18.4", + "node": "22.0", + "oculus": "32.0", + "opera": "108", + "opera-android": "81", + "opera_mobile": "81", + "quest": "32.0", + "safari": "18.4", + "samsung": "26.0" + }, + "es.json.stringify": { + "android": "72", + "bun": "0.1.1", + "chrome": "72", + "chrome-android": "72", + "deno": "1.0", + "edge": "79", + "electron": "5.0", + "firefox": "64", + "firefox-android": "64", + "hermes": "0.13", + "ios": "12.2", + "node": "12.0", + "oculus": "6.0", + "opera": "59", + "opera-android": "51", + "opera_mobile": "51", + "quest": "6.0", + "react-native": "0.72", + "rhino": "1.8.0", + "safari": "12.1", + "samsung": "11.0" + }, + "es.json.to-string-tag": { + "android": "50", + "bun": "0.1.1", + "chrome": "50", + "chrome-android": "50", + "deno": "1.0", + "edge": "15", + "electron": "1.1", + "firefox": "51", + "firefox-android": "51", + "hermes": "0.1", + "ios": "10.0", + "node": "6.0", + "oculus": "3.0", + "opera": "37", + "opera-android": "37", + "opera_mobile": "37", + "quest": "3.0", + "react-native": "0.69", + "rhino": "1.7.15", + "safari": "10.0", + "samsung": "5.0" + }, + "es.map": { + "android": "51", + "bun": "0.1.1", + "chrome": "51", + "chrome-android": "51", + "deno": "1.0", + "edge": "15", + "electron": "1.2", + "firefox": "53", + "firefox-android": "53", + "hermes": "0.13", + "ios": "10.0", + "node": "6.5", + "oculus": "3.0", + "opera": "38", + "opera-android": "38", + "opera_mobile": "38", + "quest": "3.0", + "react-native": "0.73", + "rhino": "1.7.13", + "safari": "10.0", + "samsung": "5.0" + }, + "es.map.group-by": { + "android": "117", + "bun": "1.1.2", + "chrome": "117", + "chrome-android": "117", + "deno": "1.37", + "edge": "117", + "electron": "27.0", + "firefox": "119", + "firefox-android": "119", + "ios": "18.0", + "node": "21.0", + "oculus": "30.0", + "opera": "103", + "opera-android": "78", + "opera_mobile": "78", + "quest": "30.0", + "rhino": "1.8.0", + "safari": "18.0", + "samsung": "24.0" + }, + "es.math.acosh": { + "android": "54", + "bun": "0.1.1", + "chrome": "54", + "chrome-android": "54", + "deno": "1.0", + "edge": "13", + "electron": "1.4", + "firefox": "25", + "firefox-android": "25", + "hermes": "0.1", + "ios": "8.0", + "node": "7.0", + "oculus": "3.0", + "opera": "41", + "opera-android": "41", + "opera_mobile": "41", + "quest": "3.0", + "react-native": "0.69", + "safari": "7.1", + "samsung": "6.0" + }, + "es.math.asinh": { + "android": "38", + "bun": "0.1.1", + "chrome": "38", + "chrome-android": "38", + "deno": "1.0", + "edge": "13", + "electron": "0.20", + "firefox": "25", + "firefox-android": "25", + "hermes": "0.1", + "ios": "8.0", + "node": "0.11.15", + "oculus": "3.0", + "opera": "25", + "opera-android": "25", + "opera_mobile": "25", + "quest": "3.0", + "react-native": "0.69", + "rhino": "1.7.13", + "safari": "7.1", + "samsung": "3.0" + }, + "es.math.atanh": { + "android": "38", + "bun": "0.1.1", + "chrome": "38", + "chrome-android": "38", + "deno": "1.0", + "edge": "13", + "electron": "0.20", + "firefox": "25", + "firefox-android": "25", + "hermes": "0.1", + "ios": "8.0", + "node": "0.11.15", + "oculus": "3.0", + "opera": "25", + "opera-android": "25", + "opera_mobile": "25", + "quest": "3.0", + "react-native": "0.69", + "rhino": "1.7.13", + "safari": "7.1", + "samsung": "3.0" + }, + "es.math.cbrt": { + "android": "38", + "bun": "0.1.1", + "chrome": "38", + "chrome-android": "38", + "deno": "1.0", + "edge": "12", + "electron": "0.20", + "firefox": "25", + "firefox-android": "25", + "hermes": "0.1", + "ios": "8.0", + "node": "0.11.15", + "oculus": "3.0", + "opera": "25", + "opera-android": "25", + "opera_mobile": "25", + "quest": "3.0", + "react-native": "0.69", + "rhino": "1.7.13", + "safari": "7.1", + "samsung": "3.0" + }, + "es.math.clz32": { + "android": "38", + "bun": "0.1.1", + "chrome": "38", + "chrome-android": "38", + "deno": "1.0", + "edge": "12", + "electron": "0.20", + "firefox": "31", + "firefox-android": "31", + "hermes": "0.1", + "ios": "9.0", + "node": "0.11.15", + "oculus": "3.0", + "opera": "25", + "opera-android": "25", + "opera_mobile": "25", + "quest": "3.0", + "react-native": "0.69", + "rhino": "1.7.13", + "safari": "9.0", + "samsung": "3.0" + }, + "es.math.cosh": { + "android": "39", + "bun": "0.1.1", + "chrome": "39", + "chrome-android": "39", + "deno": "1.0", + "edge": "13", + "electron": "0.20", + "firefox": "25", + "firefox-android": "25", + "hermes": "0.1", + "ios": "8.0", + "node": "1.0", + "oculus": "3.0", + "opera": "26", + "opera-android": "26", + "opera_mobile": "26", + "quest": "3.0", + "react-native": "0.69", + "rhino": "1.7.13", + "safari": "7.1", + "samsung": "3.4" + }, + "es.math.expm1": { + "android": "39", + "bun": "0.1.1", + "chrome": "39", + "chrome-android": "39", + "deno": "1.0", + "edge": "13", + "electron": "0.20", + "firefox": "46", + "firefox-android": "46", + "hermes": "0.1", + "ios": "8.0", + "node": "1.0", + "oculus": "3.0", + "opera": "26", + "opera-android": "26", + "opera_mobile": "26", + "quest": "3.0", + "react-native": "0.69", + "rhino": "1.7.13", + "safari": "7.1", + "samsung": "3.4" + }, + "es.math.fround": { + "android": "38", + "bun": "0.1.1", + "chrome": "38", + "chrome-android": "38", + "deno": "1.0", + "edge": "12", + "electron": "0.20", + "firefox": "26", + "firefox-android": "26", + "hermes": "0.1", + "ios": "8.0", + "node": "0.11.15", + "oculus": "3.0", + "opera": "25", + "opera-android": "25", + "opera_mobile": "25", + "quest": "3.0", + "react-native": "0.69", + "rhino": "1.7.13", + "safari": "7.1", + "samsung": "3.0" + }, + "es.math.f16round": { + "android": "135", + "bun": "1.1.23", + "chrome": "135", + "chrome-android": "135", + "deno": "1.43", + "edge": "135", + "electron": "36.0", + "firefox": "129", + "firefox-android": "129", + "ios": "18.2", + "node": "24.0", + "oculus": "39.0", + "opera": "120", + "opera-android": "89", + "opera_mobile": "89", + "quest": "39.0", + "safari": "18.2", + "samsung": "29.0" + }, + "es.math.hypot": { + "android": "78", + "bun": "0.1.1", + "chrome": "78", + "chrome-android": "78", + "deno": "1.0", + "edge": "12", + "electron": "7.0", + "firefox": "27", + "firefox-android": "27", + "hermes": "0.1", + "ios": "8.0", + "node": "12.16", + "oculus": "8.0", + "opera": "65", + "opera-android": "56", + "opera_mobile": "56", + "quest": "8.0", + "react-native": "0.69", + "rhino": "1.7.13", + "safari": "7.1", + "samsung": "12.0" + }, + "es.math.imul": { + "android": "4.4", + "bun": "0.1.1", + "chrome": "28", + "chrome-android": "28", + "deno": "1.0", + "edge": "13", + "electron": "0.20", + "firefox": "20", + "firefox-android": "20", + "hermes": "0.1", + "ios": "9.0", + "node": "0.11.1", + "oculus": "3.0", + "opera": "15", + "opera-android": "15", + "opera_mobile": "15", + "quest": "3.0", + "react-native": "0.69", + "rhino": "1.7.13", + "safari": "9.0", + "samsung": "1.5" + }, + "es.math.log10": { + "android": "38", + "bun": "0.1.1", + "chrome": "38", + "chrome-android": "38", + "deno": "1.0", + "edge": "12", + "electron": "0.20", + "firefox": "25", + "firefox-android": "25", + "hermes": "0.1", + "ios": "8.0", + "node": "0.11.15", + "oculus": "3.0", + "opera": "25", + "opera-android": "25", + "opera_mobile": "25", + "quest": "3.0", + "react-native": "0.69", + "rhino": "1.7.13", + "safari": "7.1", + "samsung": "3.0" + }, + "es.math.log1p": { + "android": "38", + "bun": "0.1.1", + "chrome": "38", + "chrome-android": "38", + "deno": "1.0", + "edge": "12", + "electron": "0.20", + "firefox": "25", + "firefox-android": "25", + "hermes": "0.1", + "ios": "8.0", + "node": "0.11.15", + "oculus": "3.0", + "opera": "25", + "opera-android": "25", + "opera_mobile": "25", + "quest": "3.0", + "react-native": "0.69", + "rhino": "1.7.13", + "safari": "7.1", + "samsung": "3.0" + }, + "es.math.log2": { + "android": "38", + "bun": "0.1.1", + "chrome": "38", + "chrome-android": "38", + "deno": "1.0", + "edge": "12", + "electron": "0.20", + "firefox": "25", + "firefox-android": "25", + "hermes": "0.1", + "ios": "8.0", + "node": "0.11.15", + "oculus": "3.0", + "opera": "25", + "opera-android": "25", + "opera_mobile": "25", + "quest": "3.0", + "react-native": "0.69", + "rhino": "1.7.13", + "safari": "7.1", + "samsung": "3.0" + }, + "es.math.sign": { + "android": "38", + "bun": "0.1.1", + "chrome": "38", + "chrome-android": "38", + "deno": "1.0", + "edge": "12", + "electron": "0.20", + "firefox": "25", + "firefox-android": "25", + "hermes": "0.1", + "ios": "9.0", + "node": "0.11.15", + "oculus": "3.0", + "opera": "25", + "opera-android": "25", + "opera_mobile": "25", + "quest": "3.0", + "react-native": "0.69", + "rhino": "1.7.13", + "safari": "9.0", + "samsung": "3.0" + }, + "es.math.sinh": { + "android": "39", + "bun": "0.1.1", + "chrome": "39", + "chrome-android": "39", + "deno": "1.0", + "edge": "13", + "electron": "0.20", + "firefox": "25", + "firefox-android": "25", + "hermes": "0.1", + "ios": "8.0", + "node": "1.0", + "oculus": "3.0", + "opera": "26", + "opera-android": "26", + "opera_mobile": "26", + "quest": "3.0", + "react-native": "0.69", + "rhino": "1.7.13", + "safari": "7.1", + "samsung": "3.4" + }, + "es.math.sum-precise": { + "bun": "1.2.18", + "firefox": "137", + "firefox-android": "137" + }, + "es.math.tanh": { + "android": "38", + "bun": "0.1.1", + "chrome": "38", + "chrome-android": "38", + "deno": "1.0", + "edge": "12", + "electron": "0.20", + "firefox": "25", + "firefox-android": "25", + "hermes": "0.1", + "ios": "8.0", + "node": "0.11.15", + "oculus": "3.0", + "opera": "25", + "opera-android": "25", + "opera_mobile": "25", + "quest": "3.0", + "react-native": "0.69", + "rhino": "1.7.13", + "safari": "7.1", + "samsung": "3.0" + }, + "es.math.to-string-tag": { + "android": "50", + "bun": "0.1.1", + "chrome": "50", + "chrome-android": "50", + "deno": "1.0", + "edge": "15", + "electron": "1.1", + "firefox": "51", + "firefox-android": "51", + "hermes": "0.1", + "ios": "10.0", + "node": "6.0", + "oculus": "3.0", + "opera": "37", + "opera-android": "37", + "opera_mobile": "37", + "quest": "3.0", + "react-native": "0.69", + "rhino": "1.7.15", + "safari": "10.0", + "samsung": "5.0" + }, + "es.math.trunc": { + "android": "38", + "bun": "0.1.1", + "chrome": "38", + "chrome-android": "38", + "deno": "1.0", + "edge": "12", + "electron": "0.20", + "firefox": "25", + "firefox-android": "25", + "hermes": "0.1", + "ios": "8.0", + "node": "0.11.15", + "oculus": "3.0", + "opera": "25", + "opera-android": "25", + "opera_mobile": "25", + "quest": "3.0", + "react-native": "0.69", + "rhino": "1.7.13", + "safari": "7.1", + "samsung": "3.0" + }, + "es.number.constructor": { + "android": "41", + "bun": "0.1.1", + "chrome": "41", + "chrome-android": "41", + "deno": "1.0", + "edge": "13", + "electron": "0.21", + "firefox": "46", + "firefox-android": "46", + "hermes": "0.5", + "ios": "9.0", + "node": "1.0", + "oculus": "3.0", + "opera": "28", + "opera-android": "28", + "opera_mobile": "28", + "quest": "3.0", + "react-native": "0.69", + "rhino": "1.7.13", + "safari": "9.0", + "samsung": "3.4" + }, + "es.number.epsilon": { + "android": "37", + "bun": "0.1.1", + "chrome": "34", + "chrome-android": "34", + "deno": "1.0", + "edge": "12", + "electron": "0.20", + "firefox": "25", + "firefox-android": "25", + "hermes": "0.1", + "ios": "9.0", + "node": "0.11.13", + "oculus": "3.0", + "opera": "21", + "opera-android": "21", + "opera_mobile": "21", + "quest": "3.0", + "react-native": "0.69", + "rhino": "1.7.14", + "safari": "9.0", + "samsung": "2.0" + }, + "es.number.is-finite": { + "android": "4.1", + "bun": "0.1.1", + "chrome": "19", + "chrome-android": "25", + "deno": "1.0", + "edge": "12", + "electron": "0.20", + "firefox": "16", + "firefox-android": "16", + "hermes": "0.1", + "ios": "9.0", + "node": "0.7.3", + "oculus": "3.0", + "opera": "15", + "opera-android": "15", + "opera_mobile": "15", + "quest": "3.0", + "react-native": "0.69", + "rhino": "1.7.13", + "safari": "9.0", + "samsung": "1.5" + }, + "es.number.is-integer": { + "android": "37", + "bun": "0.1.1", + "chrome": "34", + "chrome-android": "34", + "deno": "1.0", + "edge": "12", + "electron": "0.20", + "firefox": "16", + "firefox-android": "16", + "hermes": "0.1", + "ios": "9.0", + "node": "0.11.13", + "oculus": "3.0", + "opera": "21", + "opera-android": "21", + "opera_mobile": "21", + "quest": "3.0", + "react-native": "0.69", + "rhino": "1.7.13", + "safari": "9.0", + "samsung": "2.0" + }, + "es.number.is-nan": { + "android": "4.1", + "bun": "0.1.1", + "chrome": "19", + "chrome-android": "25", + "deno": "1.0", + "edge": "12", + "electron": "0.20", + "firefox": "15", + "firefox-android": "15", + "hermes": "0.1", + "ios": "9.0", + "node": "0.7.3", + "oculus": "3.0", + "opera": "15", + "opera-android": "15", + "opera_mobile": "15", + "quest": "3.0", + "react-native": "0.69", + "rhino": "1.7.13", + "safari": "9.0", + "samsung": "1.5" + }, + "es.number.is-safe-integer": { + "android": "37", + "bun": "0.1.1", + "chrome": "34", + "chrome-android": "34", + "deno": "1.0", + "edge": "12", + "electron": "0.20", + "firefox": "32", + "firefox-android": "32", + "hermes": "0.1", + "ios": "9.0", + "node": "0.11.13", + "oculus": "3.0", + "opera": "21", + "opera-android": "21", + "opera_mobile": "21", + "quest": "3.0", + "react-native": "0.69", + "rhino": "1.7.13", + "safari": "9.0", + "samsung": "2.0" + }, + "es.number.max-safe-integer": { + "android": "37", + "bun": "0.1.1", + "chrome": "34", + "chrome-android": "34", + "deno": "1.0", + "edge": "12", + "electron": "0.20", + "firefox": "31", + "firefox-android": "31", + "hermes": "0.1", + "ios": "9.0", + "node": "0.11.13", + "oculus": "3.0", + "opera": "21", + "opera-android": "21", + "opera_mobile": "21", + "quest": "3.0", + "react-native": "0.69", + "rhino": "1.7.13", + "safari": "9.0", + "samsung": "2.0" + }, + "es.number.min-safe-integer": { + "android": "37", + "bun": "0.1.1", + "chrome": "34", + "chrome-android": "34", + "deno": "1.0", + "edge": "12", + "electron": "0.20", + "firefox": "31", + "firefox-android": "31", + "hermes": "0.1", + "ios": "9.0", + "node": "0.11.13", + "oculus": "3.0", + "opera": "21", + "opera-android": "21", + "opera_mobile": "21", + "quest": "3.0", + "react-native": "0.69", + "rhino": "1.7.13", + "safari": "9.0", + "samsung": "2.0" + }, + "es.number.parse-float": { + "android": "37", + "bun": "0.1.1", + "chrome": "35", + "chrome-android": "35", + "deno": "1.0", + "edge": "79", + "electron": "0.20", + "firefox": "39", + "firefox-android": "39", + "hermes": "0.1", + "ios": "11.0", + "node": "0.11.13", + "oculus": "3.0", + "opera": "22", + "opera-android": "22", + "opera_mobile": "22", + "quest": "3.0", + "react-native": "0.69", + "rhino": "1.7.14", + "safari": "11.0", + "samsung": "3.0" + }, + "es.number.parse-int": { + "android": "37", + "bun": "0.1.1", + "chrome": "35", + "chrome-android": "35", + "deno": "1.0", + "edge": "79", + "electron": "0.20", + "firefox": "39", + "firefox-android": "39", + "hermes": "0.1", + "ios": "9.0", + "node": "0.11.13", + "oculus": "3.0", + "opera": "22", + "opera-android": "22", + "opera_mobile": "22", + "quest": "3.0", + "react-native": "0.69", + "rhino": "1.7.14", + "safari": "9.0", + "samsung": "3.0" + }, + "es.number.to-exponential": { + "android": "51", + "bun": "0.1.1", + "chrome": "51", + "chrome-android": "51", + "deno": "1.0", + "edge": "18", + "electron": "1.2", + "firefox": "87", + "firefox-android": "87", + "hermes": "0.1", + "ios": "11.0", + "node": "6.5", + "oculus": "3.0", + "opera": "38", + "opera-android": "38", + "opera_mobile": "38", + "quest": "3.0", + "react-native": "0.69", + "rhino": "1.7.14", + "safari": "11", + "samsung": "5.0" + }, + "es.number.to-fixed": { + "android": "4.4", + "bun": "0.1.1", + "chrome": "26", + "chrome-android": "26", + "deno": "1.0", + "edge": "79", + "electron": "0.20", + "firefox": "4", + "firefox-android": "4", + "hermes": "0.1", + "ios": "8.0", + "node": "0.11.0", + "oculus": "3.0", + "opera": "15", + "opera-android": "15", + "opera_mobile": "15", + "quest": "3.0", + "react-native": "0.69", + "rhino": "1.7.13", + "safari": "7.1", + "samsung": "1.5" + }, + "es.number.to-precision": { + "android": "4.4", + "bun": "0.1.1", + "chrome": "26", + "chrome-android": "26", + "deno": "1.0", + "edge": "12", + "electron": "0.20", + "firefox": "4", + "firefox-android": "4", + "hermes": "0.1", + "ie": "8", + "ios": "8.0", + "node": "0.11.0", + "oculus": "3.0", + "opera": "15", + "opera-android": "15", + "opera_mobile": "15", + "quest": "3.0", + "react-native": "0.69", + "rhino": "1.7.13", + "safari": "7.1", + "samsung": "1.5" + }, + "es.object.assign": { + "android": "49", + "bun": "0.1.1", + "chrome": "49", + "chrome-android": "49", + "deno": "1.0", + "edge": "79", + "electron": "0.37", + "firefox": "36", + "firefox-android": "36", + "hermes": "0.4", + "ios": "9.0", + "node": "6.0", + "oculus": "3.0", + "opera": "36", + "opera-android": "36", + "opera_mobile": "36", + "quest": "3.0", + "react-native": "0.69", + "safari": "9.0", + "samsung": "5.0" + }, + "es.object.create": { + "android": "3.0", + "bun": "0.1.1", + "chrome": "5", + "chrome-android": "18", + "deno": "1.0", + "edge": "12", + "electron": "0.20", + "firefox": "4", + "firefox-android": "4", + "hermes": "0.1", + "ie": "9", + "ios": "3.0", + "node": "0.1.27", + "oculus": "3.0", + "opera": "12", + "opera-android": "12", + "opera_mobile": "12", + "phantom": "1.9", + "quest": "3.0", + "react-native": "0.69", + "rhino": "1.7.13", + "safari": "4.0", + "samsung": "1.0" + }, + "es.object.define-getter": { + "android": "62", + "bun": "0.1.1", + "chrome": "62", + "chrome-android": "62", + "deno": "1.0", + "edge": "16", + "electron": "3.0", + "firefox": "48", + "firefox-android": "48", + "hermes": "0.1", + "ios": "8.0", + "node": "8.10", + "oculus": "5.0", + "opera": "49", + "opera-android": "46", + "opera_mobile": "46", + "quest": "5.0", + "react-native": "0.69", + "rhino": "1.7.13", + "safari": "7.1", + "samsung": "8.0" + }, + "es.object.define-properties": { + "android": "37", + "bun": "0.1.1", + "chrome": "37", + "chrome-android": "37", + "deno": "1.0", + "edge": "12", + "electron": "0.20", + "firefox": "4", + "firefox-android": "4", + "hermes": "0.1", + "ie": "9", + "ios": "5.0", + "node": "0.11.15", + "oculus": "3.0", + "opera": "12", + "opera-android": "12", + "opera_mobile": "12", + "phantom": "2.0", + "quest": "3.0", + "react-native": "0.69", + "rhino": "1.7.13", + "safari": "5.1", + "samsung": "3.0" + }, + "es.object.define-property": { + "android": "37", + "bun": "0.1.1", + "chrome": "37", + "chrome-android": "37", + "deno": "1.0", + "edge": "12", + "electron": "0.20", + "firefox": "4", + "firefox-android": "4", + "hermes": "0.1", + "ie": "9", + "ios": "5.0", + "node": "0.11.15", + "oculus": "3.0", + "opera": "12", + "opera-android": "12", + "opera_mobile": "12", + "phantom": "2.0", + "quest": "3.0", + "react-native": "0.69", + "rhino": "1.7.13", + "safari": "5.1", + "samsung": "3.0" + }, + "es.object.define-setter": { + "android": "62", + "bun": "0.1.1", + "chrome": "62", + "chrome-android": "62", + "deno": "1.0", + "edge": "16", + "electron": "3.0", + "firefox": "48", + "firefox-android": "48", + "hermes": "0.1", + "ios": "8.0", + "node": "8.10", + "oculus": "5.0", + "opera": "49", + "opera-android": "46", + "opera_mobile": "46", + "quest": "5.0", + "react-native": "0.69", + "rhino": "1.7.13", + "safari": "7.1", + "samsung": "8.0" + }, + "es.object.entries": { + "android": "54", + "bun": "0.1.1", + "chrome": "54", + "chrome-android": "54", + "deno": "1.0", + "edge": "14", + "electron": "1.4", + "firefox": "47", + "firefox-android": "47", + "hermes": "0.1", + "ios": "10.3", + "node": "7.0", + "oculus": "3.0", + "opera": "41", + "opera-android": "41", + "opera_mobile": "41", + "quest": "3.0", + "react-native": "0.69", + "rhino": "1.7.14", + "safari": "10.1", + "samsung": "6.0" + }, + "es.object.freeze": { + "android": "44", + "bun": "0.1.1", + "chrome": "44", + "chrome-android": "44", + "deno": "1.0", + "edge": "13", + "electron": "0.30", + "firefox": "35", + "firefox-android": "35", + "hermes": "0.1", + "ios": "9.0", + "node": "3.0", + "oculus": "3.0", + "opera": "31", + "opera-android": "31", + "opera_mobile": "31", + "quest": "3.0", + "react-native": "0.69", + "rhino": "1.7.13", + "safari": "9.0", + "samsung": "4.0" + }, + "es.object.from-entries": { + "android": "73", + "bun": "0.1.1", + "chrome": "73", + "chrome-android": "73", + "deno": "1.0", + "edge": "79", + "electron": "5.0", + "firefox": "63", + "firefox-android": "63", + "hermes": "0.4", + "ios": "12.2", + "node": "12.0", + "oculus": "6.0", + "opera": "60", + "opera-android": "52", + "opera_mobile": "52", + "quest": "6.0", + "react-native": "0.69", + "rhino": "1.7.14", + "safari": "12.1", + "samsung": "11.0" + }, + "es.object.get-own-property-descriptor": { + "android": "44", + "bun": "0.1.1", + "chrome": "44", + "chrome-android": "44", + "deno": "1.0", + "edge": "13", + "electron": "0.30", + "firefox": "35", + "firefox-android": "35", + "hermes": "0.1", + "ios": "9.0", + "node": "3.0", + "oculus": "3.0", + "opera": "31", + "opera-android": "31", + "opera_mobile": "31", + "quest": "3.0", + "react-native": "0.69", + "rhino": "1.7.13", + "safari": "9.0", + "samsung": "4.0" + }, + "es.object.get-own-property-descriptors": { + "android": "54", + "bun": "0.1.1", + "chrome": "54", + "chrome-android": "54", + "deno": "1.0", + "edge": "15", + "electron": "1.4", + "firefox": "50", + "firefox-android": "50", + "hermes": "0.6", + "ios": "10.0", + "node": "7.0", + "oculus": "3.0", + "opera": "41", + "opera-android": "41", + "opera_mobile": "41", + "quest": "3.0", + "react-native": "0.69", + "rhino": "1.7.15", + "safari": "10.0", + "samsung": "6.0" + }, + "es.object.get-own-property-names": { + "android": "40", + "bun": "0.1.1", + "chrome": "40", + "chrome-android": "40", + "deno": "1.0", + "edge": "13", + "electron": "0.21", + "firefox": "34", + "firefox-android": "34", + "hermes": "0.1", + "ios": "9.0", + "node": "1.0", + "oculus": "3.0", + "opera": "27", + "opera-android": "27", + "opera_mobile": "27", + "quest": "3.0", + "react-native": "0.69", + "rhino": "1.7.13", + "safari": "9.0", + "samsung": "3.4" + }, + "es.object.get-prototype-of": { + "android": "44", + "bun": "0.1.1", + "chrome": "44", + "chrome-android": "44", + "deno": "1.0", + "edge": "13", + "electron": "0.30", + "firefox": "35", + "firefox-android": "35", + "hermes": "0.1", + "ios": "9.0", + "node": "3.0", + "oculus": "3.0", + "opera": "31", + "opera-android": "31", + "opera_mobile": "31", + "quest": "3.0", + "react-native": "0.69", + "rhino": "1.7.13", + "safari": "9.0", + "samsung": "4.0" + }, + "es.object.group-by": { + "android": "117", + "bun": "1.1.2", + "chrome": "117", + "chrome-android": "117", + "deno": "1.37", + "edge": "117", + "electron": "27.0", + "firefox": "119", + "firefox-android": "119", + "ios": "18.0", + "node": "21.0", + "oculus": "30.0", + "opera": "103", + "opera-android": "78", + "opera_mobile": "78", + "quest": "30.0", + "rhino": "1.8.0", + "safari": "18.0", + "samsung": "24.0" + }, + "es.object.has-own": { + "android": "93", + "bun": "0.1.1", + "chrome": "93", + "chrome-android": "93", + "deno": "1.13", + "edge": "93", + "electron": "14.0", + "firefox": "92", + "firefox-android": "92", + "hermes": "0.10", + "ios": "15.4", + "node": "16.9", + "oculus": "17.0", + "opera": "79", + "opera-android": "66", + "opera_mobile": "66", + "quest": "17.0", + "react-native": "0.69", + "rhino": "1.7.15", + "safari": "15.4", + "samsung": "17.0" + }, + "es.object.is": { + "android": "4.1", + "bun": "0.1.1", + "chrome": "19", + "chrome-android": "25", + "deno": "1.0", + "edge": "12", + "electron": "0.20", + "firefox": "22", + "firefox-android": "22", + "hermes": "0.1", + "ios": "9.0", + "node": "0.7.3", + "oculus": "3.0", + "opera": "15", + "opera-android": "15", + "opera_mobile": "15", + "quest": "3.0", + "react-native": "0.69", + "rhino": "1.7.13", + "safari": "9.0", + "samsung": "1.5" + }, + "es.object.is-extensible": { + "android": "44", + "bun": "0.1.1", + "chrome": "44", + "chrome-android": "44", + "deno": "1.0", + "edge": "13", + "electron": "0.30", + "firefox": "35", + "firefox-android": "35", + "hermes": "0.1", + "ios": "9.0", + "node": "3.0", + "oculus": "3.0", + "opera": "31", + "opera-android": "31", + "opera_mobile": "31", + "quest": "3.0", + "react-native": "0.69", + "rhino": "1.7.13", + "safari": "9.0", + "samsung": "4.0" + }, + "es.object.is-frozen": { + "android": "44", + "bun": "0.1.1", + "chrome": "44", + "chrome-android": "44", + "deno": "1.0", + "edge": "13", + "electron": "0.30", + "firefox": "35", + "firefox-android": "35", + "hermes": "0.1", + "ios": "9.0", + "node": "3.0", + "oculus": "3.0", + "opera": "31", + "opera-android": "31", + "opera_mobile": "31", + "quest": "3.0", + "react-native": "0.69", + "rhino": "1.7.13", + "safari": "9.0", + "samsung": "4.0" + }, + "es.object.is-sealed": { + "android": "44", + "bun": "0.1.1", + "chrome": "44", + "chrome-android": "44", + "deno": "1.0", + "edge": "13", + "electron": "0.30", + "firefox": "35", + "firefox-android": "35", + "hermes": "0.1", + "ios": "9.0", + "node": "3.0", + "oculus": "3.0", + "opera": "31", + "opera-android": "31", + "opera_mobile": "31", + "quest": "3.0", + "react-native": "0.69", + "rhino": "1.7.13", + "safari": "9.0", + "samsung": "4.0" + }, + "es.object.keys": { + "android": "40", + "bun": "0.1.1", + "chrome": "40", + "chrome-android": "40", + "deno": "1.0", + "edge": "13", + "electron": "0.21", + "firefox": "35", + "firefox-android": "35", + "hermes": "0.1", + "ios": "9.0", + "node": "1.0", + "oculus": "3.0", + "opera": "27", + "opera-android": "27", + "opera_mobile": "27", + "quest": "3.0", + "react-native": "0.69", + "rhino": "1.7.13", + "safari": "9.0", + "samsung": "3.4" + }, + "es.object.lookup-getter": { + "android": "62", + "bun": "0.1.1", + "chrome": "62", + "chrome-android": "62", + "deno": "1.0", + "edge": "16", + "electron": "3.0", + "firefox": "48", + "firefox-android": "48", + "hermes": "0.1", + "ios": "8.0", + "node": "8.10", + "oculus": "5.0", + "opera": "49", + "opera-android": "46", + "opera_mobile": "46", + "quest": "5.0", + "react-native": "0.69", + "rhino": "1.7.13", + "safari": "7.1", + "samsung": "8.0" + }, + "es.object.lookup-setter": { + "android": "62", + "bun": "0.1.1", + "chrome": "62", + "chrome-android": "62", + "deno": "1.0", + "edge": "16", + "electron": "3.0", + "firefox": "48", + "firefox-android": "48", + "hermes": "0.1", + "ios": "8.0", + "node": "8.10", + "oculus": "5.0", + "opera": "49", + "opera-android": "46", + "opera_mobile": "46", + "quest": "5.0", + "react-native": "0.69", + "rhino": "1.7.13", + "safari": "7.1", + "samsung": "8.0" + }, + "es.object.prevent-extensions": { + "android": "44", + "bun": "0.1.1", + "chrome": "44", + "chrome-android": "44", + "deno": "1.0", + "edge": "13", + "electron": "0.30", + "firefox": "35", + "firefox-android": "35", + "hermes": "0.1", + "ios": "9.0", + "node": "3.0", + "oculus": "3.0", + "opera": "31", + "opera-android": "31", + "opera_mobile": "31", + "quest": "3.0", + "react-native": "0.69", + "rhino": "1.7.13", + "safari": "9.0", + "samsung": "4.0" + }, + "es.object.proto": { + "android": "3.0", + "bun": "0.1.1", + "chrome": "5", + "chrome-android": "18", + "edge": "12", + "electron": "0.20", + "firefox": "2", + "firefox-android": "4", + "hermes": "0.1", + "ie": "11", + "ios": "2.0", + "node": "0.1.27", + "oculus": "3.0", + "opera": "10.50", + "opera-android": "10.50", + "opera_mobile": "10.50", + "phantom": "1.9", + "quest": "3.0", + "react-native": "0.69", + "safari": "3.1", + "samsung": "1.0" + }, + "es.object.seal": { + "android": "44", + "bun": "0.1.1", + "chrome": "44", + "chrome-android": "44", + "deno": "1.0", + "edge": "13", + "electron": "0.30", + "firefox": "35", + "firefox-android": "35", + "hermes": "0.1", + "ios": "9.0", + "node": "3.0", + "oculus": "3.0", + "opera": "31", + "opera-android": "31", + "opera_mobile": "31", + "quest": "3.0", + "react-native": "0.69", + "rhino": "1.7.13", + "safari": "9.0", + "samsung": "4.0" + }, + "es.object.set-prototype-of": { + "android": "37", + "bun": "0.1.1", + "chrome": "34", + "chrome-android": "34", + "deno": "1.0", + "edge": "12", + "electron": "0.20", + "firefox": "31", + "firefox-android": "31", + "hermes": "0.1", + "ie": "11", + "ios": "9.0", + "node": "0.11.13", + "oculus": "3.0", + "opera": "21", + "opera-android": "21", + "opera_mobile": "21", + "quest": "3.0", + "react-native": "0.69", + "rhino": "1.7.13", + "safari": "9.0", + "samsung": "2.0" + }, + "es.object.to-string": { + "android": "49", + "bun": "0.1.1", + "chrome": "49", + "chrome-android": "49", + "deno": "1.0", + "edge": "15", + "electron": "0.37", + "firefox": "51", + "firefox-android": "51", + "hermes": "0.1", + "ios": "10.0", + "node": "6.0", + "oculus": "3.0", + "opera": "36", + "opera-android": "36", + "opera_mobile": "36", + "quest": "3.0", + "react-native": "0.69", + "rhino": "1.8.0", + "safari": "10.0", + "samsung": "5.0" + }, + "es.object.values": { + "android": "54", + "bun": "0.1.1", + "chrome": "54", + "chrome-android": "54", + "deno": "1.0", + "edge": "14", + "electron": "1.4", + "firefox": "47", + "firefox-android": "47", + "hermes": "0.1", + "ios": "10.3", + "node": "7.0", + "oculus": "3.0", + "opera": "41", + "opera-android": "41", + "opera_mobile": "41", + "quest": "3.0", + "react-native": "0.69", + "rhino": "1.7.14", + "safari": "10.1", + "samsung": "6.0" + }, + "es.parse-float": { + "android": "37", + "bun": "0.1.1", + "chrome": "35", + "chrome-android": "35", + "deno": "1.0", + "edge": "74", + "electron": "0.20", + "firefox": "8", + "firefox-android": "8", + "hermes": "0.1", + "ie": "8", + "ios": "8.0", + "node": "0.11.13", + "oculus": "3.0", + "opera": "22", + "opera-android": "22", + "opera_mobile": "22", + "quest": "3.0", + "react-native": "0.69", + "rhino": "1.7.13", + "safari": "7.1", + "samsung": "3.0" + }, + "es.parse-int": { + "android": "37", + "bun": "0.1.1", + "chrome": "35", + "chrome-android": "35", + "deno": "1.0", + "edge": "74", + "electron": "0.20", + "firefox": "21", + "firefox-android": "21", + "hermes": "0.1", + "ie": "9", + "ios": "8.0", + "node": "0.11.13", + "oculus": "3.0", + "opera": "22", + "opera-android": "22", + "opera_mobile": "22", + "quest": "3.0", + "react-native": "0.69", + "rhino": "1.7.13", + "safari": "7.1", + "samsung": "3.0" + }, + "es.promise": { + "android": "67", + "bun": "0.1.1", + "chrome": "67", + "chrome-android": "67", + "deno": "1.24", + "edge": "79", + "electron": "4.0", + "firefox": "69", + "firefox-android": "69", + "ios": "11.0", + "node": "10.4", + "oculus": "6.0", + "opera": "54", + "opera-android": "48", + "opera_mobile": "48", + "quest": "6.0", + "rhino": "1.7.14", + "safari": "11.0", + "samsung": "9.0" + }, + "es.promise.all-settled": { + "android": "76", + "bun": "0.1.1", + "chrome": "76", + "chrome-android": "76", + "deno": "1.24", + "edge": "79", + "electron": "6.0", + "firefox": "71", + "firefox-android": "71", + "ios": "13.0", + "node": "12.9", + "oculus": "7.0", + "opera": "63", + "opera-android": "54", + "opera_mobile": "54", + "quest": "7.0", + "rhino": "1.7.15", + "safari": "13", + "samsung": "12.0" + }, + "es.promise.any": { + "android": "85", + "bun": "0.1.1", + "chrome": "85", + "chrome-android": "85", + "deno": "1.24", + "edge": "85", + "electron": "10.0", + "firefox": "79", + "firefox-android": "79", + "ios": "14.0", + "node": "15.0", + "oculus": "12.0", + "opera": "71", + "opera-android": "60", + "opera_mobile": "60", + "quest": "12.0", + "rhino": "1.8.0", + "safari": "14.0", + "samsung": "14.0" + }, + "es.promise.finally": { + "android": "67", + "bun": "0.1.1", + "chrome": "67", + "chrome-android": "67", + "deno": "1.24", + "edge": "79", + "electron": "4.0", + "firefox": "69", + "firefox-android": "69", + "ios": "13.2.3", + "node": "10.4", + "oculus": "6.0", + "opera": "54", + "opera-android": "48", + "opera_mobile": "48", + "quest": "6.0", + "rhino": "1.7.14", + "safari": "13.0.3", + "samsung": "9.0" + }, + "es.promise.try": { + "android": "128", + "bun": "1.1.22", + "chrome": "128", + "chrome-android": "128", + "deno": "1.46", + "edge": "128", + "electron": "32.0", + "firefox": "134", + "firefox-android": "134", + "ios": "18.2", + "node": "23.0", + "oculus": "35.0", + "opera": "114", + "opera-android": "85", + "opera_mobile": "85", + "quest": "35.0", + "safari": "18.2", + "samsung": "28.0" + }, + "es.promise.with-resolvers": { + "android": "119", + "bun": "0.7.1", + "chrome": "119", + "chrome-android": "119", + "deno": "1.38", + "edge": "119", + "electron": "28.0", + "firefox": "121", + "firefox-android": "121", + "ios": "17.4", + "node": "22.0", + "oculus": "31.0", + "opera": "105", + "opera-android": "79", + "opera_mobile": "79", + "quest": "31.0", + "safari": "17.4", + "samsung": "25.0" + }, + "es.array.from-async": { + "android": "121", + "bun": "1.1.2", + "chrome": "121", + "chrome-android": "121", + "deno": "1.38", + "edge": "121", + "electron": "29.0", + "firefox": "115", + "firefox-android": "115", + "ios": "18.0", + "node": "22.0", + "oculus": "32.0", + "opera": "107", + "opera-android": "81", + "opera_mobile": "81", + "quest": "32.0", + "safari": "18.0", + "samsung": "25.0" + }, + "es.async-disposable-stack.constructor": { + "android": "136", + "chrome": "136", + "chrome-android": "136", + "deno": "2.3.2", + "edge": "136", + "electron": "36.0", + "firefox": "141", + "firefox-android": "141", + "node": "24.0", + "oculus": "39.0", + "opera": "121", + "opera-android": "90", + "opera_mobile": "90", + "quest": "39.0", + "samsung": "29.0" + }, + "es.async-iterator.async-dispose": {}, + "es.reflect.apply": { + "android": "49", + "bun": "0.1.1", + "chrome": "49", + "chrome-android": "49", + "deno": "1.0", + "edge": "15", + "electron": "0.37", + "firefox": "42", + "firefox-android": "42", + "hermes": "0.7", + "ios": "10.0", + "node": "6.0", + "oculus": "3.0", + "opera": "36", + "opera-android": "36", + "opera_mobile": "36", + "quest": "3.0", + "react-native": "0.69", + "rhino": "1.8.0", + "safari": "10.0", + "samsung": "5.0" + }, + "es.reflect.construct": { + "android": "49", + "bun": "0.1.1", + "chrome": "49", + "chrome-android": "49", + "deno": "1.0", + "edge": "15", + "electron": "0.37", + "firefox": "44", + "firefox-android": "44", + "hermes": "0.7", + "ios": "10.0", + "node": "6.0", + "oculus": "3.0", + "opera": "36", + "opera-android": "36", + "opera_mobile": "36", + "quest": "3.0", + "react-native": "0.69", + "safari": "10.0", + "samsung": "5.0" + }, + "es.reflect.define-property": { + "android": "49", + "bun": "0.1.1", + "chrome": "49", + "chrome-android": "49", + "deno": "1.0", + "edge": "13", + "electron": "0.37", + "firefox": "42", + "firefox-android": "42", + "hermes": "0.7", + "ios": "10.0", + "node": "6.0", + "oculus": "3.0", + "opera": "36", + "opera-android": "36", + "opera_mobile": "36", + "quest": "3.0", + "react-native": "0.69", + "rhino": "1.8.0", + "safari": "10.0", + "samsung": "5.0" + }, + "es.reflect.delete-property": { + "android": "49", + "bun": "0.1.1", + "chrome": "49", + "chrome-android": "49", + "deno": "1.0", + "edge": "12", + "electron": "0.37", + "firefox": "42", + "firefox-android": "42", + "hermes": "0.7", + "ios": "10.0", + "node": "6.0", + "oculus": "3.0", + "opera": "36", + "opera-android": "36", + "opera_mobile": "36", + "quest": "3.0", + "react-native": "0.69", + "rhino": "1.8.0", + "safari": "10.0", + "samsung": "5.0" + }, + "es.reflect.get": { + "android": "49", + "bun": "0.1.1", + "chrome": "49", + "chrome-android": "49", + "deno": "1.0", + "edge": "12", + "electron": "0.37", + "firefox": "42", + "firefox-android": "42", + "hermes": "0.7", + "ios": "10.0", + "node": "6.0", + "oculus": "3.0", + "opera": "36", + "opera-android": "36", + "opera_mobile": "36", + "quest": "3.0", + "react-native": "0.69", + "rhino": "1.8.0", + "safari": "10.0", + "samsung": "5.0" + }, + "es.reflect.get-own-property-descriptor": { + "android": "49", + "bun": "0.1.1", + "chrome": "49", + "chrome-android": "49", + "deno": "1.0", + "edge": "12", + "electron": "0.37", + "firefox": "42", + "firefox-android": "42", + "hermes": "0.7", + "ios": "10.0", + "node": "6.0", + "oculus": "3.0", + "opera": "36", + "opera-android": "36", + "opera_mobile": "36", + "quest": "3.0", + "react-native": "0.69", + "rhino": "1.8.0", + "safari": "10.0", + "samsung": "5.0" + }, + "es.reflect.get-prototype-of": { + "android": "49", + "bun": "0.1.1", + "chrome": "49", + "chrome-android": "49", + "deno": "1.0", + "edge": "12", + "electron": "0.37", + "firefox": "42", + "firefox-android": "42", + "hermes": "0.7", + "ios": "10.0", + "node": "6.0", + "oculus": "3.0", + "opera": "36", + "opera-android": "36", + "opera_mobile": "36", + "quest": "3.0", + "react-native": "0.69", + "rhino": "1.8.0", + "safari": "10.0", + "samsung": "5.0" + }, + "es.reflect.has": { + "android": "49", + "bun": "0.1.1", + "chrome": "49", + "chrome-android": "49", + "deno": "1.0", + "edge": "12", + "electron": "0.37", + "firefox": "42", + "firefox-android": "42", + "hermes": "0.7", + "ios": "10.0", + "node": "6.0", + "oculus": "3.0", + "opera": "36", + "opera-android": "36", + "opera_mobile": "36", + "quest": "3.0", + "react-native": "0.69", + "rhino": "1.8.0", + "safari": "10.0", + "samsung": "5.0" + }, + "es.reflect.is-extensible": { + "android": "49", + "bun": "0.1.1", + "chrome": "49", + "chrome-android": "49", + "deno": "1.0", + "edge": "12", + "electron": "0.37", + "firefox": "42", + "firefox-android": "42", + "hermes": "0.7", + "ios": "10.0", + "node": "6.0", + "oculus": "3.0", + "opera": "36", + "opera-android": "36", + "opera_mobile": "36", + "quest": "3.0", + "react-native": "0.69", + "rhino": "1.8.0", + "safari": "10.0", + "samsung": "5.0" + }, + "es.reflect.own-keys": { + "android": "49", + "bun": "0.1.1", + "chrome": "49", + "chrome-android": "49", + "deno": "1.0", + "edge": "12", + "electron": "0.37", + "firefox": "42", + "firefox-android": "42", + "hermes": "0.7", + "ios": "10.0", + "node": "6.0", + "oculus": "3.0", + "opera": "36", + "opera-android": "36", + "opera_mobile": "36", + "quest": "3.0", + "react-native": "0.69", + "rhino": "1.8.0", + "safari": "10.0", + "samsung": "5.0" + }, + "es.reflect.prevent-extensions": { + "android": "49", + "bun": "0.1.1", + "chrome": "49", + "chrome-android": "49", + "deno": "1.0", + "edge": "12", + "electron": "0.37", + "firefox": "42", + "firefox-android": "42", + "hermes": "0.7", + "ios": "10.0", + "node": "6.0", + "oculus": "3.0", + "opera": "36", + "opera-android": "36", + "opera_mobile": "36", + "quest": "3.0", + "react-native": "0.69", + "rhino": "1.8.0", + "safari": "10.0", + "samsung": "5.0" + }, + "es.reflect.set": { + "android": "49", + "bun": "0.1.1", + "chrome": "49", + "chrome-android": "49", + "deno": "1.0", + "edge": "79", + "electron": "0.37", + "firefox": "42", + "firefox-android": "42", + "hermes": "0.7", + "ios": "10.0", + "node": "6.0", + "oculus": "3.0", + "opera": "36", + "opera-android": "36", + "opera_mobile": "36", + "quest": "3.0", + "react-native": "0.69", + "safari": "10.0", + "samsung": "5.0" + }, + "es.reflect.set-prototype-of": { + "android": "49", + "bun": "0.1.1", + "chrome": "49", + "chrome-android": "49", + "deno": "1.0", + "edge": "12", + "electron": "0.37", + "firefox": "42", + "firefox-android": "42", + "hermes": "0.7", + "ios": "10.0", + "node": "6.0", + "oculus": "3.0", + "opera": "36", + "opera-android": "36", + "opera_mobile": "36", + "quest": "3.0", + "react-native": "0.69", + "rhino": "1.8.0", + "safari": "10.0", + "samsung": "5.0" + }, + "es.reflect.to-string-tag": { + "android": "86", + "bun": "0.1.1", + "chrome": "86", + "chrome-android": "86", + "deno": "1.3", + "edge": "86", + "electron": "11.0", + "firefox": "82", + "firefox-android": "82", + "hermes": "0.7", + "ios": "14.0", + "node": "15.0", + "oculus": "12.0", + "opera": "72", + "opera-android": "61", + "opera_mobile": "61", + "quest": "12.0", + "react-native": "0.69", + "rhino": "1.8.0", + "safari": "14.0", + "samsung": "14.0" + }, + "es.regexp.constructor": { + "android": "64", + "bun": "0.1.1", + "chrome": "64", + "chrome-android": "64", + "deno": "1.0", + "edge": "79", + "electron": "3.0", + "firefox": "78", + "firefox-android": "78", + "ios": "11.3", + "node": "10.0", + "oculus": "5.0", + "opera": "51", + "opera-android": "47", + "opera_mobile": "47", + "quest": "5.0", + "safari": "11.1", + "samsung": "9.0" + }, + "es.regexp.escape": { + "android": "136", + "bun": "1.1.22", + "chrome": "136", + "chrome-android": "136", + "deno": "2.3.2", + "edge": "136", + "electron": "36.0", + "firefox": "134", + "firefox-android": "134", + "ios": "18.2", + "node": "24.0", + "oculus": "39.0", + "opera": "121", + "opera-android": "90", + "opera_mobile": "90", + "quest": "39.0", + "safari": "18.2", + "samsung": "29.0" + }, + "es.regexp.dot-all": { + "android": "62", + "bun": "0.1.1", + "chrome": "62", + "chrome-android": "62", + "deno": "1.0", + "edge": "79", + "electron": "3.0", + "firefox": "78", + "firefox-android": "78", + "hermes": "0.4", + "ios": "11.3", + "node": "8.10", + "oculus": "5.0", + "opera": "49", + "opera-android": "46", + "opera_mobile": "46", + "quest": "5.0", + "react-native": "0.69", + "rhino": "1.7.15", + "safari": "11.1", + "samsung": "8.0" + }, + "es.regexp.exec": { + "android": "64", + "bun": "0.1.1", + "chrome": "64", + "chrome-android": "64", + "deno": "1.0", + "edge": "79", + "electron": "3.0", + "firefox": "78", + "firefox-android": "78", + "hermes": "0.13", + "ios": "11.3", + "node": "10.0", + "oculus": "5.0", + "opera": "51", + "opera-android": "47", + "opera_mobile": "47", + "quest": "5.0", + "react-native": "0.71", + "safari": "11.1", + "samsung": "9.0" + }, + "es.regexp.flags": { + "android": "111", + "bun": "0.1.1", + "chrome": "111", + "chrome-android": "111", + "deno": "1.32", + "edge": "111", + "electron": "24.0", + "firefox": "78", + "firefox-android": "78", + "hermes": "0.4", + "ios": "11.3", + "node": "20.0", + "oculus": "27.0", + "opera": "97", + "opera-android": "75", + "opera_mobile": "75", + "quest": "27.0", + "react-native": "0.69", + "safari": "11.1", + "samsung": "22.0" + }, + "es.regexp.sticky": { + "android": "49", + "bun": "0.1.1", + "chrome": "49", + "chrome-android": "49", + "deno": "1.0", + "edge": "13", + "electron": "0.37", + "firefox": "3", + "firefox-android": "4", + "hermes": "0.3", + "ios": "10.0", + "node": "6.0", + "oculus": "3.0", + "opera": "36", + "opera-android": "36", + "opera_mobile": "36", + "quest": "3.0", + "react-native": "0.69", + "rhino": "1.7.15", + "safari": "10.0", + "samsung": "5.0" + }, + "es.regexp.test": { + "android": "51", + "bun": "0.1.1", + "chrome": "51", + "chrome-android": "51", + "deno": "1.0", + "edge": "79", + "electron": "1.2", + "firefox": "46", + "firefox-android": "46", + "ios": "10.0", + "node": "6.5", + "oculus": "3.0", + "opera": "38", + "opera-android": "38", + "opera_mobile": "38", + "quest": "3.0", + "safari": "10.0", + "samsung": "5.0" + }, + "es.regexp.to-string": { + "android": "50", + "bun": "0.1.1", + "chrome": "50", + "chrome-android": "50", + "deno": "1.0", + "edge": "79", + "electron": "1.1", + "firefox": "46", + "firefox-android": "46", + "hermes": "0.1", + "ios": "10.0", + "node": "6.0", + "oculus": "3.0", + "opera": "37", + "opera-android": "37", + "opera_mobile": "37", + "quest": "3.0", + "react-native": "0.69", + "rhino": "1.7.15", + "safari": "10.0", + "samsung": "5.0" + }, + "es.set": { + "android": "51", + "bun": "0.1.1", + "chrome": "51", + "chrome-android": "51", + "deno": "1.0", + "edge": "15", + "electron": "1.2", + "firefox": "53", + "firefox-android": "53", + "hermes": "0.13", + "ios": "10.0", + "node": "6.5", + "oculus": "3.0", + "opera": "38", + "opera-android": "38", + "opera_mobile": "38", + "quest": "3.0", + "react-native": "0.73", + "rhino": "1.7.13", + "safari": "10.0", + "samsung": "5.0" + }, + "es.set.difference.v2": { + "android": "128", + "bun": "1.2.5", + "chrome": "128", + "chrome-android": "128", + "deno": "1.46", + "edge": "128", + "electron": "32.0", + "firefox": "127", + "firefox-android": "127", + "ios": "26.0", + "node": "22.10", + "oculus": "35.0", + "opera": "114", + "opera-android": "85", + "opera_mobile": "85", + "quest": "35.0", + "safari": "26.0", + "samsung": "28.0" + }, + "es.set.intersection.v2": { + "android": "128", + "bun": "1.1.1", + "chrome": "128", + "chrome-android": "128", + "deno": "1.46", + "edge": "128", + "electron": "32.0", + "firefox": "127", + "firefox-android": "127", + "ios": "18.0", + "node": "22.10", + "oculus": "35.0", + "opera": "114", + "opera-android": "85", + "opera_mobile": "85", + "quest": "35.0", + "safari": "18.0", + "samsung": "28.0" + }, + "es.set.is-disjoint-from.v2": { + "android": "128", + "bun": "1.1.1", + "chrome": "128", + "chrome-android": "128", + "deno": "1.46", + "edge": "128", + "electron": "32.0", + "firefox": "127", + "firefox-android": "127", + "ios": "18.0", + "node": "22.10", + "oculus": "35.0", + "opera": "114", + "opera-android": "85", + "opera_mobile": "85", + "quest": "35.0", + "safari": "18.0", + "samsung": "28.0" + }, + "es.set.is-subset-of.v2": { + "android": "128", + "bun": "1.1.1", + "chrome": "128", + "chrome-android": "128", + "deno": "1.46", + "edge": "128", + "electron": "32.0", + "firefox": "127", + "firefox-android": "127", + "ios": "18.0", + "node": "22.10", + "oculus": "35.0", + "opera": "114", + "opera-android": "85", + "opera_mobile": "85", + "quest": "35.0", + "safari": "18.0", + "samsung": "28.0" + }, + "es.set.is-superset-of.v2": { + "android": "128", + "bun": "1.1.1", + "chrome": "128", + "chrome-android": "128", + "deno": "1.46", + "edge": "128", + "electron": "32.0", + "firefox": "127", + "firefox-android": "127", + "ios": "18.0", + "node": "22.10", + "oculus": "35.0", + "opera": "114", + "opera-android": "85", + "opera_mobile": "85", + "quest": "35.0", + "safari": "18.0", + "samsung": "28.0" + }, + "es.set.symmetric-difference.v2": { + "android": "123", + "bun": "1.2.5", + "chrome": "123", + "chrome-android": "123", + "deno": "1.41.3", + "edge": "123", + "electron": "30.0", + "firefox": "127", + "firefox-android": "127", + "ios": "26.0", + "node": "22.0", + "oculus": "33.0", + "opera": "109", + "opera-android": "82", + "opera_mobile": "82", + "quest": "33.0", + "safari": "26.0", + "samsung": "27.0" + }, + "es.set.union.v2": { + "android": "123", + "bun": "1.2.5", + "chrome": "123", + "chrome-android": "123", + "deno": "1.41.3", + "edge": "123", + "electron": "30.0", + "firefox": "127", + "firefox-android": "127", + "ios": "26.0", + "node": "22.0", + "oculus": "33.0", + "opera": "109", + "opera-android": "82", + "opera_mobile": "82", + "quest": "33.0", + "safari": "26.0", + "samsung": "27.0" + }, + "es.string.at-alternative": { + "android": "92", + "bun": "0.1.1", + "chrome": "92", + "chrome-android": "92", + "deno": "1.12", + "edge": "92", + "electron": "14.0", + "firefox": "90", + "firefox-android": "90", + "hermes": "0.13", + "ios": "15.4", + "node": "16.6", + "oculus": "17.0", + "opera": "78", + "opera-android": "65", + "opera_mobile": "65", + "quest": "17.0", + "react-native": "0.71", + "safari": "15.4", + "samsung": "16.0" + }, + "es.string.code-point-at": { + "android": "41", + "bun": "0.1.1", + "chrome": "41", + "chrome-android": "41", + "deno": "1.0", + "edge": "13", + "electron": "0.21", + "firefox": "29", + "firefox-android": "29", + "hermes": "0.1", + "ios": "9.0", + "node": "1.0", + "oculus": "3.0", + "opera": "28", + "opera-android": "28", + "opera_mobile": "28", + "quest": "3.0", + "react-native": "0.69", + "rhino": "1.7.13", + "safari": "9.0", + "samsung": "3.4" + }, + "es.string.ends-with": { + "android": "51", + "bun": "0.1.1", + "chrome": "51", + "chrome-android": "51", + "deno": "1.0", + "edge": "79", + "electron": "1.2", + "firefox": "40", + "firefox-android": "40", + "hermes": "0.1", + "ios": "10.0", + "node": "6.5", + "oculus": "3.0", + "opera": "38", + "opera-android": "38", + "opera_mobile": "38", + "quest": "3.0", + "react-native": "0.69", + "rhino": "1.7.15", + "safari": "10.0", + "samsung": "5.0" + }, + "es.string.from-code-point": { + "android": "41", + "bun": "0.1.1", + "chrome": "41", + "chrome-android": "41", + "deno": "1.0", + "edge": "13", + "electron": "0.21", + "firefox": "29", + "firefox-android": "29", + "hermes": "0.1", + "ios": "9.0", + "node": "1.0", + "oculus": "3.0", + "opera": "28", + "opera-android": "28", + "opera_mobile": "28", + "quest": "3.0", + "react-native": "0.69", + "rhino": "1.7.13", + "safari": "9.0", + "samsung": "3.4" + }, + "es.string.includes": { + "android": "51", + "bun": "0.1.1", + "chrome": "51", + "chrome-android": "51", + "deno": "1.0", + "edge": "79", + "electron": "1.2", + "firefox": "40", + "firefox-android": "40", + "hermes": "0.1", + "ios": "10.0", + "node": "6.5", + "oculus": "3.0", + "opera": "38", + "opera-android": "38", + "opera_mobile": "38", + "quest": "3.0", + "react-native": "0.69", + "rhino": "1.7.15", + "safari": "10.0", + "samsung": "5.0" + }, + "es.string.is-well-formed": { + "android": "111", + "bun": "0.4.0", + "chrome": "111", + "chrome-android": "111", + "deno": "1.32", + "edge": "111", + "electron": "24.0", + "firefox": "119", + "firefox-android": "119", + "ios": "16.4", + "node": "20.0", + "oculus": "27.0", + "opera": "97", + "opera-android": "75", + "opera_mobile": "75", + "quest": "27.0", + "rhino": "1.8.0", + "safari": "16.4", + "samsung": "22.0" + }, + "es.string.iterator": { + "android": "41", + "bun": "0.1.1", + "chrome": "41", + "chrome-android": "41", + "deno": "1.0", + "edge": "13", + "electron": "0.21", + "firefox": "36", + "firefox-android": "36", + "hermes": "0.1", + "ios": "9.0", + "node": "1.0", + "oculus": "3.0", + "opera": "28", + "opera-android": "28", + "opera_mobile": "28", + "quest": "3.0", + "react-native": "0.69", + "rhino": "1.7.13", + "safari": "9.0", + "samsung": "3.4" + }, + "es.string.match": { + "android": "51", + "bun": "0.1.1", + "chrome": "51", + "chrome-android": "51", + "deno": "1.0", + "edge": "79", + "electron": "1.2", + "firefox": "49", + "firefox-android": "49", + "hermes": "0.1", + "ios": "10.0", + "node": "6.5", + "oculus": "3.0", + "opera": "38", + "opera-android": "38", + "opera_mobile": "38", + "quest": "3.0", + "react-native": "0.69", + "safari": "10.0", + "samsung": "5.0" + }, + "es.string.match-all": { + "android": "80", + "bun": "0.1.1", + "chrome": "80", + "chrome-android": "80", + "deno": "1.0", + "edge": "80", + "electron": "8.0", + "firefox": "73", + "firefox-android": "73", + "hermes": "0.6", + "ios": "13.4", + "node": "14.0", + "oculus": "9.0", + "opera": "67", + "opera-android": "57", + "opera_mobile": "57", + "quest": "9.0", + "react-native": "0.69", + "rhino": "1.8.0", + "safari": "13.1", + "samsung": "13.0" + }, + "es.string.pad-end": { + "android": "57", + "bun": "0.1.1", + "chrome": "57", + "chrome-android": "57", + "deno": "1.0", + "edge": "15", + "electron": "1.7", + "firefox": "48", + "firefox-android": "48", + "hermes": "0.1", + "ios": "11.0", + "node": "8.0", + "oculus": "3.0", + "opera": "44", + "opera-android": "43", + "opera_mobile": "43", + "quest": "3.0", + "react-native": "0.69", + "rhino": "1.7.13", + "safari": "11.0", + "samsung": "7.0" + }, + "es.string.pad-start": { + "android": "57", + "bun": "0.1.1", + "chrome": "57", + "chrome-android": "57", + "deno": "1.0", + "edge": "15", + "electron": "1.7", + "firefox": "48", + "firefox-android": "48", + "hermes": "0.1", + "ios": "11.0", + "node": "8.0", + "oculus": "3.0", + "opera": "44", + "opera-android": "43", + "opera_mobile": "43", + "quest": "3.0", + "react-native": "0.69", + "rhino": "1.7.13", + "safari": "11.0", + "samsung": "7.0" + }, + "es.string.raw": { + "android": "41", + "bun": "0.1.1", + "chrome": "41", + "chrome-android": "41", + "deno": "1.0", + "edge": "13", + "electron": "0.21", + "firefox": "34", + "firefox-android": "34", + "hermes": "0.1", + "ios": "9.0", + "node": "1.0", + "oculus": "3.0", + "opera": "28", + "opera-android": "28", + "opera_mobile": "28", + "quest": "3.0", + "react-native": "0.69", + "rhino": "1.7.14", + "safari": "9.0", + "samsung": "3.4" + }, + "es.string.repeat": { + "android": "41", + "bun": "0.1.1", + "chrome": "41", + "chrome-android": "41", + "deno": "1.0", + "edge": "13", + "electron": "0.21", + "firefox": "24", + "firefox-android": "24", + "hermes": "0.1", + "ios": "9.0", + "node": "1.0", + "oculus": "3.0", + "opera": "28", + "opera-android": "28", + "opera_mobile": "28", + "quest": "3.0", + "react-native": "0.69", + "rhino": "1.7.13", + "safari": "9.0", + "samsung": "3.4" + }, + "es.string.replace": { + "android": "64", + "bun": "0.1.1", + "chrome": "64", + "chrome-android": "64", + "deno": "1.0", + "edge": "79", + "electron": "3.0", + "firefox": "78", + "firefox-android": "78", + "hermes": "0.13", + "ios": "14.0", + "node": "10.0", + "oculus": "5.0", + "opera": "51", + "opera-android": "47", + "opera_mobile": "47", + "quest": "5.0", + "react-native": "0.71", + "safari": "14.0", + "samsung": "9.0" + }, + "es.string.replace-all": { + "android": "85", + "bun": "0.1.1", + "chrome": "85", + "chrome-android": "85", + "deno": "1.2", + "edge": "85", + "electron": "10.0", + "firefox": "77", + "firefox-android": "77", + "hermes": "0.7", + "ios": "13.4", + "node": "15.0", + "oculus": "12.0", + "opera": "71", + "opera-android": "60", + "opera_mobile": "60", + "quest": "12.0", + "react-native": "0.69", + "rhino": "1.7.15", + "safari": "13.1", + "samsung": "14.0" + }, + "es.string.search": { + "android": "51", + "bun": "0.1.1", + "chrome": "51", + "chrome-android": "51", + "deno": "1.0", + "edge": "79", + "electron": "1.2", + "firefox": "49", + "firefox-android": "49", + "hermes": "0.1", + "ios": "10.0", + "node": "6.5", + "oculus": "3.0", + "opera": "38", + "opera-android": "38", + "opera_mobile": "38", + "quest": "3.0", + "react-native": "0.69", + "safari": "10.0", + "samsung": "5.0" + }, + "es.string.split": { + "android": "54", + "bun": "0.1.1", + "chrome": "54", + "chrome-android": "54", + "deno": "1.0", + "edge": "79", + "electron": "1.4", + "firefox": "49", + "firefox-android": "49", + "ios": "10.0", + "node": "7.0", + "oculus": "3.0", + "opera": "41", + "opera-android": "41", + "opera_mobile": "41", + "quest": "3.0", + "safari": "10.0", + "samsung": "6.0" + }, + "es.string.starts-with": { + "android": "51", + "bun": "0.1.1", + "chrome": "51", + "chrome-android": "51", + "deno": "1.0", + "edge": "79", + "electron": "1.2", + "firefox": "40", + "firefox-android": "40", + "hermes": "0.1", + "ios": "10.0", + "node": "6.5", + "oculus": "3.0", + "opera": "38", + "opera-android": "38", + "opera_mobile": "38", + "quest": "3.0", + "react-native": "0.69", + "rhino": "1.7.15", + "safari": "10.0", + "samsung": "5.0" + }, + "es.string.substr": { + "android": "3.0", + "bun": "0.1.1", + "chrome": "1", + "chrome-android": "18", + "deno": "1.0", + "edge": "12", + "electron": "0.20", + "firefox": "1", + "firefox-android": "4", + "hermes": "0.1", + "ie": "9", + "ios": "1.0", + "node": "0.0.3", + "oculus": "3.0", + "opera": "4", + "opera-android": "4", + "opera_mobile": "4", + "phantom": "1.9", + "quest": "3.0", + "react-native": "0.69", + "rhino": "1.7.13", + "safari": "1", + "samsung": "1.0" + }, + "es.string.to-well-formed": { + "android": "111", + "bun": "0.5.7", + "chrome": "111", + "chrome-android": "111", + "deno": "1.32", + "edge": "111", + "electron": "24.0", + "firefox": "119", + "firefox-android": "119", + "ios": "16.4", + "node": "20.0", + "oculus": "27.0", + "opera": "97", + "opera-android": "75", + "opera_mobile": "75", + "quest": "27.0", + "rhino": "1.8.0", + "safari": "16.4", + "samsung": "22.0" + }, + "es.string.trim": { + "android": "59", + "bun": "0.1.1", + "chrome": "59", + "chrome-android": "59", + "deno": "1.0", + "edge": "15", + "electron": "1.8", + "firefox": "52", + "firefox-android": "52", + "hermes": "0.1", + "ios": "12.2", + "node": "8.3", + "oculus": "4.0", + "opera": "46", + "opera-android": "43", + "opera_mobile": "43", + "quest": "4.0", + "react-native": "0.69", + "rhino": "1.8.0", + "safari": "12.1", + "samsung": "7.0" + }, + "es.string.trim-end": { + "android": "66", + "bun": "0.1.1", + "chrome": "66", + "chrome-android": "66", + "deno": "1.0", + "edge": "79", + "electron": "3.0", + "firefox": "61", + "firefox-android": "61", + "hermes": "0.3", + "ios": "12.2", + "node": "10.0", + "oculus": "5.0", + "opera": "53", + "opera-android": "47", + "opera_mobile": "47", + "quest": "5.0", + "react-native": "0.69", + "safari": "12.1", + "samsung": "9.0" + }, + "es.string.trim-start": { + "android": "66", + "bun": "0.1.1", + "chrome": "66", + "chrome-android": "66", + "deno": "1.0", + "edge": "79", + "electron": "3.0", + "firefox": "61", + "firefox-android": "61", + "hermes": "0.3", + "ios": "12.0", + "node": "10.0", + "oculus": "5.0", + "opera": "53", + "opera-android": "47", + "opera_mobile": "47", + "quest": "5.0", + "react-native": "0.69", + "safari": "12.0", + "samsung": "9.0" + }, + "es.string.anchor": { + "android": "3.0", + "bun": "0.1.1", + "chrome": "5", + "chrome-android": "18", + "deno": "1.0", + "edge": "12", + "electron": "0.20", + "firefox": "17", + "firefox-android": "17", + "ios": "6.0", + "node": "0.1.27", + "oculus": "3.0", + "opera": "15", + "opera-android": "15", + "opera_mobile": "15", + "phantom": "2.0", + "quest": "3.0", + "rhino": "1.7.14", + "safari": "6.0", + "samsung": "1.0" + }, + "es.string.big": { + "android": "3.0", + "bun": "0.1.1", + "chrome": "5", + "chrome-android": "18", + "deno": "1.0", + "edge": "12", + "electron": "0.20", + "firefox": "2", + "firefox-android": "4", + "ios": "2.0", + "node": "0.1.27", + "oculus": "3.0", + "opera": "10.50", + "opera-android": "10.50", + "opera_mobile": "10.50", + "phantom": "1.9", + "quest": "3.0", + "rhino": "1.7.13", + "safari": "3.1", + "samsung": "1.0" + }, + "es.string.blink": { + "android": "3.0", + "bun": "0.1.1", + "chrome": "5", + "chrome-android": "18", + "deno": "1.0", + "edge": "12", + "electron": "0.20", + "firefox": "2", + "firefox-android": "4", + "ios": "2.0", + "node": "0.1.27", + "oculus": "3.0", + "opera": "10.50", + "opera-android": "10.50", + "opera_mobile": "10.50", + "phantom": "1.9", + "quest": "3.0", + "rhino": "1.7.13", + "safari": "3.1", + "samsung": "1.0" + }, + "es.string.bold": { + "android": "3.0", + "bun": "0.1.1", + "chrome": "5", + "chrome-android": "18", + "deno": "1.0", + "edge": "12", + "electron": "0.20", + "firefox": "2", + "firefox-android": "4", + "ios": "2.0", + "node": "0.1.27", + "oculus": "3.0", + "opera": "10.50", + "opera-android": "10.50", + "opera_mobile": "10.50", + "phantom": "1.9", + "quest": "3.0", + "rhino": "1.7.13", + "safari": "3.1", + "samsung": "1.0" + }, + "es.string.fixed": { + "android": "3.0", + "bun": "0.1.1", + "chrome": "5", + "chrome-android": "18", + "deno": "1.0", + "edge": "12", + "electron": "0.20", + "firefox": "2", + "firefox-android": "4", + "ios": "2.0", + "node": "0.1.27", + "oculus": "3.0", + "opera": "10.50", + "opera-android": "10.50", + "opera_mobile": "10.50", + "phantom": "1.9", + "quest": "3.0", + "rhino": "1.7.13", + "safari": "3.1", + "samsung": "1.0" + }, + "es.string.fontcolor": { + "android": "3.0", + "bun": "0.1.1", + "chrome": "5", + "chrome-android": "18", + "deno": "1.0", + "edge": "12", + "electron": "0.20", + "firefox": "17", + "firefox-android": "17", + "ios": "6.0", + "node": "0.1.27", + "oculus": "3.0", + "opera": "15", + "opera-android": "15", + "opera_mobile": "15", + "phantom": "2.0", + "quest": "3.0", + "rhino": "1.7.14", + "safari": "6.0", + "samsung": "1.0" + }, + "es.string.fontsize": { + "android": "3.0", + "bun": "0.1.1", + "chrome": "5", + "chrome-android": "18", + "deno": "1.0", + "edge": "12", + "electron": "0.20", + "firefox": "17", + "firefox-android": "17", + "ios": "6.0", + "node": "0.1.27", + "oculus": "3.0", + "opera": "15", + "opera-android": "15", + "opera_mobile": "15", + "phantom": "2.0", + "quest": "3.0", + "rhino": "1.7.14", + "safari": "6.0", + "samsung": "1.0" + }, + "es.string.italics": { + "android": "3.0", + "bun": "0.1.1", + "chrome": "5", + "chrome-android": "18", + "deno": "1.0", + "edge": "12", + "electron": "0.20", + "firefox": "2", + "firefox-android": "4", + "ios": "2.0", + "node": "0.1.27", + "oculus": "3.0", + "opera": "10.50", + "opera-android": "10.50", + "opera_mobile": "10.50", + "phantom": "1.9", + "quest": "3.0", + "rhino": "1.7.13", + "safari": "3.1", + "samsung": "1.0" + }, + "es.string.link": { + "android": "3.0", + "bun": "0.1.1", + "chrome": "5", + "chrome-android": "18", + "deno": "1.0", + "edge": "12", + "electron": "0.20", + "firefox": "17", + "firefox-android": "17", + "ios": "6.0", + "node": "0.1.27", + "oculus": "3.0", + "opera": "15", + "opera-android": "15", + "opera_mobile": "15", + "phantom": "2.0", + "quest": "3.0", + "rhino": "1.7.14", + "safari": "6.0", + "samsung": "1.0" + }, + "es.string.small": { + "android": "3.0", + "bun": "0.1.1", + "chrome": "5", + "chrome-android": "18", + "deno": "1.0", + "edge": "12", + "electron": "0.20", + "firefox": "2", + "firefox-android": "4", + "ios": "2.0", + "node": "0.1.27", + "oculus": "3.0", + "opera": "10.50", + "opera-android": "10.50", + "opera_mobile": "10.50", + "phantom": "1.9", + "quest": "3.0", + "rhino": "1.7.13", + "safari": "3.1", + "samsung": "1.0" + }, + "es.string.strike": { + "android": "3.0", + "bun": "0.1.1", + "chrome": "5", + "chrome-android": "18", + "deno": "1.0", + "edge": "12", + "electron": "0.20", + "firefox": "2", + "firefox-android": "4", + "ios": "2.0", + "node": "0.1.27", + "oculus": "3.0", + "opera": "10.50", + "opera-android": "10.50", + "opera_mobile": "10.50", + "phantom": "1.9", + "quest": "3.0", + "rhino": "1.7.13", + "safari": "3.1", + "samsung": "1.0" + }, + "es.string.sub": { + "android": "3.0", + "bun": "0.1.1", + "chrome": "5", + "chrome-android": "18", + "deno": "1.0", + "edge": "12", + "electron": "0.20", + "firefox": "2", + "firefox-android": "4", + "ios": "2.0", + "node": "0.1.27", + "oculus": "3.0", + "opera": "10.50", + "opera-android": "10.50", + "opera_mobile": "10.50", + "phantom": "1.9", + "quest": "3.0", + "rhino": "1.7.13", + "safari": "3.1", + "samsung": "1.0" + }, + "es.string.sup": { + "android": "3.0", + "bun": "0.1.1", + "chrome": "5", + "chrome-android": "18", + "deno": "1.0", + "edge": "12", + "electron": "0.20", + "firefox": "2", + "firefox-android": "4", + "ios": "2.0", + "node": "0.1.27", + "oculus": "3.0", + "opera": "10.50", + "opera-android": "10.50", + "opera_mobile": "10.50", + "phantom": "1.9", + "quest": "3.0", + "rhino": "1.7.13", + "safari": "3.1", + "samsung": "1.0" + }, + "es.typed-array.float32-array": { + "android": "54", + "bun": "0.1.1", + "chrome": "54", + "chrome-android": "54", + "deno": "1.0", + "edge": "15", + "electron": "1.4", + "firefox": "55", + "firefox-android": "55", + "ios": "14.0", + "node": "7.0", + "oculus": "3.0", + "opera": "41", + "opera-android": "41", + "opera_mobile": "41", + "quest": "3.0", + "safari": "14.0", + "samsung": "6.0" + }, + "es.typed-array.float64-array": { + "android": "54", + "bun": "0.1.1", + "chrome": "54", + "chrome-android": "54", + "deno": "1.0", + "edge": "15", + "electron": "1.4", + "firefox": "55", + "firefox-android": "55", + "ios": "14.0", + "node": "7.0", + "oculus": "3.0", + "opera": "41", + "opera-android": "41", + "opera_mobile": "41", + "quest": "3.0", + "safari": "14.0", + "samsung": "6.0" + }, + "es.typed-array.int8-array": { + "android": "54", + "bun": "0.1.1", + "chrome": "54", + "chrome-android": "54", + "deno": "1.0", + "edge": "15", + "electron": "1.4", + "firefox": "55", + "firefox-android": "55", + "ios": "14.0", + "node": "7.0", + "oculus": "3.0", + "opera": "41", + "opera-android": "41", + "opera_mobile": "41", + "quest": "3.0", + "safari": "14.0", + "samsung": "6.0" + }, + "es.typed-array.int16-array": { + "android": "54", + "bun": "0.1.1", + "chrome": "54", + "chrome-android": "54", + "deno": "1.0", + "edge": "15", + "electron": "1.4", + "firefox": "55", + "firefox-android": "55", + "ios": "14.0", + "node": "7.0", + "oculus": "3.0", + "opera": "41", + "opera-android": "41", + "opera_mobile": "41", + "quest": "3.0", + "safari": "14.0", + "samsung": "6.0" + }, + "es.typed-array.int32-array": { + "android": "54", + "bun": "0.1.1", + "chrome": "54", + "chrome-android": "54", + "deno": "1.0", + "edge": "15", + "electron": "1.4", + "firefox": "55", + "firefox-android": "55", + "ios": "14.0", + "node": "7.0", + "oculus": "3.0", + "opera": "41", + "opera-android": "41", + "opera_mobile": "41", + "quest": "3.0", + "safari": "14.0", + "samsung": "6.0" + }, + "es.typed-array.uint8-array": { + "android": "54", + "bun": "0.1.1", + "chrome": "54", + "chrome-android": "54", + "deno": "1.0", + "edge": "15", + "electron": "1.4", + "firefox": "55", + "firefox-android": "55", + "ios": "14.0", + "node": "7.0", + "oculus": "3.0", + "opera": "41", + "opera-android": "41", + "opera_mobile": "41", + "quest": "3.0", + "safari": "14.0", + "samsung": "6.0" + }, + "es.typed-array.uint8-clamped-array": { + "android": "54", + "bun": "0.1.1", + "chrome": "54", + "chrome-android": "54", + "deno": "1.0", + "edge": "15", + "electron": "1.4", + "firefox": "55", + "firefox-android": "55", + "ios": "14.0", + "node": "7.0", + "oculus": "3.0", + "opera": "41", + "opera-android": "41", + "opera_mobile": "41", + "quest": "3.0", + "safari": "14.0", + "samsung": "6.0" + }, + "es.typed-array.uint16-array": { + "android": "54", + "bun": "0.1.1", + "chrome": "54", + "chrome-android": "54", + "deno": "1.0", + "edge": "15", + "electron": "1.4", + "firefox": "55", + "firefox-android": "55", + "ios": "14.0", + "node": "7.0", + "oculus": "3.0", + "opera": "41", + "opera-android": "41", + "opera_mobile": "41", + "quest": "3.0", + "safari": "14.0", + "samsung": "6.0" + }, + "es.typed-array.uint32-array": { + "android": "54", + "bun": "0.1.1", + "chrome": "54", + "chrome-android": "54", + "deno": "1.0", + "edge": "15", + "electron": "1.4", + "firefox": "55", + "firefox-android": "55", + "ios": "14.0", + "node": "7.0", + "oculus": "3.0", + "opera": "41", + "opera-android": "41", + "opera_mobile": "41", + "quest": "3.0", + "safari": "14.0", + "samsung": "6.0" + }, + "es.typed-array.at": { + "android": "92", + "bun": "0.1.1", + "chrome": "92", + "chrome-android": "92", + "deno": "1.12", + "edge": "92", + "electron": "14.0", + "firefox": "90", + "firefox-android": "90", + "hermes": "0.13", + "ios": "15.4", + "node": "16.6", + "oculus": "17.0", + "opera": "78", + "opera-android": "65", + "opera_mobile": "65", + "quest": "17.0", + "react-native": "0.71", + "rhino": "1.7.15", + "safari": "15.4", + "samsung": "16.0" + }, + "es.typed-array.copy-within": { + "android": "45", + "bun": "0.1.1", + "chrome": "45", + "chrome-android": "45", + "deno": "1.0", + "edge": "13", + "electron": "0.31", + "firefox": "34", + "firefox-android": "34", + "hermes": "0.1", + "ios": "10.0", + "node": "4.0", + "oculus": "3.0", + "opera": "32", + "opera-android": "32", + "opera_mobile": "32", + "quest": "3.0", + "react-native": "0.69", + "safari": "10.0", + "samsung": "5.0" + }, + "es.typed-array.every": { + "android": "45", + "bun": "0.1.1", + "chrome": "45", + "chrome-android": "45", + "deno": "1.0", + "edge": "13", + "electron": "0.31", + "firefox": "37", + "firefox-android": "37", + "hermes": "0.1", + "ios": "10.0", + "node": "4.0", + "oculus": "3.0", + "opera": "32", + "opera-android": "32", + "opera_mobile": "32", + "quest": "3.0", + "react-native": "0.69", + "safari": "10.0", + "samsung": "5.0" + }, + "es.typed-array.fill": { + "android": "58", + "bun": "0.1.1", + "chrome": "58", + "chrome-android": "58", + "deno": "1.0", + "edge": "79", + "electron": "1.7", + "firefox": "55", + "firefox-android": "55", + "hermes": "0.1", + "ios": "14.5", + "node": "8.0", + "oculus": "4.0", + "opera": "45", + "opera-android": "43", + "opera_mobile": "43", + "quest": "4.0", + "react-native": "0.69", + "safari": "14.1", + "samsung": "7.0" + }, + "es.typed-array.filter": { + "android": "45", + "bun": "0.1.1", + "chrome": "45", + "chrome-android": "45", + "deno": "1.0", + "edge": "13", + "electron": "0.31", + "firefox": "38", + "firefox-android": "38", + "hermes": "0.1", + "ios": "10.0", + "node": "4.0", + "oculus": "3.0", + "opera": "32", + "opera-android": "32", + "opera_mobile": "32", + "quest": "3.0", + "react-native": "0.69", + "safari": "10.0", + "samsung": "5.0" + }, + "es.typed-array.find": { + "android": "45", + "bun": "0.1.1", + "chrome": "45", + "chrome-android": "45", + "deno": "1.0", + "edge": "13", + "electron": "0.31", + "firefox": "37", + "firefox-android": "37", + "hermes": "0.1", + "ios": "10.0", + "node": "4.0", + "oculus": "3.0", + "opera": "32", + "opera-android": "32", + "opera_mobile": "32", + "quest": "3.0", + "react-native": "0.69", + "safari": "10.0", + "samsung": "5.0" + }, + "es.typed-array.find-index": { + "android": "45", + "bun": "0.1.1", + "chrome": "45", + "chrome-android": "45", + "deno": "1.0", + "edge": "13", + "electron": "0.31", + "firefox": "37", + "firefox-android": "37", + "hermes": "0.1", + "ios": "10.0", + "node": "4.0", + "oculus": "3.0", + "opera": "32", + "opera-android": "32", + "opera_mobile": "32", + "quest": "3.0", + "react-native": "0.69", + "safari": "10.0", + "samsung": "5.0" + }, + "es.typed-array.find-last": { + "android": "97", + "bun": "0.1.1", + "chrome": "97", + "chrome-android": "97", + "deno": "1.16", + "edge": "97", + "electron": "17.0", + "firefox": "104", + "firefox-android": "104", + "hermes": "0.11", + "ios": "15.4", + "node": "18.0", + "oculus": "20.0", + "opera": "83", + "opera-android": "68", + "opera_mobile": "68", + "quest": "20.0", + "react-native": "0.69", + "rhino": "1.8.0", + "safari": "15.4", + "samsung": "18.0" + }, + "es.typed-array.find-last-index": { + "android": "97", + "bun": "0.1.1", + "chrome": "97", + "chrome-android": "97", + "deno": "1.16", + "edge": "97", + "electron": "17.0", + "firefox": "104", + "firefox-android": "104", + "hermes": "0.11", + "ios": "15.4", + "node": "18.0", + "oculus": "20.0", + "opera": "83", + "opera-android": "68", + "opera_mobile": "68", + "quest": "20.0", + "react-native": "0.69", + "rhino": "1.8.0", + "safari": "15.4", + "samsung": "18.0" + }, + "es.typed-array.for-each": { + "android": "45", + "bun": "0.1.1", + "chrome": "45", + "chrome-android": "45", + "deno": "1.0", + "edge": "13", + "electron": "0.31", + "firefox": "38", + "firefox-android": "38", + "hermes": "0.1", + "ios": "10.0", + "node": "4.0", + "oculus": "3.0", + "opera": "32", + "opera-android": "32", + "opera_mobile": "32", + "quest": "3.0", + "react-native": "0.69", + "safari": "10.0", + "samsung": "5.0" + }, + "es.typed-array.from": { + "android": "54", + "bun": "0.1.1", + "chrome": "54", + "chrome-android": "54", + "deno": "1.0", + "edge": "15", + "electron": "1.4", + "firefox": "55", + "firefox-android": "55", + "ios": "14.0", + "node": "7.0", + "oculus": "3.0", + "opera": "41", + "opera-android": "41", + "opera_mobile": "41", + "quest": "3.0", + "safari": "14.0", + "samsung": "6.0" + }, + "es.typed-array.includes": { + "android": "49", + "bun": "0.1.1", + "chrome": "49", + "chrome-android": "49", + "deno": "1.0", + "edge": "14", + "electron": "0.37", + "firefox": "43", + "firefox-android": "43", + "hermes": "0.1", + "ios": "10.0", + "node": "6.0", + "oculus": "3.0", + "opera": "36", + "opera-android": "36", + "opera_mobile": "36", + "quest": "3.0", + "react-native": "0.69", + "safari": "10.0", + "samsung": "5.0" + }, + "es.typed-array.index-of": { + "android": "45", + "bun": "0.1.1", + "chrome": "45", + "chrome-android": "45", + "deno": "1.0", + "edge": "13", + "electron": "0.31", + "firefox": "37", + "firefox-android": "37", + "hermes": "0.1", + "ios": "10.0", + "node": "4.0", + "oculus": "3.0", + "opera": "32", + "opera-android": "32", + "opera_mobile": "32", + "quest": "3.0", + "react-native": "0.69", + "safari": "10.0", + "samsung": "5.0" + }, + "es.typed-array.iterator": { + "android": "51", + "bun": "0.1.1", + "chrome": "51", + "chrome-android": "51", + "deno": "1.0", + "edge": "13", + "electron": "1.2", + "firefox": "37", + "firefox-android": "37", + "hermes": "0.1", + "ios": "10.0", + "node": "6.5", + "oculus": "3.0", + "opera": "38", + "opera-android": "38", + "opera_mobile": "38", + "quest": "3.0", + "react-native": "0.69", + "safari": "10.0", + "samsung": "5.0" + }, + "es.typed-array.join": { + "android": "45", + "bun": "0.1.1", + "chrome": "45", + "chrome-android": "45", + "deno": "1.0", + "edge": "13", + "electron": "0.31", + "firefox": "37", + "firefox-android": "37", + "hermes": "0.1", + "ios": "10.0", + "node": "4.0", + "oculus": "3.0", + "opera": "32", + "opera-android": "32", + "opera_mobile": "32", + "quest": "3.0", + "react-native": "0.69", + "safari": "10.0", + "samsung": "5.0" + }, + "es.typed-array.last-index-of": { + "android": "45", + "bun": "0.1.1", + "chrome": "45", + "chrome-android": "45", + "deno": "1.0", + "edge": "13", + "electron": "0.31", + "firefox": "37", + "firefox-android": "37", + "hermes": "0.1", + "ios": "10.0", + "node": "4.0", + "oculus": "3.0", + "opera": "32", + "opera-android": "32", + "opera_mobile": "32", + "quest": "3.0", + "react-native": "0.69", + "safari": "10.0", + "samsung": "5.0" + }, + "es.typed-array.map": { + "android": "45", + "bun": "0.1.1", + "chrome": "45", + "chrome-android": "45", + "deno": "1.0", + "edge": "13", + "electron": "0.31", + "firefox": "38", + "firefox-android": "38", + "hermes": "0.1", + "ios": "10.0", + "node": "4.0", + "oculus": "3.0", + "opera": "32", + "opera-android": "32", + "opera_mobile": "32", + "quest": "3.0", + "react-native": "0.69", + "safari": "10.0", + "samsung": "5.0" + }, + "es.typed-array.of": { + "android": "54", + "bun": "0.1.1", + "chrome": "54", + "chrome-android": "54", + "deno": "1.0", + "edge": "15", + "electron": "1.4", + "firefox": "55", + "firefox-android": "55", + "ios": "14.0", + "node": "7.0", + "oculus": "3.0", + "opera": "41", + "opera-android": "41", + "opera_mobile": "41", + "quest": "3.0", + "safari": "14.0", + "samsung": "6.0" + }, + "es.typed-array.reduce": { + "android": "45", + "bun": "0.1.1", + "chrome": "45", + "chrome-android": "45", + "deno": "1.0", + "edge": "13", + "electron": "0.31", + "firefox": "37", + "firefox-android": "37", + "hermes": "0.1", + "ios": "10.0", + "node": "4.0", + "oculus": "3.0", + "opera": "32", + "opera-android": "32", + "opera_mobile": "32", + "quest": "3.0", + "react-native": "0.69", + "safari": "10.0", + "samsung": "5.0" + }, + "es.typed-array.reduce-right": { + "android": "45", + "bun": "0.1.1", + "chrome": "45", + "chrome-android": "45", + "deno": "1.0", + "edge": "13", + "electron": "0.31", + "firefox": "37", + "firefox-android": "37", + "hermes": "0.1", + "ios": "10.0", + "node": "4.0", + "oculus": "3.0", + "opera": "32", + "opera-android": "32", + "opera_mobile": "32", + "quest": "3.0", + "react-native": "0.69", + "safari": "10.0", + "samsung": "5.0" + }, + "es.typed-array.reverse": { + "android": "45", + "bun": "0.1.1", + "chrome": "45", + "chrome-android": "45", + "deno": "1.0", + "edge": "13", + "electron": "0.31", + "firefox": "37", + "firefox-android": "37", + "hermes": "0.1", + "ios": "10.0", + "node": "4.0", + "oculus": "3.0", + "opera": "32", + "opera-android": "32", + "opera_mobile": "32", + "quest": "3.0", + "react-native": "0.69", + "safari": "10.0", + "samsung": "5.0" + }, + "es.typed-array.set": { + "android": "95", + "bun": "0.1.1", + "chrome": "95", + "chrome-android": "95", + "deno": "1.15", + "edge": "95", + "electron": "16.0", + "firefox": "54", + "firefox-android": "54", + "hermes": "0.1", + "ios": "14.5", + "node": "17.0", + "oculus": "18.0", + "opera": "81", + "opera-android": "67", + "opera_mobile": "67", + "quest": "18.0", + "react-native": "0.69", + "safari": "14.1", + "samsung": "17.0" + }, + "es.typed-array.slice": { + "android": "45", + "bun": "0.1.1", + "chrome": "45", + "chrome-android": "45", + "deno": "1.0", + "edge": "13", + "electron": "0.31", + "firefox": "38", + "firefox-android": "38", + "hermes": "0.1", + "ios": "10.0", + "node": "4.0", + "oculus": "3.0", + "opera": "32", + "opera-android": "32", + "opera_mobile": "32", + "quest": "3.0", + "react-native": "0.69", + "safari": "10.0", + "samsung": "5.0" + }, + "es.typed-array.some": { + "android": "45", + "bun": "0.1.1", + "chrome": "45", + "chrome-android": "45", + "deno": "1.0", + "edge": "13", + "electron": "0.31", + "firefox": "37", + "firefox-android": "37", + "hermes": "0.1", + "ios": "10.0", + "node": "4.0", + "oculus": "3.0", + "opera": "32", + "opera-android": "32", + "opera_mobile": "32", + "quest": "3.0", + "react-native": "0.69", + "safari": "10.0", + "samsung": "5.0" + }, + "es.typed-array.sort": { + "android": "74", + "bun": "0.1.1", + "chrome": "74", + "chrome-android": "74", + "deno": "1.0", + "edge": "79", + "electron": "6.0", + "firefox": "67", + "firefox-android": "67", + "hermes": "0.10", + "ios": "14.5", + "node": "12.0", + "oculus": "6.0", + "opera": "61", + "opera-android": "53", + "opera_mobile": "53", + "quest": "6.0", + "react-native": "0.69", + "safari": "14.1", + "samsung": "11.0" + }, + "es.typed-array.subarray": { + "android": "4.4", + "bun": "0.1.1", + "chrome": "26", + "chrome-android": "26", + "deno": "1.0", + "edge": "13", + "electron": "0.20", + "firefox": "15", + "firefox-android": "15", + "hermes": "0.1", + "ios": "8.0", + "node": "0.11.0", + "oculus": "3.0", + "opera": "15", + "opera-android": "15", + "opera_mobile": "15", + "quest": "3.0", + "react-native": "0.69", + "safari": "7.1", + "samsung": "1.5" + }, + "es.typed-array.to-locale-string": { + "android": "45", + "bun": "0.1.1", + "chrome": "45", + "chrome-android": "45", + "deno": "1.0", + "edge": "79", + "electron": "0.31", + "firefox": "51", + "firefox-android": "51", + "hermes": "0.1", + "ios": "10.0", + "node": "4.0", + "oculus": "3.0", + "opera": "32", + "opera-android": "32", + "opera_mobile": "32", + "quest": "3.0", + "react-native": "0.69", + "safari": "10.0", + "samsung": "5.0" + }, + "es.typed-array.to-reversed": { + "android": "110", + "bun": "0.1.1", + "chrome": "110", + "chrome-android": "110", + "deno": "1.27", + "edge": "110", + "electron": "23.0", + "firefox": "115", + "firefox-android": "115", + "ios": "16.0", + "node": "20.0", + "oculus": "26.0", + "opera": "96", + "opera-android": "74", + "opera_mobile": "74", + "quest": "26.0", + "rhino": "1.8.0", + "safari": "16.0", + "samsung": "21.0" + }, + "es.typed-array.to-sorted": { + "android": "110", + "bun": "0.1.1", + "chrome": "110", + "chrome-android": "110", + "deno": "1.27", + "edge": "110", + "electron": "23.0", + "firefox": "115", + "firefox-android": "115", + "ios": "16.0", + "node": "20.0", + "oculus": "26.0", + "opera": "96", + "opera-android": "74", + "opera_mobile": "74", + "quest": "26.0", + "rhino": "1.8.0", + "safari": "16.0", + "samsung": "21.0" + }, + "es.typed-array.to-string": { + "android": "51", + "bun": "0.1.1", + "chrome": "51", + "chrome-android": "51", + "deno": "1.0", + "edge": "13", + "electron": "1.2", + "firefox": "51", + "firefox-android": "51", + "hermes": "0.1", + "ios": "10.0", + "node": "6.5", + "oculus": "3.0", + "opera": "38", + "opera-android": "38", + "opera_mobile": "38", + "quest": "3.0", + "react-native": "0.69", + "safari": "10.0", + "samsung": "5.0" + }, + "es.typed-array.with": { + "android": "110", + "bun": "1.2.18", + "chrome": "110", + "chrome-android": "110", + "deno": "1.27", + "edge": "110", + "electron": "23.0", + "firefox": "115", + "firefox-android": "115", + "ios": "26.0", + "node": "20.0", + "oculus": "26.0", + "opera": "96", + "opera-android": "74", + "opera_mobile": "74", + "quest": "26.0", + "rhino": "1.8.0", + "safari": "26.0", + "samsung": "21.0" + }, + "es.uint8-array.from-base64": { + "android": "140", + "bun": "1.2.20", + "chrome": "140", + "chrome-android": "140", + "edge": "140", + "electron": "38.0", + "firefox": "133", + "firefox-android": "133", + "opera": "125" + }, + "es.uint8-array.from-hex": { + "android": "140", + "bun": "1.1.22", + "chrome": "140", + "chrome-android": "140", + "edge": "140", + "electron": "38.0", + "firefox": "133", + "firefox-android": "133", + "ios": "18.2", + "opera": "125", + "safari": "18.2" + }, + "es.uint8-array.set-from-base64": { + "android": "140", + "bun": "1.2.20", + "chrome": "140", + "chrome-android": "140", + "edge": "140", + "electron": "38.0", + "firefox": "133", + "firefox-android": "133", + "opera": "125" + }, + "es.uint8-array.set-from-hex": { + "android": "140", + "bun": "1.1.22", + "chrome": "140", + "chrome-android": "140", + "edge": "140", + "electron": "38.0", + "firefox": "133", + "firefox-android": "133", + "ios": "18.2", + "opera": "125", + "safari": "18.2" + }, + "es.uint8-array.to-base64": { + "android": "140", + "bun": "1.1.22", + "chrome": "140", + "chrome-android": "140", + "edge": "140", + "electron": "38.0", + "firefox": "133", + "firefox-android": "133", + "ios": "18.2", + "opera": "125", + "safari": "18.2" + }, + "es.uint8-array.to-hex": { + "android": "140", + "bun": "1.1.22", + "chrome": "140", + "chrome-android": "140", + "edge": "140", + "electron": "38.0", + "firefox": "133", + "firefox-android": "133", + "ios": "18.2", + "opera": "125", + "safari": "18.2" + }, + "es.unescape": { + "android": "3.0", + "bun": "0.1.1", + "chrome": "1", + "chrome-android": "18", + "deno": "1.0", + "edge": "12", + "electron": "0.20", + "firefox": "1", + "firefox-android": "4", + "hermes": "0.1", + "ie": "3", + "ios": "1.0", + "node": "0.0.3", + "oculus": "3.0", + "opera": "3", + "opera-android": "3", + "opera_mobile": "3", + "phantom": "1.9", + "quest": "3.0", + "react-native": "0.69", + "rhino": "1.7.13", + "safari": "1", + "samsung": "1.0" + }, + "es.weak-map": { + "android": "51", + "bun": "0.1.1", + "chrome": "51", + "chrome-android": "51", + "deno": "1.0", + "edge": "79", + "electron": "1.2", + "firefox": "53", + "firefox-android": "53", + "hermes": "0.13", + "ios": "10.0", + "node": "6.5", + "oculus": "3.0", + "opera": "38", + "opera-android": "38", + "opera_mobile": "38", + "quest": "3.0", + "react-native": "0.73", + "rhino": "1.7.13", + "safari": "10.0", + "samsung": "5.0" + }, + "es.weak-set": { + "android": "51", + "bun": "0.1.1", + "chrome": "51", + "chrome-android": "51", + "deno": "1.0", + "edge": "15", + "electron": "1.2", + "firefox": "53", + "firefox-android": "53", + "hermes": "0.13", + "ios": "10.0", + "node": "6.5", + "oculus": "3.0", + "opera": "38", + "opera-android": "38", + "opera_mobile": "38", + "quest": "3.0", + "react-native": "0.73", + "rhino": "1.7.13", + "safari": "10.0", + "samsung": "5.0" + }, + "esnext.aggregate-error": { + "android": "85", + "bun": "0.1.1", + "chrome": "85", + "chrome-android": "85", + "deno": "1.2", + "edge": "85", + "electron": "10.0", + "firefox": "79", + "firefox-android": "79", + "hermes": "0.13", + "ios": "14.0", + "node": "15.0", + "oculus": "12.0", + "opera": "71", + "opera-android": "60", + "opera_mobile": "60", + "quest": "12.0", + "react-native": "0.72", + "rhino": "1.8.0", + "safari": "14.0", + "samsung": "14.0" + }, + "esnext.suppressed-error.constructor": { + "android": "136", + "bun": "1.2.15", + "chrome": "136", + "chrome-android": "136", + "deno": "2.2.10", + "edge": "136", + "electron": "36.0", + "firefox": "141", + "firefox-android": "141", + "node": "24.0", + "oculus": "39.0", + "opera": "121", + "opera-android": "90", + "opera_mobile": "90", + "quest": "39.0", + "samsung": "29.0" + }, + "esnext.array.from-async": { + "android": "121", + "bun": "1.1.2", + "chrome": "121", + "chrome-android": "121", + "deno": "1.38", + "edge": "121", + "electron": "29.0", + "firefox": "115", + "firefox-android": "115", + "ios": "18.0", + "node": "22.0", + "oculus": "32.0", + "opera": "107", + "opera-android": "81", + "opera_mobile": "81", + "quest": "32.0", + "safari": "18.0", + "samsung": "25.0" + }, + "esnext.array.at": { + "android": "92", + "bun": "0.1.1", + "chrome": "92", + "chrome-android": "92", + "deno": "1.12", + "edge": "92", + "electron": "14.0", + "firefox": "90", + "firefox-android": "90", + "hermes": "0.13", + "ios": "15.4", + "node": "16.6", + "oculus": "17.0", + "opera": "78", + "opera-android": "65", + "opera_mobile": "65", + "quest": "17.0", + "react-native": "0.71", + "rhino": "1.7.15", + "safari": "15.4", + "samsung": "16.0" + }, + "esnext.array.filter-out": {}, + "esnext.array.filter-reject": {}, + "esnext.array.find-last": { + "android": "97", + "bun": "0.1.1", + "chrome": "97", + "chrome-android": "97", + "deno": "1.16", + "edge": "97", + "electron": "17.0", + "firefox": "104", + "firefox-android": "104", + "hermes": "0.11", + "ios": "15.4", + "node": "18.0", + "oculus": "20.0", + "opera": "83", + "opera-android": "68", + "opera_mobile": "68", + "quest": "20.0", + "react-native": "0.69", + "rhino": "1.8.0", + "safari": "15.4", + "samsung": "18.0" + }, + "esnext.array.find-last-index": { + "android": "97", + "bun": "0.1.1", + "chrome": "97", + "chrome-android": "97", + "deno": "1.16", + "edge": "97", + "electron": "17.0", + "firefox": "104", + "firefox-android": "104", + "hermes": "0.11", + "ios": "15.4", + "node": "18.0", + "oculus": "20.0", + "opera": "83", + "opera-android": "68", + "opera_mobile": "68", + "quest": "20.0", + "react-native": "0.69", + "rhino": "1.8.0", + "safari": "15.4", + "samsung": "18.0" + }, + "esnext.array.group": {}, + "esnext.array.group-by": {}, + "esnext.array.group-by-to-map": {}, + "esnext.array.group-to-map": {}, + "esnext.array.is-template-object": {}, + "esnext.array.last-index": {}, + "esnext.array.last-item": {}, + "esnext.array.to-reversed": { + "android": "110", + "bun": "0.1.1", + "chrome": "110", + "chrome-android": "110", + "deno": "1.27", + "edge": "110", + "electron": "23.0", + "firefox": "115", + "firefox-android": "115", + "hermes": "0.13", + "ios": "16.0", + "node": "20.0", + "oculus": "26.0", + "opera": "96", + "opera-android": "74", + "opera_mobile": "74", + "quest": "26.0", + "react-native": "0.74", + "rhino": "1.8.0", + "safari": "16.0", + "samsung": "21.0" + }, + "esnext.array.to-sorted": { + "android": "110", + "bun": "0.1.1", + "chrome": "110", + "chrome-android": "110", + "deno": "1.27", + "edge": "110", + "electron": "23.0", + "firefox": "115", + "firefox-android": "115", + "ios": "16.0", + "node": "20.0", + "oculus": "26.0", + "opera": "96", + "opera-android": "74", + "opera_mobile": "74", + "quest": "26.0", + "rhino": "1.8.0", + "safari": "16.0", + "samsung": "21.0" + }, + "esnext.array.to-spliced": { + "android": "110", + "bun": "0.1.1", + "chrome": "110", + "chrome-android": "110", + "deno": "1.27", + "edge": "110", + "electron": "23.0", + "firefox": "115", + "firefox-android": "115", + "hermes": "0.13", + "ios": "16.0", + "node": "20.0", + "oculus": "26.0", + "opera": "96", + "opera-android": "74", + "opera_mobile": "74", + "quest": "26.0", + "react-native": "0.74", + "rhino": "1.8.0", + "safari": "16.0", + "samsung": "21.0" + }, + "esnext.array.unique-by": {}, + "esnext.array.with": { + "android": "110", + "bun": "0.1.1", + "chrome": "110", + "chrome-android": "110", + "deno": "1.27", + "edge": "110", + "electron": "23.0", + "firefox": "140", + "firefox-android": "140", + "hermes": "0.13", + "ios": "16.0", + "node": "20.0", + "oculus": "26.0", + "opera": "96", + "opera-android": "74", + "opera_mobile": "74", + "quest": "26.0", + "react-native": "0.74", + "rhino": "1.8.0", + "safari": "16.0", + "samsung": "21.0" + }, + "esnext.array-buffer.detached": { + "android": "114", + "bun": "1.0.19", + "chrome": "114", + "chrome-android": "114", + "deno": "1.33", + "edge": "114", + "electron": "25.0", + "firefox": "122", + "firefox-android": "122", + "ios": "17.4", + "node": "21.0", + "oculus": "28.0", + "opera": "100", + "opera-android": "76", + "opera_mobile": "76", + "quest": "28.0", + "safari": "17.4", + "samsung": "23.0" + }, + "esnext.array-buffer.transfer": { + "android": "114", + "bun": "1.0.19", + "chrome": "114", + "chrome-android": "114", + "deno": "1.33", + "edge": "114", + "electron": "25.0", + "firefox": "122", + "firefox-android": "122", + "ios": "17.4", + "node": "21.0", + "oculus": "28.0", + "opera": "100", + "opera-android": "76", + "opera_mobile": "76", + "quest": "28.0", + "safari": "17.4", + "samsung": "23.0" + }, + "esnext.array-buffer.transfer-to-fixed-length": { + "android": "114", + "bun": "1.0.19", + "chrome": "114", + "chrome-android": "114", + "deno": "1.33", + "edge": "114", + "electron": "25.0", + "firefox": "122", + "firefox-android": "122", + "ios": "17.4", + "node": "21.0", + "oculus": "28.0", + "opera": "100", + "opera-android": "76", + "opera_mobile": "76", + "quest": "28.0", + "safari": "17.4", + "samsung": "23.0" + }, + "esnext.async-disposable-stack.constructor": { + "android": "136", + "chrome": "136", + "chrome-android": "136", + "deno": "2.3.2", + "edge": "136", + "electron": "36.0", + "firefox": "141", + "firefox-android": "141", + "node": "24.0", + "oculus": "39.0", + "opera": "121", + "opera-android": "90", + "opera_mobile": "90", + "quest": "39.0", + "samsung": "29.0" + }, + "esnext.async-iterator.constructor": {}, + "esnext.async-iterator.as-indexed-pairs": {}, + "esnext.async-iterator.async-dispose": {}, + "esnext.async-iterator.drop": {}, + "esnext.async-iterator.every": {}, + "esnext.async-iterator.filter": {}, + "esnext.async-iterator.find": {}, + "esnext.async-iterator.flat-map": {}, + "esnext.async-iterator.for-each": {}, + "esnext.async-iterator.from": {}, + "esnext.async-iterator.indexed": {}, + "esnext.async-iterator.map": {}, + "esnext.async-iterator.reduce": {}, + "esnext.async-iterator.some": {}, + "esnext.async-iterator.take": {}, + "esnext.async-iterator.to-array": {}, + "esnext.bigint.range": {}, + "esnext.composite-key": {}, + "esnext.composite-symbol": {}, + "esnext.data-view.get-float16": { + "android": "135", + "bun": "1.1.23", + "chrome": "135", + "chrome-android": "135", + "deno": "1.43", + "edge": "135", + "electron": "36.0", + "firefox": "129", + "firefox-android": "129", + "ios": "18.2", + "node": "24.0", + "oculus": "39.0", + "opera": "120", + "opera-android": "89", + "opera_mobile": "89", + "quest": "39.0", + "safari": "18.2", + "samsung": "29.0" + }, + "esnext.data-view.get-uint8-clamped": {}, + "esnext.data-view.set-float16": { + "android": "135", + "bun": "1.1.23", + "chrome": "135", + "chrome-android": "135", + "deno": "1.43", + "edge": "135", + "electron": "36.0", + "firefox": "129", + "firefox-android": "129", + "ios": "18.2", + "node": "24.0", + "oculus": "39.0", + "opera": "120", + "opera-android": "89", + "opera_mobile": "89", + "quest": "39.0", + "safari": "18.2", + "samsung": "29.0" + }, + "esnext.data-view.set-uint8-clamped": {}, + "esnext.disposable-stack.constructor": { + "android": "136", + "chrome": "136", + "chrome-android": "136", + "deno": "2.2.10", + "edge": "136", + "electron": "36.0", + "firefox": "141", + "firefox-android": "141", + "node": "24.0", + "oculus": "39.0", + "opera": "121", + "opera-android": "90", + "opera_mobile": "90", + "quest": "39.0", + "samsung": "29.0" + }, + "esnext.error.is-error": { + "android": "134", + "chrome": "134", + "chrome-android": "134", + "deno": "2.2", + "edge": "134", + "electron": "35.0", + "firefox": "138", + "firefox-android": "138", + "node": "24.3", + "oculus": "38.0", + "opera": "119", + "opera-android": "88", + "opera_mobile": "88", + "quest": "38.0", + "samsung": "29.0" + }, + "esnext.function.demethodize": {}, + "esnext.function.is-callable": {}, + "esnext.function.is-constructor": {}, + "esnext.function.metadata": {}, + "esnext.function.un-this": {}, + "esnext.global-this": { + "android": "71", + "bun": "0.1.1", + "chrome": "71", + "chrome-android": "71", + "deno": "1.0", + "edge": "79", + "electron": "5.0", + "firefox": "65", + "firefox-android": "65", + "hermes": "0.2", + "ios": "12.2", + "node": "12.0", + "oculus": "6.0", + "opera": "58", + "opera-android": "50", + "opera_mobile": "50", + "quest": "6.0", + "react-native": "0.69", + "rhino": "1.7.14", + "safari": "12.1", + "samsung": "10.0" + }, + "esnext.iterator.constructor": { + "android": "122", + "bun": "1.1.31", + "chrome": "122", + "chrome-android": "122", + "deno": "1.38.1", + "edge": "122", + "electron": "29.0", + "firefox": "131", + "firefox-android": "131", + "ios": "18.4", + "node": "22.0", + "oculus": "32.0", + "opera": "108", + "opera-android": "81", + "opera_mobile": "81", + "quest": "32.0", + "safari": "18.4", + "samsung": "26.0" + }, + "esnext.iterator.as-indexed-pairs": {}, + "esnext.iterator.chunks": {}, + "esnext.iterator.concat": {}, + "esnext.iterator.dispose": { + "android": "136", + "chrome": "136", + "chrome-android": "136", + "deno": "2.2.10", + "edge": "136", + "electron": "36.0", + "firefox": "135", + "firefox-android": "135", + "node": "24.0", + "oculus": "39.0", + "opera": "121", + "opera-android": "90", + "opera_mobile": "90", + "quest": "39.0", + "samsung": "29.0" + }, + "esnext.iterator.drop": { + "android": "135", + "bun": "1.2.11", + "chrome": "135", + "chrome-android": "135", + "deno": "2.2.5", + "edge": "135", + "electron": "36.0", + "firefox": "141", + "firefox-android": "141", + "ios": "26.0", + "node": "24.0", + "oculus": "39.0", + "opera": "120", + "opera-android": "89", + "opera_mobile": "89", + "quest": "39.0", + "safari": "26.0", + "samsung": "29.0" + }, + "esnext.iterator.every": { + "android": "135", + "bun": "1.2.4", + "chrome": "135", + "chrome-android": "135", + "deno": "2.2.5", + "edge": "135", + "electron": "36.0", + "firefox": "141", + "firefox-android": "141", + "ios": "26.0", + "node": "24.0", + "oculus": "39.0", + "opera": "120", + "opera-android": "89", + "opera_mobile": "89", + "quest": "39.0", + "safari": "26.0", + "samsung": "29.0" + }, + "esnext.iterator.filter": { + "android": "135", + "bun": "1.2.4", + "chrome": "135", + "chrome-android": "135", + "deno": "2.2.5", + "edge": "135", + "electron": "36.0", + "firefox": "141", + "firefox-android": "141", + "ios": "26.0", + "node": "24.0", + "oculus": "39.0", + "opera": "120", + "opera-android": "89", + "opera_mobile": "89", + "quest": "39.0", + "safari": "26.0", + "samsung": "29.0" + }, + "esnext.iterator.find": { + "android": "135", + "bun": "1.2.4", + "chrome": "135", + "chrome-android": "135", + "deno": "2.2.5", + "edge": "135", + "electron": "36.0", + "firefox": "141", + "firefox-android": "141", + "ios": "26.0", + "node": "24.0", + "oculus": "39.0", + "opera": "120", + "opera-android": "89", + "opera_mobile": "89", + "quest": "39.0", + "safari": "26.0", + "samsung": "29.0" + }, + "esnext.iterator.flat-map": { + "android": "135", + "bun": "1.2.4", + "chrome": "135", + "chrome-android": "135", + "deno": "2.2.5", + "edge": "135", + "electron": "36.0", + "firefox": "141", + "firefox-android": "141", + "ios": "26.0", + "node": "24.0", + "oculus": "39.0", + "opera": "120", + "opera-android": "89", + "opera_mobile": "89", + "quest": "39.0", + "safari": "26.0", + "samsung": "29.0" + }, + "esnext.iterator.for-each": { + "android": "135", + "bun": "1.2.4", + "chrome": "135", + "chrome-android": "135", + "deno": "2.2.5", + "edge": "135", + "electron": "36.0", + "firefox": "141", + "firefox-android": "141", + "ios": "26.0", + "node": "24.0", + "oculus": "39.0", + "opera": "120", + "opera-android": "89", + "opera_mobile": "89", + "quest": "39.0", + "safari": "26.0", + "samsung": "29.0" + }, + "esnext.iterator.from": { + "android": "122", + "bun": "1.2.5", + "chrome": "122", + "chrome-android": "122", + "deno": "1.38.1", + "edge": "122", + "electron": "29.0", + "firefox": "131", + "firefox-android": "131", + "ios": "26.0", + "node": "22.0", + "oculus": "32.0", + "opera": "108", + "opera-android": "81", + "opera_mobile": "81", + "quest": "32.0", + "safari": "26.0", + "samsung": "26.0" + }, + "esnext.iterator.indexed": {}, + "esnext.iterator.map": { + "android": "135", + "bun": "1.2.4", + "chrome": "135", + "chrome-android": "135", + "deno": "2.2.5", + "edge": "135", + "electron": "36.0", + "firefox": "141", + "firefox-android": "141", + "ios": "26.0", + "node": "24.0", + "oculus": "39.0", + "opera": "120", + "opera-android": "89", + "opera_mobile": "89", + "quest": "39.0", + "safari": "26.0", + "samsung": "29.0" + }, + "esnext.iterator.range": {}, + "esnext.iterator.reduce": { + "android": "135", + "bun": "1.2.11", + "chrome": "135", + "chrome-android": "135", + "deno": "2.2.5", + "edge": "135", + "electron": "36.0", + "firefox": "141", + "firefox-android": "141", + "ios": "26.0", + "node": "24.0", + "oculus": "39.0", + "opera": "120", + "opera-android": "89", + "opera_mobile": "89", + "quest": "39.0", + "safari": "26.0", + "samsung": "29.0" + }, + "esnext.iterator.sliding": {}, + "esnext.iterator.some": { + "android": "135", + "bun": "1.2.4", + "chrome": "135", + "chrome-android": "135", + "deno": "2.2.5", + "edge": "135", + "electron": "36.0", + "firefox": "141", + "firefox-android": "141", + "ios": "26.0", + "node": "24.0", + "oculus": "39.0", + "opera": "120", + "opera-android": "89", + "opera_mobile": "89", + "quest": "39.0", + "safari": "26.0", + "samsung": "29.0" + }, + "esnext.iterator.take": { + "android": "135", + "bun": "1.2.11", + "chrome": "135", + "chrome-android": "135", + "deno": "2.2.5", + "edge": "135", + "electron": "36.0", + "firefox": "141", + "firefox-android": "141", + "ios": "26.0", + "node": "24.0", + "oculus": "39.0", + "opera": "120", + "opera-android": "89", + "opera_mobile": "89", + "quest": "39.0", + "safari": "26.0", + "samsung": "29.0" + }, + "esnext.iterator.to-array": { + "android": "122", + "bun": "1.1.31", + "chrome": "122", + "chrome-android": "122", + "deno": "1.38.1", + "edge": "122", + "electron": "29.0", + "firefox": "131", + "firefox-android": "131", + "ios": "18.4", + "node": "22.0", + "oculus": "32.0", + "opera": "108", + "opera-android": "81", + "opera_mobile": "81", + "quest": "32.0", + "safari": "18.4", + "samsung": "26.0" + }, + "esnext.iterator.to-async": {}, + "esnext.iterator.windows": {}, + "esnext.iterator.zip": {}, + "esnext.iterator.zip-keyed": {}, + "esnext.json.is-raw-json": { + "android": "114", + "bun": "1.1.43", + "chrome": "114", + "chrome-android": "114", + "deno": "1.33", + "edge": "114", + "electron": "25.0", + "firefox": "135", + "firefox-android": "135", + "ios": "18.4", + "node": "21.0", + "oculus": "28.0", + "opera": "100", + "opera-android": "76", + "opera_mobile": "76", + "quest": "28.0", + "safari": "18.4", + "samsung": "23.0" + }, + "esnext.json.parse": { + "android": "114", + "bun": "1.1.43", + "chrome": "114", + "chrome-android": "114", + "deno": "1.33", + "edge": "114", + "electron": "25.0", + "firefox": "135", + "firefox-android": "135", + "ios": "18.4", + "node": "21.0", + "oculus": "28.0", + "opera": "100", + "opera-android": "76", + "opera_mobile": "76", + "quest": "28.0", + "safari": "18.4", + "samsung": "23.0" + }, + "esnext.json.raw-json": { + "android": "114", + "bun": "1.1.43", + "chrome": "114", + "chrome-android": "114", + "deno": "1.33", + "edge": "114", + "electron": "25.0", + "firefox": "135", + "firefox-android": "135", + "ios": "18.4", + "node": "21.0", + "oculus": "28.0", + "opera": "100", + "opera-android": "76", + "opera_mobile": "76", + "quest": "28.0", + "safari": "18.4", + "samsung": "23.0" + }, + "esnext.map.delete-all": {}, + "esnext.map.emplace": {}, + "esnext.map.every": {}, + "esnext.map.filter": {}, + "esnext.map.find": {}, + "esnext.map.find-key": {}, + "esnext.map.from": {}, + "esnext.map.get-or-insert": { + "bun": "1.2.20" + }, + "esnext.map.get-or-insert-computed": { + "bun": "1.2.20" + }, + "esnext.map.group-by": { + "android": "117", + "bun": "1.1.2", + "chrome": "117", + "chrome-android": "117", + "deno": "1.37", + "edge": "117", + "electron": "27.0", + "firefox": "119", + "firefox-android": "119", + "ios": "18.0", + "node": "21.0", + "oculus": "30.0", + "opera": "103", + "opera-android": "78", + "opera_mobile": "78", + "quest": "30.0", + "rhino": "1.8.0", + "safari": "18.0", + "samsung": "24.0" + }, + "esnext.map.includes": {}, + "esnext.map.key-by": {}, + "esnext.map.key-of": {}, + "esnext.map.map-keys": {}, + "esnext.map.map-values": {}, + "esnext.map.merge": {}, + "esnext.map.of": {}, + "esnext.map.reduce": {}, + "esnext.map.some": {}, + "esnext.map.update": {}, + "esnext.map.update-or-insert": {}, + "esnext.map.upsert": {}, + "esnext.math.clamp": {}, + "esnext.math.deg-per-rad": {}, + "esnext.math.degrees": {}, + "esnext.math.fscale": {}, + "esnext.math.f16round": { + "android": "135", + "bun": "1.1.23", + "chrome": "135", + "chrome-android": "135", + "deno": "1.43", + "edge": "135", + "electron": "36.0", + "firefox": "129", + "firefox-android": "129", + "ios": "18.2", + "node": "24.0", + "oculus": "39.0", + "opera": "120", + "opera-android": "89", + "opera_mobile": "89", + "quest": "39.0", + "safari": "18.2", + "samsung": "29.0" + }, + "esnext.math.iaddh": {}, + "esnext.math.imulh": {}, + "esnext.math.isubh": {}, + "esnext.math.rad-per-deg": {}, + "esnext.math.radians": {}, + "esnext.math.scale": {}, + "esnext.math.seeded-prng": {}, + "esnext.math.signbit": {}, + "esnext.math.sum-precise": { + "bun": "1.2.18", + "firefox": "137", + "firefox-android": "137" + }, + "esnext.math.umulh": {}, + "esnext.number.clamp": {}, + "esnext.number.from-string": {}, + "esnext.number.range": {}, + "esnext.object.has-own": { + "android": "93", + "bun": "0.1.1", + "chrome": "93", + "chrome-android": "93", + "deno": "1.13", + "edge": "93", + "electron": "14.0", + "firefox": "92", + "firefox-android": "92", + "hermes": "0.10", + "ios": "15.4", + "node": "16.9", + "oculus": "17.0", + "opera": "79", + "opera-android": "66", + "opera_mobile": "66", + "quest": "17.0", + "react-native": "0.69", + "rhino": "1.7.15", + "safari": "15.4", + "samsung": "17.0" + }, + "esnext.object.iterate-entries": {}, + "esnext.object.iterate-keys": {}, + "esnext.object.iterate-values": {}, + "esnext.object.group-by": { + "android": "117", + "bun": "1.1.2", + "chrome": "117", + "chrome-android": "117", + "deno": "1.37", + "edge": "117", + "electron": "27.0", + "firefox": "119", + "firefox-android": "119", + "ios": "18.0", + "node": "21.0", + "oculus": "30.0", + "opera": "103", + "opera-android": "78", + "opera_mobile": "78", + "quest": "30.0", + "rhino": "1.8.0", + "safari": "18.0", + "samsung": "24.0" + }, + "esnext.observable": {}, + "esnext.promise.all-settled": { + "android": "76", + "bun": "0.1.1", + "chrome": "76", + "chrome-android": "76", + "deno": "1.24", + "edge": "79", + "electron": "6.0", + "firefox": "71", + "firefox-android": "71", + "ios": "13.0", + "node": "12.9", + "oculus": "7.0", + "opera": "63", + "opera-android": "54", + "opera_mobile": "54", + "quest": "7.0", + "rhino": "1.7.15", + "safari": "13", + "samsung": "12.0" + }, + "esnext.promise.any": { + "android": "85", + "bun": "0.1.1", + "chrome": "85", + "chrome-android": "85", + "deno": "1.24", + "edge": "85", + "electron": "10.0", + "firefox": "79", + "firefox-android": "79", + "ios": "14.0", + "node": "15.0", + "oculus": "12.0", + "opera": "71", + "opera-android": "60", + "opera_mobile": "60", + "quest": "12.0", + "rhino": "1.8.0", + "safari": "14.0", + "samsung": "14.0" + }, + "esnext.promise.try": { + "android": "128", + "bun": "1.1.22", + "chrome": "128", + "chrome-android": "128", + "deno": "1.46", + "edge": "128", + "electron": "32.0", + "firefox": "134", + "firefox-android": "134", + "ios": "18.2", + "node": "23.0", + "oculus": "35.0", + "opera": "114", + "opera-android": "85", + "opera_mobile": "85", + "quest": "35.0", + "safari": "18.2", + "samsung": "28.0" + }, + "esnext.promise.with-resolvers": { + "android": "119", + "bun": "0.7.1", + "chrome": "119", + "chrome-android": "119", + "deno": "1.38", + "edge": "119", + "electron": "28.0", + "firefox": "121", + "firefox-android": "121", + "ios": "17.4", + "node": "22.0", + "oculus": "31.0", + "opera": "105", + "opera-android": "79", + "opera_mobile": "79", + "quest": "31.0", + "safari": "17.4", + "samsung": "25.0" + }, + "esnext.reflect.define-metadata": {}, + "esnext.reflect.delete-metadata": {}, + "esnext.reflect.get-metadata": {}, + "esnext.reflect.get-metadata-keys": {}, + "esnext.reflect.get-own-metadata": {}, + "esnext.reflect.get-own-metadata-keys": {}, + "esnext.reflect.has-metadata": {}, + "esnext.reflect.has-own-metadata": {}, + "esnext.reflect.metadata": {}, + "esnext.regexp.escape": { + "android": "136", + "bun": "1.1.22", + "chrome": "136", + "chrome-android": "136", + "deno": "2.3.2", + "edge": "136", + "electron": "36.0", + "firefox": "134", + "firefox-android": "134", + "ios": "18.2", + "node": "24.0", + "oculus": "39.0", + "opera": "121", + "opera-android": "90", + "opera_mobile": "90", + "quest": "39.0", + "safari": "18.2", + "samsung": "29.0" + }, + "esnext.set.add-all": {}, + "esnext.set.delete-all": {}, + "esnext.set.difference.v2": { + "android": "128", + "bun": "1.2.5", + "chrome": "128", + "chrome-android": "128", + "deno": "1.46", + "edge": "128", + "electron": "32.0", + "firefox": "127", + "firefox-android": "127", + "ios": "26.0", + "node": "22.10", + "oculus": "35.0", + "opera": "114", + "opera-android": "85", + "opera_mobile": "85", + "quest": "35.0", + "safari": "26.0", + "samsung": "28.0" + }, + "esnext.set.difference": {}, + "esnext.set.every": {}, + "esnext.set.filter": {}, + "esnext.set.find": {}, + "esnext.set.from": {}, + "esnext.set.intersection.v2": { + "android": "128", + "bun": "1.1.1", + "chrome": "128", + "chrome-android": "128", + "deno": "1.46", + "edge": "128", + "electron": "32.0", + "firefox": "127", + "firefox-android": "127", + "ios": "18.0", + "node": "22.10", + "oculus": "35.0", + "opera": "114", + "opera-android": "85", + "opera_mobile": "85", + "quest": "35.0", + "safari": "18.0", + "samsung": "28.0" + }, + "esnext.set.intersection": {}, + "esnext.set.is-disjoint-from.v2": { + "android": "128", + "bun": "1.1.1", + "chrome": "128", + "chrome-android": "128", + "deno": "1.46", + "edge": "128", + "electron": "32.0", + "firefox": "127", + "firefox-android": "127", + "ios": "18.0", + "node": "22.10", + "oculus": "35.0", + "opera": "114", + "opera-android": "85", + "opera_mobile": "85", + "quest": "35.0", + "safari": "18.0", + "samsung": "28.0" + }, + "esnext.set.is-disjoint-from": {}, + "esnext.set.is-subset-of.v2": { + "android": "128", + "bun": "1.1.1", + "chrome": "128", + "chrome-android": "128", + "deno": "1.46", + "edge": "128", + "electron": "32.0", + "firefox": "127", + "firefox-android": "127", + "ios": "18.0", + "node": "22.10", + "oculus": "35.0", + "opera": "114", + "opera-android": "85", + "opera_mobile": "85", + "quest": "35.0", + "safari": "18.0", + "samsung": "28.0" + }, + "esnext.set.is-subset-of": {}, + "esnext.set.is-superset-of.v2": { + "android": "128", + "bun": "1.1.1", + "chrome": "128", + "chrome-android": "128", + "deno": "1.46", + "edge": "128", + "electron": "32.0", + "firefox": "127", + "firefox-android": "127", + "ios": "18.0", + "node": "22.10", + "oculus": "35.0", + "opera": "114", + "opera-android": "85", + "opera_mobile": "85", + "quest": "35.0", + "safari": "18.0", + "samsung": "28.0" + }, + "esnext.set.is-superset-of": {}, + "esnext.set.join": {}, + "esnext.set.map": {}, + "esnext.set.of": {}, + "esnext.set.reduce": {}, + "esnext.set.some": {}, + "esnext.set.symmetric-difference.v2": { + "android": "123", + "bun": "1.2.5", + "chrome": "123", + "chrome-android": "123", + "deno": "1.41.3", + "edge": "123", + "electron": "30.0", + "firefox": "127", + "firefox-android": "127", + "ios": "26.0", + "node": "22.0", + "oculus": "33.0", + "opera": "109", + "opera-android": "82", + "opera_mobile": "82", + "quest": "33.0", + "safari": "26.0", + "samsung": "27.0" + }, + "esnext.set.symmetric-difference": {}, + "esnext.set.union.v2": { + "android": "123", + "bun": "1.2.5", + "chrome": "123", + "chrome-android": "123", + "deno": "1.41.3", + "edge": "123", + "electron": "30.0", + "firefox": "127", + "firefox-android": "127", + "ios": "26.0", + "node": "22.0", + "oculus": "33.0", + "opera": "109", + "opera-android": "82", + "opera_mobile": "82", + "quest": "33.0", + "safari": "26.0", + "samsung": "27.0" + }, + "esnext.set.union": {}, + "esnext.string.at": {}, + "esnext.string.cooked": {}, + "esnext.string.code-points": {}, + "esnext.string.dedent": {}, + "esnext.string.is-well-formed": { + "android": "111", + "bun": "0.4.0", + "chrome": "111", + "chrome-android": "111", + "deno": "1.32", + "edge": "111", + "electron": "24.0", + "firefox": "119", + "firefox-android": "119", + "ios": "16.4", + "node": "20.0", + "oculus": "27.0", + "opera": "97", + "opera-android": "75", + "opera_mobile": "75", + "quest": "27.0", + "rhino": "1.8.0", + "safari": "16.4", + "samsung": "22.0" + }, + "esnext.string.match-all": { + "android": "80", + "bun": "0.1.1", + "chrome": "80", + "chrome-android": "80", + "deno": "1.0", + "edge": "80", + "electron": "8.0", + "firefox": "73", + "firefox-android": "73", + "hermes": "0.6", + "ios": "13.4", + "node": "14.0", + "oculus": "9.0", + "opera": "67", + "opera-android": "57", + "opera_mobile": "57", + "quest": "9.0", + "react-native": "0.69", + "rhino": "1.8.0", + "safari": "13.1", + "samsung": "13.0" + }, + "esnext.string.replace-all": { + "android": "85", + "bun": "0.1.1", + "chrome": "85", + "chrome-android": "85", + "deno": "1.2", + "edge": "85", + "electron": "10.0", + "firefox": "77", + "firefox-android": "77", + "hermes": "0.7", + "ios": "13.4", + "node": "15.0", + "oculus": "12.0", + "opera": "71", + "opera-android": "60", + "opera_mobile": "60", + "quest": "12.0", + "react-native": "0.69", + "rhino": "1.7.15", + "safari": "13.1", + "samsung": "14.0" + }, + "esnext.string.to-well-formed": { + "android": "111", + "bun": "0.5.7", + "chrome": "111", + "chrome-android": "111", + "deno": "1.32", + "edge": "111", + "electron": "24.0", + "firefox": "119", + "firefox-android": "119", + "ios": "16.4", + "node": "20.0", + "oculus": "27.0", + "opera": "97", + "opera-android": "75", + "opera_mobile": "75", + "quest": "27.0", + "rhino": "1.8.0", + "safari": "16.4", + "samsung": "22.0" + }, + "esnext.symbol.async-dispose": { + "android": "127", + "bun": "1.0.23", + "chrome": "127", + "chrome-android": "127", + "deno": "1.38", + "edge": "127", + "electron": "32.0", + "firefox": "135", + "firefox-android": "135", + "node": "20.5.0", + "oculus": "35.0", + "opera": "113", + "opera-android": "84", + "opera_mobile": "84", + "quest": "35.0", + "samsung": "28.0" + }, + "esnext.symbol.custom-matcher": {}, + "esnext.symbol.dispose": { + "android": "125", + "bun": "1.0.23", + "chrome": "125", + "chrome-android": "125", + "deno": "1.38", + "edge": "125", + "electron": "31.0", + "firefox": "135", + "firefox-android": "135", + "node": "20.5.0", + "oculus": "34.0", + "opera": "111", + "opera-android": "83", + "opera_mobile": "83", + "quest": "34.0", + "samsung": "27.0" + }, + "esnext.symbol.is-registered-symbol": {}, + "esnext.symbol.is-registered": {}, + "esnext.symbol.is-well-known-symbol": {}, + "esnext.symbol.is-well-known": {}, + "esnext.symbol.matcher": {}, + "esnext.symbol.metadata": { + "deno": "1.40.4" + }, + "esnext.symbol.metadata-key": {}, + "esnext.symbol.observable": {}, + "esnext.symbol.pattern-match": {}, + "esnext.symbol.replace-all": {}, + "esnext.typed-array.from-async": {}, + "esnext.typed-array.at": { + "android": "92", + "bun": "0.1.1", + "chrome": "92", + "chrome-android": "92", + "deno": "1.12", + "edge": "92", + "electron": "14.0", + "firefox": "90", + "firefox-android": "90", + "hermes": "0.13", + "ios": "15.4", + "node": "16.6", + "oculus": "17.0", + "opera": "78", + "opera-android": "65", + "opera_mobile": "65", + "quest": "17.0", + "react-native": "0.71", + "rhino": "1.7.15", + "safari": "15.4", + "samsung": "16.0" + }, + "esnext.typed-array.filter-out": {}, + "esnext.typed-array.filter-reject": {}, + "esnext.typed-array.find-last": { + "android": "97", + "bun": "0.1.1", + "chrome": "97", + "chrome-android": "97", + "deno": "1.16", + "edge": "97", + "electron": "17.0", + "firefox": "104", + "firefox-android": "104", + "hermes": "0.11", + "ios": "15.4", + "node": "18.0", + "oculus": "20.0", + "opera": "83", + "opera-android": "68", + "opera_mobile": "68", + "quest": "20.0", + "react-native": "0.69", + "rhino": "1.8.0", + "safari": "15.4", + "samsung": "18.0" + }, + "esnext.typed-array.find-last-index": { + "android": "97", + "bun": "0.1.1", + "chrome": "97", + "chrome-android": "97", + "deno": "1.16", + "edge": "97", + "electron": "17.0", + "firefox": "104", + "firefox-android": "104", + "hermes": "0.11", + "ios": "15.4", + "node": "18.0", + "oculus": "20.0", + "opera": "83", + "opera-android": "68", + "opera_mobile": "68", + "quest": "20.0", + "react-native": "0.69", + "rhino": "1.8.0", + "safari": "15.4", + "samsung": "18.0" + }, + "esnext.typed-array.group-by": {}, + "esnext.typed-array.to-reversed": { + "android": "110", + "bun": "0.1.1", + "chrome": "110", + "chrome-android": "110", + "deno": "1.27", + "edge": "110", + "electron": "23.0", + "firefox": "115", + "firefox-android": "115", + "ios": "16.0", + "node": "20.0", + "oculus": "26.0", + "opera": "96", + "opera-android": "74", + "opera_mobile": "74", + "quest": "26.0", + "rhino": "1.8.0", + "safari": "16.0", + "samsung": "21.0" + }, + "esnext.typed-array.to-sorted": { + "android": "110", + "bun": "0.1.1", + "chrome": "110", + "chrome-android": "110", + "deno": "1.27", + "edge": "110", + "electron": "23.0", + "firefox": "115", + "firefox-android": "115", + "ios": "16.0", + "node": "20.0", + "oculus": "26.0", + "opera": "96", + "opera-android": "74", + "opera_mobile": "74", + "quest": "26.0", + "rhino": "1.8.0", + "safari": "16.0", + "samsung": "21.0" + }, + "esnext.typed-array.to-spliced": {}, + "esnext.typed-array.unique-by": {}, + "esnext.typed-array.with": { + "android": "110", + "bun": "1.2.18", + "chrome": "110", + "chrome-android": "110", + "deno": "1.27", + "edge": "110", + "electron": "23.0", + "firefox": "115", + "firefox-android": "115", + "ios": "26.0", + "node": "20.0", + "oculus": "26.0", + "opera": "96", + "opera-android": "74", + "opera_mobile": "74", + "quest": "26.0", + "rhino": "1.8.0", + "safari": "26.0", + "samsung": "21.0" + }, + "esnext.uint8-array.from-base64": { + "android": "140", + "bun": "1.2.20", + "chrome": "140", + "chrome-android": "140", + "edge": "140", + "electron": "38.0", + "firefox": "133", + "firefox-android": "133", + "opera": "125" + }, + "esnext.uint8-array.from-hex": { + "android": "140", + "bun": "1.1.22", + "chrome": "140", + "chrome-android": "140", + "edge": "140", + "electron": "38.0", + "firefox": "133", + "firefox-android": "133", + "ios": "18.2", + "opera": "125", + "safari": "18.2" + }, + "esnext.uint8-array.set-from-base64": { + "android": "140", + "bun": "1.2.20", + "chrome": "140", + "chrome-android": "140", + "edge": "140", + "electron": "38.0", + "firefox": "133", + "firefox-android": "133", + "opera": "125" + }, + "esnext.uint8-array.set-from-hex": { + "android": "140", + "bun": "1.1.22", + "chrome": "140", + "chrome-android": "140", + "edge": "140", + "electron": "38.0", + "firefox": "133", + "firefox-android": "133", + "ios": "18.2", + "opera": "125", + "safari": "18.2" + }, + "esnext.uint8-array.to-base64": { + "android": "140", + "bun": "1.1.22", + "chrome": "140", + "chrome-android": "140", + "edge": "140", + "electron": "38.0", + "firefox": "133", + "firefox-android": "133", + "ios": "18.2", + "opera": "125", + "safari": "18.2" + }, + "esnext.uint8-array.to-hex": { + "android": "140", + "bun": "1.1.22", + "chrome": "140", + "chrome-android": "140", + "edge": "140", + "electron": "38.0", + "firefox": "133", + "firefox-android": "133", + "ios": "18.2", + "opera": "125", + "safari": "18.2" + }, + "esnext.weak-map.delete-all": {}, + "esnext.weak-map.from": {}, + "esnext.weak-map.of": {}, + "esnext.weak-map.emplace": {}, + "esnext.weak-map.get-or-insert": { + "bun": "1.2.20" + }, + "esnext.weak-map.get-or-insert-computed": { + "bun": "1.2.20" + }, + "esnext.weak-map.upsert": {}, + "esnext.weak-set.add-all": {}, + "esnext.weak-set.delete-all": {}, + "esnext.weak-set.from": {}, + "esnext.weak-set.of": {}, + "web.atob": { + "android": "37", + "bun": "0.1.1", + "chrome": "34", + "chrome-android": "34", + "deno": "1.0", + "edge": "16", + "electron": "0.20", + "firefox": "27", + "firefox-android": "27", + "hermes": "0.13", + "ios": "10.3", + "node": "18.0", + "oculus": "3.0", + "opera": "10.5", + "opera-android": "10.5", + "opera_mobile": "10.5", + "quest": "3.0", + "react-native": "0.74", + "safari": "10.1", + "samsung": "2.0" + }, + "web.btoa": { + "android": "3.0", + "bun": "0.1.1", + "chrome": "4", + "chrome-android": "18", + "deno": "1.0", + "edge": "16", + "electron": "0.20", + "firefox": "27", + "firefox-android": "27", + "ios": "1.0", + "node": "17.5", + "oculus": "3.0", + "opera": "10.5", + "opera-android": "10.5", + "opera_mobile": "10.5", + "phantom": "1.9", + "quest": "3.0", + "safari": "3.0", + "samsung": "1.0" + }, + "web.dom-collections.for-each": { + "android": "58", + "bun": "0.1.1", + "chrome": "58", + "chrome-android": "58", + "deno": "1.0", + "edge": "16", + "electron": "1.7", + "firefox": "50", + "firefox-android": "50", + "hermes": "0.1", + "ios": "10.0", + "node": "0.0.1", + "oculus": "4.0", + "opera": "45", + "opera-android": "43", + "opera_mobile": "43", + "quest": "4.0", + "react-native": "0.69", + "rhino": "1.7.13", + "safari": "10.0", + "samsung": "7.0" + }, + "web.dom-collections.iterator": { + "android": "66", + "bun": "0.1.1", + "chrome": "66", + "chrome-android": "66", + "deno": "1.0", + "edge": "79", + "electron": "3.0", + "firefox": "60", + "firefox-android": "60", + "hermes": "0.1", + "ios": "13.4", + "node": "0.0.1", + "oculus": "5.0", + "opera": "53", + "opera-android": "47", + "opera_mobile": "47", + "quest": "5.0", + "react-native": "0.69", + "rhino": "1.7.13", + "safari": "13.1", + "samsung": "9.0" + }, + "web.dom-exception.constructor": { + "android": "46", + "bun": "0.1.1", + "chrome": "46", + "chrome-android": "46", + "deno": "1.7", + "edge": "79", + "electron": "0.36", + "firefox": "37", + "firefox-android": "37", + "ios": "11.3", + "node": "17.0", + "oculus": "3.0", + "opera": "33", + "opera-android": "33", + "opera_mobile": "33", + "quest": "3.0", + "safari": "11.1", + "samsung": "5.0" + }, + "web.dom-exception.stack": { + "deno": "1.15", + "firefox": "37", + "firefox-android": "37", + "node": "17.0" + }, + "web.dom-exception.to-string-tag": { + "android": "49", + "bun": "0.1.1", + "chrome": "49", + "chrome-android": "49", + "deno": "1.7", + "edge": "79", + "electron": "0.37", + "firefox": "51", + "firefox-android": "51", + "ios": "11.3", + "node": "17.0", + "oculus": "3.0", + "opera": "36", + "opera-android": "36", + "opera_mobile": "36", + "quest": "3.0", + "safari": "11.1", + "samsung": "5.0" + }, + "web.immediate": { + "bun": "0.4.0", + "deno": "2.4", + "ie": "10", + "node": "0.9.1" + }, + "web.queue-microtask": { + "android": "71", + "chrome": "71", + "chrome-android": "71", + "deno": "1.0", + "edge": "79", + "electron": "5.0", + "firefox": "69", + "firefox-android": "69", + "ios": "12.2", + "node": "12.0", + "oculus": "6.0", + "opera": "58", + "opera-android": "50", + "opera_mobile": "50", + "quest": "6.0", + "safari": "12.1", + "samsung": "10.0" + }, + "web.self": { + "android": "86", + "bun": "1.0.22", + "chrome": "86", + "chrome-android": "86", + "deno": "1.46.0", + "edge": "86", + "electron": "11.0", + "firefox": "31", + "firefox-android": "31", + "ios": "10.0", + "oculus": "12.0", + "opera": "72", + "opera-android": "61", + "opera_mobile": "61", + "quest": "12.0", + "safari": "10", + "samsung": "14.0" + }, + "web.structured-clone": {}, + "web.timers": { + "android": "1.5", + "bun": "0.4.0", + "chrome": "1", + "chrome-android": "18", + "deno": "1.0", + "edge": "12", + "electron": "0.20", + "firefox": "1", + "firefox-android": "4", + "hermes": "0.1", + "ie": "10", + "ios": "1.0", + "node": "0.0.1", + "oculus": "3.0", + "opera": "7", + "opera-android": "7", + "opera_mobile": "7", + "phantom": "1.9", + "quest": "3.0", + "react-native": "0.69", + "rhino": "1.7.13", + "safari": "1.0", + "samsung": "1.0" + }, + "web.url": { + "android": "67", + "bun": "0.1.1", + "chrome": "67", + "chrome-android": "67", + "deno": "1.0", + "edge": "79", + "electron": "4.0", + "firefox": "57", + "firefox-android": "57", + "ios": "14.0", + "node": "10.0", + "oculus": "6.0", + "opera": "54", + "opera-android": "48", + "opera_mobile": "48", + "quest": "6.0", + "safari": "14.0", + "samsung": "9.0" + }, + "web.url.can-parse": { + "android": "120", + "bun": "1.1.0", + "chrome": "120", + "chrome-android": "120", + "deno": "1.33.2", + "edge": "120", + "electron": "28.0", + "firefox": "115", + "firefox-android": "115", + "ios": "17.0", + "node": "20.1", + "oculus": "31.0", + "opera": "106", + "opera-android": "80", + "opera_mobile": "80", + "quest": "31.0", + "safari": "17.0", + "samsung": "25.0" + }, + "web.url.parse": { + "android": "126", + "bun": "1.1.4", + "chrome": "126", + "chrome-android": "126", + "deno": "1.43", + "edge": "126", + "electron": "31.0", + "firefox": "126", + "firefox-android": "126", + "ios": "18.0", + "node": "22.1", + "oculus": "34.0", + "opera": "112", + "opera-android": "83", + "opera_mobile": "83", + "quest": "34.0", + "safari": "18.0", + "samsung": "28.0" + }, + "web.url.to-json": { + "android": "71", + "bun": "0.1.1", + "chrome": "71", + "chrome-android": "71", + "deno": "1.0", + "edge": "79", + "electron": "5.0", + "firefox": "57", + "firefox-android": "57", + "ios": "14.0", + "node": "10.0", + "oculus": "6.0", + "opera": "58", + "opera-android": "50", + "opera_mobile": "50", + "quest": "6.0", + "safari": "14.0", + "samsung": "10.0" + }, + "web.url-search-params": { + "android": "67", + "bun": "0.1.1", + "chrome": "67", + "chrome-android": "67", + "deno": "1.0", + "edge": "79", + "electron": "4.0", + "firefox": "57", + "firefox-android": "57", + "ios": "14.0", + "node": "10.0", + "oculus": "6.0", + "opera": "54", + "opera-android": "48", + "opera_mobile": "48", + "quest": "6.0", + "safari": "14.0", + "samsung": "9.0" + }, + "web.url-search-params.delete": { + "android": "118", + "bun": "1.0.31", + "chrome": "118", + "chrome-android": "118", + "deno": "1.35", + "edge": "118", + "electron": "27.0", + "firefox": "115", + "firefox-android": "115", + "ios": "17.0", + "node": "20.2", + "oculus": "30.0", + "opera": "104", + "opera-android": "79", + "opera_mobile": "79", + "quest": "30.0", + "safari": "17.0", + "samsung": "25.0" + }, + "web.url-search-params.has": { + "android": "118", + "bun": "1.0.31", + "chrome": "118", + "chrome-android": "118", + "deno": "1.35", + "edge": "118", + "electron": "27.0", + "firefox": "115", + "firefox-android": "115", + "ios": "17.0", + "node": "20.2", + "oculus": "30.0", + "opera": "104", + "opera-android": "79", + "opera_mobile": "79", + "quest": "30.0", + "safari": "17.0", + "samsung": "25.0" + }, + "web.url-search-params.size": { + "android": "113", + "bun": "1.0.2", + "chrome": "113", + "chrome-android": "113", + "deno": "1.32", + "edge": "113", + "electron": "25.0", + "firefox": "112", + "firefox-android": "112", + "ios": "17.0", + "node": "19.8", + "oculus": "28.0", + "opera": "99", + "opera-android": "76", + "opera_mobile": "76", + "quest": "28.0", + "safari": "17.0", + "samsung": "23.0" + } +} diff --git a/novas/novacore-zephyr/groq-code-cli/node_modules/core-js-compat/entries.json b/novas/novacore-zephyr/groq-code-cli/node_modules/core-js-compat/entries.json new file mode 100644 index 0000000000000000000000000000000000000000..85e4595e92c1ec236230e064f668a392f08551e8 --- /dev/null +++ b/novas/novacore-zephyr/groq-code-cli/node_modules/core-js-compat/entries.json @@ -0,0 +1,21832 @@ +{ + "core-js": [ + "es.symbol", + "es.symbol.description", + "es.symbol.async-dispose", + "es.symbol.async-iterator", + "es.symbol.dispose", + "es.symbol.has-instance", + "es.symbol.is-concat-spreadable", + "es.symbol.iterator", + "es.symbol.match", + "es.symbol.match-all", + "es.symbol.replace", + "es.symbol.search", + "es.symbol.species", + "es.symbol.split", + "es.symbol.to-primitive", + "es.symbol.to-string-tag", + "es.symbol.unscopables", + "es.error.cause", + "es.error.is-error", + "es.error.to-string", + "es.aggregate-error", + "es.aggregate-error.cause", + "es.suppressed-error.constructor", + "es.array.at", + "es.array.concat", + "es.array.copy-within", + "es.array.every", + "es.array.fill", + "es.array.filter", + "es.array.find", + "es.array.find-index", + "es.array.find-last", + "es.array.find-last-index", + "es.array.flat", + "es.array.flat-map", + "es.array.for-each", + "es.array.from", + "es.array.includes", + "es.array.index-of", + "es.array.is-array", + "es.array.iterator", + "es.array.join", + "es.array.last-index-of", + "es.array.map", + "es.array.of", + "es.array.push", + "es.array.reduce", + "es.array.reduce-right", + "es.array.reverse", + "es.array.slice", + "es.array.some", + "es.array.sort", + "es.array.species", + "es.array.splice", + "es.array.to-reversed", + "es.array.to-sorted", + "es.array.to-spliced", + "es.array.unscopables.flat", + "es.array.unscopables.flat-map", + "es.array.unshift", + "es.array.with", + "es.array-buffer.constructor", + "es.array-buffer.is-view", + "es.array-buffer.slice", + "es.data-view", + "es.data-view.get-float16", + "es.data-view.set-float16", + "es.array-buffer.detached", + "es.array-buffer.transfer", + "es.array-buffer.transfer-to-fixed-length", + "es.date.get-year", + "es.date.now", + "es.date.set-year", + "es.date.to-gmt-string", + "es.date.to-iso-string", + "es.date.to-json", + "es.date.to-primitive", + "es.date.to-string", + "es.disposable-stack.constructor", + "es.escape", + "es.function.bind", + "es.function.has-instance", + "es.function.name", + "es.global-this", + "es.iterator.constructor", + "es.iterator.dispose", + "es.iterator.drop", + "es.iterator.every", + "es.iterator.filter", + "es.iterator.find", + "es.iterator.flat-map", + "es.iterator.for-each", + "es.iterator.from", + "es.iterator.map", + "es.iterator.reduce", + "es.iterator.some", + "es.iterator.take", + "es.iterator.to-array", + "es.json.stringify", + "es.json.to-string-tag", + "es.map", + "es.map.group-by", + "es.math.acosh", + "es.math.asinh", + "es.math.atanh", + "es.math.cbrt", + "es.math.clz32", + "es.math.cosh", + "es.math.expm1", + "es.math.fround", + "es.math.f16round", + "es.math.hypot", + "es.math.imul", + "es.math.log10", + "es.math.log1p", + "es.math.log2", + "es.math.sign", + "es.math.sinh", + "es.math.sum-precise", + "es.math.tanh", + "es.math.to-string-tag", + "es.math.trunc", + "es.number.constructor", + "es.number.epsilon", + "es.number.is-finite", + "es.number.is-integer", + "es.number.is-nan", + "es.number.is-safe-integer", + "es.number.max-safe-integer", + "es.number.min-safe-integer", + "es.number.parse-float", + "es.number.parse-int", + "es.number.to-exponential", + "es.number.to-fixed", + "es.number.to-precision", + "es.object.assign", + "es.object.create", + "es.object.define-getter", + "es.object.define-properties", + "es.object.define-property", + "es.object.define-setter", + "es.object.entries", + "es.object.freeze", + "es.object.from-entries", + "es.object.get-own-property-descriptor", + "es.object.get-own-property-descriptors", + "es.object.get-own-property-names", + "es.object.get-prototype-of", + "es.object.group-by", + "es.object.has-own", + "es.object.is", + "es.object.is-extensible", + "es.object.is-frozen", + "es.object.is-sealed", + "es.object.keys", + "es.object.lookup-getter", + "es.object.lookup-setter", + "es.object.prevent-extensions", + "es.object.proto", + "es.object.seal", + "es.object.set-prototype-of", + "es.object.to-string", + "es.object.values", + "es.parse-float", + "es.parse-int", + "es.promise", + "es.promise.all-settled", + "es.promise.any", + "es.promise.finally", + "es.promise.try", + "es.promise.with-resolvers", + "es.array.from-async", + "es.async-disposable-stack.constructor", + "es.async-iterator.async-dispose", + "es.reflect.apply", + "es.reflect.construct", + "es.reflect.define-property", + "es.reflect.delete-property", + "es.reflect.get", + "es.reflect.get-own-property-descriptor", + "es.reflect.get-prototype-of", + "es.reflect.has", + "es.reflect.is-extensible", + "es.reflect.own-keys", + "es.reflect.prevent-extensions", + "es.reflect.set", + "es.reflect.set-prototype-of", + "es.reflect.to-string-tag", + "es.regexp.constructor", + "es.regexp.escape", + "es.regexp.dot-all", + "es.regexp.exec", + "es.regexp.flags", + "es.regexp.sticky", + "es.regexp.test", + "es.regexp.to-string", + "es.set", + "es.set.difference.v2", + "es.set.intersection.v2", + "es.set.is-disjoint-from.v2", + "es.set.is-subset-of.v2", + "es.set.is-superset-of.v2", + "es.set.symmetric-difference.v2", + "es.set.union.v2", + "es.string.at-alternative", + "es.string.code-point-at", + "es.string.ends-with", + "es.string.from-code-point", + "es.string.includes", + "es.string.is-well-formed", + "es.string.iterator", + "es.string.match", + "es.string.match-all", + "es.string.pad-end", + "es.string.pad-start", + "es.string.raw", + "es.string.repeat", + "es.string.replace", + "es.string.replace-all", + "es.string.search", + "es.string.split", + "es.string.starts-with", + "es.string.substr", + "es.string.to-well-formed", + "es.string.trim", + "es.string.trim-end", + "es.string.trim-start", + "es.string.anchor", + "es.string.big", + "es.string.blink", + "es.string.bold", + "es.string.fixed", + "es.string.fontcolor", + "es.string.fontsize", + "es.string.italics", + "es.string.link", + "es.string.small", + "es.string.strike", + "es.string.sub", + "es.string.sup", + "es.typed-array.float32-array", + "es.typed-array.float64-array", + "es.typed-array.int8-array", + "es.typed-array.int16-array", + "es.typed-array.int32-array", + "es.typed-array.uint8-array", + "es.typed-array.uint8-clamped-array", + "es.typed-array.uint16-array", + "es.typed-array.uint32-array", + "es.typed-array.at", + "es.typed-array.copy-within", + "es.typed-array.every", + "es.typed-array.fill", + "es.typed-array.filter", + "es.typed-array.find", + "es.typed-array.find-index", + "es.typed-array.find-last", + "es.typed-array.find-last-index", + "es.typed-array.for-each", + "es.typed-array.from", + "es.typed-array.includes", + "es.typed-array.index-of", + "es.typed-array.iterator", + "es.typed-array.join", + "es.typed-array.last-index-of", + "es.typed-array.map", + "es.typed-array.of", + "es.typed-array.reduce", + "es.typed-array.reduce-right", + "es.typed-array.reverse", + "es.typed-array.set", + "es.typed-array.slice", + "es.typed-array.some", + "es.typed-array.sort", + "es.typed-array.subarray", + "es.typed-array.to-locale-string", + "es.typed-array.to-reversed", + "es.typed-array.to-sorted", + "es.typed-array.to-string", + "es.typed-array.with", + "es.uint8-array.from-base64", + "es.uint8-array.from-hex", + "es.uint8-array.set-from-base64", + "es.uint8-array.set-from-hex", + "es.uint8-array.to-base64", + "es.uint8-array.to-hex", + "es.unescape", + "es.weak-map", + "es.weak-set", + "esnext.aggregate-error", + "esnext.suppressed-error.constructor", + "esnext.array.from-async", + "esnext.array.at", + "esnext.array.filter-out", + "esnext.array.filter-reject", + "esnext.array.find-last", + "esnext.array.find-last-index", + "esnext.array.group", + "esnext.array.group-by", + "esnext.array.group-by-to-map", + "esnext.array.group-to-map", + "esnext.array.is-template-object", + "esnext.array.last-index", + "esnext.array.last-item", + "esnext.array.to-reversed", + "esnext.array.to-sorted", + "esnext.array.to-spliced", + "esnext.array.unique-by", + "esnext.array.with", + "esnext.array-buffer.detached", + "esnext.array-buffer.transfer", + "esnext.array-buffer.transfer-to-fixed-length", + "esnext.async-disposable-stack.constructor", + "esnext.async-iterator.constructor", + "esnext.async-iterator.as-indexed-pairs", + "esnext.async-iterator.async-dispose", + "esnext.async-iterator.drop", + "esnext.async-iterator.every", + "esnext.async-iterator.filter", + "esnext.async-iterator.find", + "esnext.async-iterator.flat-map", + "esnext.async-iterator.for-each", + "esnext.async-iterator.from", + "esnext.async-iterator.indexed", + "esnext.async-iterator.map", + "esnext.async-iterator.reduce", + "esnext.async-iterator.some", + "esnext.async-iterator.take", + "esnext.async-iterator.to-array", + "esnext.bigint.range", + "esnext.composite-key", + "esnext.composite-symbol", + "esnext.data-view.get-float16", + "esnext.data-view.get-uint8-clamped", + "esnext.data-view.set-float16", + "esnext.data-view.set-uint8-clamped", + "esnext.disposable-stack.constructor", + "esnext.error.is-error", + "esnext.function.demethodize", + "esnext.function.is-callable", + "esnext.function.is-constructor", + "esnext.function.metadata", + "esnext.function.un-this", + "esnext.global-this", + "esnext.iterator.constructor", + "esnext.iterator.as-indexed-pairs", + "esnext.iterator.chunks", + "esnext.iterator.concat", + "esnext.iterator.dispose", + "esnext.iterator.drop", + "esnext.iterator.every", + "esnext.iterator.filter", + "esnext.iterator.find", + "esnext.iterator.flat-map", + "esnext.iterator.for-each", + "esnext.iterator.from", + "esnext.iterator.indexed", + "esnext.iterator.map", + "esnext.iterator.range", + "esnext.iterator.reduce", + "esnext.iterator.sliding", + "esnext.iterator.some", + "esnext.iterator.take", + "esnext.iterator.to-array", + "esnext.iterator.to-async", + "esnext.iterator.windows", + "esnext.iterator.zip", + "esnext.iterator.zip-keyed", + "esnext.json.is-raw-json", + "esnext.json.parse", + "esnext.json.raw-json", + "esnext.map.delete-all", + "esnext.map.emplace", + "esnext.map.every", + "esnext.map.filter", + "esnext.map.find", + "esnext.map.find-key", + "esnext.map.from", + "esnext.map.get-or-insert", + "esnext.map.get-or-insert-computed", + "esnext.map.group-by", + "esnext.map.includes", + "esnext.map.key-by", + "esnext.map.key-of", + "esnext.map.map-keys", + "esnext.map.map-values", + "esnext.map.merge", + "esnext.map.of", + "esnext.map.reduce", + "esnext.map.some", + "esnext.map.update", + "esnext.map.update-or-insert", + "esnext.map.upsert", + "esnext.math.clamp", + "esnext.math.deg-per-rad", + "esnext.math.degrees", + "esnext.math.fscale", + "esnext.math.f16round", + "esnext.math.iaddh", + "esnext.math.imulh", + "esnext.math.isubh", + "esnext.math.rad-per-deg", + "esnext.math.radians", + "esnext.math.scale", + "esnext.math.seeded-prng", + "esnext.math.signbit", + "esnext.math.sum-precise", + "esnext.math.umulh", + "esnext.number.clamp", + "esnext.number.from-string", + "esnext.number.range", + "esnext.object.has-own", + "esnext.object.iterate-entries", + "esnext.object.iterate-keys", + "esnext.object.iterate-values", + "esnext.object.group-by", + "esnext.observable", + "esnext.promise.all-settled", + "esnext.promise.any", + "esnext.promise.try", + "esnext.promise.with-resolvers", + "esnext.reflect.define-metadata", + "esnext.reflect.delete-metadata", + "esnext.reflect.get-metadata", + "esnext.reflect.get-metadata-keys", + "esnext.reflect.get-own-metadata", + "esnext.reflect.get-own-metadata-keys", + "esnext.reflect.has-metadata", + "esnext.reflect.has-own-metadata", + "esnext.reflect.metadata", + "esnext.regexp.escape", + "esnext.set.add-all", + "esnext.set.delete-all", + "esnext.set.difference.v2", + "esnext.set.difference", + "esnext.set.every", + "esnext.set.filter", + "esnext.set.find", + "esnext.set.from", + "esnext.set.intersection.v2", + "esnext.set.intersection", + "esnext.set.is-disjoint-from.v2", + "esnext.set.is-disjoint-from", + "esnext.set.is-subset-of.v2", + "esnext.set.is-subset-of", + "esnext.set.is-superset-of.v2", + "esnext.set.is-superset-of", + "esnext.set.join", + "esnext.set.map", + "esnext.set.of", + "esnext.set.reduce", + "esnext.set.some", + "esnext.set.symmetric-difference.v2", + "esnext.set.symmetric-difference", + "esnext.set.union.v2", + "esnext.set.union", + "esnext.string.at", + "esnext.string.cooked", + "esnext.string.code-points", + "esnext.string.dedent", + "esnext.string.is-well-formed", + "esnext.string.match-all", + "esnext.string.replace-all", + "esnext.string.to-well-formed", + "esnext.symbol.async-dispose", + "esnext.symbol.custom-matcher", + "esnext.symbol.dispose", + "esnext.symbol.is-registered-symbol", + "esnext.symbol.is-registered", + "esnext.symbol.is-well-known-symbol", + "esnext.symbol.is-well-known", + "esnext.symbol.matcher", + "esnext.symbol.metadata", + "esnext.symbol.metadata-key", + "esnext.symbol.observable", + "esnext.symbol.pattern-match", + "esnext.symbol.replace-all", + "esnext.typed-array.from-async", + "esnext.typed-array.at", + "esnext.typed-array.filter-out", + "esnext.typed-array.filter-reject", + "esnext.typed-array.find-last", + "esnext.typed-array.find-last-index", + "esnext.typed-array.group-by", + "esnext.typed-array.to-reversed", + "esnext.typed-array.to-sorted", + "esnext.typed-array.to-spliced", + "esnext.typed-array.unique-by", + "esnext.typed-array.with", + "esnext.uint8-array.from-base64", + "esnext.uint8-array.from-hex", + "esnext.uint8-array.set-from-base64", + "esnext.uint8-array.set-from-hex", + "esnext.uint8-array.to-base64", + "esnext.uint8-array.to-hex", + "esnext.weak-map.delete-all", + "esnext.weak-map.from", + "esnext.weak-map.of", + "esnext.weak-map.emplace", + "esnext.weak-map.get-or-insert", + "esnext.weak-map.get-or-insert-computed", + "esnext.weak-map.upsert", + "esnext.weak-set.add-all", + "esnext.weak-set.delete-all", + "esnext.weak-set.from", + "esnext.weak-set.of", + "web.atob", + "web.btoa", + "web.dom-collections.for-each", + "web.dom-collections.iterator", + "web.dom-exception.constructor", + "web.dom-exception.stack", + "web.dom-exception.to-string-tag", + "web.immediate", + "web.queue-microtask", + "web.self", + "web.structured-clone", + "web.timers", + "web.url", + "web.url.can-parse", + "web.url.parse", + "web.url.to-json", + "web.url-search-params", + "web.url-search-params.delete", + "web.url-search-params.has", + "web.url-search-params.size" + ], + "core-js/actual": [ + "es.symbol", + "es.symbol.description", + "es.symbol.async-dispose", + "es.symbol.async-iterator", + "es.symbol.dispose", + "es.symbol.has-instance", + "es.symbol.is-concat-spreadable", + "es.symbol.iterator", + "es.symbol.match", + "es.symbol.match-all", + "es.symbol.replace", + "es.symbol.search", + "es.symbol.species", + "es.symbol.split", + "es.symbol.to-primitive", + "es.symbol.to-string-tag", + "es.symbol.unscopables", + "es.error.cause", + "es.error.is-error", + "es.error.to-string", + "es.aggregate-error", + "es.aggregate-error.cause", + "es.suppressed-error.constructor", + "es.array.at", + "es.array.concat", + "es.array.copy-within", + "es.array.every", + "es.array.fill", + "es.array.filter", + "es.array.find", + "es.array.find-index", + "es.array.find-last", + "es.array.find-last-index", + "es.array.flat", + "es.array.flat-map", + "es.array.for-each", + "es.array.from", + "es.array.includes", + "es.array.index-of", + "es.array.is-array", + "es.array.iterator", + "es.array.join", + "es.array.last-index-of", + "es.array.map", + "es.array.of", + "es.array.push", + "es.array.reduce", + "es.array.reduce-right", + "es.array.reverse", + "es.array.slice", + "es.array.some", + "es.array.sort", + "es.array.species", + "es.array.splice", + "es.array.to-reversed", + "es.array.to-sorted", + "es.array.to-spliced", + "es.array.unscopables.flat", + "es.array.unscopables.flat-map", + "es.array.unshift", + "es.array.with", + "es.array-buffer.constructor", + "es.array-buffer.is-view", + "es.array-buffer.slice", + "es.data-view", + "es.data-view.get-float16", + "es.data-view.set-float16", + "es.array-buffer.detached", + "es.array-buffer.transfer", + "es.array-buffer.transfer-to-fixed-length", + "es.date.get-year", + "es.date.now", + "es.date.set-year", + "es.date.to-gmt-string", + "es.date.to-iso-string", + "es.date.to-json", + "es.date.to-primitive", + "es.date.to-string", + "es.disposable-stack.constructor", + "es.escape", + "es.function.bind", + "es.function.has-instance", + "es.function.name", + "es.global-this", + "es.iterator.constructor", + "es.iterator.dispose", + "es.iterator.drop", + "es.iterator.every", + "es.iterator.filter", + "es.iterator.find", + "es.iterator.flat-map", + "es.iterator.for-each", + "es.iterator.from", + "es.iterator.map", + "es.iterator.reduce", + "es.iterator.some", + "es.iterator.take", + "es.iterator.to-array", + "es.json.stringify", + "es.json.to-string-tag", + "es.map", + "es.map.group-by", + "es.math.acosh", + "es.math.asinh", + "es.math.atanh", + "es.math.cbrt", + "es.math.clz32", + "es.math.cosh", + "es.math.expm1", + "es.math.fround", + "es.math.f16round", + "es.math.hypot", + "es.math.imul", + "es.math.log10", + "es.math.log1p", + "es.math.log2", + "es.math.sign", + "es.math.sinh", + "es.math.sum-precise", + "es.math.tanh", + "es.math.to-string-tag", + "es.math.trunc", + "es.number.constructor", + "es.number.epsilon", + "es.number.is-finite", + "es.number.is-integer", + "es.number.is-nan", + "es.number.is-safe-integer", + "es.number.max-safe-integer", + "es.number.min-safe-integer", + "es.number.parse-float", + "es.number.parse-int", + "es.number.to-exponential", + "es.number.to-fixed", + "es.number.to-precision", + "es.object.assign", + "es.object.create", + "es.object.define-getter", + "es.object.define-properties", + "es.object.define-property", + "es.object.define-setter", + "es.object.entries", + "es.object.freeze", + "es.object.from-entries", + "es.object.get-own-property-descriptor", + "es.object.get-own-property-descriptors", + "es.object.get-own-property-names", + "es.object.get-prototype-of", + "es.object.group-by", + "es.object.has-own", + "es.object.is", + "es.object.is-extensible", + "es.object.is-frozen", + "es.object.is-sealed", + "es.object.keys", + "es.object.lookup-getter", + "es.object.lookup-setter", + "es.object.prevent-extensions", + "es.object.proto", + "es.object.seal", + "es.object.set-prototype-of", + "es.object.to-string", + "es.object.values", + "es.parse-float", + "es.parse-int", + "es.promise", + "es.promise.all-settled", + "es.promise.any", + "es.promise.finally", + "es.promise.try", + "es.promise.with-resolvers", + "es.array.from-async", + "es.async-disposable-stack.constructor", + "es.async-iterator.async-dispose", + "es.reflect.apply", + "es.reflect.construct", + "es.reflect.define-property", + "es.reflect.delete-property", + "es.reflect.get", + "es.reflect.get-own-property-descriptor", + "es.reflect.get-prototype-of", + "es.reflect.has", + "es.reflect.is-extensible", + "es.reflect.own-keys", + "es.reflect.prevent-extensions", + "es.reflect.set", + "es.reflect.set-prototype-of", + "es.reflect.to-string-tag", + "es.regexp.constructor", + "es.regexp.escape", + "es.regexp.dot-all", + "es.regexp.exec", + "es.regexp.flags", + "es.regexp.sticky", + "es.regexp.test", + "es.regexp.to-string", + "es.set", + "es.set.difference.v2", + "es.set.intersection.v2", + "es.set.is-disjoint-from.v2", + "es.set.is-subset-of.v2", + "es.set.is-superset-of.v2", + "es.set.symmetric-difference.v2", + "es.set.union.v2", + "es.string.at-alternative", + "es.string.code-point-at", + "es.string.ends-with", + "es.string.from-code-point", + "es.string.includes", + "es.string.is-well-formed", + "es.string.iterator", + "es.string.match", + "es.string.match-all", + "es.string.pad-end", + "es.string.pad-start", + "es.string.raw", + "es.string.repeat", + "es.string.replace", + "es.string.replace-all", + "es.string.search", + "es.string.split", + "es.string.starts-with", + "es.string.substr", + "es.string.to-well-formed", + "es.string.trim", + "es.string.trim-end", + "es.string.trim-start", + "es.string.anchor", + "es.string.big", + "es.string.blink", + "es.string.bold", + "es.string.fixed", + "es.string.fontcolor", + "es.string.fontsize", + "es.string.italics", + "es.string.link", + "es.string.small", + "es.string.strike", + "es.string.sub", + "es.string.sup", + "es.typed-array.float32-array", + "es.typed-array.float64-array", + "es.typed-array.int8-array", + "es.typed-array.int16-array", + "es.typed-array.int32-array", + "es.typed-array.uint8-array", + "es.typed-array.uint8-clamped-array", + "es.typed-array.uint16-array", + "es.typed-array.uint32-array", + "es.typed-array.at", + "es.typed-array.copy-within", + "es.typed-array.every", + "es.typed-array.fill", + "es.typed-array.filter", + "es.typed-array.find", + "es.typed-array.find-index", + "es.typed-array.find-last", + "es.typed-array.find-last-index", + "es.typed-array.for-each", + "es.typed-array.from", + "es.typed-array.includes", + "es.typed-array.index-of", + "es.typed-array.iterator", + "es.typed-array.join", + "es.typed-array.last-index-of", + "es.typed-array.map", + "es.typed-array.of", + "es.typed-array.reduce", + "es.typed-array.reduce-right", + "es.typed-array.reverse", + "es.typed-array.set", + "es.typed-array.slice", + "es.typed-array.some", + "es.typed-array.sort", + "es.typed-array.subarray", + "es.typed-array.to-locale-string", + "es.typed-array.to-reversed", + "es.typed-array.to-sorted", + "es.typed-array.to-string", + "es.typed-array.with", + "es.uint8-array.from-base64", + "es.uint8-array.from-hex", + "es.uint8-array.set-from-base64", + "es.uint8-array.set-from-hex", + "es.uint8-array.to-base64", + "es.uint8-array.to-hex", + "es.unescape", + "es.weak-map", + "es.weak-set", + "esnext.aggregate-error", + "esnext.suppressed-error.constructor", + "esnext.array.from-async", + "esnext.array.at", + "esnext.array.find-last", + "esnext.array.find-last-index", + "esnext.array.group", + "esnext.array.group-by", + "esnext.array.group-by-to-map", + "esnext.array.group-to-map", + "esnext.array.to-reversed", + "esnext.array.to-sorted", + "esnext.array.to-spliced", + "esnext.array.with", + "esnext.array-buffer.detached", + "esnext.array-buffer.transfer", + "esnext.array-buffer.transfer-to-fixed-length", + "esnext.async-disposable-stack.constructor", + "esnext.async-iterator.constructor", + "esnext.async-iterator.async-dispose", + "esnext.async-iterator.drop", + "esnext.async-iterator.every", + "esnext.async-iterator.filter", + "esnext.async-iterator.find", + "esnext.async-iterator.flat-map", + "esnext.async-iterator.for-each", + "esnext.async-iterator.from", + "esnext.async-iterator.map", + "esnext.async-iterator.reduce", + "esnext.async-iterator.some", + "esnext.async-iterator.take", + "esnext.async-iterator.to-array", + "esnext.data-view.get-float16", + "esnext.data-view.set-float16", + "esnext.disposable-stack.constructor", + "esnext.error.is-error", + "esnext.function.metadata", + "esnext.global-this", + "esnext.iterator.constructor", + "esnext.iterator.concat", + "esnext.iterator.dispose", + "esnext.iterator.drop", + "esnext.iterator.every", + "esnext.iterator.filter", + "esnext.iterator.find", + "esnext.iterator.flat-map", + "esnext.iterator.for-each", + "esnext.iterator.from", + "esnext.iterator.map", + "esnext.iterator.reduce", + "esnext.iterator.some", + "esnext.iterator.take", + "esnext.iterator.to-array", + "esnext.iterator.to-async", + "esnext.json.is-raw-json", + "esnext.json.parse", + "esnext.json.raw-json", + "esnext.map.get-or-insert", + "esnext.map.get-or-insert-computed", + "esnext.map.group-by", + "esnext.math.f16round", + "esnext.math.sum-precise", + "esnext.object.has-own", + "esnext.object.group-by", + "esnext.promise.all-settled", + "esnext.promise.any", + "esnext.promise.try", + "esnext.promise.with-resolvers", + "esnext.regexp.escape", + "esnext.set.difference.v2", + "esnext.set.intersection.v2", + "esnext.set.is-disjoint-from.v2", + "esnext.set.is-subset-of.v2", + "esnext.set.is-superset-of.v2", + "esnext.set.symmetric-difference.v2", + "esnext.set.union.v2", + "esnext.string.is-well-formed", + "esnext.string.match-all", + "esnext.string.replace-all", + "esnext.string.to-well-formed", + "esnext.symbol.async-dispose", + "esnext.symbol.dispose", + "esnext.symbol.metadata", + "esnext.typed-array.at", + "esnext.typed-array.find-last", + "esnext.typed-array.find-last-index", + "esnext.typed-array.to-reversed", + "esnext.typed-array.to-sorted", + "esnext.typed-array.to-spliced", + "esnext.typed-array.with", + "esnext.uint8-array.from-base64", + "esnext.uint8-array.from-hex", + "esnext.uint8-array.set-from-base64", + "esnext.uint8-array.set-from-hex", + "esnext.uint8-array.to-base64", + "esnext.uint8-array.to-hex", + "esnext.weak-map.get-or-insert", + "esnext.weak-map.get-or-insert-computed", + "web.atob", + "web.btoa", + "web.dom-collections.for-each", + "web.dom-collections.iterator", + "web.dom-exception.constructor", + "web.dom-exception.stack", + "web.dom-exception.to-string-tag", + "web.immediate", + "web.queue-microtask", + "web.self", + "web.structured-clone", + "web.timers", + "web.url", + "web.url.can-parse", + "web.url.parse", + "web.url.to-json", + "web.url-search-params", + "web.url-search-params.delete", + "web.url-search-params.has", + "web.url-search-params.size" + ], + "core-js/actual/aggregate-error": [], + "core-js/actual/array": [ + "es.array.at", + "es.array.concat", + "es.array.copy-within", + "es.array.every", + "es.array.fill", + "es.array.filter", + "es.array.find", + "es.array.find-index", + "es.array.find-last", + "es.array.find-last-index", + "es.array.flat", + "es.array.flat-map", + "es.array.for-each", + "es.array.from", + "es.array.includes", + "es.array.index-of", + "es.array.is-array", + "es.array.iterator", + "es.array.join", + "es.array.last-index-of", + "es.array.map", + "es.array.of", + "es.array.push", + "es.array.reduce", + "es.array.reduce-right", + "es.array.reverse", + "es.array.slice", + "es.array.some", + "es.array.sort", + "es.array.species", + "es.array.splice", + "es.array.to-reversed", + "es.array.to-sorted", + "es.array.to-spliced", + "es.array.unscopables.flat", + "es.array.unscopables.flat-map", + "es.array.unshift", + "es.array.with", + "es.object.to-string", + "es.promise", + "es.array.from-async", + "es.string.iterator", + "esnext.array.from-async", + "esnext.array.find-last", + "esnext.array.find-last-index", + "esnext.array.group", + "esnext.array.group-by", + "esnext.array.group-by-to-map", + "esnext.array.group-to-map", + "esnext.array.to-reversed", + "esnext.array.to-sorted", + "esnext.array.to-spliced", + "esnext.array.with" + ], + "core-js/actual/array-buffer": [ + "es.array-buffer.constructor", + "es.array-buffer.is-view", + "es.array-buffer.slice", + "es.data-view", + "es.array-buffer.detached", + "es.array-buffer.transfer", + "es.array-buffer.transfer-to-fixed-length", + "es.object.to-string", + "esnext.array-buffer.detached", + "esnext.array-buffer.transfer", + "esnext.array-buffer.transfer-to-fixed-length" + ], + "core-js/actual/array-buffer/constructor": [ + "es.array-buffer.constructor", + "es.array-buffer.slice", + "es.array-buffer.detached", + "es.array-buffer.transfer", + "es.array-buffer.transfer-to-fixed-length", + "es.object.to-string", + "esnext.array-buffer.detached", + "esnext.array-buffer.transfer", + "esnext.array-buffer.transfer-to-fixed-length" + ], + "core-js/actual/array-buffer/detached": [ + "es.array-buffer.constructor", + "es.array-buffer.slice", + "es.array-buffer.detached", + "esnext.array-buffer.detached" + ], + "core-js/actual/array-buffer/is-view": [ + "es.array-buffer.is-view" + ], + "core-js/actual/array-buffer/slice": [ + "es.array-buffer.slice" + ], + "core-js/actual/array-buffer/transfer": [ + "es.array-buffer.constructor", + "es.array-buffer.slice", + "es.data-view", + "es.array-buffer.transfer", + "esnext.array-buffer.transfer" + ], + "core-js/actual/array-buffer/transfer-to-fixed-length": [ + "es.array-buffer.constructor", + "es.array-buffer.slice", + "es.data-view", + "es.array-buffer.transfer-to-fixed-length", + "esnext.array-buffer.transfer-to-fixed-length" + ], + "core-js/actual/array/at": [ + "es.array.at" + ], + "core-js/actual/array/concat": [ + "es.array.concat" + ], + "core-js/actual/array/copy-within": [ + "es.array.copy-within" + ], + "core-js/actual/array/entries": [ + "es.array.iterator", + "es.object.to-string" + ], + "core-js/actual/array/every": [ + "es.array.every" + ], + "core-js/actual/array/fill": [ + "es.array.fill" + ], + "core-js/actual/array/filter": [ + "es.array.filter" + ], + "core-js/actual/array/find": [ + "es.array.find" + ], + "core-js/actual/array/find-index": [ + "es.array.find-index" + ], + "core-js/actual/array/find-last": [ + "es.array.find-last", + "esnext.array.find-last" + ], + "core-js/actual/array/find-last-index": [ + "es.array.find-last-index", + "esnext.array.find-last-index" + ], + "core-js/actual/array/flat": [ + "es.array.flat", + "es.array.unscopables.flat" + ], + "core-js/actual/array/flat-map": [ + "es.array.flat-map", + "es.array.unscopables.flat-map" + ], + "core-js/actual/array/for-each": [ + "es.array.for-each" + ], + "core-js/actual/array/from": [ + "es.array.from", + "es.string.iterator" + ], + "core-js/actual/array/from-async": [ + "es.array.iterator", + "es.object.to-string", + "es.promise", + "es.array.from-async", + "es.string.iterator", + "esnext.array.from-async" + ], + "core-js/actual/array/group": [ + "esnext.array.group" + ], + "core-js/actual/array/group-by": [ + "esnext.array.group-by" + ], + "core-js/actual/array/group-by-to-map": [ + "es.map", + "es.object.to-string", + "esnext.array.group-by-to-map" + ], + "core-js/actual/array/group-to-map": [ + "es.map", + "es.object.to-string", + "esnext.array.group-to-map" + ], + "core-js/actual/array/includes": [ + "es.array.includes" + ], + "core-js/actual/array/index-of": [ + "es.array.index-of" + ], + "core-js/actual/array/is-array": [ + "es.array.is-array" + ], + "core-js/actual/array/iterator": [ + "es.array.iterator", + "es.object.to-string" + ], + "core-js/actual/array/join": [ + "es.array.join" + ], + "core-js/actual/array/keys": [ + "es.array.iterator", + "es.object.to-string" + ], + "core-js/actual/array/last-index-of": [ + "es.array.last-index-of" + ], + "core-js/actual/array/map": [ + "es.array.map" + ], + "core-js/actual/array/of": [ + "es.array.of" + ], + "core-js/actual/array/push": [ + "es.array.push" + ], + "core-js/actual/array/reduce": [ + "es.array.reduce" + ], + "core-js/actual/array/reduce-right": [ + "es.array.reduce-right" + ], + "core-js/actual/array/reverse": [ + "es.array.reverse" + ], + "core-js/actual/array/slice": [ + "es.array.slice" + ], + "core-js/actual/array/some": [ + "es.array.some" + ], + "core-js/actual/array/sort": [ + "es.array.sort" + ], + "core-js/actual/array/splice": [ + "es.array.splice" + ], + "core-js/actual/array/to-reversed": [ + "es.array.to-reversed", + "esnext.array.to-reversed" + ], + "core-js/actual/array/to-sorted": [ + "es.array.sort", + "es.array.to-sorted", + "esnext.array.to-sorted" + ], + "core-js/actual/array/to-spliced": [ + "es.array.to-spliced", + "esnext.array.to-spliced" + ], + "core-js/actual/array/unshift": [ + "es.array.unshift" + ], + "core-js/actual/array/values": [ + "es.array.iterator", + "es.object.to-string" + ], + "core-js/actual/array/virtual": [ + "es.array.at", + "es.array.concat", + "es.array.copy-within", + "es.array.every", + "es.array.fill", + "es.array.filter", + "es.array.find", + "es.array.find-index", + "es.array.find-last", + "es.array.find-last-index", + "es.array.flat", + "es.array.flat-map", + "es.array.for-each", + "es.array.includes", + "es.array.index-of", + "es.array.iterator", + "es.array.join", + "es.array.last-index-of", + "es.array.map", + "es.array.push", + "es.array.reduce", + "es.array.reduce-right", + "es.array.reverse", + "es.array.slice", + "es.array.some", + "es.array.sort", + "es.array.species", + "es.array.splice", + "es.array.to-reversed", + "es.array.to-sorted", + "es.array.to-spliced", + "es.array.unscopables.flat", + "es.array.unscopables.flat-map", + "es.array.unshift", + "es.array.with", + "es.map", + "es.object.to-string", + "esnext.array.find-last", + "esnext.array.find-last-index", + "esnext.array.group", + "esnext.array.group-by", + "esnext.array.group-by-to-map", + "esnext.array.group-to-map", + "esnext.array.to-reversed", + "esnext.array.to-sorted", + "esnext.array.to-spliced", + "esnext.array.with" + ], + "core-js/actual/array/virtual/at": [ + "es.array.at" + ], + "core-js/actual/array/virtual/concat": [ + "es.array.concat" + ], + "core-js/actual/array/virtual/copy-within": [ + "es.array.copy-within" + ], + "core-js/actual/array/virtual/entries": [ + "es.array.iterator", + "es.object.to-string" + ], + "core-js/actual/array/virtual/every": [ + "es.array.every" + ], + "core-js/actual/array/virtual/fill": [ + "es.array.fill" + ], + "core-js/actual/array/virtual/filter": [ + "es.array.filter" + ], + "core-js/actual/array/virtual/find": [ + "es.array.find" + ], + "core-js/actual/array/virtual/find-index": [ + "es.array.find-index" + ], + "core-js/actual/array/virtual/find-last": [ + "es.array.find-last", + "esnext.array.find-last" + ], + "core-js/actual/array/virtual/find-last-index": [ + "es.array.find-last-index", + "esnext.array.find-last-index" + ], + "core-js/actual/array/virtual/flat": [ + "es.array.flat", + "es.array.unscopables.flat" + ], + "core-js/actual/array/virtual/flat-map": [ + "es.array.flat-map", + "es.array.unscopables.flat-map" + ], + "core-js/actual/array/virtual/for-each": [ + "es.array.for-each" + ], + "core-js/actual/array/virtual/group": [ + "esnext.array.group" + ], + "core-js/actual/array/virtual/group-by": [ + "esnext.array.group-by" + ], + "core-js/actual/array/virtual/group-by-to-map": [ + "es.map", + "es.object.to-string", + "esnext.array.group-by-to-map" + ], + "core-js/actual/array/virtual/group-to-map": [ + "es.map", + "es.object.to-string", + "esnext.array.group-to-map" + ], + "core-js/actual/array/virtual/includes": [ + "es.array.includes" + ], + "core-js/actual/array/virtual/index-of": [ + "es.array.index-of" + ], + "core-js/actual/array/virtual/iterator": [ + "es.array.iterator", + "es.object.to-string" + ], + "core-js/actual/array/virtual/join": [ + "es.array.join" + ], + "core-js/actual/array/virtual/keys": [ + "es.array.iterator", + "es.object.to-string" + ], + "core-js/actual/array/virtual/last-index-of": [ + "es.array.last-index-of" + ], + "core-js/actual/array/virtual/map": [ + "es.array.map" + ], + "core-js/actual/array/virtual/push": [ + "es.array.push" + ], + "core-js/actual/array/virtual/reduce": [ + "es.array.reduce" + ], + "core-js/actual/array/virtual/reduce-right": [ + "es.array.reduce-right" + ], + "core-js/actual/array/virtual/reverse": [ + "es.array.reverse" + ], + "core-js/actual/array/virtual/slice": [ + "es.array.slice" + ], + "core-js/actual/array/virtual/some": [ + "es.array.some" + ], + "core-js/actual/array/virtual/sort": [ + "es.array.sort" + ], + "core-js/actual/array/virtual/splice": [ + "es.array.splice" + ], + "core-js/actual/array/virtual/to-reversed": [ + "es.array.to-reversed", + "esnext.array.to-reversed" + ], + "core-js/actual/array/virtual/to-sorted": [ + "es.array.sort", + "es.array.to-sorted", + "esnext.array.to-sorted" + ], + "core-js/actual/array/virtual/to-spliced": [ + "es.array.to-spliced", + "esnext.array.to-spliced" + ], + "core-js/actual/array/virtual/unshift": [ + "es.array.unshift" + ], + "core-js/actual/array/virtual/values": [ + "es.array.iterator", + "es.object.to-string" + ], + "core-js/actual/array/virtual/with": [ + "es.array.with", + "esnext.array.with" + ], + "core-js/actual/array/with": [ + "es.array.with", + "esnext.array.with" + ], + "core-js/actual/async-disposable-stack": [ + "es.error.cause", + "es.error.to-string", + "es.suppressed-error.constructor", + "es.iterator.dispose", + "es.object.to-string", + "es.promise", + "es.async-disposable-stack.constructor", + "es.async-iterator.async-dispose", + "esnext.suppressed-error.constructor", + "esnext.async-disposable-stack.constructor", + "esnext.async-iterator.async-dispose", + "esnext.iterator.dispose" + ], + "core-js/actual/async-disposable-stack/constructor": [ + "es.error.cause", + "es.error.to-string", + "es.suppressed-error.constructor", + "es.iterator.dispose", + "es.object.to-string", + "es.promise", + "es.async-disposable-stack.constructor", + "es.async-iterator.async-dispose", + "esnext.suppressed-error.constructor", + "esnext.async-disposable-stack.constructor", + "esnext.async-iterator.async-dispose", + "esnext.iterator.dispose" + ], + "core-js/actual/async-iterator": [ + "es.array.iterator", + "es.object.to-string", + "es.promise", + "es.async-iterator.async-dispose", + "es.string.iterator", + "esnext.async-iterator.constructor", + "esnext.async-iterator.async-dispose", + "esnext.async-iterator.drop", + "esnext.async-iterator.every", + "esnext.async-iterator.filter", + "esnext.async-iterator.find", + "esnext.async-iterator.flat-map", + "esnext.async-iterator.for-each", + "esnext.async-iterator.from", + "esnext.async-iterator.map", + "esnext.async-iterator.reduce", + "esnext.async-iterator.some", + "esnext.async-iterator.take", + "esnext.async-iterator.to-array", + "web.dom-collections.iterator" + ], + "core-js/actual/async-iterator/async-dispose": [ + "es.object.to-string", + "es.promise", + "es.async-iterator.async-dispose", + "esnext.async-iterator.async-dispose" + ], + "core-js/actual/async-iterator/drop": [ + "es.object.to-string", + "es.promise", + "esnext.async-iterator.constructor", + "esnext.async-iterator.drop" + ], + "core-js/actual/async-iterator/every": [ + "es.object.to-string", + "es.promise", + "esnext.async-iterator.constructor", + "esnext.async-iterator.every" + ], + "core-js/actual/async-iterator/filter": [ + "es.object.to-string", + "es.promise", + "esnext.async-iterator.constructor", + "esnext.async-iterator.filter" + ], + "core-js/actual/async-iterator/find": [ + "es.object.to-string", + "es.promise", + "esnext.async-iterator.constructor", + "esnext.async-iterator.find" + ], + "core-js/actual/async-iterator/flat-map": [ + "es.object.to-string", + "es.promise", + "esnext.async-iterator.constructor", + "esnext.async-iterator.flat-map" + ], + "core-js/actual/async-iterator/for-each": [ + "es.object.to-string", + "es.promise", + "esnext.async-iterator.constructor", + "esnext.async-iterator.for-each" + ], + "core-js/actual/async-iterator/from": [ + "es.array.iterator", + "es.object.to-string", + "es.promise", + "es.string.iterator", + "esnext.async-iterator.constructor", + "esnext.async-iterator.drop", + "esnext.async-iterator.every", + "esnext.async-iterator.filter", + "esnext.async-iterator.find", + "esnext.async-iterator.flat-map", + "esnext.async-iterator.for-each", + "esnext.async-iterator.from", + "esnext.async-iterator.map", + "esnext.async-iterator.reduce", + "esnext.async-iterator.some", + "esnext.async-iterator.take", + "esnext.async-iterator.to-array", + "web.dom-collections.iterator" + ], + "core-js/actual/async-iterator/map": [ + "es.object.to-string", + "es.promise", + "esnext.async-iterator.constructor", + "esnext.async-iterator.map" + ], + "core-js/actual/async-iterator/reduce": [ + "es.object.to-string", + "es.promise", + "esnext.async-iterator.constructor", + "esnext.async-iterator.reduce" + ], + "core-js/actual/async-iterator/some": [ + "es.object.to-string", + "es.promise", + "esnext.async-iterator.constructor", + "esnext.async-iterator.some" + ], + "core-js/actual/async-iterator/take": [ + "es.object.to-string", + "es.promise", + "esnext.async-iterator.constructor", + "esnext.async-iterator.take" + ], + "core-js/actual/async-iterator/to-array": [ + "es.object.to-string", + "es.promise", + "esnext.async-iterator.constructor", + "esnext.async-iterator.to-array" + ], + "core-js/actual/atob": [ + "es.error.to-string", + "es.object.to-string", + "web.atob", + "web.dom-exception.constructor", + "web.dom-exception.stack", + "web.dom-exception.to-string-tag" + ], + "core-js/actual/btoa": [ + "es.error.to-string", + "es.object.to-string", + "web.btoa", + "web.dom-exception.constructor", + "web.dom-exception.stack", + "web.dom-exception.to-string-tag" + ], + "core-js/actual/clear-immediate": [ + "web.immediate" + ], + "core-js/actual/data-view": [ + "es.array-buffer.constructor", + "es.array-buffer.slice", + "es.data-view", + "es.data-view.get-float16", + "es.data-view.set-float16", + "es.object.to-string", + "esnext.data-view.get-float16", + "esnext.data-view.set-float16" + ], + "core-js/actual/data-view/get-float16": [ + "es.data-view.get-float16", + "esnext.data-view.get-float16" + ], + "core-js/actual/data-view/set-float16": [ + "es.data-view.set-float16", + "esnext.data-view.set-float16" + ], + "core-js/actual/date": [ + "es.date.get-year", + "es.date.now", + "es.date.set-year", + "es.date.to-gmt-string", + "es.date.to-iso-string", + "es.date.to-json", + "es.date.to-primitive", + "es.date.to-string" + ], + "core-js/actual/date/get-year": [ + "es.date.get-year" + ], + "core-js/actual/date/now": [ + "es.date.now" + ], + "core-js/actual/date/set-year": [ + "es.date.set-year" + ], + "core-js/actual/date/to-gmt-string": [ + "es.date.to-gmt-string" + ], + "core-js/actual/date/to-iso-string": [ + "es.date.to-iso-string", + "es.date.to-json" + ], + "core-js/actual/date/to-json": [ + "es.date.to-json" + ], + "core-js/actual/date/to-primitive": [ + "es.date.to-primitive" + ], + "core-js/actual/date/to-string": [ + "es.date.to-string" + ], + "core-js/actual/disposable-stack": [ + "es.error.cause", + "es.error.to-string", + "es.suppressed-error.constructor", + "es.disposable-stack.constructor", + "es.iterator.dispose", + "es.object.to-string", + "esnext.suppressed-error.constructor", + "esnext.disposable-stack.constructor", + "esnext.iterator.dispose" + ], + "core-js/actual/disposable-stack/constructor": [ + "es.error.cause", + "es.error.to-string", + "es.suppressed-error.constructor", + "es.disposable-stack.constructor", + "es.iterator.dispose", + "es.object.to-string", + "esnext.suppressed-error.constructor", + "esnext.disposable-stack.constructor", + "esnext.iterator.dispose" + ], + "core-js/actual/dom-collections": [ + "es.array.iterator", + "es.object.to-string", + "web.dom-collections.for-each", + "web.dom-collections.iterator" + ], + "core-js/actual/dom-collections/for-each": [ + "web.dom-collections.for-each" + ], + "core-js/actual/dom-collections/iterator": [ + "es.object.to-string", + "web.dom-collections.iterator" + ], + "core-js/actual/dom-exception": [ + "es.error.to-string", + "web.dom-exception.constructor", + "web.dom-exception.stack", + "web.dom-exception.to-string-tag" + ], + "core-js/actual/dom-exception/constructor": [ + "es.error.to-string", + "web.dom-exception.constructor", + "web.dom-exception.stack" + ], + "core-js/actual/dom-exception/to-string-tag": [ + "web.dom-exception.to-string-tag" + ], + "core-js/actual/error": [ + "es.error.cause", + "es.error.is-error", + "es.error.to-string", + "es.object.create", + "esnext.error.is-error" + ], + "core-js/actual/error/constructor": [ + "es.error.cause" + ], + "core-js/actual/error/is-error": [ + "es.error.is-error", + "es.object.create", + "esnext.error.is-error" + ], + "core-js/actual/error/to-string": [ + "es.error.to-string" + ], + "core-js/actual/escape": [ + "es.escape" + ], + "core-js/actual/function": [ + "es.function.bind", + "es.function.has-instance", + "es.function.name", + "esnext.function.metadata" + ], + "core-js/actual/function/bind": [ + "es.function.bind" + ], + "core-js/actual/function/has-instance": [ + "es.function.has-instance" + ], + "core-js/actual/function/metadata": [ + "esnext.function.metadata" + ], + "core-js/actual/function/name": [ + "es.function.name" + ], + "core-js/actual/function/virtual": [ + "es.function.bind" + ], + "core-js/actual/function/virtual/bind": [ + "es.function.bind" + ], + "core-js/actual/get-iterator": [ + "es.array.iterator", + "es.string.iterator", + "web.dom-collections.iterator" + ], + "core-js/actual/get-iterator-method": [ + "es.array.iterator", + "es.string.iterator", + "web.dom-collections.iterator" + ], + "core-js/actual/global-this": [ + "es.global-this" + ], + "core-js/actual/instance/at": [ + "es.array.at", + "es.string.at-alternative" + ], + "core-js/actual/instance/bind": [ + "es.function.bind" + ], + "core-js/actual/instance/code-point-at": [ + "es.string.code-point-at" + ], + "core-js/actual/instance/concat": [ + "es.array.concat" + ], + "core-js/actual/instance/copy-within": [ + "es.array.copy-within" + ], + "core-js/actual/instance/ends-with": [ + "es.string.ends-with" + ], + "core-js/actual/instance/entries": [ + "es.array.iterator", + "es.object.to-string", + "web.dom-collections.iterator" + ], + "core-js/actual/instance/every": [ + "es.array.every" + ], + "core-js/actual/instance/fill": [ + "es.array.fill" + ], + "core-js/actual/instance/filter": [ + "es.array.filter" + ], + "core-js/actual/instance/find": [ + "es.array.find" + ], + "core-js/actual/instance/find-index": [ + "es.array.find-index" + ], + "core-js/actual/instance/find-last": [ + "es.array.find-last", + "esnext.array.find-last" + ], + "core-js/actual/instance/find-last-index": [ + "es.array.find-last-index", + "esnext.array.find-last-index" + ], + "core-js/actual/instance/flags": [ + "es.regexp.flags" + ], + "core-js/actual/instance/flat": [ + "es.array.flat", + "es.array.unscopables.flat" + ], + "core-js/actual/instance/flat-map": [ + "es.array.flat-map", + "es.array.unscopables.flat-map" + ], + "core-js/actual/instance/for-each": [ + "es.array.for-each", + "web.dom-collections.for-each" + ], + "core-js/actual/instance/group": [ + "esnext.array.group" + ], + "core-js/actual/instance/group-by": [ + "esnext.array.group-by" + ], + "core-js/actual/instance/group-by-to-map": [ + "es.map", + "es.object.to-string", + "esnext.array.group-by-to-map" + ], + "core-js/actual/instance/group-to-map": [ + "es.map", + "es.object.to-string", + "esnext.array.group-to-map" + ], + "core-js/actual/instance/includes": [ + "es.array.includes", + "es.string.includes" + ], + "core-js/actual/instance/index-of": [ + "es.array.index-of" + ], + "core-js/actual/instance/is-well-formed": [ + "es.string.is-well-formed" + ], + "core-js/actual/instance/keys": [ + "es.array.iterator", + "es.object.to-string", + "web.dom-collections.iterator" + ], + "core-js/actual/instance/last-index-of": [ + "es.array.last-index-of" + ], + "core-js/actual/instance/map": [ + "es.array.map" + ], + "core-js/actual/instance/match-all": [ + "es.object.to-string", + "es.regexp.exec", + "es.string.match-all" + ], + "core-js/actual/instance/pad-end": [ + "es.string.pad-end" + ], + "core-js/actual/instance/pad-start": [ + "es.string.pad-start" + ], + "core-js/actual/instance/push": [ + "es.array.push" + ], + "core-js/actual/instance/reduce": [ + "es.array.reduce" + ], + "core-js/actual/instance/reduce-right": [ + "es.array.reduce-right" + ], + "core-js/actual/instance/repeat": [ + "es.string.repeat" + ], + "core-js/actual/instance/replace-all": [ + "es.regexp.exec", + "es.string.replace", + "es.string.replace-all" + ], + "core-js/actual/instance/reverse": [ + "es.array.reverse" + ], + "core-js/actual/instance/slice": [ + "es.array.slice" + ], + "core-js/actual/instance/some": [ + "es.array.some" + ], + "core-js/actual/instance/sort": [ + "es.array.sort" + ], + "core-js/actual/instance/splice": [ + "es.array.splice" + ], + "core-js/actual/instance/starts-with": [ + "es.string.starts-with" + ], + "core-js/actual/instance/to-reversed": [ + "es.array.to-reversed", + "esnext.array.to-reversed" + ], + "core-js/actual/instance/to-sorted": [ + "es.array.sort", + "es.array.to-sorted", + "esnext.array.to-sorted" + ], + "core-js/actual/instance/to-spliced": [ + "es.array.to-spliced", + "esnext.array.to-spliced" + ], + "core-js/actual/instance/to-well-formed": [ + "es.string.to-well-formed" + ], + "core-js/actual/instance/trim": [ + "es.string.trim" + ], + "core-js/actual/instance/trim-end": [ + "es.string.trim-end" + ], + "core-js/actual/instance/trim-left": [ + "es.string.trim-start" + ], + "core-js/actual/instance/trim-right": [ + "es.string.trim-end" + ], + "core-js/actual/instance/trim-start": [ + "es.string.trim-start" + ], + "core-js/actual/instance/unshift": [ + "es.array.unshift" + ], + "core-js/actual/instance/values": [ + "es.array.iterator", + "es.object.to-string", + "web.dom-collections.iterator" + ], + "core-js/actual/instance/with": [ + "es.array.with", + "esnext.array.with" + ], + "core-js/actual/is-iterable": [ + "es.array.iterator", + "es.string.iterator", + "web.dom-collections.iterator" + ], + "core-js/actual/iterator": [ + "es.array.iterator", + "es.iterator.constructor", + "es.iterator.dispose", + "es.iterator.drop", + "es.iterator.every", + "es.iterator.filter", + "es.iterator.find", + "es.iterator.flat-map", + "es.iterator.for-each", + "es.iterator.from", + "es.iterator.map", + "es.iterator.reduce", + "es.iterator.some", + "es.iterator.take", + "es.iterator.to-array", + "es.object.to-string", + "es.promise", + "es.string.iterator", + "esnext.iterator.constructor", + "esnext.iterator.concat", + "esnext.iterator.dispose", + "esnext.iterator.drop", + "esnext.iterator.every", + "esnext.iterator.filter", + "esnext.iterator.find", + "esnext.iterator.flat-map", + "esnext.iterator.for-each", + "esnext.iterator.from", + "esnext.iterator.map", + "esnext.iterator.reduce", + "esnext.iterator.some", + "esnext.iterator.take", + "esnext.iterator.to-array", + "esnext.iterator.to-async", + "web.dom-collections.iterator" + ], + "core-js/actual/iterator/concat": [ + "es.array.iterator", + "es.iterator.constructor", + "es.iterator.drop", + "es.iterator.every", + "es.iterator.filter", + "es.iterator.find", + "es.iterator.flat-map", + "es.iterator.for-each", + "es.iterator.map", + "es.iterator.reduce", + "es.iterator.some", + "es.iterator.take", + "es.iterator.to-array", + "es.object.to-string", + "es.string.iterator", + "esnext.iterator.concat", + "web.dom-collections.iterator" + ], + "core-js/actual/iterator/dispose": [ + "esnext.iterator.dispose" + ], + "core-js/actual/iterator/drop": [ + "es.iterator.constructor", + "es.iterator.drop", + "es.object.to-string", + "esnext.iterator.constructor", + "esnext.iterator.drop" + ], + "core-js/actual/iterator/every": [ + "es.iterator.constructor", + "es.iterator.every", + "es.object.to-string", + "esnext.iterator.constructor", + "esnext.iterator.every" + ], + "core-js/actual/iterator/filter": [ + "es.iterator.constructor", + "es.iterator.filter", + "es.object.to-string", + "esnext.iterator.constructor", + "esnext.iterator.filter" + ], + "core-js/actual/iterator/find": [ + "es.iterator.constructor", + "es.iterator.find", + "es.object.to-string", + "esnext.iterator.constructor", + "esnext.iterator.find" + ], + "core-js/actual/iterator/flat-map": [ + "es.array.iterator", + "es.iterator.constructor", + "es.iterator.flat-map", + "es.object.to-string", + "esnext.iterator.constructor", + "esnext.iterator.flat-map", + "web.dom-collections.iterator" + ], + "core-js/actual/iterator/for-each": [ + "es.iterator.constructor", + "es.iterator.for-each", + "es.object.to-string", + "esnext.iterator.constructor", + "esnext.iterator.for-each" + ], + "core-js/actual/iterator/from": [ + "es.array.iterator", + "es.iterator.constructor", + "es.iterator.drop", + "es.iterator.every", + "es.iterator.filter", + "es.iterator.find", + "es.iterator.flat-map", + "es.iterator.for-each", + "es.iterator.from", + "es.iterator.map", + "es.iterator.reduce", + "es.iterator.some", + "es.iterator.take", + "es.iterator.to-array", + "es.object.to-string", + "es.promise", + "es.string.iterator", + "esnext.iterator.constructor", + "esnext.iterator.dispose", + "esnext.iterator.drop", + "esnext.iterator.every", + "esnext.iterator.filter", + "esnext.iterator.find", + "esnext.iterator.flat-map", + "esnext.iterator.for-each", + "esnext.iterator.from", + "esnext.iterator.map", + "esnext.iterator.reduce", + "esnext.iterator.some", + "esnext.iterator.take", + "esnext.iterator.to-array", + "esnext.iterator.to-async", + "web.dom-collections.iterator" + ], + "core-js/actual/iterator/map": [ + "es.iterator.constructor", + "es.iterator.map", + "es.object.to-string", + "esnext.iterator.constructor", + "esnext.iterator.map" + ], + "core-js/actual/iterator/reduce": [ + "es.iterator.constructor", + "es.iterator.reduce", + "es.object.to-string", + "esnext.iterator.constructor", + "esnext.iterator.reduce" + ], + "core-js/actual/iterator/some": [ + "es.iterator.constructor", + "es.iterator.some", + "es.object.to-string", + "esnext.iterator.constructor", + "esnext.iterator.some" + ], + "core-js/actual/iterator/take": [ + "es.iterator.constructor", + "es.iterator.take", + "es.object.to-string", + "esnext.iterator.constructor", + "esnext.iterator.take" + ], + "core-js/actual/iterator/to-array": [ + "es.iterator.constructor", + "es.iterator.to-array", + "es.object.to-string", + "esnext.iterator.constructor", + "esnext.iterator.to-array" + ], + "core-js/actual/iterator/to-async": [ + "es.iterator.constructor", + "es.object.to-string", + "es.promise", + "esnext.iterator.constructor", + "esnext.iterator.to-async" + ], + "core-js/actual/json": [ + "es.date.to-json", + "es.json.stringify", + "es.json.to-string-tag", + "es.object.create", + "es.object.freeze", + "es.object.keys", + "esnext.json.is-raw-json", + "esnext.json.parse", + "esnext.json.raw-json" + ], + "core-js/actual/json/is-raw-json": [ + "esnext.json.is-raw-json" + ], + "core-js/actual/json/parse": [ + "es.object.keys", + "esnext.json.parse" + ], + "core-js/actual/json/raw-json": [ + "es.object.create", + "es.object.freeze", + "esnext.json.raw-json" + ], + "core-js/actual/json/stringify": [ + "es.date.to-json", + "es.json.stringify" + ], + "core-js/actual/json/to-string-tag": [ + "es.json.to-string-tag" + ], + "core-js/actual/map": [ + "es.array.iterator", + "es.map", + "es.map.group-by", + "es.object.to-string", + "es.string.iterator", + "esnext.map.get-or-insert", + "esnext.map.get-or-insert-computed", + "esnext.map.group-by", + "web.dom-collections.iterator" + ], + "core-js/actual/map/get-or-insert": [ + "es.map", + "esnext.map.get-or-insert" + ], + "core-js/actual/map/get-or-insert-computed": [ + "es.map", + "esnext.map.get-or-insert-computed" + ], + "core-js/actual/map/group-by": [ + "es.map", + "es.map.group-by", + "es.object.to-string", + "esnext.map.group-by" + ], + "core-js/actual/math": [ + "es.array.iterator", + "es.math.acosh", + "es.math.asinh", + "es.math.atanh", + "es.math.cbrt", + "es.math.clz32", + "es.math.cosh", + "es.math.expm1", + "es.math.fround", + "es.math.f16round", + "es.math.hypot", + "es.math.imul", + "es.math.log10", + "es.math.log1p", + "es.math.log2", + "es.math.sign", + "es.math.sinh", + "es.math.sum-precise", + "es.math.tanh", + "es.math.to-string-tag", + "es.math.trunc", + "esnext.math.f16round", + "esnext.math.sum-precise" + ], + "core-js/actual/math/acosh": [ + "es.math.acosh" + ], + "core-js/actual/math/asinh": [ + "es.math.asinh" + ], + "core-js/actual/math/atanh": [ + "es.math.atanh" + ], + "core-js/actual/math/cbrt": [ + "es.math.cbrt" + ], + "core-js/actual/math/clz32": [ + "es.math.clz32" + ], + "core-js/actual/math/cosh": [ + "es.math.cosh" + ], + "core-js/actual/math/expm1": [ + "es.math.expm1" + ], + "core-js/actual/math/f16round": [ + "es.math.f16round", + "esnext.math.f16round" + ], + "core-js/actual/math/fround": [ + "es.math.fround" + ], + "core-js/actual/math/hypot": [ + "es.math.hypot" + ], + "core-js/actual/math/imul": [ + "es.math.imul" + ], + "core-js/actual/math/log10": [ + "es.math.log10" + ], + "core-js/actual/math/log1p": [ + "es.math.log1p" + ], + "core-js/actual/math/log2": [ + "es.math.log2" + ], + "core-js/actual/math/sign": [ + "es.math.sign" + ], + "core-js/actual/math/sinh": [ + "es.math.sinh" + ], + "core-js/actual/math/sum-precise": [ + "es.array.iterator", + "es.math.sum-precise", + "esnext.math.sum-precise" + ], + "core-js/actual/math/tanh": [ + "es.math.tanh" + ], + "core-js/actual/math/to-string-tag": [ + "es.math.to-string-tag" + ], + "core-js/actual/math/trunc": [ + "es.math.trunc" + ], + "core-js/actual/number": [ + "es.number.constructor", + "es.number.epsilon", + "es.number.is-finite", + "es.number.is-integer", + "es.number.is-nan", + "es.number.is-safe-integer", + "es.number.max-safe-integer", + "es.number.min-safe-integer", + "es.number.parse-float", + "es.number.parse-int", + "es.number.to-exponential", + "es.number.to-fixed", + "es.number.to-precision" + ], + "core-js/actual/number/constructor": [ + "es.number.constructor" + ], + "core-js/actual/number/epsilon": [ + "es.number.epsilon" + ], + "core-js/actual/number/is-finite": [ + "es.number.is-finite" + ], + "core-js/actual/number/is-integer": [ + "es.number.is-integer" + ], + "core-js/actual/number/is-nan": [ + "es.number.is-nan" + ], + "core-js/actual/number/is-safe-integer": [ + "es.number.is-safe-integer" + ], + "core-js/actual/number/max-safe-integer": [ + "es.number.max-safe-integer" + ], + "core-js/actual/number/min-safe-integer": [ + "es.number.min-safe-integer" + ], + "core-js/actual/number/parse-float": [ + "es.number.parse-float" + ], + "core-js/actual/number/parse-int": [ + "es.number.parse-int" + ], + "core-js/actual/number/to-exponential": [ + "es.number.to-exponential" + ], + "core-js/actual/number/to-fixed": [ + "es.number.to-fixed" + ], + "core-js/actual/number/to-precision": [ + "es.number.to-precision" + ], + "core-js/actual/number/virtual": [ + "es.number.to-exponential", + "es.number.to-fixed", + "es.number.to-precision" + ], + "core-js/actual/number/virtual/to-exponential": [ + "es.number.to-exponential" + ], + "core-js/actual/number/virtual/to-fixed": [ + "es.number.to-fixed" + ], + "core-js/actual/number/virtual/to-precision": [ + "es.number.to-precision" + ], + "core-js/actual/object": [ + "es.symbol", + "es.json.to-string-tag", + "es.math.to-string-tag", + "es.object.assign", + "es.object.create", + "es.object.define-getter", + "es.object.define-properties", + "es.object.define-property", + "es.object.define-setter", + "es.object.entries", + "es.object.freeze", + "es.object.from-entries", + "es.object.get-own-property-descriptor", + "es.object.get-own-property-descriptors", + "es.object.get-own-property-names", + "es.object.get-prototype-of", + "es.object.group-by", + "es.object.has-own", + "es.object.is", + "es.object.is-extensible", + "es.object.is-frozen", + "es.object.is-sealed", + "es.object.keys", + "es.object.lookup-getter", + "es.object.lookup-setter", + "es.object.prevent-extensions", + "es.object.proto", + "es.object.seal", + "es.object.set-prototype-of", + "es.object.to-string", + "es.object.values", + "es.reflect.to-string-tag", + "esnext.object.group-by", + "web.dom-collections.iterator" + ], + "core-js/actual/object/assign": [ + "es.object.assign" + ], + "core-js/actual/object/create": [ + "es.object.create" + ], + "core-js/actual/object/define-getter": [ + "es.object.define-getter" + ], + "core-js/actual/object/define-properties": [ + "es.object.define-properties" + ], + "core-js/actual/object/define-property": [ + "es.object.define-property" + ], + "core-js/actual/object/define-setter": [ + "es.object.define-setter" + ], + "core-js/actual/object/entries": [ + "es.object.entries" + ], + "core-js/actual/object/freeze": [ + "es.object.freeze" + ], + "core-js/actual/object/from-entries": [ + "es.array.iterator", + "es.object.from-entries", + "web.dom-collections.iterator" + ], + "core-js/actual/object/get-own-property-descriptor": [ + "es.object.get-own-property-descriptor" + ], + "core-js/actual/object/get-own-property-descriptors": [ + "es.object.get-own-property-descriptors" + ], + "core-js/actual/object/get-own-property-names": [ + "es.object.get-own-property-names" + ], + "core-js/actual/object/get-own-property-symbols": [ + "es.symbol" + ], + "core-js/actual/object/get-prototype-of": [ + "es.object.get-prototype-of" + ], + "core-js/actual/object/group-by": [ + "es.object.create", + "es.object.group-by", + "esnext.object.group-by" + ], + "core-js/actual/object/has-own": [ + "es.object.has-own" + ], + "core-js/actual/object/is": [ + "es.object.is" + ], + "core-js/actual/object/is-extensible": [ + "es.object.is-extensible" + ], + "core-js/actual/object/is-frozen": [ + "es.object.is-frozen" + ], + "core-js/actual/object/is-sealed": [ + "es.object.is-sealed" + ], + "core-js/actual/object/keys": [ + "es.object.keys" + ], + "core-js/actual/object/lookup-getter": [ + "es.object.lookup-getter" + ], + "core-js/actual/object/lookup-setter": [ + "es.object.lookup-setter" + ], + "core-js/actual/object/prevent-extensions": [ + "es.object.prevent-extensions" + ], + "core-js/actual/object/proto": [ + "es.object.proto" + ], + "core-js/actual/object/seal": [ + "es.object.seal" + ], + "core-js/actual/object/set-prototype-of": [ + "es.object.set-prototype-of" + ], + "core-js/actual/object/to-string": [ + "es.json.to-string-tag", + "es.math.to-string-tag", + "es.object.to-string", + "es.reflect.to-string-tag" + ], + "core-js/actual/object/values": [ + "es.object.values" + ], + "core-js/actual/parse-float": [ + "es.parse-float" + ], + "core-js/actual/parse-int": [ + "es.parse-int" + ], + "core-js/actual/promise": [ + "es.aggregate-error", + "es.array.iterator", + "es.object.to-string", + "es.promise", + "es.promise.all-settled", + "es.promise.any", + "es.promise.finally", + "es.promise.try", + "es.promise.with-resolvers", + "es.string.iterator", + "esnext.promise.try", + "esnext.promise.with-resolvers", + "web.dom-collections.iterator" + ], + "core-js/actual/promise/all-settled": [ + "es.array.iterator", + "es.object.to-string", + "es.promise", + "es.promise.all-settled", + "es.string.iterator", + "web.dom-collections.iterator" + ], + "core-js/actual/promise/any": [ + "es.aggregate-error", + "es.array.iterator", + "es.object.to-string", + "es.promise", + "es.promise.any", + "es.string.iterator", + "web.dom-collections.iterator" + ], + "core-js/actual/promise/finally": [ + "es.object.to-string", + "es.promise", + "es.promise.finally" + ], + "core-js/actual/promise/try": [ + "es.object.to-string", + "es.promise", + "es.promise.try", + "esnext.promise.try" + ], + "core-js/actual/promise/with-resolvers": [ + "es.promise", + "es.promise.with-resolvers", + "esnext.promise.with-resolvers" + ], + "core-js/actual/queue-microtask": [ + "web.queue-microtask" + ], + "core-js/actual/reflect": [ + "es.object.to-string", + "es.reflect.apply", + "es.reflect.construct", + "es.reflect.define-property", + "es.reflect.delete-property", + "es.reflect.get", + "es.reflect.get-own-property-descriptor", + "es.reflect.get-prototype-of", + "es.reflect.has", + "es.reflect.is-extensible", + "es.reflect.own-keys", + "es.reflect.prevent-extensions", + "es.reflect.set", + "es.reflect.set-prototype-of", + "es.reflect.to-string-tag" + ], + "core-js/actual/reflect/apply": [ + "es.reflect.apply" + ], + "core-js/actual/reflect/construct": [ + "es.reflect.construct" + ], + "core-js/actual/reflect/define-property": [ + "es.reflect.define-property" + ], + "core-js/actual/reflect/delete-property": [ + "es.reflect.delete-property" + ], + "core-js/actual/reflect/get": [ + "es.reflect.get" + ], + "core-js/actual/reflect/get-own-property-descriptor": [ + "es.reflect.get-own-property-descriptor" + ], + "core-js/actual/reflect/get-prototype-of": [ + "es.reflect.get-prototype-of" + ], + "core-js/actual/reflect/has": [ + "es.reflect.has" + ], + "core-js/actual/reflect/is-extensible": [ + "es.reflect.is-extensible" + ], + "core-js/actual/reflect/own-keys": [ + "es.reflect.own-keys" + ], + "core-js/actual/reflect/prevent-extensions": [ + "es.reflect.prevent-extensions" + ], + "core-js/actual/reflect/set": [ + "es.reflect.set" + ], + "core-js/actual/reflect/set-prototype-of": [ + "es.reflect.set-prototype-of" + ], + "core-js/actual/reflect/to-string-tag": [ + "es.reflect.to-string-tag" + ], + "core-js/actual/regexp": [ + "es.regexp.constructor", + "es.regexp.escape", + "es.regexp.dot-all", + "es.regexp.exec", + "es.regexp.flags", + "es.regexp.sticky", + "es.regexp.test", + "es.regexp.to-string", + "es.string.match", + "es.string.replace", + "es.string.search", + "es.string.split", + "esnext.regexp.escape" + ], + "core-js/actual/regexp/constructor": [ + "es.regexp.constructor", + "es.regexp.dot-all", + "es.regexp.exec", + "es.regexp.sticky" + ], + "core-js/actual/regexp/dot-all": [ + "es.regexp.constructor", + "es.regexp.dot-all", + "es.regexp.exec" + ], + "core-js/actual/regexp/escape": [ + "es.regexp.escape", + "esnext.regexp.escape" + ], + "core-js/actual/regexp/flags": [ + "es.regexp.flags" + ], + "core-js/actual/regexp/match": [ + "es.regexp.exec", + "es.string.match" + ], + "core-js/actual/regexp/replace": [ + "es.regexp.exec", + "es.string.replace" + ], + "core-js/actual/regexp/search": [ + "es.regexp.exec", + "es.string.search" + ], + "core-js/actual/regexp/split": [ + "es.regexp.exec", + "es.string.split" + ], + "core-js/actual/regexp/sticky": [ + "es.regexp.constructor", + "es.regexp.exec", + "es.regexp.sticky" + ], + "core-js/actual/regexp/test": [ + "es.regexp.exec", + "es.regexp.test" + ], + "core-js/actual/regexp/to-string": [ + "es.regexp.to-string" + ], + "core-js/actual/self": [ + "web.self" + ], + "core-js/actual/set": [ + "es.array.iterator", + "es.object.to-string", + "es.set", + "es.set.difference.v2", + "es.set.intersection.v2", + "es.set.is-disjoint-from.v2", + "es.set.is-subset-of.v2", + "es.set.is-superset-of.v2", + "es.set.symmetric-difference.v2", + "es.set.union.v2", + "es.string.iterator", + "esnext.set.difference.v2", + "esnext.set.intersection.v2", + "esnext.set.is-disjoint-from.v2", + "esnext.set.is-subset-of.v2", + "esnext.set.is-superset-of.v2", + "esnext.set.symmetric-difference.v2", + "esnext.set.union.v2", + "web.dom-collections.iterator" + ], + "core-js/actual/set-immediate": [ + "web.immediate" + ], + "core-js/actual/set-interval": [ + "web.timers" + ], + "core-js/actual/set-timeout": [ + "web.timers" + ], + "core-js/actual/set/difference": [ + "es.set", + "es.set.difference.v2", + "esnext.set.difference.v2" + ], + "core-js/actual/set/intersection": [ + "es.set", + "es.set.intersection.v2", + "esnext.set.intersection.v2" + ], + "core-js/actual/set/is-disjoint-from": [ + "es.set", + "es.set.is-disjoint-from.v2", + "esnext.set.is-disjoint-from.v2" + ], + "core-js/actual/set/is-subset-of": [ + "es.set", + "es.set.is-subset-of.v2", + "esnext.set.is-subset-of.v2" + ], + "core-js/actual/set/is-superset-of": [ + "es.set", + "es.set.is-superset-of.v2", + "esnext.set.is-superset-of.v2" + ], + "core-js/actual/set/symmetric-difference": [ + "es.set", + "es.set.symmetric-difference.v2", + "esnext.set.symmetric-difference.v2" + ], + "core-js/actual/set/union": [ + "es.set", + "es.set.union.v2", + "esnext.set.union.v2" + ], + "core-js/actual/string": [ + "es.object.to-string", + "es.regexp.exec", + "es.string.at-alternative", + "es.string.code-point-at", + "es.string.ends-with", + "es.string.from-code-point", + "es.string.includes", + "es.string.is-well-formed", + "es.string.iterator", + "es.string.match", + "es.string.match-all", + "es.string.pad-end", + "es.string.pad-start", + "es.string.raw", + "es.string.repeat", + "es.string.replace", + "es.string.replace-all", + "es.string.search", + "es.string.split", + "es.string.starts-with", + "es.string.substr", + "es.string.to-well-formed", + "es.string.trim", + "es.string.trim-end", + "es.string.trim-start", + "es.string.anchor", + "es.string.big", + "es.string.blink", + "es.string.bold", + "es.string.fixed", + "es.string.fontcolor", + "es.string.fontsize", + "es.string.italics", + "es.string.link", + "es.string.small", + "es.string.strike", + "es.string.sub", + "es.string.sup", + "esnext.string.is-well-formed", + "esnext.string.to-well-formed" + ], + "core-js/actual/string/anchor": [ + "es.string.anchor" + ], + "core-js/actual/string/at": [ + "es.string.at-alternative" + ], + "core-js/actual/string/big": [ + "es.string.big" + ], + "core-js/actual/string/blink": [ + "es.string.blink" + ], + "core-js/actual/string/bold": [ + "es.string.bold" + ], + "core-js/actual/string/code-point-at": [ + "es.string.code-point-at" + ], + "core-js/actual/string/ends-with": [ + "es.string.ends-with" + ], + "core-js/actual/string/fixed": [ + "es.string.fixed" + ], + "core-js/actual/string/fontcolor": [ + "es.string.fontcolor" + ], + "core-js/actual/string/fontsize": [ + "es.string.fontsize" + ], + "core-js/actual/string/from-code-point": [ + "es.string.from-code-point" + ], + "core-js/actual/string/includes": [ + "es.string.includes" + ], + "core-js/actual/string/is-well-formed": [ + "es.string.is-well-formed", + "esnext.string.is-well-formed" + ], + "core-js/actual/string/italics": [ + "es.string.italics" + ], + "core-js/actual/string/iterator": [ + "es.object.to-string", + "es.string.iterator" + ], + "core-js/actual/string/link": [ + "es.string.link" + ], + "core-js/actual/string/match": [ + "es.regexp.exec", + "es.string.match" + ], + "core-js/actual/string/match-all": [ + "es.object.to-string", + "es.regexp.exec", + "es.string.match-all" + ], + "core-js/actual/string/pad-end": [ + "es.string.pad-end" + ], + "core-js/actual/string/pad-start": [ + "es.string.pad-start" + ], + "core-js/actual/string/raw": [ + "es.string.raw" + ], + "core-js/actual/string/repeat": [ + "es.string.repeat" + ], + "core-js/actual/string/replace": [ + "es.regexp.exec", + "es.string.replace" + ], + "core-js/actual/string/replace-all": [ + "es.regexp.exec", + "es.string.replace", + "es.string.replace-all" + ], + "core-js/actual/string/search": [ + "es.regexp.exec", + "es.string.search" + ], + "core-js/actual/string/small": [ + "es.string.small" + ], + "core-js/actual/string/split": [ + "es.regexp.exec", + "es.string.split" + ], + "core-js/actual/string/starts-with": [ + "es.string.starts-with" + ], + "core-js/actual/string/strike": [ + "es.string.strike" + ], + "core-js/actual/string/sub": [ + "es.string.sub" + ], + "core-js/actual/string/substr": [ + "es.string.substr" + ], + "core-js/actual/string/sup": [ + "es.string.sup" + ], + "core-js/actual/string/to-well-formed": [ + "es.string.to-well-formed", + "esnext.string.to-well-formed" + ], + "core-js/actual/string/trim": [ + "es.string.trim" + ], + "core-js/actual/string/trim-end": [ + "es.string.trim-end" + ], + "core-js/actual/string/trim-left": [ + "es.string.trim-start" + ], + "core-js/actual/string/trim-right": [ + "es.string.trim-end" + ], + "core-js/actual/string/trim-start": [ + "es.string.trim-start" + ], + "core-js/actual/string/virtual": [ + "es.object.to-string", + "es.regexp.exec", + "es.string.at-alternative", + "es.string.code-point-at", + "es.string.ends-with", + "es.string.includes", + "es.string.iterator", + "es.string.match", + "es.string.match-all", + "es.string.pad-end", + "es.string.pad-start", + "es.string.repeat", + "es.string.replace", + "es.string.replace-all", + "es.string.search", + "es.string.split", + "es.string.starts-with", + "es.string.substr", + "es.string.trim", + "es.string.trim-end", + "es.string.trim-start", + "es.string.anchor", + "es.string.big", + "es.string.blink", + "es.string.bold", + "es.string.fixed", + "es.string.fontcolor", + "es.string.fontsize", + "es.string.italics", + "es.string.link", + "es.string.small", + "es.string.strike", + "es.string.sub", + "es.string.sup", + "esnext.string.is-well-formed", + "esnext.string.to-well-formed" + ], + "core-js/actual/string/virtual/anchor": [ + "es.string.anchor" + ], + "core-js/actual/string/virtual/at": [ + "es.string.at-alternative" + ], + "core-js/actual/string/virtual/big": [ + "es.string.big" + ], + "core-js/actual/string/virtual/blink": [ + "es.string.blink" + ], + "core-js/actual/string/virtual/bold": [ + "es.string.bold" + ], + "core-js/actual/string/virtual/code-point-at": [ + "es.string.code-point-at" + ], + "core-js/actual/string/virtual/ends-with": [ + "es.string.ends-with" + ], + "core-js/actual/string/virtual/fixed": [ + "es.string.fixed" + ], + "core-js/actual/string/virtual/fontcolor": [ + "es.string.fontcolor" + ], + "core-js/actual/string/virtual/fontsize": [ + "es.string.fontsize" + ], + "core-js/actual/string/virtual/includes": [ + "es.string.includes" + ], + "core-js/actual/string/virtual/is-well-formed": [ + "es.string.is-well-formed", + "esnext.string.is-well-formed" + ], + "core-js/actual/string/virtual/italics": [ + "es.string.italics" + ], + "core-js/actual/string/virtual/iterator": [ + "es.object.to-string", + "es.string.iterator" + ], + "core-js/actual/string/virtual/link": [ + "es.string.link" + ], + "core-js/actual/string/virtual/match-all": [ + "es.object.to-string", + "es.regexp.exec", + "es.string.match-all" + ], + "core-js/actual/string/virtual/pad-end": [ + "es.string.pad-end" + ], + "core-js/actual/string/virtual/pad-start": [ + "es.string.pad-start" + ], + "core-js/actual/string/virtual/repeat": [ + "es.string.repeat" + ], + "core-js/actual/string/virtual/replace-all": [ + "es.regexp.exec", + "es.string.replace", + "es.string.replace-all" + ], + "core-js/actual/string/virtual/small": [ + "es.string.small" + ], + "core-js/actual/string/virtual/starts-with": [ + "es.string.starts-with" + ], + "core-js/actual/string/virtual/strike": [ + "es.string.strike" + ], + "core-js/actual/string/virtual/sub": [ + "es.string.sub" + ], + "core-js/actual/string/virtual/substr": [ + "es.string.substr" + ], + "core-js/actual/string/virtual/sup": [ + "es.string.sup" + ], + "core-js/actual/string/virtual/to-well-formed": [ + "es.string.to-well-formed", + "esnext.string.to-well-formed" + ], + "core-js/actual/string/virtual/trim": [ + "es.string.trim" + ], + "core-js/actual/string/virtual/trim-end": [ + "es.string.trim-end" + ], + "core-js/actual/string/virtual/trim-left": [ + "es.string.trim-start" + ], + "core-js/actual/string/virtual/trim-right": [ + "es.string.trim-end" + ], + "core-js/actual/string/virtual/trim-start": [ + "es.string.trim-start" + ], + "core-js/actual/structured-clone": [ + "es.error.to-string", + "es.array.iterator", + "es.map", + "es.object.keys", + "es.object.to-string", + "es.set", + "web.dom-exception.constructor", + "web.dom-exception.stack", + "web.dom-exception.to-string-tag", + "web.structured-clone" + ], + "core-js/actual/suppressed-error": [], + "core-js/actual/symbol": [ + "es.symbol", + "es.symbol.description", + "es.symbol.async-dispose", + "es.symbol.async-iterator", + "es.symbol.dispose", + "es.symbol.has-instance", + "es.symbol.is-concat-spreadable", + "es.symbol.iterator", + "es.symbol.match", + "es.symbol.match-all", + "es.symbol.replace", + "es.symbol.search", + "es.symbol.species", + "es.symbol.split", + "es.symbol.to-primitive", + "es.symbol.to-string-tag", + "es.symbol.unscopables", + "es.array.concat", + "es.json.to-string-tag", + "es.math.to-string-tag", + "es.object.to-string", + "es.reflect.to-string-tag", + "esnext.function.metadata", + "esnext.symbol.async-dispose", + "esnext.symbol.dispose", + "esnext.symbol.metadata", + "web.dom-collections.iterator" + ], + "core-js/actual/symbol/async-dispose": [ + "es.symbol.async-dispose", + "esnext.symbol.async-dispose" + ], + "core-js/actual/symbol/async-iterator": [ + "es.symbol.async-iterator" + ], + "core-js/actual/symbol/description": [ + "es.symbol.description" + ], + "core-js/actual/symbol/dispose": [ + "es.symbol.dispose", + "esnext.symbol.dispose" + ], + "core-js/actual/symbol/for": [ + "es.symbol" + ], + "core-js/actual/symbol/has-instance": [ + "es.symbol.has-instance", + "es.function.has-instance" + ], + "core-js/actual/symbol/is-concat-spreadable": [ + "es.symbol.is-concat-spreadable", + "es.array.concat" + ], + "core-js/actual/symbol/iterator": [ + "es.symbol.iterator", + "es.array.iterator", + "es.object.to-string", + "es.string.iterator", + "web.dom-collections.iterator" + ], + "core-js/actual/symbol/key-for": [ + "es.symbol" + ], + "core-js/actual/symbol/match": [ + "es.symbol.match", + "es.regexp.exec", + "es.string.match" + ], + "core-js/actual/symbol/match-all": [ + "es.symbol.match-all", + "es.object.to-string", + "es.regexp.exec", + "es.string.match-all" + ], + "core-js/actual/symbol/metadata": [ + "esnext.function.metadata", + "esnext.symbol.metadata" + ], + "core-js/actual/symbol/replace": [ + "es.symbol.replace", + "es.regexp.exec", + "es.string.replace" + ], + "core-js/actual/symbol/search": [ + "es.symbol.search", + "es.regexp.exec", + "es.string.search" + ], + "core-js/actual/symbol/species": [ + "es.symbol.species" + ], + "core-js/actual/symbol/split": [ + "es.symbol.split", + "es.regexp.exec", + "es.string.split" + ], + "core-js/actual/symbol/to-primitive": [ + "es.symbol.to-primitive", + "es.date.to-primitive" + ], + "core-js/actual/symbol/to-string-tag": [ + "es.symbol.to-string-tag", + "es.json.to-string-tag", + "es.math.to-string-tag", + "es.object.to-string", + "es.reflect.to-string-tag" + ], + "core-js/actual/symbol/unscopables": [ + "es.symbol.unscopables" + ], + "core-js/actual/typed-array": [ + "es.object.to-string", + "es.string.iterator", + "es.typed-array.float32-array", + "es.typed-array.float64-array", + "es.typed-array.int8-array", + "es.typed-array.int16-array", + "es.typed-array.int32-array", + "es.typed-array.uint8-array", + "es.typed-array.uint8-clamped-array", + "es.typed-array.uint16-array", + "es.typed-array.uint32-array", + "es.typed-array.at", + "es.typed-array.copy-within", + "es.typed-array.every", + "es.typed-array.fill", + "es.typed-array.filter", + "es.typed-array.find", + "es.typed-array.find-index", + "es.typed-array.find-last", + "es.typed-array.find-last-index", + "es.typed-array.for-each", + "es.typed-array.from", + "es.typed-array.includes", + "es.typed-array.index-of", + "es.typed-array.iterator", + "es.typed-array.join", + "es.typed-array.last-index-of", + "es.typed-array.map", + "es.typed-array.of", + "es.typed-array.reduce", + "es.typed-array.reduce-right", + "es.typed-array.reverse", + "es.typed-array.set", + "es.typed-array.slice", + "es.typed-array.some", + "es.typed-array.sort", + "es.typed-array.subarray", + "es.typed-array.to-locale-string", + "es.typed-array.to-reversed", + "es.typed-array.to-sorted", + "es.typed-array.to-string", + "es.typed-array.with", + "es.uint8-array.from-base64", + "es.uint8-array.from-hex", + "es.uint8-array.set-from-base64", + "es.uint8-array.set-from-hex", + "es.uint8-array.to-base64", + "es.uint8-array.to-hex", + "esnext.typed-array.find-last", + "esnext.typed-array.find-last-index", + "esnext.typed-array.to-reversed", + "esnext.typed-array.to-sorted", + "esnext.typed-array.to-spliced", + "esnext.typed-array.with", + "esnext.uint8-array.from-base64", + "esnext.uint8-array.from-hex", + "esnext.uint8-array.set-from-base64", + "esnext.uint8-array.set-from-hex", + "esnext.uint8-array.to-base64", + "esnext.uint8-array.to-hex" + ], + "core-js/actual/typed-array/at": [ + "es.typed-array.at" + ], + "core-js/actual/typed-array/copy-within": [ + "es.typed-array.copy-within" + ], + "core-js/actual/typed-array/entries": [ + "es.object.to-string", + "es.typed-array.iterator" + ], + "core-js/actual/typed-array/every": [ + "es.typed-array.every" + ], + "core-js/actual/typed-array/fill": [ + "es.typed-array.fill" + ], + "core-js/actual/typed-array/filter": [ + "es.typed-array.filter" + ], + "core-js/actual/typed-array/find": [ + "es.typed-array.find" + ], + "core-js/actual/typed-array/find-index": [ + "es.typed-array.find-index" + ], + "core-js/actual/typed-array/find-last": [ + "es.typed-array.find-last", + "esnext.typed-array.find-last" + ], + "core-js/actual/typed-array/find-last-index": [ + "es.typed-array.find-last-index", + "esnext.typed-array.find-last-index" + ], + "core-js/actual/typed-array/float32-array": [ + "es.array-buffer.constructor", + "es.array-buffer.slice", + "es.object.to-string", + "es.string.iterator", + "es.typed-array.float32-array", + "es.typed-array.at", + "es.typed-array.copy-within", + "es.typed-array.every", + "es.typed-array.fill", + "es.typed-array.filter", + "es.typed-array.find", + "es.typed-array.find-index", + "es.typed-array.find-last", + "es.typed-array.find-last-index", + "es.typed-array.for-each", + "es.typed-array.from", + "es.typed-array.includes", + "es.typed-array.index-of", + "es.typed-array.iterator", + "es.typed-array.join", + "es.typed-array.last-index-of", + "es.typed-array.map", + "es.typed-array.of", + "es.typed-array.reduce", + "es.typed-array.reduce-right", + "es.typed-array.reverse", + "es.typed-array.set", + "es.typed-array.slice", + "es.typed-array.some", + "es.typed-array.sort", + "es.typed-array.subarray", + "es.typed-array.to-locale-string", + "es.typed-array.to-reversed", + "es.typed-array.to-sorted", + "es.typed-array.to-string", + "es.typed-array.with", + "es.uint8-array.from-base64", + "es.uint8-array.from-hex", + "es.uint8-array.set-from-base64", + "es.uint8-array.set-from-hex", + "es.uint8-array.to-base64", + "es.uint8-array.to-hex", + "esnext.typed-array.find-last", + "esnext.typed-array.find-last-index", + "esnext.typed-array.to-reversed", + "esnext.typed-array.to-sorted", + "esnext.typed-array.to-spliced", + "esnext.typed-array.with", + "esnext.uint8-array.from-base64", + "esnext.uint8-array.from-hex", + "esnext.uint8-array.set-from-base64", + "esnext.uint8-array.set-from-hex", + "esnext.uint8-array.to-base64", + "esnext.uint8-array.to-hex" + ], + "core-js/actual/typed-array/float64-array": [ + "es.array-buffer.constructor", + "es.array-buffer.slice", + "es.object.to-string", + "es.string.iterator", + "es.typed-array.float64-array", + "es.typed-array.at", + "es.typed-array.copy-within", + "es.typed-array.every", + "es.typed-array.fill", + "es.typed-array.filter", + "es.typed-array.find", + "es.typed-array.find-index", + "es.typed-array.find-last", + "es.typed-array.find-last-index", + "es.typed-array.for-each", + "es.typed-array.from", + "es.typed-array.includes", + "es.typed-array.index-of", + "es.typed-array.iterator", + "es.typed-array.join", + "es.typed-array.last-index-of", + "es.typed-array.map", + "es.typed-array.of", + "es.typed-array.reduce", + "es.typed-array.reduce-right", + "es.typed-array.reverse", + "es.typed-array.set", + "es.typed-array.slice", + "es.typed-array.some", + "es.typed-array.sort", + "es.typed-array.subarray", + "es.typed-array.to-locale-string", + "es.typed-array.to-reversed", + "es.typed-array.to-sorted", + "es.typed-array.to-string", + "es.typed-array.with", + "es.uint8-array.from-base64", + "es.uint8-array.from-hex", + "es.uint8-array.set-from-base64", + "es.uint8-array.set-from-hex", + "es.uint8-array.to-base64", + "es.uint8-array.to-hex", + "esnext.typed-array.find-last", + "esnext.typed-array.find-last-index", + "esnext.typed-array.to-reversed", + "esnext.typed-array.to-sorted", + "esnext.typed-array.to-spliced", + "esnext.typed-array.with", + "esnext.uint8-array.from-base64", + "esnext.uint8-array.from-hex", + "esnext.uint8-array.set-from-base64", + "esnext.uint8-array.set-from-hex", + "esnext.uint8-array.to-base64", + "esnext.uint8-array.to-hex" + ], + "core-js/actual/typed-array/for-each": [ + "es.typed-array.for-each" + ], + "core-js/actual/typed-array/from": [ + "es.typed-array.from" + ], + "core-js/actual/typed-array/from-base64": [ + "es.uint8-array.from-base64", + "esnext.uint8-array.from-base64" + ], + "core-js/actual/typed-array/from-hex": [ + "es.uint8-array.from-hex", + "esnext.uint8-array.from-hex" + ], + "core-js/actual/typed-array/includes": [ + "es.typed-array.includes" + ], + "core-js/actual/typed-array/index-of": [ + "es.typed-array.index-of" + ], + "core-js/actual/typed-array/int16-array": [ + "es.array-buffer.constructor", + "es.array-buffer.slice", + "es.object.to-string", + "es.string.iterator", + "es.typed-array.int16-array", + "es.typed-array.at", + "es.typed-array.copy-within", + "es.typed-array.every", + "es.typed-array.fill", + "es.typed-array.filter", + "es.typed-array.find", + "es.typed-array.find-index", + "es.typed-array.find-last", + "es.typed-array.find-last-index", + "es.typed-array.for-each", + "es.typed-array.from", + "es.typed-array.includes", + "es.typed-array.index-of", + "es.typed-array.iterator", + "es.typed-array.join", + "es.typed-array.last-index-of", + "es.typed-array.map", + "es.typed-array.of", + "es.typed-array.reduce", + "es.typed-array.reduce-right", + "es.typed-array.reverse", + "es.typed-array.set", + "es.typed-array.slice", + "es.typed-array.some", + "es.typed-array.sort", + "es.typed-array.subarray", + "es.typed-array.to-locale-string", + "es.typed-array.to-reversed", + "es.typed-array.to-sorted", + "es.typed-array.to-string", + "es.typed-array.with", + "es.uint8-array.from-base64", + "es.uint8-array.from-hex", + "es.uint8-array.set-from-base64", + "es.uint8-array.set-from-hex", + "es.uint8-array.to-base64", + "es.uint8-array.to-hex", + "esnext.typed-array.find-last", + "esnext.typed-array.find-last-index", + "esnext.typed-array.to-reversed", + "esnext.typed-array.to-sorted", + "esnext.typed-array.to-spliced", + "esnext.typed-array.with", + "esnext.uint8-array.from-base64", + "esnext.uint8-array.from-hex", + "esnext.uint8-array.set-from-base64", + "esnext.uint8-array.set-from-hex", + "esnext.uint8-array.to-base64", + "esnext.uint8-array.to-hex" + ], + "core-js/actual/typed-array/int32-array": [ + "es.array-buffer.constructor", + "es.array-buffer.slice", + "es.object.to-string", + "es.string.iterator", + "es.typed-array.int32-array", + "es.typed-array.at", + "es.typed-array.copy-within", + "es.typed-array.every", + "es.typed-array.fill", + "es.typed-array.filter", + "es.typed-array.find", + "es.typed-array.find-index", + "es.typed-array.find-last", + "es.typed-array.find-last-index", + "es.typed-array.for-each", + "es.typed-array.from", + "es.typed-array.includes", + "es.typed-array.index-of", + "es.typed-array.iterator", + "es.typed-array.join", + "es.typed-array.last-index-of", + "es.typed-array.map", + "es.typed-array.of", + "es.typed-array.reduce", + "es.typed-array.reduce-right", + "es.typed-array.reverse", + "es.typed-array.set", + "es.typed-array.slice", + "es.typed-array.some", + "es.typed-array.sort", + "es.typed-array.subarray", + "es.typed-array.to-locale-string", + "es.typed-array.to-reversed", + "es.typed-array.to-sorted", + "es.typed-array.to-string", + "es.typed-array.with", + "es.uint8-array.from-base64", + "es.uint8-array.from-hex", + "es.uint8-array.set-from-base64", + "es.uint8-array.set-from-hex", + "es.uint8-array.to-base64", + "es.uint8-array.to-hex", + "esnext.typed-array.find-last", + "esnext.typed-array.find-last-index", + "esnext.typed-array.to-reversed", + "esnext.typed-array.to-sorted", + "esnext.typed-array.to-spliced", + "esnext.typed-array.with", + "esnext.uint8-array.from-base64", + "esnext.uint8-array.from-hex", + "esnext.uint8-array.set-from-base64", + "esnext.uint8-array.set-from-hex", + "esnext.uint8-array.to-base64", + "esnext.uint8-array.to-hex" + ], + "core-js/actual/typed-array/int8-array": [ + "es.array-buffer.constructor", + "es.array-buffer.slice", + "es.object.to-string", + "es.string.iterator", + "es.typed-array.int8-array", + "es.typed-array.at", + "es.typed-array.copy-within", + "es.typed-array.every", + "es.typed-array.fill", + "es.typed-array.filter", + "es.typed-array.find", + "es.typed-array.find-index", + "es.typed-array.find-last", + "es.typed-array.find-last-index", + "es.typed-array.for-each", + "es.typed-array.from", + "es.typed-array.includes", + "es.typed-array.index-of", + "es.typed-array.iterator", + "es.typed-array.join", + "es.typed-array.last-index-of", + "es.typed-array.map", + "es.typed-array.of", + "es.typed-array.reduce", + "es.typed-array.reduce-right", + "es.typed-array.reverse", + "es.typed-array.set", + "es.typed-array.slice", + "es.typed-array.some", + "es.typed-array.sort", + "es.typed-array.subarray", + "es.typed-array.to-locale-string", + "es.typed-array.to-reversed", + "es.typed-array.to-sorted", + "es.typed-array.to-string", + "es.typed-array.with", + "es.uint8-array.from-base64", + "es.uint8-array.from-hex", + "es.uint8-array.set-from-base64", + "es.uint8-array.set-from-hex", + "es.uint8-array.to-base64", + "es.uint8-array.to-hex", + "esnext.typed-array.find-last", + "esnext.typed-array.find-last-index", + "esnext.typed-array.to-reversed", + "esnext.typed-array.to-sorted", + "esnext.typed-array.to-spliced", + "esnext.typed-array.with", + "esnext.uint8-array.from-base64", + "esnext.uint8-array.from-hex", + "esnext.uint8-array.set-from-base64", + "esnext.uint8-array.set-from-hex", + "esnext.uint8-array.to-base64", + "esnext.uint8-array.to-hex" + ], + "core-js/actual/typed-array/iterator": [ + "es.object.to-string", + "es.typed-array.iterator" + ], + "core-js/actual/typed-array/join": [ + "es.typed-array.join" + ], + "core-js/actual/typed-array/keys": [ + "es.object.to-string", + "es.typed-array.iterator" + ], + "core-js/actual/typed-array/last-index-of": [ + "es.typed-array.last-index-of" + ], + "core-js/actual/typed-array/map": [ + "es.typed-array.map" + ], + "core-js/actual/typed-array/methods": [ + "es.object.to-string", + "es.string.iterator", + "es.typed-array.at", + "es.typed-array.copy-within", + "es.typed-array.every", + "es.typed-array.fill", + "es.typed-array.filter", + "es.typed-array.find", + "es.typed-array.find-index", + "es.typed-array.find-last", + "es.typed-array.find-last-index", + "es.typed-array.for-each", + "es.typed-array.from", + "es.typed-array.includes", + "es.typed-array.index-of", + "es.typed-array.iterator", + "es.typed-array.join", + "es.typed-array.last-index-of", + "es.typed-array.map", + "es.typed-array.of", + "es.typed-array.reduce", + "es.typed-array.reduce-right", + "es.typed-array.reverse", + "es.typed-array.set", + "es.typed-array.slice", + "es.typed-array.some", + "es.typed-array.sort", + "es.typed-array.subarray", + "es.typed-array.to-locale-string", + "es.typed-array.to-reversed", + "es.typed-array.to-sorted", + "es.typed-array.to-string", + "es.typed-array.with", + "es.uint8-array.from-base64", + "es.uint8-array.from-hex", + "es.uint8-array.set-from-base64", + "es.uint8-array.set-from-hex", + "es.uint8-array.to-base64", + "es.uint8-array.to-hex", + "esnext.typed-array.find-last", + "esnext.typed-array.find-last-index", + "esnext.typed-array.to-reversed", + "esnext.typed-array.to-sorted", + "esnext.typed-array.to-spliced", + "esnext.typed-array.with", + "esnext.uint8-array.from-base64", + "esnext.uint8-array.from-hex", + "esnext.uint8-array.set-from-base64", + "esnext.uint8-array.set-from-hex", + "esnext.uint8-array.to-base64", + "esnext.uint8-array.to-hex" + ], + "core-js/actual/typed-array/of": [ + "es.typed-array.of" + ], + "core-js/actual/typed-array/reduce": [ + "es.typed-array.reduce" + ], + "core-js/actual/typed-array/reduce-right": [ + "es.typed-array.reduce-right" + ], + "core-js/actual/typed-array/reverse": [ + "es.typed-array.reverse" + ], + "core-js/actual/typed-array/set": [ + "es.typed-array.set" + ], + "core-js/actual/typed-array/set-from-base64": [ + "es.uint8-array.set-from-base64", + "esnext.uint8-array.set-from-base64" + ], + "core-js/actual/typed-array/set-from-hex": [ + "es.uint8-array.set-from-hex", + "esnext.uint8-array.set-from-hex" + ], + "core-js/actual/typed-array/slice": [ + "es.typed-array.slice" + ], + "core-js/actual/typed-array/some": [ + "es.typed-array.some" + ], + "core-js/actual/typed-array/sort": [ + "es.typed-array.sort" + ], + "core-js/actual/typed-array/subarray": [ + "es.typed-array.subarray" + ], + "core-js/actual/typed-array/to-base64": [ + "es.uint8-array.to-base64", + "esnext.uint8-array.to-base64" + ], + "core-js/actual/typed-array/to-hex": [ + "es.uint8-array.to-hex", + "esnext.uint8-array.to-hex" + ], + "core-js/actual/typed-array/to-locale-string": [ + "es.typed-array.to-locale-string" + ], + "core-js/actual/typed-array/to-reversed": [ + "es.typed-array.to-reversed", + "esnext.typed-array.to-reversed" + ], + "core-js/actual/typed-array/to-sorted": [ + "es.typed-array.sort", + "es.typed-array.to-sorted", + "esnext.typed-array.to-sorted" + ], + "core-js/actual/typed-array/to-spliced": [ + "esnext.typed-array.to-spliced" + ], + "core-js/actual/typed-array/to-string": [ + "es.typed-array.to-string" + ], + "core-js/actual/typed-array/uint16-array": [ + "es.array-buffer.constructor", + "es.array-buffer.slice", + "es.object.to-string", + "es.string.iterator", + "es.typed-array.uint16-array", + "es.typed-array.at", + "es.typed-array.copy-within", + "es.typed-array.every", + "es.typed-array.fill", + "es.typed-array.filter", + "es.typed-array.find", + "es.typed-array.find-index", + "es.typed-array.find-last", + "es.typed-array.find-last-index", + "es.typed-array.for-each", + "es.typed-array.from", + "es.typed-array.includes", + "es.typed-array.index-of", + "es.typed-array.iterator", + "es.typed-array.join", + "es.typed-array.last-index-of", + "es.typed-array.map", + "es.typed-array.of", + "es.typed-array.reduce", + "es.typed-array.reduce-right", + "es.typed-array.reverse", + "es.typed-array.set", + "es.typed-array.slice", + "es.typed-array.some", + "es.typed-array.sort", + "es.typed-array.subarray", + "es.typed-array.to-locale-string", + "es.typed-array.to-reversed", + "es.typed-array.to-sorted", + "es.typed-array.to-string", + "es.typed-array.with", + "es.uint8-array.from-base64", + "es.uint8-array.from-hex", + "es.uint8-array.set-from-base64", + "es.uint8-array.set-from-hex", + "es.uint8-array.to-base64", + "es.uint8-array.to-hex", + "esnext.typed-array.find-last", + "esnext.typed-array.find-last-index", + "esnext.typed-array.to-reversed", + "esnext.typed-array.to-sorted", + "esnext.typed-array.to-spliced", + "esnext.typed-array.with", + "esnext.uint8-array.from-base64", + "esnext.uint8-array.from-hex", + "esnext.uint8-array.set-from-base64", + "esnext.uint8-array.set-from-hex", + "esnext.uint8-array.to-base64", + "esnext.uint8-array.to-hex" + ], + "core-js/actual/typed-array/uint32-array": [ + "es.array-buffer.constructor", + "es.array-buffer.slice", + "es.object.to-string", + "es.string.iterator", + "es.typed-array.uint32-array", + "es.typed-array.at", + "es.typed-array.copy-within", + "es.typed-array.every", + "es.typed-array.fill", + "es.typed-array.filter", + "es.typed-array.find", + "es.typed-array.find-index", + "es.typed-array.find-last", + "es.typed-array.find-last-index", + "es.typed-array.for-each", + "es.typed-array.from", + "es.typed-array.includes", + "es.typed-array.index-of", + "es.typed-array.iterator", + "es.typed-array.join", + "es.typed-array.last-index-of", + "es.typed-array.map", + "es.typed-array.of", + "es.typed-array.reduce", + "es.typed-array.reduce-right", + "es.typed-array.reverse", + "es.typed-array.set", + "es.typed-array.slice", + "es.typed-array.some", + "es.typed-array.sort", + "es.typed-array.subarray", + "es.typed-array.to-locale-string", + "es.typed-array.to-reversed", + "es.typed-array.to-sorted", + "es.typed-array.to-string", + "es.typed-array.with", + "es.uint8-array.from-base64", + "es.uint8-array.from-hex", + "es.uint8-array.set-from-base64", + "es.uint8-array.set-from-hex", + "es.uint8-array.to-base64", + "es.uint8-array.to-hex", + "esnext.typed-array.find-last", + "esnext.typed-array.find-last-index", + "esnext.typed-array.to-reversed", + "esnext.typed-array.to-sorted", + "esnext.typed-array.to-spliced", + "esnext.typed-array.with", + "esnext.uint8-array.from-base64", + "esnext.uint8-array.from-hex", + "esnext.uint8-array.set-from-base64", + "esnext.uint8-array.set-from-hex", + "esnext.uint8-array.to-base64", + "esnext.uint8-array.to-hex" + ], + "core-js/actual/typed-array/uint8-array": [ + "es.array-buffer.constructor", + "es.array-buffer.slice", + "es.object.to-string", + "es.string.iterator", + "es.typed-array.uint8-array", + "es.typed-array.at", + "es.typed-array.copy-within", + "es.typed-array.every", + "es.typed-array.fill", + "es.typed-array.filter", + "es.typed-array.find", + "es.typed-array.find-index", + "es.typed-array.find-last", + "es.typed-array.find-last-index", + "es.typed-array.for-each", + "es.typed-array.from", + "es.typed-array.includes", + "es.typed-array.index-of", + "es.typed-array.iterator", + "es.typed-array.join", + "es.typed-array.last-index-of", + "es.typed-array.map", + "es.typed-array.of", + "es.typed-array.reduce", + "es.typed-array.reduce-right", + "es.typed-array.reverse", + "es.typed-array.set", + "es.typed-array.slice", + "es.typed-array.some", + "es.typed-array.sort", + "es.typed-array.subarray", + "es.typed-array.to-locale-string", + "es.typed-array.to-reversed", + "es.typed-array.to-sorted", + "es.typed-array.to-string", + "es.typed-array.with", + "es.uint8-array.from-base64", + "es.uint8-array.from-hex", + "es.uint8-array.set-from-base64", + "es.uint8-array.set-from-hex", + "es.uint8-array.to-base64", + "es.uint8-array.to-hex", + "esnext.typed-array.find-last", + "esnext.typed-array.find-last-index", + "esnext.typed-array.to-reversed", + "esnext.typed-array.to-sorted", + "esnext.typed-array.to-spliced", + "esnext.typed-array.with", + "esnext.uint8-array.from-base64", + "esnext.uint8-array.from-hex", + "esnext.uint8-array.set-from-base64", + "esnext.uint8-array.set-from-hex", + "esnext.uint8-array.to-base64", + "esnext.uint8-array.to-hex" + ], + "core-js/actual/typed-array/uint8-clamped-array": [ + "es.array-buffer.constructor", + "es.array-buffer.slice", + "es.object.to-string", + "es.string.iterator", + "es.typed-array.uint8-clamped-array", + "es.typed-array.at", + "es.typed-array.copy-within", + "es.typed-array.every", + "es.typed-array.fill", + "es.typed-array.filter", + "es.typed-array.find", + "es.typed-array.find-index", + "es.typed-array.find-last", + "es.typed-array.find-last-index", + "es.typed-array.for-each", + "es.typed-array.from", + "es.typed-array.includes", + "es.typed-array.index-of", + "es.typed-array.iterator", + "es.typed-array.join", + "es.typed-array.last-index-of", + "es.typed-array.map", + "es.typed-array.of", + "es.typed-array.reduce", + "es.typed-array.reduce-right", + "es.typed-array.reverse", + "es.typed-array.set", + "es.typed-array.slice", + "es.typed-array.some", + "es.typed-array.sort", + "es.typed-array.subarray", + "es.typed-array.to-locale-string", + "es.typed-array.to-reversed", + "es.typed-array.to-sorted", + "es.typed-array.to-string", + "es.typed-array.with", + "es.uint8-array.from-base64", + "es.uint8-array.from-hex", + "es.uint8-array.set-from-base64", + "es.uint8-array.set-from-hex", + "es.uint8-array.to-base64", + "es.uint8-array.to-hex", + "esnext.typed-array.find-last", + "esnext.typed-array.find-last-index", + "esnext.typed-array.to-reversed", + "esnext.typed-array.to-sorted", + "esnext.typed-array.to-spliced", + "esnext.typed-array.with", + "esnext.uint8-array.from-base64", + "esnext.uint8-array.from-hex", + "esnext.uint8-array.set-from-base64", + "esnext.uint8-array.set-from-hex", + "esnext.uint8-array.to-base64", + "esnext.uint8-array.to-hex" + ], + "core-js/actual/typed-array/values": [ + "es.object.to-string", + "es.typed-array.iterator" + ], + "core-js/actual/typed-array/with": [ + "es.typed-array.with", + "esnext.typed-array.with" + ], + "core-js/actual/unescape": [ + "es.unescape" + ], + "core-js/actual/url": [ + "web.url", + "web.url.can-parse", + "web.url.parse", + "web.url.to-json", + "web.url-search-params", + "web.url-search-params.delete", + "web.url-search-params.has", + "web.url-search-params.size" + ], + "core-js/actual/url-search-params": [ + "web.dom-collections.iterator", + "web.url-search-params", + "web.url-search-params.delete", + "web.url-search-params.has", + "web.url-search-params.size" + ], + "core-js/actual/url/can-parse": [ + "web.url", + "web.url.can-parse" + ], + "core-js/actual/url/parse": [ + "web.url", + "web.url.parse" + ], + "core-js/actual/url/to-json": [ + "web.url.to-json" + ], + "core-js/actual/weak-map": [ + "es.array.iterator", + "es.object.to-string", + "es.weak-map", + "esnext.weak-map.get-or-insert", + "esnext.weak-map.get-or-insert-computed", + "web.dom-collections.iterator" + ], + "core-js/actual/weak-map/get-or-insert": [ + "es.weak-map", + "esnext.weak-map.get-or-insert" + ], + "core-js/actual/weak-map/get-or-insert-computed": [ + "es.weak-map", + "esnext.weak-map.get-or-insert-computed" + ], + "core-js/actual/weak-set": [ + "es.array.iterator", + "es.object.to-string", + "es.weak-set", + "web.dom-collections.iterator" + ], + "core-js/es": [ + "es.symbol", + "es.symbol.description", + "es.symbol.async-dispose", + "es.symbol.async-iterator", + "es.symbol.dispose", + "es.symbol.has-instance", + "es.symbol.is-concat-spreadable", + "es.symbol.iterator", + "es.symbol.match", + "es.symbol.match-all", + "es.symbol.replace", + "es.symbol.search", + "es.symbol.species", + "es.symbol.split", + "es.symbol.to-primitive", + "es.symbol.to-string-tag", + "es.symbol.unscopables", + "es.error.cause", + "es.error.is-error", + "es.error.to-string", + "es.aggregate-error", + "es.aggregate-error.cause", + "es.suppressed-error.constructor", + "es.array.at", + "es.array.concat", + "es.array.copy-within", + "es.array.every", + "es.array.fill", + "es.array.filter", + "es.array.find", + "es.array.find-index", + "es.array.find-last", + "es.array.find-last-index", + "es.array.flat", + "es.array.flat-map", + "es.array.for-each", + "es.array.from", + "es.array.includes", + "es.array.index-of", + "es.array.is-array", + "es.array.iterator", + "es.array.join", + "es.array.last-index-of", + "es.array.map", + "es.array.of", + "es.array.push", + "es.array.reduce", + "es.array.reduce-right", + "es.array.reverse", + "es.array.slice", + "es.array.some", + "es.array.sort", + "es.array.species", + "es.array.splice", + "es.array.to-reversed", + "es.array.to-sorted", + "es.array.to-spliced", + "es.array.unscopables.flat", + "es.array.unscopables.flat-map", + "es.array.unshift", + "es.array.with", + "es.array-buffer.constructor", + "es.array-buffer.is-view", + "es.array-buffer.slice", + "es.data-view", + "es.data-view.get-float16", + "es.data-view.set-float16", + "es.array-buffer.detached", + "es.array-buffer.transfer", + "es.array-buffer.transfer-to-fixed-length", + "es.date.get-year", + "es.date.now", + "es.date.set-year", + "es.date.to-gmt-string", + "es.date.to-iso-string", + "es.date.to-json", + "es.date.to-primitive", + "es.date.to-string", + "es.disposable-stack.constructor", + "es.escape", + "es.function.bind", + "es.function.has-instance", + "es.function.name", + "es.global-this", + "es.iterator.constructor", + "es.iterator.dispose", + "es.iterator.drop", + "es.iterator.every", + "es.iterator.filter", + "es.iterator.find", + "es.iterator.flat-map", + "es.iterator.for-each", + "es.iterator.from", + "es.iterator.map", + "es.iterator.reduce", + "es.iterator.some", + "es.iterator.take", + "es.iterator.to-array", + "es.json.stringify", + "es.json.to-string-tag", + "es.map", + "es.map.group-by", + "es.math.acosh", + "es.math.asinh", + "es.math.atanh", + "es.math.cbrt", + "es.math.clz32", + "es.math.cosh", + "es.math.expm1", + "es.math.fround", + "es.math.f16round", + "es.math.hypot", + "es.math.imul", + "es.math.log10", + "es.math.log1p", + "es.math.log2", + "es.math.sign", + "es.math.sinh", + "es.math.sum-precise", + "es.math.tanh", + "es.math.to-string-tag", + "es.math.trunc", + "es.number.constructor", + "es.number.epsilon", + "es.number.is-finite", + "es.number.is-integer", + "es.number.is-nan", + "es.number.is-safe-integer", + "es.number.max-safe-integer", + "es.number.min-safe-integer", + "es.number.parse-float", + "es.number.parse-int", + "es.number.to-exponential", + "es.number.to-fixed", + "es.number.to-precision", + "es.object.assign", + "es.object.create", + "es.object.define-getter", + "es.object.define-properties", + "es.object.define-property", + "es.object.define-setter", + "es.object.entries", + "es.object.freeze", + "es.object.from-entries", + "es.object.get-own-property-descriptor", + "es.object.get-own-property-descriptors", + "es.object.get-own-property-names", + "es.object.get-prototype-of", + "es.object.group-by", + "es.object.has-own", + "es.object.is", + "es.object.is-extensible", + "es.object.is-frozen", + "es.object.is-sealed", + "es.object.keys", + "es.object.lookup-getter", + "es.object.lookup-setter", + "es.object.prevent-extensions", + "es.object.proto", + "es.object.seal", + "es.object.set-prototype-of", + "es.object.to-string", + "es.object.values", + "es.parse-float", + "es.parse-int", + "es.promise", + "es.promise.all-settled", + "es.promise.any", + "es.promise.finally", + "es.promise.try", + "es.promise.with-resolvers", + "es.array.from-async", + "es.async-disposable-stack.constructor", + "es.async-iterator.async-dispose", + "es.reflect.apply", + "es.reflect.construct", + "es.reflect.define-property", + "es.reflect.delete-property", + "es.reflect.get", + "es.reflect.get-own-property-descriptor", + "es.reflect.get-prototype-of", + "es.reflect.has", + "es.reflect.is-extensible", + "es.reflect.own-keys", + "es.reflect.prevent-extensions", + "es.reflect.set", + "es.reflect.set-prototype-of", + "es.reflect.to-string-tag", + "es.regexp.constructor", + "es.regexp.escape", + "es.regexp.dot-all", + "es.regexp.exec", + "es.regexp.flags", + "es.regexp.sticky", + "es.regexp.test", + "es.regexp.to-string", + "es.set", + "es.set.difference.v2", + "es.set.intersection.v2", + "es.set.is-disjoint-from.v2", + "es.set.is-subset-of.v2", + "es.set.is-superset-of.v2", + "es.set.symmetric-difference.v2", + "es.set.union.v2", + "es.string.at-alternative", + "es.string.code-point-at", + "es.string.ends-with", + "es.string.from-code-point", + "es.string.includes", + "es.string.is-well-formed", + "es.string.iterator", + "es.string.match", + "es.string.match-all", + "es.string.pad-end", + "es.string.pad-start", + "es.string.raw", + "es.string.repeat", + "es.string.replace", + "es.string.replace-all", + "es.string.search", + "es.string.split", + "es.string.starts-with", + "es.string.substr", + "es.string.to-well-formed", + "es.string.trim", + "es.string.trim-end", + "es.string.trim-start", + "es.string.anchor", + "es.string.big", + "es.string.blink", + "es.string.bold", + "es.string.fixed", + "es.string.fontcolor", + "es.string.fontsize", + "es.string.italics", + "es.string.link", + "es.string.small", + "es.string.strike", + "es.string.sub", + "es.string.sup", + "es.typed-array.float32-array", + "es.typed-array.float64-array", + "es.typed-array.int8-array", + "es.typed-array.int16-array", + "es.typed-array.int32-array", + "es.typed-array.uint8-array", + "es.typed-array.uint8-clamped-array", + "es.typed-array.uint16-array", + "es.typed-array.uint32-array", + "es.typed-array.at", + "es.typed-array.copy-within", + "es.typed-array.every", + "es.typed-array.fill", + "es.typed-array.filter", + "es.typed-array.find", + "es.typed-array.find-index", + "es.typed-array.find-last", + "es.typed-array.find-last-index", + "es.typed-array.for-each", + "es.typed-array.from", + "es.typed-array.includes", + "es.typed-array.index-of", + "es.typed-array.iterator", + "es.typed-array.join", + "es.typed-array.last-index-of", + "es.typed-array.map", + "es.typed-array.of", + "es.typed-array.reduce", + "es.typed-array.reduce-right", + "es.typed-array.reverse", + "es.typed-array.set", + "es.typed-array.slice", + "es.typed-array.some", + "es.typed-array.sort", + "es.typed-array.subarray", + "es.typed-array.to-locale-string", + "es.typed-array.to-reversed", + "es.typed-array.to-sorted", + "es.typed-array.to-string", + "es.typed-array.with", + "es.uint8-array.from-base64", + "es.uint8-array.from-hex", + "es.uint8-array.set-from-base64", + "es.uint8-array.set-from-hex", + "es.uint8-array.to-base64", + "es.uint8-array.to-hex", + "es.unescape", + "es.weak-map", + "es.weak-set" + ], + "core-js/es/aggregate-error": [], + "core-js/es/array": [ + "es.array.at", + "es.array.concat", + "es.array.copy-within", + "es.array.every", + "es.array.fill", + "es.array.filter", + "es.array.find", + "es.array.find-index", + "es.array.find-last", + "es.array.find-last-index", + "es.array.flat", + "es.array.flat-map", + "es.array.for-each", + "es.array.from", + "es.array.includes", + "es.array.index-of", + "es.array.is-array", + "es.array.iterator", + "es.array.join", + "es.array.last-index-of", + "es.array.map", + "es.array.of", + "es.array.push", + "es.array.reduce", + "es.array.reduce-right", + "es.array.reverse", + "es.array.slice", + "es.array.some", + "es.array.sort", + "es.array.species", + "es.array.splice", + "es.array.to-reversed", + "es.array.to-sorted", + "es.array.to-spliced", + "es.array.unscopables.flat", + "es.array.unscopables.flat-map", + "es.array.unshift", + "es.array.with", + "es.object.to-string", + "es.promise", + "es.array.from-async", + "es.string.iterator" + ], + "core-js/es/array-buffer": [ + "es.array-buffer.constructor", + "es.array-buffer.is-view", + "es.array-buffer.slice", + "es.data-view", + "es.array-buffer.detached", + "es.array-buffer.transfer", + "es.array-buffer.transfer-to-fixed-length", + "es.object.to-string" + ], + "core-js/es/array-buffer/constructor": [ + "es.array-buffer.constructor", + "es.array-buffer.slice", + "es.array-buffer.detached", + "es.array-buffer.transfer", + "es.array-buffer.transfer-to-fixed-length", + "es.object.to-string" + ], + "core-js/es/array-buffer/detached": [ + "es.array-buffer.constructor", + "es.array-buffer.slice", + "es.array-buffer.detached" + ], + "core-js/es/array-buffer/is-view": [ + "es.array-buffer.is-view" + ], + "core-js/es/array-buffer/slice": [ + "es.array-buffer.slice" + ], + "core-js/es/array-buffer/transfer": [ + "es.array-buffer.constructor", + "es.array-buffer.slice", + "es.data-view", + "es.array-buffer.transfer" + ], + "core-js/es/array-buffer/transfer-to-fixed-length": [ + "es.array-buffer.constructor", + "es.array-buffer.slice", + "es.data-view", + "es.array-buffer.transfer-to-fixed-length" + ], + "core-js/es/array/at": [ + "es.array.at" + ], + "core-js/es/array/concat": [ + "es.array.concat" + ], + "core-js/es/array/copy-within": [ + "es.array.copy-within" + ], + "core-js/es/array/entries": [ + "es.array.iterator", + "es.object.to-string" + ], + "core-js/es/array/every": [ + "es.array.every" + ], + "core-js/es/array/fill": [ + "es.array.fill" + ], + "core-js/es/array/filter": [ + "es.array.filter" + ], + "core-js/es/array/find": [ + "es.array.find" + ], + "core-js/es/array/find-index": [ + "es.array.find-index" + ], + "core-js/es/array/find-last": [ + "es.array.find-last" + ], + "core-js/es/array/find-last-index": [ + "es.array.find-last-index" + ], + "core-js/es/array/flat": [ + "es.array.flat", + "es.array.unscopables.flat" + ], + "core-js/es/array/flat-map": [ + "es.array.flat-map", + "es.array.unscopables.flat-map" + ], + "core-js/es/array/for-each": [ + "es.array.for-each" + ], + "core-js/es/array/from": [ + "es.array.from", + "es.string.iterator" + ], + "core-js/es/array/from-async": [ + "es.array.iterator", + "es.object.to-string", + "es.promise", + "es.array.from-async", + "es.string.iterator" + ], + "core-js/es/array/includes": [ + "es.array.includes" + ], + "core-js/es/array/index-of": [ + "es.array.index-of" + ], + "core-js/es/array/is-array": [ + "es.array.is-array" + ], + "core-js/es/array/iterator": [ + "es.array.iterator", + "es.object.to-string" + ], + "core-js/es/array/join": [ + "es.array.join" + ], + "core-js/es/array/keys": [ + "es.array.iterator", + "es.object.to-string" + ], + "core-js/es/array/last-index-of": [ + "es.array.last-index-of" + ], + "core-js/es/array/map": [ + "es.array.map" + ], + "core-js/es/array/of": [ + "es.array.of" + ], + "core-js/es/array/push": [ + "es.array.push" + ], + "core-js/es/array/reduce": [ + "es.array.reduce" + ], + "core-js/es/array/reduce-right": [ + "es.array.reduce-right" + ], + "core-js/es/array/reverse": [ + "es.array.reverse" + ], + "core-js/es/array/slice": [ + "es.array.slice" + ], + "core-js/es/array/some": [ + "es.array.some" + ], + "core-js/es/array/sort": [ + "es.array.sort" + ], + "core-js/es/array/splice": [ + "es.array.splice" + ], + "core-js/es/array/to-reversed": [ + "es.array.to-reversed" + ], + "core-js/es/array/to-sorted": [ + "es.array.sort", + "es.array.to-sorted" + ], + "core-js/es/array/to-spliced": [ + "es.array.to-spliced" + ], + "core-js/es/array/unshift": [ + "es.array.unshift" + ], + "core-js/es/array/values": [ + "es.array.iterator", + "es.object.to-string" + ], + "core-js/es/array/virtual": [ + "es.array.at", + "es.array.concat", + "es.array.copy-within", + "es.array.every", + "es.array.fill", + "es.array.filter", + "es.array.find", + "es.array.find-index", + "es.array.find-last", + "es.array.find-last-index", + "es.array.flat", + "es.array.flat-map", + "es.array.for-each", + "es.array.includes", + "es.array.index-of", + "es.array.iterator", + "es.array.join", + "es.array.last-index-of", + "es.array.map", + "es.array.push", + "es.array.reduce", + "es.array.reduce-right", + "es.array.reverse", + "es.array.slice", + "es.array.some", + "es.array.sort", + "es.array.species", + "es.array.splice", + "es.array.to-reversed", + "es.array.to-sorted", + "es.array.to-spliced", + "es.array.unscopables.flat", + "es.array.unscopables.flat-map", + "es.array.unshift", + "es.array.with", + "es.object.to-string" + ], + "core-js/es/array/virtual/at": [ + "es.array.at" + ], + "core-js/es/array/virtual/concat": [ + "es.array.concat" + ], + "core-js/es/array/virtual/copy-within": [ + "es.array.copy-within" + ], + "core-js/es/array/virtual/entries": [ + "es.array.iterator", + "es.object.to-string" + ], + "core-js/es/array/virtual/every": [ + "es.array.every" + ], + "core-js/es/array/virtual/fill": [ + "es.array.fill" + ], + "core-js/es/array/virtual/filter": [ + "es.array.filter" + ], + "core-js/es/array/virtual/find": [ + "es.array.find" + ], + "core-js/es/array/virtual/find-index": [ + "es.array.find-index" + ], + "core-js/es/array/virtual/find-last": [ + "es.array.find-last" + ], + "core-js/es/array/virtual/find-last-index": [ + "es.array.find-last-index" + ], + "core-js/es/array/virtual/flat": [ + "es.array.flat", + "es.array.unscopables.flat" + ], + "core-js/es/array/virtual/flat-map": [ + "es.array.flat-map", + "es.array.unscopables.flat-map" + ], + "core-js/es/array/virtual/for-each": [ + "es.array.for-each" + ], + "core-js/es/array/virtual/includes": [ + "es.array.includes" + ], + "core-js/es/array/virtual/index-of": [ + "es.array.index-of" + ], + "core-js/es/array/virtual/iterator": [ + "es.array.iterator", + "es.object.to-string" + ], + "core-js/es/array/virtual/join": [ + "es.array.join" + ], + "core-js/es/array/virtual/keys": [ + "es.array.iterator", + "es.object.to-string" + ], + "core-js/es/array/virtual/last-index-of": [ + "es.array.last-index-of" + ], + "core-js/es/array/virtual/map": [ + "es.array.map" + ], + "core-js/es/array/virtual/push": [ + "es.array.push" + ], + "core-js/es/array/virtual/reduce": [ + "es.array.reduce" + ], + "core-js/es/array/virtual/reduce-right": [ + "es.array.reduce-right" + ], + "core-js/es/array/virtual/reverse": [ + "es.array.reverse" + ], + "core-js/es/array/virtual/slice": [ + "es.array.slice" + ], + "core-js/es/array/virtual/some": [ + "es.array.some" + ], + "core-js/es/array/virtual/sort": [ + "es.array.sort" + ], + "core-js/es/array/virtual/splice": [ + "es.array.splice" + ], + "core-js/es/array/virtual/to-reversed": [ + "es.array.to-reversed" + ], + "core-js/es/array/virtual/to-sorted": [ + "es.array.sort", + "es.array.to-sorted" + ], + "core-js/es/array/virtual/to-spliced": [ + "es.array.to-spliced" + ], + "core-js/es/array/virtual/unshift": [ + "es.array.unshift" + ], + "core-js/es/array/virtual/values": [ + "es.array.iterator", + "es.object.to-string" + ], + "core-js/es/array/virtual/with": [ + "es.array.with" + ], + "core-js/es/array/with": [ + "es.array.with" + ], + "core-js/es/async-disposable-stack": [ + "es.error.cause", + "es.error.to-string", + "es.suppressed-error.constructor", + "es.iterator.dispose", + "es.object.to-string", + "es.promise", + "es.async-disposable-stack.constructor", + "es.async-iterator.async-dispose" + ], + "core-js/es/async-disposable-stack/constructor": [ + "es.error.cause", + "es.error.to-string", + "es.suppressed-error.constructor", + "es.iterator.dispose", + "es.object.to-string", + "es.promise", + "es.async-disposable-stack.constructor", + "es.async-iterator.async-dispose" + ], + "core-js/es/async-iterator": [ + "es.object.to-string", + "es.promise", + "es.async-iterator.async-dispose" + ], + "core-js/es/async-iterator/async-dispose": [ + "es.object.to-string", + "es.promise", + "es.async-iterator.async-dispose" + ], + "core-js/es/data-view": [ + "es.array-buffer.constructor", + "es.array-buffer.slice", + "es.data-view", + "es.data-view.get-float16", + "es.data-view.set-float16", + "es.object.to-string" + ], + "core-js/es/data-view/get-float16": [ + "es.data-view.get-float16" + ], + "core-js/es/data-view/set-float16": [ + "es.data-view.set-float16" + ], + "core-js/es/date": [ + "es.date.get-year", + "es.date.now", + "es.date.set-year", + "es.date.to-gmt-string", + "es.date.to-iso-string", + "es.date.to-json", + "es.date.to-primitive", + "es.date.to-string" + ], + "core-js/es/date/get-year": [ + "es.date.get-year" + ], + "core-js/es/date/now": [ + "es.date.now" + ], + "core-js/es/date/set-year": [ + "es.date.set-year" + ], + "core-js/es/date/to-gmt-string": [ + "es.date.to-gmt-string" + ], + "core-js/es/date/to-iso-string": [ + "es.date.to-iso-string", + "es.date.to-json" + ], + "core-js/es/date/to-json": [ + "es.date.to-json" + ], + "core-js/es/date/to-primitive": [ + "es.date.to-primitive" + ], + "core-js/es/date/to-string": [ + "es.date.to-string" + ], + "core-js/es/disposable-stack": [ + "es.error.cause", + "es.error.to-string", + "es.suppressed-error.constructor", + "es.disposable-stack.constructor", + "es.iterator.dispose", + "es.object.to-string" + ], + "core-js/es/disposable-stack/constructor": [ + "es.error.cause", + "es.error.to-string", + "es.suppressed-error.constructor", + "es.disposable-stack.constructor", + "es.iterator.dispose", + "es.object.to-string" + ], + "core-js/es/error": [ + "es.error.cause", + "es.error.is-error", + "es.error.to-string" + ], + "core-js/es/error/constructor": [ + "es.error.cause" + ], + "core-js/es/error/is-error": [ + "es.error.is-error", + "es.object.create" + ], + "core-js/es/error/to-string": [ + "es.error.to-string" + ], + "core-js/es/escape": [ + "es.escape" + ], + "core-js/es/function": [ + "es.function.bind", + "es.function.has-instance", + "es.function.name" + ], + "core-js/es/function/bind": [ + "es.function.bind" + ], + "core-js/es/function/has-instance": [ + "es.function.has-instance" + ], + "core-js/es/function/name": [ + "es.function.name" + ], + "core-js/es/function/virtual": [ + "es.function.bind" + ], + "core-js/es/function/virtual/bind": [ + "es.function.bind" + ], + "core-js/es/get-iterator": [ + "es.array.iterator", + "es.string.iterator" + ], + "core-js/es/get-iterator-method": [ + "es.array.iterator", + "es.string.iterator" + ], + "core-js/es/global-this": [ + "es.global-this" + ], + "core-js/es/instance/at": [ + "es.array.at", + "es.string.at-alternative" + ], + "core-js/es/instance/bind": [ + "es.function.bind" + ], + "core-js/es/instance/code-point-at": [ + "es.string.code-point-at" + ], + "core-js/es/instance/concat": [ + "es.array.concat" + ], + "core-js/es/instance/copy-within": [ + "es.array.copy-within" + ], + "core-js/es/instance/ends-with": [ + "es.string.ends-with" + ], + "core-js/es/instance/entries": [ + "es.array.iterator", + "es.object.to-string" + ], + "core-js/es/instance/every": [ + "es.array.every" + ], + "core-js/es/instance/fill": [ + "es.array.fill" + ], + "core-js/es/instance/filter": [ + "es.array.filter" + ], + "core-js/es/instance/find": [ + "es.array.find" + ], + "core-js/es/instance/find-index": [ + "es.array.find-index" + ], + "core-js/es/instance/find-last": [ + "es.array.find-last" + ], + "core-js/es/instance/find-last-index": [ + "es.array.find-last-index" + ], + "core-js/es/instance/flags": [ + "es.regexp.flags" + ], + "core-js/es/instance/flat": [ + "es.array.flat", + "es.array.unscopables.flat" + ], + "core-js/es/instance/flat-map": [ + "es.array.flat-map", + "es.array.unscopables.flat-map" + ], + "core-js/es/instance/for-each": [ + "es.array.for-each" + ], + "core-js/es/instance/includes": [ + "es.array.includes", + "es.string.includes" + ], + "core-js/es/instance/index-of": [ + "es.array.index-of" + ], + "core-js/es/instance/is-well-formed": [ + "es.string.is-well-formed" + ], + "core-js/es/instance/keys": [ + "es.array.iterator", + "es.object.to-string" + ], + "core-js/es/instance/last-index-of": [ + "es.array.last-index-of" + ], + "core-js/es/instance/map": [ + "es.array.map" + ], + "core-js/es/instance/match-all": [ + "es.object.to-string", + "es.regexp.exec", + "es.string.match-all" + ], + "core-js/es/instance/pad-end": [ + "es.string.pad-end" + ], + "core-js/es/instance/pad-start": [ + "es.string.pad-start" + ], + "core-js/es/instance/push": [ + "es.array.push" + ], + "core-js/es/instance/reduce": [ + "es.array.reduce" + ], + "core-js/es/instance/reduce-right": [ + "es.array.reduce-right" + ], + "core-js/es/instance/repeat": [ + "es.string.repeat" + ], + "core-js/es/instance/replace-all": [ + "es.regexp.exec", + "es.string.replace", + "es.string.replace-all" + ], + "core-js/es/instance/reverse": [ + "es.array.reverse" + ], + "core-js/es/instance/slice": [ + "es.array.slice" + ], + "core-js/es/instance/some": [ + "es.array.some" + ], + "core-js/es/instance/sort": [ + "es.array.sort" + ], + "core-js/es/instance/splice": [ + "es.array.splice" + ], + "core-js/es/instance/starts-with": [ + "es.string.starts-with" + ], + "core-js/es/instance/to-reversed": [ + "es.array.to-reversed" + ], + "core-js/es/instance/to-sorted": [ + "es.array.sort", + "es.array.to-sorted" + ], + "core-js/es/instance/to-spliced": [ + "es.array.to-spliced" + ], + "core-js/es/instance/to-well-formed": [ + "es.string.to-well-formed" + ], + "core-js/es/instance/trim": [ + "es.string.trim" + ], + "core-js/es/instance/trim-end": [ + "es.string.trim-end" + ], + "core-js/es/instance/trim-left": [ + "es.string.trim-start" + ], + "core-js/es/instance/trim-right": [ + "es.string.trim-end" + ], + "core-js/es/instance/trim-start": [ + "es.string.trim-start" + ], + "core-js/es/instance/unshift": [ + "es.array.unshift" + ], + "core-js/es/instance/values": [ + "es.array.iterator", + "es.object.to-string" + ], + "core-js/es/instance/with": [ + "es.array.with" + ], + "core-js/es/is-iterable": [ + "es.array.iterator", + "es.string.iterator" + ], + "core-js/es/iterator": [ + "es.array.iterator", + "es.iterator.constructor", + "es.iterator.dispose", + "es.iterator.drop", + "es.iterator.every", + "es.iterator.filter", + "es.iterator.find", + "es.iterator.flat-map", + "es.iterator.for-each", + "es.iterator.from", + "es.iterator.map", + "es.iterator.reduce", + "es.iterator.some", + "es.iterator.take", + "es.iterator.to-array", + "es.object.to-string", + "es.string.iterator" + ], + "core-js/es/iterator/dispose": [ + "es.iterator.dispose" + ], + "core-js/es/iterator/drop": [ + "es.iterator.constructor", + "es.iterator.drop", + "es.object.to-string" + ], + "core-js/es/iterator/every": [ + "es.iterator.constructor", + "es.iterator.every", + "es.object.to-string" + ], + "core-js/es/iterator/filter": [ + "es.iterator.constructor", + "es.iterator.filter", + "es.object.to-string" + ], + "core-js/es/iterator/find": [ + "es.iterator.constructor", + "es.iterator.find", + "es.object.to-string" + ], + "core-js/es/iterator/flat-map": [ + "es.array.iterator", + "es.iterator.constructor", + "es.iterator.flat-map", + "es.object.to-string" + ], + "core-js/es/iterator/for-each": [ + "es.iterator.constructor", + "es.iterator.for-each", + "es.object.to-string" + ], + "core-js/es/iterator/from": [ + "es.array.iterator", + "es.iterator.constructor", + "es.iterator.drop", + "es.iterator.every", + "es.iterator.filter", + "es.iterator.find", + "es.iterator.flat-map", + "es.iterator.for-each", + "es.iterator.from", + "es.iterator.map", + "es.iterator.reduce", + "es.iterator.some", + "es.iterator.take", + "es.iterator.to-array", + "es.object.to-string", + "es.string.iterator" + ], + "core-js/es/iterator/map": [ + "es.iterator.constructor", + "es.iterator.map", + "es.object.to-string" + ], + "core-js/es/iterator/reduce": [ + "es.iterator.constructor", + "es.iterator.reduce", + "es.object.to-string" + ], + "core-js/es/iterator/some": [ + "es.iterator.constructor", + "es.iterator.some", + "es.object.to-string" + ], + "core-js/es/iterator/take": [ + "es.iterator.constructor", + "es.iterator.take", + "es.object.to-string" + ], + "core-js/es/iterator/to-array": [ + "es.iterator.constructor", + "es.iterator.to-array", + "es.object.to-string" + ], + "core-js/es/json": [ + "es.date.to-json", + "es.json.stringify", + "es.json.to-string-tag" + ], + "core-js/es/json/stringify": [ + "es.date.to-json", + "es.json.stringify" + ], + "core-js/es/json/to-string-tag": [ + "es.json.to-string-tag" + ], + "core-js/es/map": [ + "es.array.iterator", + "es.map", + "es.map.group-by", + "es.object.to-string", + "es.string.iterator" + ], + "core-js/es/map/group-by": [ + "es.map", + "es.map.group-by", + "es.object.to-string" + ], + "core-js/es/math": [ + "es.array.iterator", + "es.math.acosh", + "es.math.asinh", + "es.math.atanh", + "es.math.cbrt", + "es.math.clz32", + "es.math.cosh", + "es.math.expm1", + "es.math.fround", + "es.math.f16round", + "es.math.hypot", + "es.math.imul", + "es.math.log10", + "es.math.log1p", + "es.math.log2", + "es.math.sign", + "es.math.sinh", + "es.math.sum-precise", + "es.math.tanh", + "es.math.to-string-tag", + "es.math.trunc" + ], + "core-js/es/math/acosh": [ + "es.math.acosh" + ], + "core-js/es/math/asinh": [ + "es.math.asinh" + ], + "core-js/es/math/atanh": [ + "es.math.atanh" + ], + "core-js/es/math/cbrt": [ + "es.math.cbrt" + ], + "core-js/es/math/clz32": [ + "es.math.clz32" + ], + "core-js/es/math/cosh": [ + "es.math.cosh" + ], + "core-js/es/math/expm1": [ + "es.math.expm1" + ], + "core-js/es/math/f16round": [ + "es.math.f16round" + ], + "core-js/es/math/fround": [ + "es.math.fround" + ], + "core-js/es/math/hypot": [ + "es.math.hypot" + ], + "core-js/es/math/imul": [ + "es.math.imul" + ], + "core-js/es/math/log10": [ + "es.math.log10" + ], + "core-js/es/math/log1p": [ + "es.math.log1p" + ], + "core-js/es/math/log2": [ + "es.math.log2" + ], + "core-js/es/math/sign": [ + "es.math.sign" + ], + "core-js/es/math/sinh": [ + "es.math.sinh" + ], + "core-js/es/math/sum-precise": [ + "es.array.iterator", + "es.math.sum-precise" + ], + "core-js/es/math/tanh": [ + "es.math.tanh" + ], + "core-js/es/math/to-string-tag": [ + "es.math.to-string-tag" + ], + "core-js/es/math/trunc": [ + "es.math.trunc" + ], + "core-js/es/number": [ + "es.number.constructor", + "es.number.epsilon", + "es.number.is-finite", + "es.number.is-integer", + "es.number.is-nan", + "es.number.is-safe-integer", + "es.number.max-safe-integer", + "es.number.min-safe-integer", + "es.number.parse-float", + "es.number.parse-int", + "es.number.to-exponential", + "es.number.to-fixed", + "es.number.to-precision" + ], + "core-js/es/number/constructor": [ + "es.number.constructor" + ], + "core-js/es/number/epsilon": [ + "es.number.epsilon" + ], + "core-js/es/number/is-finite": [ + "es.number.is-finite" + ], + "core-js/es/number/is-integer": [ + "es.number.is-integer" + ], + "core-js/es/number/is-nan": [ + "es.number.is-nan" + ], + "core-js/es/number/is-safe-integer": [ + "es.number.is-safe-integer" + ], + "core-js/es/number/max-safe-integer": [ + "es.number.max-safe-integer" + ], + "core-js/es/number/min-safe-integer": [ + "es.number.min-safe-integer" + ], + "core-js/es/number/parse-float": [ + "es.number.parse-float" + ], + "core-js/es/number/parse-int": [ + "es.number.parse-int" + ], + "core-js/es/number/to-exponential": [ + "es.number.to-exponential" + ], + "core-js/es/number/to-fixed": [ + "es.number.to-fixed" + ], + "core-js/es/number/to-precision": [ + "es.number.to-precision" + ], + "core-js/es/number/virtual": [ + "es.number.to-exponential", + "es.number.to-fixed", + "es.number.to-precision" + ], + "core-js/es/number/virtual/to-exponential": [ + "es.number.to-exponential" + ], + "core-js/es/number/virtual/to-fixed": [ + "es.number.to-fixed" + ], + "core-js/es/number/virtual/to-precision": [ + "es.number.to-precision" + ], + "core-js/es/object": [ + "es.symbol", + "es.json.to-string-tag", + "es.math.to-string-tag", + "es.object.assign", + "es.object.create", + "es.object.define-getter", + "es.object.define-properties", + "es.object.define-property", + "es.object.define-setter", + "es.object.entries", + "es.object.freeze", + "es.object.from-entries", + "es.object.get-own-property-descriptor", + "es.object.get-own-property-descriptors", + "es.object.get-own-property-names", + "es.object.get-prototype-of", + "es.object.group-by", + "es.object.has-own", + "es.object.is", + "es.object.is-extensible", + "es.object.is-frozen", + "es.object.is-sealed", + "es.object.keys", + "es.object.lookup-getter", + "es.object.lookup-setter", + "es.object.prevent-extensions", + "es.object.proto", + "es.object.seal", + "es.object.set-prototype-of", + "es.object.to-string", + "es.object.values", + "es.reflect.to-string-tag" + ], + "core-js/es/object/assign": [ + "es.object.assign" + ], + "core-js/es/object/create": [ + "es.object.create" + ], + "core-js/es/object/define-getter": [ + "es.object.define-getter" + ], + "core-js/es/object/define-properties": [ + "es.object.define-properties" + ], + "core-js/es/object/define-property": [ + "es.object.define-property" + ], + "core-js/es/object/define-setter": [ + "es.object.define-setter" + ], + "core-js/es/object/entries": [ + "es.object.entries" + ], + "core-js/es/object/freeze": [ + "es.object.freeze" + ], + "core-js/es/object/from-entries": [ + "es.array.iterator", + "es.object.from-entries" + ], + "core-js/es/object/get-own-property-descriptor": [ + "es.object.get-own-property-descriptor" + ], + "core-js/es/object/get-own-property-descriptors": [ + "es.object.get-own-property-descriptors" + ], + "core-js/es/object/get-own-property-names": [ + "es.object.get-own-property-names" + ], + "core-js/es/object/get-own-property-symbols": [ + "es.symbol" + ], + "core-js/es/object/get-prototype-of": [ + "es.object.get-prototype-of" + ], + "core-js/es/object/group-by": [ + "es.object.create", + "es.object.group-by" + ], + "core-js/es/object/has-own": [ + "es.object.has-own" + ], + "core-js/es/object/is": [ + "es.object.is" + ], + "core-js/es/object/is-extensible": [ + "es.object.is-extensible" + ], + "core-js/es/object/is-frozen": [ + "es.object.is-frozen" + ], + "core-js/es/object/is-sealed": [ + "es.object.is-sealed" + ], + "core-js/es/object/keys": [ + "es.object.keys" + ], + "core-js/es/object/lookup-getter": [ + "es.object.lookup-getter" + ], + "core-js/es/object/lookup-setter": [ + "es.object.lookup-setter" + ], + "core-js/es/object/prevent-extensions": [ + "es.object.prevent-extensions" + ], + "core-js/es/object/proto": [ + "es.object.proto" + ], + "core-js/es/object/seal": [ + "es.object.seal" + ], + "core-js/es/object/set-prototype-of": [ + "es.object.set-prototype-of" + ], + "core-js/es/object/to-string": [ + "es.json.to-string-tag", + "es.math.to-string-tag", + "es.object.to-string", + "es.reflect.to-string-tag" + ], + "core-js/es/object/values": [ + "es.object.values" + ], + "core-js/es/parse-float": [ + "es.parse-float" + ], + "core-js/es/parse-int": [ + "es.parse-int" + ], + "core-js/es/promise": [ + "es.aggregate-error", + "es.array.iterator", + "es.object.to-string", + "es.promise", + "es.promise.all-settled", + "es.promise.any", + "es.promise.finally", + "es.promise.try", + "es.promise.with-resolvers", + "es.string.iterator" + ], + "core-js/es/promise/all-settled": [ + "es.array.iterator", + "es.object.to-string", + "es.promise", + "es.promise.all-settled", + "es.string.iterator" + ], + "core-js/es/promise/any": [ + "es.aggregate-error", + "es.array.iterator", + "es.object.to-string", + "es.promise", + "es.promise.any", + "es.string.iterator" + ], + "core-js/es/promise/finally": [ + "es.object.to-string", + "es.promise", + "es.promise.finally" + ], + "core-js/es/promise/try": [ + "es.object.to-string", + "es.promise", + "es.promise.try" + ], + "core-js/es/promise/with-resolvers": [ + "es.promise", + "es.promise.with-resolvers" + ], + "core-js/es/reflect": [ + "es.object.to-string", + "es.reflect.apply", + "es.reflect.construct", + "es.reflect.define-property", + "es.reflect.delete-property", + "es.reflect.get", + "es.reflect.get-own-property-descriptor", + "es.reflect.get-prototype-of", + "es.reflect.has", + "es.reflect.is-extensible", + "es.reflect.own-keys", + "es.reflect.prevent-extensions", + "es.reflect.set", + "es.reflect.set-prototype-of", + "es.reflect.to-string-tag" + ], + "core-js/es/reflect/apply": [ + "es.reflect.apply" + ], + "core-js/es/reflect/construct": [ + "es.reflect.construct" + ], + "core-js/es/reflect/define-property": [ + "es.reflect.define-property" + ], + "core-js/es/reflect/delete-property": [ + "es.reflect.delete-property" + ], + "core-js/es/reflect/get": [ + "es.reflect.get" + ], + "core-js/es/reflect/get-own-property-descriptor": [ + "es.reflect.get-own-property-descriptor" + ], + "core-js/es/reflect/get-prototype-of": [ + "es.reflect.get-prototype-of" + ], + "core-js/es/reflect/has": [ + "es.reflect.has" + ], + "core-js/es/reflect/is-extensible": [ + "es.reflect.is-extensible" + ], + "core-js/es/reflect/own-keys": [ + "es.reflect.own-keys" + ], + "core-js/es/reflect/prevent-extensions": [ + "es.reflect.prevent-extensions" + ], + "core-js/es/reflect/set": [ + "es.reflect.set" + ], + "core-js/es/reflect/set-prototype-of": [ + "es.reflect.set-prototype-of" + ], + "core-js/es/reflect/to-string-tag": [ + "es.object.to-string", + "es.reflect.to-string-tag" + ], + "core-js/es/regexp": [ + "es.regexp.constructor", + "es.regexp.escape", + "es.regexp.dot-all", + "es.regexp.exec", + "es.regexp.flags", + "es.regexp.sticky", + "es.regexp.test", + "es.regexp.to-string", + "es.string.match", + "es.string.replace", + "es.string.search", + "es.string.split" + ], + "core-js/es/regexp/constructor": [ + "es.regexp.constructor", + "es.regexp.dot-all", + "es.regexp.exec", + "es.regexp.sticky" + ], + "core-js/es/regexp/dot-all": [ + "es.regexp.constructor", + "es.regexp.dot-all", + "es.regexp.exec" + ], + "core-js/es/regexp/escape": [ + "es.regexp.escape" + ], + "core-js/es/regexp/flags": [ + "es.regexp.flags" + ], + "core-js/es/regexp/match": [ + "es.regexp.exec", + "es.string.match" + ], + "core-js/es/regexp/replace": [ + "es.regexp.exec", + "es.string.replace" + ], + "core-js/es/regexp/search": [ + "es.regexp.exec", + "es.string.search" + ], + "core-js/es/regexp/split": [ + "es.regexp.exec", + "es.string.split" + ], + "core-js/es/regexp/sticky": [ + "es.regexp.constructor", + "es.regexp.exec", + "es.regexp.sticky" + ], + "core-js/es/regexp/test": [ + "es.regexp.exec", + "es.regexp.test" + ], + "core-js/es/regexp/to-string": [ + "es.regexp.to-string" + ], + "core-js/es/set": [ + "es.array.iterator", + "es.object.to-string", + "es.set", + "es.set.difference.v2", + "es.set.intersection.v2", + "es.set.is-disjoint-from.v2", + "es.set.is-subset-of.v2", + "es.set.is-superset-of.v2", + "es.set.symmetric-difference.v2", + "es.set.union.v2", + "es.string.iterator" + ], + "core-js/es/set/difference": [ + "es.set", + "es.set.difference.v2" + ], + "core-js/es/set/intersection": [ + "es.set", + "es.set.intersection.v2" + ], + "core-js/es/set/is-disjoint-from": [ + "es.set", + "es.set.is-disjoint-from.v2" + ], + "core-js/es/set/is-subset-of": [ + "es.set", + "es.set.is-subset-of.v2" + ], + "core-js/es/set/is-superset-of": [ + "es.set", + "es.set.is-superset-of.v2" + ], + "core-js/es/set/symmetric-difference": [ + "es.set", + "es.set.symmetric-difference.v2" + ], + "core-js/es/set/union": [ + "es.set", + "es.set.union.v2" + ], + "core-js/es/string": [ + "es.object.to-string", + "es.regexp.exec", + "es.string.at-alternative", + "es.string.code-point-at", + "es.string.ends-with", + "es.string.from-code-point", + "es.string.includes", + "es.string.is-well-formed", + "es.string.iterator", + "es.string.match", + "es.string.match-all", + "es.string.pad-end", + "es.string.pad-start", + "es.string.raw", + "es.string.repeat", + "es.string.replace", + "es.string.replace-all", + "es.string.search", + "es.string.split", + "es.string.starts-with", + "es.string.substr", + "es.string.to-well-formed", + "es.string.trim", + "es.string.trim-end", + "es.string.trim-start", + "es.string.anchor", + "es.string.big", + "es.string.blink", + "es.string.bold", + "es.string.fixed", + "es.string.fontcolor", + "es.string.fontsize", + "es.string.italics", + "es.string.link", + "es.string.small", + "es.string.strike", + "es.string.sub", + "es.string.sup" + ], + "core-js/es/string/anchor": [ + "es.string.anchor" + ], + "core-js/es/string/at": [ + "es.string.at-alternative" + ], + "core-js/es/string/big": [ + "es.string.big" + ], + "core-js/es/string/blink": [ + "es.string.blink" + ], + "core-js/es/string/bold": [ + "es.string.bold" + ], + "core-js/es/string/code-point-at": [ + "es.string.code-point-at" + ], + "core-js/es/string/ends-with": [ + "es.string.ends-with" + ], + "core-js/es/string/fixed": [ + "es.string.fixed" + ], + "core-js/es/string/fontcolor": [ + "es.string.fontcolor" + ], + "core-js/es/string/fontsize": [ + "es.string.fontsize" + ], + "core-js/es/string/from-code-point": [ + "es.string.from-code-point" + ], + "core-js/es/string/includes": [ + "es.string.includes" + ], + "core-js/es/string/is-well-formed": [ + "es.string.is-well-formed" + ], + "core-js/es/string/italics": [ + "es.string.italics" + ], + "core-js/es/string/iterator": [ + "es.object.to-string", + "es.string.iterator" + ], + "core-js/es/string/link": [ + "es.string.link" + ], + "core-js/es/string/match": [ + "es.regexp.exec", + "es.string.match" + ], + "core-js/es/string/match-all": [ + "es.object.to-string", + "es.regexp.exec", + "es.string.match-all" + ], + "core-js/es/string/pad-end": [ + "es.string.pad-end" + ], + "core-js/es/string/pad-start": [ + "es.string.pad-start" + ], + "core-js/es/string/raw": [ + "es.string.raw" + ], + "core-js/es/string/repeat": [ + "es.string.repeat" + ], + "core-js/es/string/replace": [ + "es.regexp.exec", + "es.string.replace" + ], + "core-js/es/string/replace-all": [ + "es.regexp.exec", + "es.string.replace", + "es.string.replace-all" + ], + "core-js/es/string/search": [ + "es.regexp.exec", + "es.string.search" + ], + "core-js/es/string/small": [ + "es.string.small" + ], + "core-js/es/string/split": [ + "es.regexp.exec", + "es.string.split" + ], + "core-js/es/string/starts-with": [ + "es.string.starts-with" + ], + "core-js/es/string/strike": [ + "es.string.strike" + ], + "core-js/es/string/sub": [ + "es.string.sub" + ], + "core-js/es/string/substr": [ + "es.string.substr" + ], + "core-js/es/string/sup": [ + "es.string.sup" + ], + "core-js/es/string/to-well-formed": [ + "es.string.to-well-formed" + ], + "core-js/es/string/trim": [ + "es.string.trim" + ], + "core-js/es/string/trim-end": [ + "es.string.trim-end" + ], + "core-js/es/string/trim-left": [ + "es.string.trim-start" + ], + "core-js/es/string/trim-right": [ + "es.string.trim-end" + ], + "core-js/es/string/trim-start": [ + "es.string.trim-start" + ], + "core-js/es/string/virtual": [ + "es.object.to-string", + "es.regexp.exec", + "es.string.at-alternative", + "es.string.code-point-at", + "es.string.ends-with", + "es.string.includes", + "es.string.iterator", + "es.string.match", + "es.string.match-all", + "es.string.pad-end", + "es.string.pad-start", + "es.string.repeat", + "es.string.replace", + "es.string.replace-all", + "es.string.search", + "es.string.split", + "es.string.starts-with", + "es.string.substr", + "es.string.trim", + "es.string.trim-end", + "es.string.trim-start", + "es.string.anchor", + "es.string.big", + "es.string.blink", + "es.string.bold", + "es.string.fixed", + "es.string.fontcolor", + "es.string.fontsize", + "es.string.italics", + "es.string.link", + "es.string.small", + "es.string.strike", + "es.string.sub", + "es.string.sup" + ], + "core-js/es/string/virtual/anchor": [ + "es.string.anchor" + ], + "core-js/es/string/virtual/at": [ + "es.string.at-alternative" + ], + "core-js/es/string/virtual/big": [ + "es.string.big" + ], + "core-js/es/string/virtual/blink": [ + "es.string.blink" + ], + "core-js/es/string/virtual/bold": [ + "es.string.bold" + ], + "core-js/es/string/virtual/code-point-at": [ + "es.string.code-point-at" + ], + "core-js/es/string/virtual/ends-with": [ + "es.string.ends-with" + ], + "core-js/es/string/virtual/fixed": [ + "es.string.fixed" + ], + "core-js/es/string/virtual/fontcolor": [ + "es.string.fontcolor" + ], + "core-js/es/string/virtual/fontsize": [ + "es.string.fontsize" + ], + "core-js/es/string/virtual/includes": [ + "es.string.includes" + ], + "core-js/es/string/virtual/is-well-formed": [ + "es.string.is-well-formed" + ], + "core-js/es/string/virtual/italics": [ + "es.string.italics" + ], + "core-js/es/string/virtual/iterator": [ + "es.object.to-string", + "es.string.iterator" + ], + "core-js/es/string/virtual/link": [ + "es.string.link" + ], + "core-js/es/string/virtual/match-all": [ + "es.object.to-string", + "es.regexp.exec", + "es.string.match-all" + ], + "core-js/es/string/virtual/pad-end": [ + "es.string.pad-end" + ], + "core-js/es/string/virtual/pad-start": [ + "es.string.pad-start" + ], + "core-js/es/string/virtual/repeat": [ + "es.string.repeat" + ], + "core-js/es/string/virtual/replace-all": [ + "es.regexp.exec", + "es.string.replace", + "es.string.replace-all" + ], + "core-js/es/string/virtual/small": [ + "es.string.small" + ], + "core-js/es/string/virtual/starts-with": [ + "es.string.starts-with" + ], + "core-js/es/string/virtual/strike": [ + "es.string.strike" + ], + "core-js/es/string/virtual/sub": [ + "es.string.sub" + ], + "core-js/es/string/virtual/substr": [ + "es.string.substr" + ], + "core-js/es/string/virtual/sup": [ + "es.string.sup" + ], + "core-js/es/string/virtual/to-well-formed": [ + "es.string.to-well-formed" + ], + "core-js/es/string/virtual/trim": [ + "es.string.trim" + ], + "core-js/es/string/virtual/trim-end": [ + "es.string.trim-end" + ], + "core-js/es/string/virtual/trim-left": [ + "es.string.trim-start" + ], + "core-js/es/string/virtual/trim-right": [ + "es.string.trim-end" + ], + "core-js/es/string/virtual/trim-start": [ + "es.string.trim-start" + ], + "core-js/es/suppressed-error": [], + "core-js/es/symbol": [ + "es.symbol", + "es.symbol.description", + "es.symbol.async-dispose", + "es.symbol.async-iterator", + "es.symbol.dispose", + "es.symbol.has-instance", + "es.symbol.is-concat-spreadable", + "es.symbol.iterator", + "es.symbol.match", + "es.symbol.match-all", + "es.symbol.replace", + "es.symbol.search", + "es.symbol.species", + "es.symbol.split", + "es.symbol.to-primitive", + "es.symbol.to-string-tag", + "es.symbol.unscopables", + "es.array.concat", + "es.json.to-string-tag", + "es.math.to-string-tag", + "es.object.to-string", + "es.reflect.to-string-tag" + ], + "core-js/es/symbol/async-dispose": [ + "es.symbol.async-dispose" + ], + "core-js/es/symbol/async-iterator": [ + "es.symbol.async-iterator" + ], + "core-js/es/symbol/description": [ + "es.symbol.description" + ], + "core-js/es/symbol/dispose": [ + "es.symbol.dispose" + ], + "core-js/es/symbol/for": [ + "es.symbol" + ], + "core-js/es/symbol/has-instance": [ + "es.symbol.has-instance", + "es.function.has-instance" + ], + "core-js/es/symbol/is-concat-spreadable": [ + "es.symbol.is-concat-spreadable", + "es.array.concat" + ], + "core-js/es/symbol/iterator": [ + "es.symbol.iterator", + "es.array.iterator", + "es.object.to-string", + "es.string.iterator" + ], + "core-js/es/symbol/key-for": [ + "es.symbol" + ], + "core-js/es/symbol/match": [ + "es.symbol.match", + "es.regexp.exec", + "es.string.match" + ], + "core-js/es/symbol/match-all": [ + "es.symbol.match-all", + "es.object.to-string", + "es.regexp.exec", + "es.string.match-all" + ], + "core-js/es/symbol/replace": [ + "es.symbol.replace", + "es.regexp.exec", + "es.string.replace" + ], + "core-js/es/symbol/search": [ + "es.symbol.search", + "es.regexp.exec", + "es.string.search" + ], + "core-js/es/symbol/species": [ + "es.symbol.species" + ], + "core-js/es/symbol/split": [ + "es.symbol.split", + "es.regexp.exec", + "es.string.split" + ], + "core-js/es/symbol/to-primitive": [ + "es.symbol.to-primitive", + "es.date.to-primitive" + ], + "core-js/es/symbol/to-string-tag": [ + "es.symbol.to-string-tag", + "es.json.to-string-tag", + "es.math.to-string-tag", + "es.object.to-string", + "es.reflect.to-string-tag" + ], + "core-js/es/symbol/unscopables": [ + "es.symbol.unscopables" + ], + "core-js/es/typed-array": [ + "es.object.to-string", + "es.string.iterator", + "es.typed-array.float32-array", + "es.typed-array.float64-array", + "es.typed-array.int8-array", + "es.typed-array.int16-array", + "es.typed-array.int32-array", + "es.typed-array.uint8-array", + "es.typed-array.uint8-clamped-array", + "es.typed-array.uint16-array", + "es.typed-array.uint32-array", + "es.typed-array.at", + "es.typed-array.copy-within", + "es.typed-array.every", + "es.typed-array.fill", + "es.typed-array.filter", + "es.typed-array.find", + "es.typed-array.find-index", + "es.typed-array.find-last", + "es.typed-array.find-last-index", + "es.typed-array.for-each", + "es.typed-array.from", + "es.typed-array.includes", + "es.typed-array.index-of", + "es.typed-array.iterator", + "es.typed-array.join", + "es.typed-array.last-index-of", + "es.typed-array.map", + "es.typed-array.of", + "es.typed-array.reduce", + "es.typed-array.reduce-right", + "es.typed-array.reverse", + "es.typed-array.set", + "es.typed-array.slice", + "es.typed-array.some", + "es.typed-array.sort", + "es.typed-array.subarray", + "es.typed-array.to-locale-string", + "es.typed-array.to-reversed", + "es.typed-array.to-sorted", + "es.typed-array.to-string", + "es.typed-array.with", + "es.uint8-array.from-base64", + "es.uint8-array.from-hex", + "es.uint8-array.set-from-base64", + "es.uint8-array.set-from-hex", + "es.uint8-array.to-base64", + "es.uint8-array.to-hex" + ], + "core-js/es/typed-array/at": [ + "es.typed-array.at" + ], + "core-js/es/typed-array/copy-within": [ + "es.typed-array.copy-within" + ], + "core-js/es/typed-array/entries": [ + "es.object.to-string", + "es.typed-array.iterator" + ], + "core-js/es/typed-array/every": [ + "es.typed-array.every" + ], + "core-js/es/typed-array/fill": [ + "es.typed-array.fill" + ], + "core-js/es/typed-array/filter": [ + "es.typed-array.filter" + ], + "core-js/es/typed-array/find": [ + "es.typed-array.find" + ], + "core-js/es/typed-array/find-index": [ + "es.typed-array.find-index" + ], + "core-js/es/typed-array/find-last": [ + "es.typed-array.find-last" + ], + "core-js/es/typed-array/find-last-index": [ + "es.typed-array.find-last-index" + ], + "core-js/es/typed-array/float32-array": [ + "es.array-buffer.constructor", + "es.array-buffer.slice", + "es.object.to-string", + "es.string.iterator", + "es.typed-array.float32-array", + "es.typed-array.at", + "es.typed-array.copy-within", + "es.typed-array.every", + "es.typed-array.fill", + "es.typed-array.filter", + "es.typed-array.find", + "es.typed-array.find-index", + "es.typed-array.find-last", + "es.typed-array.find-last-index", + "es.typed-array.for-each", + "es.typed-array.from", + "es.typed-array.includes", + "es.typed-array.index-of", + "es.typed-array.iterator", + "es.typed-array.join", + "es.typed-array.last-index-of", + "es.typed-array.map", + "es.typed-array.of", + "es.typed-array.reduce", + "es.typed-array.reduce-right", + "es.typed-array.reverse", + "es.typed-array.set", + "es.typed-array.slice", + "es.typed-array.some", + "es.typed-array.sort", + "es.typed-array.subarray", + "es.typed-array.to-locale-string", + "es.typed-array.to-reversed", + "es.typed-array.to-sorted", + "es.typed-array.to-string", + "es.typed-array.with", + "es.uint8-array.from-base64", + "es.uint8-array.from-hex", + "es.uint8-array.set-from-base64", + "es.uint8-array.set-from-hex", + "es.uint8-array.to-base64", + "es.uint8-array.to-hex" + ], + "core-js/es/typed-array/float64-array": [ + "es.array-buffer.constructor", + "es.array-buffer.slice", + "es.object.to-string", + "es.string.iterator", + "es.typed-array.float64-array", + "es.typed-array.at", + "es.typed-array.copy-within", + "es.typed-array.every", + "es.typed-array.fill", + "es.typed-array.filter", + "es.typed-array.find", + "es.typed-array.find-index", + "es.typed-array.find-last", + "es.typed-array.find-last-index", + "es.typed-array.for-each", + "es.typed-array.from", + "es.typed-array.includes", + "es.typed-array.index-of", + "es.typed-array.iterator", + "es.typed-array.join", + "es.typed-array.last-index-of", + "es.typed-array.map", + "es.typed-array.of", + "es.typed-array.reduce", + "es.typed-array.reduce-right", + "es.typed-array.reverse", + "es.typed-array.set", + "es.typed-array.slice", + "es.typed-array.some", + "es.typed-array.sort", + "es.typed-array.subarray", + "es.typed-array.to-locale-string", + "es.typed-array.to-reversed", + "es.typed-array.to-sorted", + "es.typed-array.to-string", + "es.typed-array.with", + "es.uint8-array.from-base64", + "es.uint8-array.from-hex", + "es.uint8-array.set-from-base64", + "es.uint8-array.set-from-hex", + "es.uint8-array.to-base64", + "es.uint8-array.to-hex" + ], + "core-js/es/typed-array/for-each": [ + "es.typed-array.for-each" + ], + "core-js/es/typed-array/from": [ + "es.typed-array.from" + ], + "core-js/es/typed-array/from-base64": [ + "es.uint8-array.from-base64" + ], + "core-js/es/typed-array/from-hex": [ + "es.uint8-array.from-hex" + ], + "core-js/es/typed-array/includes": [ + "es.typed-array.includes" + ], + "core-js/es/typed-array/index-of": [ + "es.typed-array.index-of" + ], + "core-js/es/typed-array/int16-array": [ + "es.array-buffer.constructor", + "es.array-buffer.slice", + "es.object.to-string", + "es.string.iterator", + "es.typed-array.int16-array", + "es.typed-array.at", + "es.typed-array.copy-within", + "es.typed-array.every", + "es.typed-array.fill", + "es.typed-array.filter", + "es.typed-array.find", + "es.typed-array.find-index", + "es.typed-array.find-last", + "es.typed-array.find-last-index", + "es.typed-array.for-each", + "es.typed-array.from", + "es.typed-array.includes", + "es.typed-array.index-of", + "es.typed-array.iterator", + "es.typed-array.join", + "es.typed-array.last-index-of", + "es.typed-array.map", + "es.typed-array.of", + "es.typed-array.reduce", + "es.typed-array.reduce-right", + "es.typed-array.reverse", + "es.typed-array.set", + "es.typed-array.slice", + "es.typed-array.some", + "es.typed-array.sort", + "es.typed-array.subarray", + "es.typed-array.to-locale-string", + "es.typed-array.to-reversed", + "es.typed-array.to-sorted", + "es.typed-array.to-string", + "es.typed-array.with", + "es.uint8-array.from-base64", + "es.uint8-array.from-hex", + "es.uint8-array.set-from-base64", + "es.uint8-array.set-from-hex", + "es.uint8-array.to-base64", + "es.uint8-array.to-hex" + ], + "core-js/es/typed-array/int32-array": [ + "es.array-buffer.constructor", + "es.array-buffer.slice", + "es.object.to-string", + "es.string.iterator", + "es.typed-array.int32-array", + "es.typed-array.at", + "es.typed-array.copy-within", + "es.typed-array.every", + "es.typed-array.fill", + "es.typed-array.filter", + "es.typed-array.find", + "es.typed-array.find-index", + "es.typed-array.find-last", + "es.typed-array.find-last-index", + "es.typed-array.for-each", + "es.typed-array.from", + "es.typed-array.includes", + "es.typed-array.index-of", + "es.typed-array.iterator", + "es.typed-array.join", + "es.typed-array.last-index-of", + "es.typed-array.map", + "es.typed-array.of", + "es.typed-array.reduce", + "es.typed-array.reduce-right", + "es.typed-array.reverse", + "es.typed-array.set", + "es.typed-array.slice", + "es.typed-array.some", + "es.typed-array.sort", + "es.typed-array.subarray", + "es.typed-array.to-locale-string", + "es.typed-array.to-reversed", + "es.typed-array.to-sorted", + "es.typed-array.to-string", + "es.typed-array.with", + "es.uint8-array.from-base64", + "es.uint8-array.from-hex", + "es.uint8-array.set-from-base64", + "es.uint8-array.set-from-hex", + "es.uint8-array.to-base64", + "es.uint8-array.to-hex" + ], + "core-js/es/typed-array/int8-array": [ + "es.array-buffer.constructor", + "es.array-buffer.slice", + "es.object.to-string", + "es.string.iterator", + "es.typed-array.int8-array", + "es.typed-array.at", + "es.typed-array.copy-within", + "es.typed-array.every", + "es.typed-array.fill", + "es.typed-array.filter", + "es.typed-array.find", + "es.typed-array.find-index", + "es.typed-array.find-last", + "es.typed-array.find-last-index", + "es.typed-array.for-each", + "es.typed-array.from", + "es.typed-array.includes", + "es.typed-array.index-of", + "es.typed-array.iterator", + "es.typed-array.join", + "es.typed-array.last-index-of", + "es.typed-array.map", + "es.typed-array.of", + "es.typed-array.reduce", + "es.typed-array.reduce-right", + "es.typed-array.reverse", + "es.typed-array.set", + "es.typed-array.slice", + "es.typed-array.some", + "es.typed-array.sort", + "es.typed-array.subarray", + "es.typed-array.to-locale-string", + "es.typed-array.to-reversed", + "es.typed-array.to-sorted", + "es.typed-array.to-string", + "es.typed-array.with", + "es.uint8-array.from-base64", + "es.uint8-array.from-hex", + "es.uint8-array.set-from-base64", + "es.uint8-array.set-from-hex", + "es.uint8-array.to-base64", + "es.uint8-array.to-hex" + ], + "core-js/es/typed-array/iterator": [ + "es.object.to-string", + "es.typed-array.iterator" + ], + "core-js/es/typed-array/join": [ + "es.typed-array.join" + ], + "core-js/es/typed-array/keys": [ + "es.object.to-string", + "es.typed-array.iterator" + ], + "core-js/es/typed-array/last-index-of": [ + "es.typed-array.last-index-of" + ], + "core-js/es/typed-array/map": [ + "es.typed-array.map" + ], + "core-js/es/typed-array/methods": [ + "es.object.to-string", + "es.string.iterator", + "es.typed-array.at", + "es.typed-array.copy-within", + "es.typed-array.every", + "es.typed-array.fill", + "es.typed-array.filter", + "es.typed-array.find", + "es.typed-array.find-index", + "es.typed-array.find-last", + "es.typed-array.find-last-index", + "es.typed-array.for-each", + "es.typed-array.from", + "es.typed-array.includes", + "es.typed-array.index-of", + "es.typed-array.iterator", + "es.typed-array.join", + "es.typed-array.last-index-of", + "es.typed-array.map", + "es.typed-array.of", + "es.typed-array.reduce", + "es.typed-array.reduce-right", + "es.typed-array.reverse", + "es.typed-array.set", + "es.typed-array.slice", + "es.typed-array.some", + "es.typed-array.sort", + "es.typed-array.subarray", + "es.typed-array.to-locale-string", + "es.typed-array.to-reversed", + "es.typed-array.to-sorted", + "es.typed-array.to-string", + "es.typed-array.with", + "es.uint8-array.from-base64", + "es.uint8-array.from-hex", + "es.uint8-array.set-from-base64", + "es.uint8-array.set-from-hex", + "es.uint8-array.to-base64", + "es.uint8-array.to-hex" + ], + "core-js/es/typed-array/of": [ + "es.typed-array.of" + ], + "core-js/es/typed-array/reduce": [ + "es.typed-array.reduce" + ], + "core-js/es/typed-array/reduce-right": [ + "es.typed-array.reduce-right" + ], + "core-js/es/typed-array/reverse": [ + "es.typed-array.reverse" + ], + "core-js/es/typed-array/set": [ + "es.typed-array.set" + ], + "core-js/es/typed-array/set-from-base64": [ + "es.uint8-array.set-from-base64" + ], + "core-js/es/typed-array/set-from-hex": [ + "es.uint8-array.set-from-hex" + ], + "core-js/es/typed-array/slice": [ + "es.typed-array.slice" + ], + "core-js/es/typed-array/some": [ + "es.typed-array.some" + ], + "core-js/es/typed-array/sort": [ + "es.typed-array.sort" + ], + "core-js/es/typed-array/subarray": [ + "es.typed-array.subarray" + ], + "core-js/es/typed-array/to-base64": [ + "es.uint8-array.to-base64" + ], + "core-js/es/typed-array/to-hex": [ + "es.uint8-array.to-hex" + ], + "core-js/es/typed-array/to-locale-string": [ + "es.typed-array.to-locale-string" + ], + "core-js/es/typed-array/to-reversed": [ + "es.typed-array.to-reversed" + ], + "core-js/es/typed-array/to-sorted": [ + "es.typed-array.sort", + "es.typed-array.to-sorted" + ], + "core-js/es/typed-array/to-string": [ + "es.typed-array.to-string" + ], + "core-js/es/typed-array/uint16-array": [ + "es.array-buffer.constructor", + "es.array-buffer.slice", + "es.object.to-string", + "es.string.iterator", + "es.typed-array.uint16-array", + "es.typed-array.at", + "es.typed-array.copy-within", + "es.typed-array.every", + "es.typed-array.fill", + "es.typed-array.filter", + "es.typed-array.find", + "es.typed-array.find-index", + "es.typed-array.find-last", + "es.typed-array.find-last-index", + "es.typed-array.for-each", + "es.typed-array.from", + "es.typed-array.includes", + "es.typed-array.index-of", + "es.typed-array.iterator", + "es.typed-array.join", + "es.typed-array.last-index-of", + "es.typed-array.map", + "es.typed-array.of", + "es.typed-array.reduce", + "es.typed-array.reduce-right", + "es.typed-array.reverse", + "es.typed-array.set", + "es.typed-array.slice", + "es.typed-array.some", + "es.typed-array.sort", + "es.typed-array.subarray", + "es.typed-array.to-locale-string", + "es.typed-array.to-reversed", + "es.typed-array.to-sorted", + "es.typed-array.to-string", + "es.typed-array.with", + "es.uint8-array.from-base64", + "es.uint8-array.from-hex", + "es.uint8-array.set-from-base64", + "es.uint8-array.set-from-hex", + "es.uint8-array.to-base64", + "es.uint8-array.to-hex" + ], + "core-js/es/typed-array/uint32-array": [ + "es.array-buffer.constructor", + "es.array-buffer.slice", + "es.object.to-string", + "es.string.iterator", + "es.typed-array.uint32-array", + "es.typed-array.at", + "es.typed-array.copy-within", + "es.typed-array.every", + "es.typed-array.fill", + "es.typed-array.filter", + "es.typed-array.find", + "es.typed-array.find-index", + "es.typed-array.find-last", + "es.typed-array.find-last-index", + "es.typed-array.for-each", + "es.typed-array.from", + "es.typed-array.includes", + "es.typed-array.index-of", + "es.typed-array.iterator", + "es.typed-array.join", + "es.typed-array.last-index-of", + "es.typed-array.map", + "es.typed-array.of", + "es.typed-array.reduce", + "es.typed-array.reduce-right", + "es.typed-array.reverse", + "es.typed-array.set", + "es.typed-array.slice", + "es.typed-array.some", + "es.typed-array.sort", + "es.typed-array.subarray", + "es.typed-array.to-locale-string", + "es.typed-array.to-reversed", + "es.typed-array.to-sorted", + "es.typed-array.to-string", + "es.typed-array.with", + "es.uint8-array.from-base64", + "es.uint8-array.from-hex", + "es.uint8-array.set-from-base64", + "es.uint8-array.set-from-hex", + "es.uint8-array.to-base64", + "es.uint8-array.to-hex" + ], + "core-js/es/typed-array/uint8-array": [ + "es.array-buffer.constructor", + "es.array-buffer.slice", + "es.object.to-string", + "es.string.iterator", + "es.typed-array.uint8-array", + "es.typed-array.at", + "es.typed-array.copy-within", + "es.typed-array.every", + "es.typed-array.fill", + "es.typed-array.filter", + "es.typed-array.find", + "es.typed-array.find-index", + "es.typed-array.find-last", + "es.typed-array.find-last-index", + "es.typed-array.for-each", + "es.typed-array.from", + "es.typed-array.includes", + "es.typed-array.index-of", + "es.typed-array.iterator", + "es.typed-array.join", + "es.typed-array.last-index-of", + "es.typed-array.map", + "es.typed-array.of", + "es.typed-array.reduce", + "es.typed-array.reduce-right", + "es.typed-array.reverse", + "es.typed-array.set", + "es.typed-array.slice", + "es.typed-array.some", + "es.typed-array.sort", + "es.typed-array.subarray", + "es.typed-array.to-locale-string", + "es.typed-array.to-reversed", + "es.typed-array.to-sorted", + "es.typed-array.to-string", + "es.typed-array.with", + "es.uint8-array.from-base64", + "es.uint8-array.from-hex", + "es.uint8-array.set-from-base64", + "es.uint8-array.set-from-hex", + "es.uint8-array.to-base64", + "es.uint8-array.to-hex" + ], + "core-js/es/typed-array/uint8-clamped-array": [ + "es.array-buffer.constructor", + "es.array-buffer.slice", + "es.object.to-string", + "es.string.iterator", + "es.typed-array.uint8-clamped-array", + "es.typed-array.at", + "es.typed-array.copy-within", + "es.typed-array.every", + "es.typed-array.fill", + "es.typed-array.filter", + "es.typed-array.find", + "es.typed-array.find-index", + "es.typed-array.find-last", + "es.typed-array.find-last-index", + "es.typed-array.for-each", + "es.typed-array.from", + "es.typed-array.includes", + "es.typed-array.index-of", + "es.typed-array.iterator", + "es.typed-array.join", + "es.typed-array.last-index-of", + "es.typed-array.map", + "es.typed-array.of", + "es.typed-array.reduce", + "es.typed-array.reduce-right", + "es.typed-array.reverse", + "es.typed-array.set", + "es.typed-array.slice", + "es.typed-array.some", + "es.typed-array.sort", + "es.typed-array.subarray", + "es.typed-array.to-locale-string", + "es.typed-array.to-reversed", + "es.typed-array.to-sorted", + "es.typed-array.to-string", + "es.typed-array.with", + "es.uint8-array.from-base64", + "es.uint8-array.from-hex", + "es.uint8-array.set-from-base64", + "es.uint8-array.set-from-hex", + "es.uint8-array.to-base64", + "es.uint8-array.to-hex" + ], + "core-js/es/typed-array/values": [ + "es.object.to-string", + "es.typed-array.iterator" + ], + "core-js/es/typed-array/with": [ + "es.typed-array.with" + ], + "core-js/es/unescape": [ + "es.unescape" + ], + "core-js/es/weak-map": [ + "es.array.iterator", + "es.object.to-string", + "es.weak-map" + ], + "core-js/es/weak-set": [ + "es.array.iterator", + "es.object.to-string", + "es.weak-set" + ], + "core-js/features": [ + "es.symbol", + "es.symbol.description", + "es.symbol.async-dispose", + "es.symbol.async-iterator", + "es.symbol.dispose", + "es.symbol.has-instance", + "es.symbol.is-concat-spreadable", + "es.symbol.iterator", + "es.symbol.match", + "es.symbol.match-all", + "es.symbol.replace", + "es.symbol.search", + "es.symbol.species", + "es.symbol.split", + "es.symbol.to-primitive", + "es.symbol.to-string-tag", + "es.symbol.unscopables", + "es.error.cause", + "es.error.is-error", + "es.error.to-string", + "es.aggregate-error", + "es.aggregate-error.cause", + "es.suppressed-error.constructor", + "es.array.at", + "es.array.concat", + "es.array.copy-within", + "es.array.every", + "es.array.fill", + "es.array.filter", + "es.array.find", + "es.array.find-index", + "es.array.find-last", + "es.array.find-last-index", + "es.array.flat", + "es.array.flat-map", + "es.array.for-each", + "es.array.from", + "es.array.includes", + "es.array.index-of", + "es.array.is-array", + "es.array.iterator", + "es.array.join", + "es.array.last-index-of", + "es.array.map", + "es.array.of", + "es.array.push", + "es.array.reduce", + "es.array.reduce-right", + "es.array.reverse", + "es.array.slice", + "es.array.some", + "es.array.sort", + "es.array.species", + "es.array.splice", + "es.array.to-reversed", + "es.array.to-sorted", + "es.array.to-spliced", + "es.array.unscopables.flat", + "es.array.unscopables.flat-map", + "es.array.unshift", + "es.array.with", + "es.array-buffer.constructor", + "es.array-buffer.is-view", + "es.array-buffer.slice", + "es.data-view", + "es.data-view.get-float16", + "es.data-view.set-float16", + "es.array-buffer.detached", + "es.array-buffer.transfer", + "es.array-buffer.transfer-to-fixed-length", + "es.date.get-year", + "es.date.now", + "es.date.set-year", + "es.date.to-gmt-string", + "es.date.to-iso-string", + "es.date.to-json", + "es.date.to-primitive", + "es.date.to-string", + "es.disposable-stack.constructor", + "es.escape", + "es.function.bind", + "es.function.has-instance", + "es.function.name", + "es.global-this", + "es.iterator.constructor", + "es.iterator.dispose", + "es.iterator.drop", + "es.iterator.every", + "es.iterator.filter", + "es.iterator.find", + "es.iterator.flat-map", + "es.iterator.for-each", + "es.iterator.from", + "es.iterator.map", + "es.iterator.reduce", + "es.iterator.some", + "es.iterator.take", + "es.iterator.to-array", + "es.json.stringify", + "es.json.to-string-tag", + "es.map", + "es.map.group-by", + "es.math.acosh", + "es.math.asinh", + "es.math.atanh", + "es.math.cbrt", + "es.math.clz32", + "es.math.cosh", + "es.math.expm1", + "es.math.fround", + "es.math.f16round", + "es.math.hypot", + "es.math.imul", + "es.math.log10", + "es.math.log1p", + "es.math.log2", + "es.math.sign", + "es.math.sinh", + "es.math.sum-precise", + "es.math.tanh", + "es.math.to-string-tag", + "es.math.trunc", + "es.number.constructor", + "es.number.epsilon", + "es.number.is-finite", + "es.number.is-integer", + "es.number.is-nan", + "es.number.is-safe-integer", + "es.number.max-safe-integer", + "es.number.min-safe-integer", + "es.number.parse-float", + "es.number.parse-int", + "es.number.to-exponential", + "es.number.to-fixed", + "es.number.to-precision", + "es.object.assign", + "es.object.create", + "es.object.define-getter", + "es.object.define-properties", + "es.object.define-property", + "es.object.define-setter", + "es.object.entries", + "es.object.freeze", + "es.object.from-entries", + "es.object.get-own-property-descriptor", + "es.object.get-own-property-descriptors", + "es.object.get-own-property-names", + "es.object.get-prototype-of", + "es.object.group-by", + "es.object.has-own", + "es.object.is", + "es.object.is-extensible", + "es.object.is-frozen", + "es.object.is-sealed", + "es.object.keys", + "es.object.lookup-getter", + "es.object.lookup-setter", + "es.object.prevent-extensions", + "es.object.proto", + "es.object.seal", + "es.object.set-prototype-of", + "es.object.to-string", + "es.object.values", + "es.parse-float", + "es.parse-int", + "es.promise", + "es.promise.all-settled", + "es.promise.any", + "es.promise.finally", + "es.promise.try", + "es.promise.with-resolvers", + "es.array.from-async", + "es.async-disposable-stack.constructor", + "es.async-iterator.async-dispose", + "es.reflect.apply", + "es.reflect.construct", + "es.reflect.define-property", + "es.reflect.delete-property", + "es.reflect.get", + "es.reflect.get-own-property-descriptor", + "es.reflect.get-prototype-of", + "es.reflect.has", + "es.reflect.is-extensible", + "es.reflect.own-keys", + "es.reflect.prevent-extensions", + "es.reflect.set", + "es.reflect.set-prototype-of", + "es.reflect.to-string-tag", + "es.regexp.constructor", + "es.regexp.escape", + "es.regexp.dot-all", + "es.regexp.exec", + "es.regexp.flags", + "es.regexp.sticky", + "es.regexp.test", + "es.regexp.to-string", + "es.set", + "es.set.difference.v2", + "es.set.intersection.v2", + "es.set.is-disjoint-from.v2", + "es.set.is-subset-of.v2", + "es.set.is-superset-of.v2", + "es.set.symmetric-difference.v2", + "es.set.union.v2", + "es.string.at-alternative", + "es.string.code-point-at", + "es.string.ends-with", + "es.string.from-code-point", + "es.string.includes", + "es.string.is-well-formed", + "es.string.iterator", + "es.string.match", + "es.string.match-all", + "es.string.pad-end", + "es.string.pad-start", + "es.string.raw", + "es.string.repeat", + "es.string.replace", + "es.string.replace-all", + "es.string.search", + "es.string.split", + "es.string.starts-with", + "es.string.substr", + "es.string.to-well-formed", + "es.string.trim", + "es.string.trim-end", + "es.string.trim-start", + "es.string.anchor", + "es.string.big", + "es.string.blink", + "es.string.bold", + "es.string.fixed", + "es.string.fontcolor", + "es.string.fontsize", + "es.string.italics", + "es.string.link", + "es.string.small", + "es.string.strike", + "es.string.sub", + "es.string.sup", + "es.typed-array.float32-array", + "es.typed-array.float64-array", + "es.typed-array.int8-array", + "es.typed-array.int16-array", + "es.typed-array.int32-array", + "es.typed-array.uint8-array", + "es.typed-array.uint8-clamped-array", + "es.typed-array.uint16-array", + "es.typed-array.uint32-array", + "es.typed-array.at", + "es.typed-array.copy-within", + "es.typed-array.every", + "es.typed-array.fill", + "es.typed-array.filter", + "es.typed-array.find", + "es.typed-array.find-index", + "es.typed-array.find-last", + "es.typed-array.find-last-index", + "es.typed-array.for-each", + "es.typed-array.from", + "es.typed-array.includes", + "es.typed-array.index-of", + "es.typed-array.iterator", + "es.typed-array.join", + "es.typed-array.last-index-of", + "es.typed-array.map", + "es.typed-array.of", + "es.typed-array.reduce", + "es.typed-array.reduce-right", + "es.typed-array.reverse", + "es.typed-array.set", + "es.typed-array.slice", + "es.typed-array.some", + "es.typed-array.sort", + "es.typed-array.subarray", + "es.typed-array.to-locale-string", + "es.typed-array.to-reversed", + "es.typed-array.to-sorted", + "es.typed-array.to-string", + "es.typed-array.with", + "es.uint8-array.from-base64", + "es.uint8-array.from-hex", + "es.uint8-array.set-from-base64", + "es.uint8-array.set-from-hex", + "es.uint8-array.to-base64", + "es.uint8-array.to-hex", + "es.unescape", + "es.weak-map", + "es.weak-set", + "esnext.aggregate-error", + "esnext.suppressed-error.constructor", + "esnext.array.from-async", + "esnext.array.at", + "esnext.array.filter-out", + "esnext.array.filter-reject", + "esnext.array.find-last", + "esnext.array.find-last-index", + "esnext.array.group", + "esnext.array.group-by", + "esnext.array.group-by-to-map", + "esnext.array.group-to-map", + "esnext.array.is-template-object", + "esnext.array.last-index", + "esnext.array.last-item", + "esnext.array.to-reversed", + "esnext.array.to-sorted", + "esnext.array.to-spliced", + "esnext.array.unique-by", + "esnext.array.with", + "esnext.array-buffer.detached", + "esnext.array-buffer.transfer", + "esnext.array-buffer.transfer-to-fixed-length", + "esnext.async-disposable-stack.constructor", + "esnext.async-iterator.constructor", + "esnext.async-iterator.as-indexed-pairs", + "esnext.async-iterator.async-dispose", + "esnext.async-iterator.drop", + "esnext.async-iterator.every", + "esnext.async-iterator.filter", + "esnext.async-iterator.find", + "esnext.async-iterator.flat-map", + "esnext.async-iterator.for-each", + "esnext.async-iterator.from", + "esnext.async-iterator.indexed", + "esnext.async-iterator.map", + "esnext.async-iterator.reduce", + "esnext.async-iterator.some", + "esnext.async-iterator.take", + "esnext.async-iterator.to-array", + "esnext.bigint.range", + "esnext.composite-key", + "esnext.composite-symbol", + "esnext.data-view.get-float16", + "esnext.data-view.get-uint8-clamped", + "esnext.data-view.set-float16", + "esnext.data-view.set-uint8-clamped", + "esnext.disposable-stack.constructor", + "esnext.error.is-error", + "esnext.function.demethodize", + "esnext.function.is-callable", + "esnext.function.is-constructor", + "esnext.function.metadata", + "esnext.function.un-this", + "esnext.global-this", + "esnext.iterator.constructor", + "esnext.iterator.as-indexed-pairs", + "esnext.iterator.chunks", + "esnext.iterator.concat", + "esnext.iterator.dispose", + "esnext.iterator.drop", + "esnext.iterator.every", + "esnext.iterator.filter", + "esnext.iterator.find", + "esnext.iterator.flat-map", + "esnext.iterator.for-each", + "esnext.iterator.from", + "esnext.iterator.indexed", + "esnext.iterator.map", + "esnext.iterator.range", + "esnext.iterator.reduce", + "esnext.iterator.sliding", + "esnext.iterator.some", + "esnext.iterator.take", + "esnext.iterator.to-array", + "esnext.iterator.to-async", + "esnext.iterator.windows", + "esnext.iterator.zip", + "esnext.iterator.zip-keyed", + "esnext.json.is-raw-json", + "esnext.json.parse", + "esnext.json.raw-json", + "esnext.map.delete-all", + "esnext.map.emplace", + "esnext.map.every", + "esnext.map.filter", + "esnext.map.find", + "esnext.map.find-key", + "esnext.map.from", + "esnext.map.get-or-insert", + "esnext.map.get-or-insert-computed", + "esnext.map.group-by", + "esnext.map.includes", + "esnext.map.key-by", + "esnext.map.key-of", + "esnext.map.map-keys", + "esnext.map.map-values", + "esnext.map.merge", + "esnext.map.of", + "esnext.map.reduce", + "esnext.map.some", + "esnext.map.update", + "esnext.map.update-or-insert", + "esnext.map.upsert", + "esnext.math.clamp", + "esnext.math.deg-per-rad", + "esnext.math.degrees", + "esnext.math.fscale", + "esnext.math.f16round", + "esnext.math.iaddh", + "esnext.math.imulh", + "esnext.math.isubh", + "esnext.math.rad-per-deg", + "esnext.math.radians", + "esnext.math.scale", + "esnext.math.seeded-prng", + "esnext.math.signbit", + "esnext.math.sum-precise", + "esnext.math.umulh", + "esnext.number.clamp", + "esnext.number.from-string", + "esnext.number.range", + "esnext.object.has-own", + "esnext.object.iterate-entries", + "esnext.object.iterate-keys", + "esnext.object.iterate-values", + "esnext.object.group-by", + "esnext.observable", + "esnext.promise.all-settled", + "esnext.promise.any", + "esnext.promise.try", + "esnext.promise.with-resolvers", + "esnext.reflect.define-metadata", + "esnext.reflect.delete-metadata", + "esnext.reflect.get-metadata", + "esnext.reflect.get-metadata-keys", + "esnext.reflect.get-own-metadata", + "esnext.reflect.get-own-metadata-keys", + "esnext.reflect.has-metadata", + "esnext.reflect.has-own-metadata", + "esnext.reflect.metadata", + "esnext.regexp.escape", + "esnext.set.add-all", + "esnext.set.delete-all", + "esnext.set.difference.v2", + "esnext.set.difference", + "esnext.set.every", + "esnext.set.filter", + "esnext.set.find", + "esnext.set.from", + "esnext.set.intersection.v2", + "esnext.set.intersection", + "esnext.set.is-disjoint-from.v2", + "esnext.set.is-disjoint-from", + "esnext.set.is-subset-of.v2", + "esnext.set.is-subset-of", + "esnext.set.is-superset-of.v2", + "esnext.set.is-superset-of", + "esnext.set.join", + "esnext.set.map", + "esnext.set.of", + "esnext.set.reduce", + "esnext.set.some", + "esnext.set.symmetric-difference.v2", + "esnext.set.symmetric-difference", + "esnext.set.union.v2", + "esnext.set.union", + "esnext.string.at", + "esnext.string.cooked", + "esnext.string.code-points", + "esnext.string.dedent", + "esnext.string.is-well-formed", + "esnext.string.match-all", + "esnext.string.replace-all", + "esnext.string.to-well-formed", + "esnext.symbol.async-dispose", + "esnext.symbol.custom-matcher", + "esnext.symbol.dispose", + "esnext.symbol.is-registered-symbol", + "esnext.symbol.is-registered", + "esnext.symbol.is-well-known-symbol", + "esnext.symbol.is-well-known", + "esnext.symbol.matcher", + "esnext.symbol.metadata", + "esnext.symbol.metadata-key", + "esnext.symbol.observable", + "esnext.symbol.pattern-match", + "esnext.symbol.replace-all", + "esnext.typed-array.from-async", + "esnext.typed-array.at", + "esnext.typed-array.filter-out", + "esnext.typed-array.filter-reject", + "esnext.typed-array.find-last", + "esnext.typed-array.find-last-index", + "esnext.typed-array.group-by", + "esnext.typed-array.to-reversed", + "esnext.typed-array.to-sorted", + "esnext.typed-array.to-spliced", + "esnext.typed-array.unique-by", + "esnext.typed-array.with", + "esnext.uint8-array.from-base64", + "esnext.uint8-array.from-hex", + "esnext.uint8-array.set-from-base64", + "esnext.uint8-array.set-from-hex", + "esnext.uint8-array.to-base64", + "esnext.uint8-array.to-hex", + "esnext.weak-map.delete-all", + "esnext.weak-map.from", + "esnext.weak-map.of", + "esnext.weak-map.emplace", + "esnext.weak-map.get-or-insert", + "esnext.weak-map.get-or-insert-computed", + "esnext.weak-map.upsert", + "esnext.weak-set.add-all", + "esnext.weak-set.delete-all", + "esnext.weak-set.from", + "esnext.weak-set.of", + "web.atob", + "web.btoa", + "web.dom-collections.for-each", + "web.dom-collections.iterator", + "web.dom-exception.constructor", + "web.dom-exception.stack", + "web.dom-exception.to-string-tag", + "web.immediate", + "web.queue-microtask", + "web.self", + "web.structured-clone", + "web.timers", + "web.url", + "web.url.can-parse", + "web.url.parse", + "web.url.to-json", + "web.url-search-params", + "web.url-search-params.delete", + "web.url-search-params.has", + "web.url-search-params.size" + ], + "core-js/features/aggregate-error": [], + "core-js/features/array": [ + "es.array.at", + "es.array.concat", + "es.array.copy-within", + "es.array.every", + "es.array.fill", + "es.array.filter", + "es.array.find", + "es.array.find-index", + "es.array.find-last", + "es.array.find-last-index", + "es.array.flat", + "es.array.flat-map", + "es.array.for-each", + "es.array.from", + "es.array.includes", + "es.array.index-of", + "es.array.is-array", + "es.array.iterator", + "es.array.join", + "es.array.last-index-of", + "es.array.map", + "es.array.of", + "es.array.push", + "es.array.reduce", + "es.array.reduce-right", + "es.array.reverse", + "es.array.slice", + "es.array.some", + "es.array.sort", + "es.array.species", + "es.array.splice", + "es.array.to-reversed", + "es.array.to-sorted", + "es.array.to-spliced", + "es.array.unscopables.flat", + "es.array.unscopables.flat-map", + "es.array.unshift", + "es.array.with", + "es.map", + "es.object.to-string", + "es.promise", + "es.array.from-async", + "es.string.iterator", + "esnext.array.from-async", + "esnext.array.at", + "esnext.array.filter-out", + "esnext.array.filter-reject", + "esnext.array.find-last", + "esnext.array.find-last-index", + "esnext.array.group", + "esnext.array.group-by", + "esnext.array.group-by-to-map", + "esnext.array.group-to-map", + "esnext.array.is-template-object", + "esnext.array.last-index", + "esnext.array.last-item", + "esnext.array.to-reversed", + "esnext.array.to-sorted", + "esnext.array.to-spliced", + "esnext.array.unique-by", + "esnext.array.with" + ], + "core-js/features/array-buffer": [ + "es.array-buffer.constructor", + "es.array-buffer.is-view", + "es.array-buffer.slice", + "es.data-view", + "es.array-buffer.detached", + "es.array-buffer.transfer", + "es.array-buffer.transfer-to-fixed-length", + "es.object.to-string", + "esnext.array-buffer.detached", + "esnext.array-buffer.transfer", + "esnext.array-buffer.transfer-to-fixed-length" + ], + "core-js/features/array-buffer/constructor": [ + "es.array-buffer.constructor", + "es.array-buffer.slice", + "es.array-buffer.detached", + "es.array-buffer.transfer", + "es.array-buffer.transfer-to-fixed-length", + "es.object.to-string", + "esnext.array-buffer.detached", + "esnext.array-buffer.transfer", + "esnext.array-buffer.transfer-to-fixed-length" + ], + "core-js/features/array-buffer/detached": [ + "es.array-buffer.constructor", + "es.array-buffer.slice", + "es.array-buffer.detached", + "esnext.array-buffer.detached" + ], + "core-js/features/array-buffer/is-view": [ + "es.array-buffer.is-view" + ], + "core-js/features/array-buffer/slice": [ + "es.array-buffer.slice" + ], + "core-js/features/array-buffer/transfer": [ + "es.array-buffer.constructor", + "es.array-buffer.slice", + "es.data-view", + "es.array-buffer.transfer", + "esnext.array-buffer.transfer" + ], + "core-js/features/array-buffer/transfer-to-fixed-length": [ + "es.array-buffer.constructor", + "es.array-buffer.slice", + "es.data-view", + "es.array-buffer.transfer-to-fixed-length", + "esnext.array-buffer.transfer-to-fixed-length" + ], + "core-js/features/array/at": [ + "es.array.at", + "esnext.array.at" + ], + "core-js/features/array/concat": [ + "es.array.concat" + ], + "core-js/features/array/copy-within": [ + "es.array.copy-within" + ], + "core-js/features/array/entries": [ + "es.array.iterator", + "es.object.to-string" + ], + "core-js/features/array/every": [ + "es.array.every" + ], + "core-js/features/array/fill": [ + "es.array.fill" + ], + "core-js/features/array/filter": [ + "es.array.filter" + ], + "core-js/features/array/filter-out": [ + "esnext.array.filter-out" + ], + "core-js/features/array/filter-reject": [ + "esnext.array.filter-reject" + ], + "core-js/features/array/find": [ + "es.array.find" + ], + "core-js/features/array/find-index": [ + "es.array.find-index" + ], + "core-js/features/array/find-last": [ + "es.array.find-last", + "esnext.array.find-last" + ], + "core-js/features/array/find-last-index": [ + "es.array.find-last-index", + "esnext.array.find-last-index" + ], + "core-js/features/array/flat": [ + "es.array.flat", + "es.array.unscopables.flat" + ], + "core-js/features/array/flat-map": [ + "es.array.flat-map", + "es.array.unscopables.flat-map" + ], + "core-js/features/array/for-each": [ + "es.array.for-each" + ], + "core-js/features/array/from": [ + "es.array.from", + "es.string.iterator" + ], + "core-js/features/array/from-async": [ + "es.array.iterator", + "es.object.to-string", + "es.promise", + "es.array.from-async", + "es.string.iterator", + "esnext.array.from-async" + ], + "core-js/features/array/group": [ + "esnext.array.group" + ], + "core-js/features/array/group-by": [ + "esnext.array.group-by" + ], + "core-js/features/array/group-by-to-map": [ + "es.map", + "es.object.to-string", + "esnext.array.group-by-to-map" + ], + "core-js/features/array/group-to-map": [ + "es.map", + "es.object.to-string", + "esnext.array.group-to-map" + ], + "core-js/features/array/includes": [ + "es.array.includes" + ], + "core-js/features/array/index-of": [ + "es.array.index-of" + ], + "core-js/features/array/is-array": [ + "es.array.is-array" + ], + "core-js/features/array/is-template-object": [ + "esnext.array.is-template-object" + ], + "core-js/features/array/iterator": [ + "es.array.iterator", + "es.object.to-string" + ], + "core-js/features/array/join": [ + "es.array.join" + ], + "core-js/features/array/keys": [ + "es.array.iterator", + "es.object.to-string" + ], + "core-js/features/array/last-index": [ + "esnext.array.last-index" + ], + "core-js/features/array/last-index-of": [ + "es.array.last-index-of" + ], + "core-js/features/array/last-item": [ + "esnext.array.last-item" + ], + "core-js/features/array/map": [ + "es.array.map" + ], + "core-js/features/array/of": [ + "es.array.of" + ], + "core-js/features/array/push": [ + "es.array.push" + ], + "core-js/features/array/reduce": [ + "es.array.reduce" + ], + "core-js/features/array/reduce-right": [ + "es.array.reduce-right" + ], + "core-js/features/array/reverse": [ + "es.array.reverse" + ], + "core-js/features/array/slice": [ + "es.array.slice" + ], + "core-js/features/array/some": [ + "es.array.some" + ], + "core-js/features/array/sort": [ + "es.array.sort" + ], + "core-js/features/array/splice": [ + "es.array.splice" + ], + "core-js/features/array/to-reversed": [ + "es.array.to-reversed", + "esnext.array.to-reversed" + ], + "core-js/features/array/to-sorted": [ + "es.array.sort", + "es.array.to-sorted", + "esnext.array.to-sorted" + ], + "core-js/features/array/to-spliced": [ + "es.array.to-spliced", + "esnext.array.to-spliced" + ], + "core-js/features/array/unique-by": [ + "es.map", + "esnext.array.unique-by" + ], + "core-js/features/array/unshift": [ + "es.array.unshift" + ], + "core-js/features/array/values": [ + "es.array.iterator", + "es.object.to-string" + ], + "core-js/features/array/virtual": [ + "es.array.at", + "es.array.concat", + "es.array.copy-within", + "es.array.every", + "es.array.fill", + "es.array.filter", + "es.array.find", + "es.array.find-index", + "es.array.find-last", + "es.array.find-last-index", + "es.array.flat", + "es.array.flat-map", + "es.array.for-each", + "es.array.includes", + "es.array.index-of", + "es.array.iterator", + "es.array.join", + "es.array.last-index-of", + "es.array.map", + "es.array.push", + "es.array.reduce", + "es.array.reduce-right", + "es.array.reverse", + "es.array.slice", + "es.array.some", + "es.array.sort", + "es.array.species", + "es.array.splice", + "es.array.to-reversed", + "es.array.to-sorted", + "es.array.to-spliced", + "es.array.unscopables.flat", + "es.array.unscopables.flat-map", + "es.array.unshift", + "es.array.with", + "es.map", + "es.object.to-string", + "esnext.array.at", + "esnext.array.filter-out", + "esnext.array.filter-reject", + "esnext.array.find-last", + "esnext.array.find-last-index", + "esnext.array.group", + "esnext.array.group-by", + "esnext.array.group-by-to-map", + "esnext.array.group-to-map", + "esnext.array.to-reversed", + "esnext.array.to-sorted", + "esnext.array.to-spliced", + "esnext.array.unique-by", + "esnext.array.with" + ], + "core-js/features/array/virtual/at": [ + "es.array.at", + "esnext.array.at" + ], + "core-js/features/array/virtual/concat": [ + "es.array.concat" + ], + "core-js/features/array/virtual/copy-within": [ + "es.array.copy-within" + ], + "core-js/features/array/virtual/entries": [ + "es.array.iterator", + "es.object.to-string" + ], + "core-js/features/array/virtual/every": [ + "es.array.every" + ], + "core-js/features/array/virtual/fill": [ + "es.array.fill" + ], + "core-js/features/array/virtual/filter": [ + "es.array.filter" + ], + "core-js/features/array/virtual/filter-out": [ + "esnext.array.filter-out" + ], + "core-js/features/array/virtual/filter-reject": [ + "esnext.array.filter-reject" + ], + "core-js/features/array/virtual/find": [ + "es.array.find" + ], + "core-js/features/array/virtual/find-index": [ + "es.array.find-index" + ], + "core-js/features/array/virtual/find-last": [ + "es.array.find-last", + "esnext.array.find-last" + ], + "core-js/features/array/virtual/find-last-index": [ + "es.array.find-last-index", + "esnext.array.find-last-index" + ], + "core-js/features/array/virtual/flat": [ + "es.array.flat", + "es.array.unscopables.flat" + ], + "core-js/features/array/virtual/flat-map": [ + "es.array.flat-map", + "es.array.unscopables.flat-map" + ], + "core-js/features/array/virtual/for-each": [ + "es.array.for-each" + ], + "core-js/features/array/virtual/group": [ + "esnext.array.group" + ], + "core-js/features/array/virtual/group-by": [ + "esnext.array.group-by" + ], + "core-js/features/array/virtual/group-by-to-map": [ + "es.map", + "es.object.to-string", + "esnext.array.group-by-to-map" + ], + "core-js/features/array/virtual/group-to-map": [ + "es.map", + "es.object.to-string", + "esnext.array.group-to-map" + ], + "core-js/features/array/virtual/includes": [ + "es.array.includes" + ], + "core-js/features/array/virtual/index-of": [ + "es.array.index-of" + ], + "core-js/features/array/virtual/iterator": [ + "es.array.iterator", + "es.object.to-string" + ], + "core-js/features/array/virtual/join": [ + "es.array.join" + ], + "core-js/features/array/virtual/keys": [ + "es.array.iterator", + "es.object.to-string" + ], + "core-js/features/array/virtual/last-index-of": [ + "es.array.last-index-of" + ], + "core-js/features/array/virtual/map": [ + "es.array.map" + ], + "core-js/features/array/virtual/push": [ + "es.array.push" + ], + "core-js/features/array/virtual/reduce": [ + "es.array.reduce" + ], + "core-js/features/array/virtual/reduce-right": [ + "es.array.reduce-right" + ], + "core-js/features/array/virtual/reverse": [ + "es.array.reverse" + ], + "core-js/features/array/virtual/slice": [ + "es.array.slice" + ], + "core-js/features/array/virtual/some": [ + "es.array.some" + ], + "core-js/features/array/virtual/sort": [ + "es.array.sort" + ], + "core-js/features/array/virtual/splice": [ + "es.array.splice" + ], + "core-js/features/array/virtual/to-reversed": [ + "es.array.to-reversed", + "esnext.array.to-reversed" + ], + "core-js/features/array/virtual/to-sorted": [ + "es.array.sort", + "es.array.to-sorted", + "esnext.array.to-sorted" + ], + "core-js/features/array/virtual/to-spliced": [ + "es.array.to-spliced", + "esnext.array.to-spliced" + ], + "core-js/features/array/virtual/unique-by": [ + "es.map", + "esnext.array.unique-by" + ], + "core-js/features/array/virtual/unshift": [ + "es.array.unshift" + ], + "core-js/features/array/virtual/values": [ + "es.array.iterator", + "es.object.to-string" + ], + "core-js/features/array/virtual/with": [ + "es.array.with", + "esnext.array.with" + ], + "core-js/features/array/with": [ + "es.array.with", + "esnext.array.with" + ], + "core-js/features/async-disposable-stack": [ + "es.error.cause", + "es.error.to-string", + "es.suppressed-error.constructor", + "es.iterator.dispose", + "es.object.to-string", + "es.promise", + "es.async-disposable-stack.constructor", + "es.async-iterator.async-dispose", + "esnext.suppressed-error.constructor", + "esnext.async-disposable-stack.constructor", + "esnext.async-iterator.async-dispose", + "esnext.iterator.dispose" + ], + "core-js/features/async-disposable-stack/constructor": [ + "es.error.cause", + "es.error.to-string", + "es.suppressed-error.constructor", + "es.iterator.dispose", + "es.object.to-string", + "es.promise", + "es.async-disposable-stack.constructor", + "es.async-iterator.async-dispose", + "esnext.suppressed-error.constructor", + "esnext.async-disposable-stack.constructor", + "esnext.async-iterator.async-dispose", + "esnext.iterator.dispose" + ], + "core-js/features/async-iterator": [ + "es.array.iterator", + "es.object.to-string", + "es.promise", + "es.async-iterator.async-dispose", + "es.string.iterator", + "esnext.async-iterator.constructor", + "esnext.async-iterator.as-indexed-pairs", + "esnext.async-iterator.async-dispose", + "esnext.async-iterator.drop", + "esnext.async-iterator.every", + "esnext.async-iterator.filter", + "esnext.async-iterator.find", + "esnext.async-iterator.flat-map", + "esnext.async-iterator.for-each", + "esnext.async-iterator.from", + "esnext.async-iterator.indexed", + "esnext.async-iterator.map", + "esnext.async-iterator.reduce", + "esnext.async-iterator.some", + "esnext.async-iterator.take", + "esnext.async-iterator.to-array", + "web.dom-collections.iterator" + ], + "core-js/features/async-iterator/as-indexed-pairs": [ + "es.object.to-string", + "es.promise", + "esnext.async-iterator.constructor", + "esnext.async-iterator.as-indexed-pairs" + ], + "core-js/features/async-iterator/async-dispose": [ + "es.object.to-string", + "es.promise", + "es.async-iterator.async-dispose", + "esnext.async-iterator.async-dispose" + ], + "core-js/features/async-iterator/drop": [ + "es.object.to-string", + "es.promise", + "esnext.async-iterator.constructor", + "esnext.async-iterator.drop" + ], + "core-js/features/async-iterator/every": [ + "es.object.to-string", + "es.promise", + "esnext.async-iterator.constructor", + "esnext.async-iterator.every" + ], + "core-js/features/async-iterator/filter": [ + "es.object.to-string", + "es.promise", + "esnext.async-iterator.constructor", + "esnext.async-iterator.filter" + ], + "core-js/features/async-iterator/find": [ + "es.object.to-string", + "es.promise", + "esnext.async-iterator.constructor", + "esnext.async-iterator.find" + ], + "core-js/features/async-iterator/flat-map": [ + "es.object.to-string", + "es.promise", + "esnext.async-iterator.constructor", + "esnext.async-iterator.flat-map" + ], + "core-js/features/async-iterator/for-each": [ + "es.object.to-string", + "es.promise", + "esnext.async-iterator.constructor", + "esnext.async-iterator.for-each" + ], + "core-js/features/async-iterator/from": [ + "es.array.iterator", + "es.object.to-string", + "es.promise", + "es.string.iterator", + "esnext.async-iterator.constructor", + "esnext.async-iterator.drop", + "esnext.async-iterator.every", + "esnext.async-iterator.filter", + "esnext.async-iterator.find", + "esnext.async-iterator.flat-map", + "esnext.async-iterator.for-each", + "esnext.async-iterator.from", + "esnext.async-iterator.map", + "esnext.async-iterator.reduce", + "esnext.async-iterator.some", + "esnext.async-iterator.take", + "esnext.async-iterator.to-array", + "web.dom-collections.iterator" + ], + "core-js/features/async-iterator/indexed": [ + "es.object.to-string", + "es.promise", + "esnext.async-iterator.constructor", + "esnext.async-iterator.indexed" + ], + "core-js/features/async-iterator/map": [ + "es.object.to-string", + "es.promise", + "esnext.async-iterator.constructor", + "esnext.async-iterator.map" + ], + "core-js/features/async-iterator/reduce": [ + "es.object.to-string", + "es.promise", + "esnext.async-iterator.constructor", + "esnext.async-iterator.reduce" + ], + "core-js/features/async-iterator/some": [ + "es.object.to-string", + "es.promise", + "esnext.async-iterator.constructor", + "esnext.async-iterator.some" + ], + "core-js/features/async-iterator/take": [ + "es.object.to-string", + "es.promise", + "esnext.async-iterator.constructor", + "esnext.async-iterator.take" + ], + "core-js/features/async-iterator/to-array": [ + "es.object.to-string", + "es.promise", + "esnext.async-iterator.constructor", + "esnext.async-iterator.to-array" + ], + "core-js/features/atob": [ + "es.error.to-string", + "es.object.to-string", + "web.atob", + "web.dom-exception.constructor", + "web.dom-exception.stack", + "web.dom-exception.to-string-tag" + ], + "core-js/features/bigint": [ + "es.object.to-string", + "esnext.bigint.range" + ], + "core-js/features/bigint/range": [ + "es.object.to-string", + "esnext.bigint.range" + ], + "core-js/features/btoa": [ + "es.error.to-string", + "es.object.to-string", + "web.btoa", + "web.dom-exception.constructor", + "web.dom-exception.stack", + "web.dom-exception.to-string-tag" + ], + "core-js/features/clear-immediate": [ + "web.immediate" + ], + "core-js/features/composite-key": [ + "esnext.composite-key" + ], + "core-js/features/composite-symbol": [ + "es.symbol", + "esnext.composite-symbol" + ], + "core-js/features/data-view": [ + "es.array-buffer.constructor", + "es.array-buffer.slice", + "es.data-view", + "es.data-view.get-float16", + "es.data-view.set-float16", + "es.object.to-string", + "esnext.data-view.get-float16", + "esnext.data-view.get-uint8-clamped", + "esnext.data-view.set-float16", + "esnext.data-view.set-uint8-clamped" + ], + "core-js/features/data-view/get-float16": [ + "es.data-view.get-float16", + "esnext.data-view.get-float16" + ], + "core-js/features/data-view/get-uint8-clamped": [ + "esnext.data-view.get-uint8-clamped" + ], + "core-js/features/data-view/set-float16": [ + "es.data-view.set-float16", + "esnext.data-view.set-float16" + ], + "core-js/features/data-view/set-uint8-clamped": [ + "esnext.data-view.set-uint8-clamped" + ], + "core-js/features/date": [ + "es.date.get-year", + "es.date.now", + "es.date.set-year", + "es.date.to-gmt-string", + "es.date.to-iso-string", + "es.date.to-json", + "es.date.to-primitive", + "es.date.to-string" + ], + "core-js/features/date/get-year": [ + "es.date.get-year" + ], + "core-js/features/date/now": [ + "es.date.now" + ], + "core-js/features/date/set-year": [ + "es.date.set-year" + ], + "core-js/features/date/to-gmt-string": [ + "es.date.to-gmt-string" + ], + "core-js/features/date/to-iso-string": [ + "es.date.to-iso-string", + "es.date.to-json" + ], + "core-js/features/date/to-json": [ + "es.date.to-json" + ], + "core-js/features/date/to-primitive": [ + "es.date.to-primitive" + ], + "core-js/features/date/to-string": [ + "es.date.to-string" + ], + "core-js/features/disposable-stack": [ + "es.error.cause", + "es.error.to-string", + "es.suppressed-error.constructor", + "es.disposable-stack.constructor", + "es.iterator.dispose", + "es.object.to-string", + "esnext.suppressed-error.constructor", + "esnext.disposable-stack.constructor", + "esnext.iterator.dispose" + ], + "core-js/features/disposable-stack/constructor": [ + "es.error.cause", + "es.error.to-string", + "es.suppressed-error.constructor", + "es.disposable-stack.constructor", + "es.iterator.dispose", + "es.object.to-string", + "esnext.suppressed-error.constructor", + "esnext.disposable-stack.constructor", + "esnext.iterator.dispose" + ], + "core-js/features/dom-collections": [ + "es.array.iterator", + "es.object.to-string", + "web.dom-collections.for-each", + "web.dom-collections.iterator" + ], + "core-js/features/dom-collections/for-each": [ + "web.dom-collections.for-each" + ], + "core-js/features/dom-collections/iterator": [ + "es.object.to-string", + "web.dom-collections.iterator" + ], + "core-js/features/dom-exception": [ + "es.error.to-string", + "web.dom-exception.constructor", + "web.dom-exception.stack", + "web.dom-exception.to-string-tag" + ], + "core-js/features/dom-exception/constructor": [ + "es.error.to-string", + "web.dom-exception.constructor", + "web.dom-exception.stack" + ], + "core-js/features/dom-exception/to-string-tag": [ + "web.dom-exception.to-string-tag" + ], + "core-js/features/error": [ + "es.error.cause", + "es.error.is-error", + "es.error.to-string", + "es.object.create", + "esnext.error.is-error" + ], + "core-js/features/error/constructor": [ + "es.error.cause" + ], + "core-js/features/error/is-error": [ + "es.error.is-error", + "es.object.create", + "esnext.error.is-error" + ], + "core-js/features/error/to-string": [ + "es.error.to-string" + ], + "core-js/features/escape": [ + "es.escape" + ], + "core-js/features/function": [ + "es.function.bind", + "es.function.has-instance", + "es.function.name", + "esnext.function.demethodize", + "esnext.function.is-callable", + "esnext.function.is-constructor", + "esnext.function.metadata", + "esnext.function.un-this" + ], + "core-js/features/function/bind": [ + "es.function.bind" + ], + "core-js/features/function/demethodize": [ + "esnext.function.demethodize" + ], + "core-js/features/function/has-instance": [ + "es.function.has-instance" + ], + "core-js/features/function/is-callable": [ + "esnext.function.is-callable" + ], + "core-js/features/function/is-constructor": [ + "esnext.function.is-constructor" + ], + "core-js/features/function/metadata": [ + "esnext.function.metadata" + ], + "core-js/features/function/name": [ + "es.function.name" + ], + "core-js/features/function/un-this": [ + "esnext.function.un-this" + ], + "core-js/features/function/virtual": [ + "es.function.bind", + "esnext.function.demethodize", + "esnext.function.un-this" + ], + "core-js/features/function/virtual/bind": [ + "es.function.bind" + ], + "core-js/features/function/virtual/demethodize": [ + "esnext.function.demethodize" + ], + "core-js/features/function/virtual/un-this": [ + "esnext.function.un-this" + ], + "core-js/features/get-iterator": [ + "es.array.iterator", + "es.string.iterator", + "web.dom-collections.iterator" + ], + "core-js/features/get-iterator-method": [ + "es.array.iterator", + "es.string.iterator", + "web.dom-collections.iterator" + ], + "core-js/features/global-this": [ + "es.global-this", + "esnext.global-this" + ], + "core-js/features/instance/at": [ + "es.array.at", + "es.string.at-alternative", + "esnext.array.at", + "esnext.string.at" + ], + "core-js/features/instance/bind": [ + "es.function.bind" + ], + "core-js/features/instance/clamp": [ + "esnext.number.clamp" + ], + "core-js/features/instance/code-point-at": [ + "es.string.code-point-at" + ], + "core-js/features/instance/code-points": [ + "es.object.to-string", + "esnext.string.code-points" + ], + "core-js/features/instance/concat": [ + "es.array.concat" + ], + "core-js/features/instance/copy-within": [ + "es.array.copy-within" + ], + "core-js/features/instance/demethodize": [ + "esnext.function.demethodize" + ], + "core-js/features/instance/ends-with": [ + "es.string.ends-with" + ], + "core-js/features/instance/entries": [ + "es.array.iterator", + "es.object.to-string", + "web.dom-collections.iterator" + ], + "core-js/features/instance/every": [ + "es.array.every" + ], + "core-js/features/instance/fill": [ + "es.array.fill" + ], + "core-js/features/instance/filter": [ + "es.array.filter" + ], + "core-js/features/instance/filter-out": [ + "esnext.array.filter-out" + ], + "core-js/features/instance/filter-reject": [ + "esnext.array.filter-reject" + ], + "core-js/features/instance/find": [ + "es.array.find" + ], + "core-js/features/instance/find-index": [ + "es.array.find-index" + ], + "core-js/features/instance/find-last": [ + "es.array.find-last", + "esnext.array.find-last" + ], + "core-js/features/instance/find-last-index": [ + "es.array.find-last-index", + "esnext.array.find-last-index" + ], + "core-js/features/instance/flags": [ + "es.regexp.flags" + ], + "core-js/features/instance/flat": [ + "es.array.flat", + "es.array.unscopables.flat" + ], + "core-js/features/instance/flat-map": [ + "es.array.flat-map", + "es.array.unscopables.flat-map" + ], + "core-js/features/instance/for-each": [ + "es.array.for-each", + "web.dom-collections.for-each" + ], + "core-js/features/instance/group": [ + "esnext.array.group" + ], + "core-js/features/instance/group-by": [ + "esnext.array.group-by" + ], + "core-js/features/instance/group-by-to-map": [ + "es.map", + "es.object.to-string", + "esnext.array.group-by-to-map" + ], + "core-js/features/instance/group-to-map": [ + "es.map", + "es.object.to-string", + "esnext.array.group-to-map" + ], + "core-js/features/instance/includes": [ + "es.array.includes", + "es.string.includes" + ], + "core-js/features/instance/index-of": [ + "es.array.index-of" + ], + "core-js/features/instance/is-well-formed": [ + "es.string.is-well-formed" + ], + "core-js/features/instance/keys": [ + "es.array.iterator", + "es.object.to-string", + "web.dom-collections.iterator" + ], + "core-js/features/instance/last-index-of": [ + "es.array.last-index-of" + ], + "core-js/features/instance/map": [ + "es.array.map" + ], + "core-js/features/instance/match-all": [ + "es.object.to-string", + "es.regexp.exec", + "es.string.match-all", + "esnext.string.match-all" + ], + "core-js/features/instance/pad-end": [ + "es.string.pad-end" + ], + "core-js/features/instance/pad-start": [ + "es.string.pad-start" + ], + "core-js/features/instance/push": [ + "es.array.push" + ], + "core-js/features/instance/reduce": [ + "es.array.reduce" + ], + "core-js/features/instance/reduce-right": [ + "es.array.reduce-right" + ], + "core-js/features/instance/repeat": [ + "es.string.repeat" + ], + "core-js/features/instance/replace-all": [ + "es.regexp.exec", + "es.string.replace", + "es.string.replace-all", + "esnext.string.replace-all" + ], + "core-js/features/instance/reverse": [ + "es.array.reverse" + ], + "core-js/features/instance/slice": [ + "es.array.slice" + ], + "core-js/features/instance/some": [ + "es.array.some" + ], + "core-js/features/instance/sort": [ + "es.array.sort" + ], + "core-js/features/instance/splice": [ + "es.array.splice" + ], + "core-js/features/instance/starts-with": [ + "es.string.starts-with" + ], + "core-js/features/instance/to-reversed": [ + "es.array.to-reversed", + "esnext.array.to-reversed" + ], + "core-js/features/instance/to-sorted": [ + "es.array.sort", + "es.array.to-sorted", + "esnext.array.to-sorted" + ], + "core-js/features/instance/to-spliced": [ + "es.array.to-spliced", + "esnext.array.to-spliced" + ], + "core-js/features/instance/to-well-formed": [ + "es.string.to-well-formed" + ], + "core-js/features/instance/trim": [ + "es.string.trim" + ], + "core-js/features/instance/trim-end": [ + "es.string.trim-end" + ], + "core-js/features/instance/trim-left": [ + "es.string.trim-start" + ], + "core-js/features/instance/trim-right": [ + "es.string.trim-end" + ], + "core-js/features/instance/trim-start": [ + "es.string.trim-start" + ], + "core-js/features/instance/un-this": [ + "esnext.function.un-this" + ], + "core-js/features/instance/unique-by": [ + "es.map", + "esnext.array.unique-by" + ], + "core-js/features/instance/unshift": [ + "es.array.unshift" + ], + "core-js/features/instance/values": [ + "es.array.iterator", + "es.object.to-string", + "web.dom-collections.iterator" + ], + "core-js/features/instance/with": [ + "es.array.with", + "esnext.array.with" + ], + "core-js/features/is-iterable": [ + "es.array.iterator", + "es.string.iterator", + "web.dom-collections.iterator" + ], + "core-js/features/iterator": [ + "es.array.iterator", + "es.iterator.constructor", + "es.iterator.dispose", + "es.iterator.drop", + "es.iterator.every", + "es.iterator.filter", + "es.iterator.find", + "es.iterator.flat-map", + "es.iterator.for-each", + "es.iterator.from", + "es.iterator.map", + "es.iterator.reduce", + "es.iterator.some", + "es.iterator.take", + "es.iterator.to-array", + "es.object.to-string", + "es.promise", + "es.string.iterator", + "esnext.iterator.constructor", + "esnext.iterator.as-indexed-pairs", + "esnext.iterator.chunks", + "esnext.iterator.concat", + "esnext.iterator.dispose", + "esnext.iterator.drop", + "esnext.iterator.every", + "esnext.iterator.filter", + "esnext.iterator.find", + "esnext.iterator.flat-map", + "esnext.iterator.for-each", + "esnext.iterator.from", + "esnext.iterator.indexed", + "esnext.iterator.map", + "esnext.iterator.range", + "esnext.iterator.reduce", + "esnext.iterator.sliding", + "esnext.iterator.some", + "esnext.iterator.take", + "esnext.iterator.to-array", + "esnext.iterator.to-async", + "esnext.iterator.windows", + "esnext.iterator.zip", + "esnext.iterator.zip-keyed", + "web.dom-collections.iterator" + ], + "core-js/features/iterator/as-indexed-pairs": [ + "es.object.to-string", + "esnext.iterator.constructor", + "esnext.iterator.as-indexed-pairs" + ], + "core-js/features/iterator/chunks": [ + "es.iterator.constructor", + "es.object.to-string", + "esnext.iterator.chunks" + ], + "core-js/features/iterator/concat": [ + "es.array.iterator", + "es.iterator.constructor", + "es.iterator.drop", + "es.iterator.every", + "es.iterator.filter", + "es.iterator.find", + "es.iterator.flat-map", + "es.iterator.for-each", + "es.iterator.map", + "es.iterator.reduce", + "es.iterator.some", + "es.iterator.take", + "es.iterator.to-array", + "es.object.to-string", + "es.string.iterator", + "esnext.iterator.chunks", + "esnext.iterator.concat", + "esnext.iterator.sliding", + "esnext.iterator.windows", + "web.dom-collections.iterator" + ], + "core-js/features/iterator/dispose": [ + "esnext.iterator.dispose" + ], + "core-js/features/iterator/drop": [ + "es.iterator.constructor", + "es.iterator.drop", + "es.object.to-string", + "esnext.iterator.constructor", + "esnext.iterator.drop" + ], + "core-js/features/iterator/every": [ + "es.iterator.constructor", + "es.iterator.every", + "es.object.to-string", + "esnext.iterator.constructor", + "esnext.iterator.every" + ], + "core-js/features/iterator/filter": [ + "es.iterator.constructor", + "es.iterator.filter", + "es.object.to-string", + "esnext.iterator.constructor", + "esnext.iterator.filter" + ], + "core-js/features/iterator/find": [ + "es.iterator.constructor", + "es.iterator.find", + "es.object.to-string", + "esnext.iterator.constructor", + "esnext.iterator.find" + ], + "core-js/features/iterator/flat-map": [ + "es.array.iterator", + "es.iterator.constructor", + "es.iterator.flat-map", + "es.object.to-string", + "esnext.iterator.constructor", + "esnext.iterator.flat-map", + "web.dom-collections.iterator" + ], + "core-js/features/iterator/for-each": [ + "es.iterator.constructor", + "es.iterator.for-each", + "es.object.to-string", + "esnext.iterator.constructor", + "esnext.iterator.for-each" + ], + "core-js/features/iterator/from": [ + "es.array.iterator", + "es.iterator.constructor", + "es.iterator.drop", + "es.iterator.every", + "es.iterator.filter", + "es.iterator.find", + "es.iterator.flat-map", + "es.iterator.for-each", + "es.iterator.from", + "es.iterator.map", + "es.iterator.reduce", + "es.iterator.some", + "es.iterator.take", + "es.iterator.to-array", + "es.object.to-string", + "es.promise", + "es.string.iterator", + "esnext.iterator.constructor", + "esnext.iterator.chunks", + "esnext.iterator.dispose", + "esnext.iterator.drop", + "esnext.iterator.every", + "esnext.iterator.filter", + "esnext.iterator.find", + "esnext.iterator.flat-map", + "esnext.iterator.for-each", + "esnext.iterator.from", + "esnext.iterator.map", + "esnext.iterator.reduce", + "esnext.iterator.sliding", + "esnext.iterator.some", + "esnext.iterator.take", + "esnext.iterator.to-array", + "esnext.iterator.to-async", + "esnext.iterator.windows", + "web.dom-collections.iterator" + ], + "core-js/features/iterator/indexed": [ + "es.object.to-string", + "esnext.iterator.constructor", + "esnext.iterator.indexed" + ], + "core-js/features/iterator/map": [ + "es.iterator.constructor", + "es.iterator.map", + "es.object.to-string", + "esnext.iterator.constructor", + "esnext.iterator.map" + ], + "core-js/features/iterator/range": [ + "es.array.iterator", + "es.iterator.constructor", + "es.iterator.drop", + "es.iterator.every", + "es.iterator.filter", + "es.iterator.find", + "es.iterator.flat-map", + "es.iterator.for-each", + "es.iterator.map", + "es.iterator.reduce", + "es.iterator.some", + "es.iterator.take", + "es.iterator.to-array", + "es.object.to-string", + "es.string.iterator", + "esnext.iterator.constructor", + "esnext.iterator.chunks", + "esnext.iterator.range", + "esnext.iterator.sliding", + "esnext.iterator.windows", + "web.dom-collections.iterator" + ], + "core-js/features/iterator/reduce": [ + "es.iterator.constructor", + "es.iterator.reduce", + "es.object.to-string", + "esnext.iterator.constructor", + "esnext.iterator.reduce" + ], + "core-js/features/iterator/sliding": [ + "es.iterator.constructor", + "es.object.to-string", + "esnext.iterator.sliding" + ], + "core-js/features/iterator/some": [ + "es.iterator.constructor", + "es.iterator.some", + "es.object.to-string", + "esnext.iterator.constructor", + "esnext.iterator.some" + ], + "core-js/features/iterator/take": [ + "es.iterator.constructor", + "es.iterator.take", + "es.object.to-string", + "esnext.iterator.constructor", + "esnext.iterator.take" + ], + "core-js/features/iterator/to-array": [ + "es.iterator.constructor", + "es.iterator.to-array", + "es.object.to-string", + "esnext.iterator.constructor", + "esnext.iterator.to-array" + ], + "core-js/features/iterator/to-async": [ + "es.iterator.constructor", + "es.object.to-string", + "es.promise", + "esnext.iterator.constructor", + "esnext.iterator.to-async" + ], + "core-js/features/iterator/windows": [ + "es.iterator.constructor", + "es.object.to-string", + "esnext.iterator.windows" + ], + "core-js/features/iterator/zip": [ + "es.array.iterator", + "es.iterator.constructor", + "es.iterator.drop", + "es.iterator.every", + "es.iterator.filter", + "es.iterator.find", + "es.iterator.flat-map", + "es.iterator.for-each", + "es.iterator.map", + "es.iterator.reduce", + "es.iterator.some", + "es.iterator.take", + "es.iterator.to-array", + "es.object.to-string", + "es.string.iterator", + "esnext.iterator.chunks", + "esnext.iterator.sliding", + "esnext.iterator.windows", + "esnext.iterator.zip", + "web.dom-collections.iterator" + ], + "core-js/features/iterator/zip-keyed": [ + "es.array.iterator", + "es.iterator.constructor", + "es.iterator.drop", + "es.iterator.every", + "es.iterator.filter", + "es.iterator.find", + "es.iterator.flat-map", + "es.iterator.for-each", + "es.iterator.map", + "es.iterator.reduce", + "es.iterator.some", + "es.iterator.take", + "es.iterator.to-array", + "es.object.create", + "es.object.to-string", + "es.reflect.own-keys", + "es.string.iterator", + "esnext.iterator.chunks", + "esnext.iterator.sliding", + "esnext.iterator.windows", + "esnext.iterator.zip-keyed", + "web.dom-collections.iterator" + ], + "core-js/features/json": [ + "es.date.to-json", + "es.json.stringify", + "es.json.to-string-tag", + "es.object.create", + "es.object.freeze", + "es.object.keys", + "esnext.json.is-raw-json", + "esnext.json.parse", + "esnext.json.raw-json" + ], + "core-js/features/json/is-raw-json": [ + "esnext.json.is-raw-json" + ], + "core-js/features/json/parse": [ + "es.object.keys", + "esnext.json.parse" + ], + "core-js/features/json/raw-json": [ + "es.object.create", + "es.object.freeze", + "esnext.json.raw-json" + ], + "core-js/features/json/stringify": [ + "es.date.to-json", + "es.json.stringify" + ], + "core-js/features/json/to-string-tag": [ + "es.json.to-string-tag" + ], + "core-js/features/map": [ + "es.array.iterator", + "es.map", + "es.map.group-by", + "es.object.to-string", + "es.string.iterator", + "esnext.map.delete-all", + "esnext.map.emplace", + "esnext.map.every", + "esnext.map.filter", + "esnext.map.find", + "esnext.map.find-key", + "esnext.map.from", + "esnext.map.get-or-insert", + "esnext.map.get-or-insert-computed", + "esnext.map.group-by", + "esnext.map.includes", + "esnext.map.key-by", + "esnext.map.key-of", + "esnext.map.map-keys", + "esnext.map.map-values", + "esnext.map.merge", + "esnext.map.of", + "esnext.map.reduce", + "esnext.map.some", + "esnext.map.update", + "esnext.map.update-or-insert", + "esnext.map.upsert", + "web.dom-collections.iterator" + ], + "core-js/features/map/delete-all": [ + "es.map", + "esnext.map.delete-all" + ], + "core-js/features/map/emplace": [ + "es.map", + "esnext.map.emplace" + ], + "core-js/features/map/every": [ + "es.map", + "esnext.map.every" + ], + "core-js/features/map/filter": [ + "es.map", + "esnext.map.filter" + ], + "core-js/features/map/find": [ + "es.map", + "esnext.map.find" + ], + "core-js/features/map/find-key": [ + "es.map", + "esnext.map.find-key" + ], + "core-js/features/map/from": [ + "es.array.iterator", + "es.map", + "es.object.to-string", + "es.string.iterator", + "esnext.map.delete-all", + "esnext.map.emplace", + "esnext.map.every", + "esnext.map.filter", + "esnext.map.find", + "esnext.map.find-key", + "esnext.map.from", + "esnext.map.get-or-insert", + "esnext.map.get-or-insert-computed", + "esnext.map.includes", + "esnext.map.key-of", + "esnext.map.map-keys", + "esnext.map.map-values", + "esnext.map.merge", + "esnext.map.reduce", + "esnext.map.some", + "esnext.map.update", + "web.dom-collections.iterator" + ], + "core-js/features/map/get-or-insert": [ + "es.map", + "esnext.map.get-or-insert" + ], + "core-js/features/map/get-or-insert-computed": [ + "es.map", + "esnext.map.get-or-insert-computed" + ], + "core-js/features/map/group-by": [ + "es.map", + "es.map.group-by", + "es.object.to-string", + "esnext.map.delete-all", + "esnext.map.emplace", + "esnext.map.every", + "esnext.map.filter", + "esnext.map.find", + "esnext.map.find-key", + "esnext.map.get-or-insert", + "esnext.map.get-or-insert-computed", + "esnext.map.group-by", + "esnext.map.includes", + "esnext.map.key-of", + "esnext.map.map-keys", + "esnext.map.map-values", + "esnext.map.merge", + "esnext.map.reduce", + "esnext.map.some", + "esnext.map.update" + ], + "core-js/features/map/includes": [ + "es.map", + "esnext.map.includes" + ], + "core-js/features/map/key-by": [ + "es.map", + "es.object.to-string", + "esnext.map.delete-all", + "esnext.map.emplace", + "esnext.map.every", + "esnext.map.filter", + "esnext.map.find", + "esnext.map.find-key", + "esnext.map.get-or-insert", + "esnext.map.get-or-insert-computed", + "esnext.map.includes", + "esnext.map.key-by", + "esnext.map.key-of", + "esnext.map.map-keys", + "esnext.map.map-values", + "esnext.map.merge", + "esnext.map.reduce", + "esnext.map.some", + "esnext.map.update" + ], + "core-js/features/map/key-of": [ + "es.map", + "esnext.map.key-of" + ], + "core-js/features/map/map-keys": [ + "es.map", + "esnext.map.map-keys" + ], + "core-js/features/map/map-values": [ + "es.map", + "esnext.map.map-values" + ], + "core-js/features/map/merge": [ + "es.map", + "esnext.map.merge" + ], + "core-js/features/map/of": [ + "es.array.iterator", + "es.map", + "es.object.to-string", + "esnext.map.delete-all", + "esnext.map.emplace", + "esnext.map.every", + "esnext.map.filter", + "esnext.map.find", + "esnext.map.find-key", + "esnext.map.get-or-insert", + "esnext.map.get-or-insert-computed", + "esnext.map.includes", + "esnext.map.key-of", + "esnext.map.map-keys", + "esnext.map.map-values", + "esnext.map.merge", + "esnext.map.of", + "esnext.map.reduce", + "esnext.map.some", + "esnext.map.update" + ], + "core-js/features/map/reduce": [ + "es.map", + "esnext.map.reduce" + ], + "core-js/features/map/some": [ + "es.map", + "esnext.map.some" + ], + "core-js/features/map/update": [ + "es.map", + "esnext.map.update" + ], + "core-js/features/map/update-or-insert": [ + "es.map", + "esnext.map.update-or-insert" + ], + "core-js/features/map/upsert": [ + "es.map", + "esnext.map.upsert" + ], + "core-js/features/math": [ + "es.array.iterator", + "es.math.acosh", + "es.math.asinh", + "es.math.atanh", + "es.math.cbrt", + "es.math.clz32", + "es.math.cosh", + "es.math.expm1", + "es.math.fround", + "es.math.f16round", + "es.math.hypot", + "es.math.imul", + "es.math.log10", + "es.math.log1p", + "es.math.log2", + "es.math.sign", + "es.math.sinh", + "es.math.sum-precise", + "es.math.tanh", + "es.math.to-string-tag", + "es.math.trunc", + "esnext.math.clamp", + "esnext.math.deg-per-rad", + "esnext.math.degrees", + "esnext.math.fscale", + "esnext.math.f16round", + "esnext.math.iaddh", + "esnext.math.imulh", + "esnext.math.isubh", + "esnext.math.rad-per-deg", + "esnext.math.radians", + "esnext.math.scale", + "esnext.math.seeded-prng", + "esnext.math.signbit", + "esnext.math.sum-precise", + "esnext.math.umulh" + ], + "core-js/features/math/acosh": [ + "es.math.acosh" + ], + "core-js/features/math/asinh": [ + "es.math.asinh" + ], + "core-js/features/math/atanh": [ + "es.math.atanh" + ], + "core-js/features/math/cbrt": [ + "es.math.cbrt" + ], + "core-js/features/math/clamp": [ + "esnext.math.clamp" + ], + "core-js/features/math/clz32": [ + "es.math.clz32" + ], + "core-js/features/math/cosh": [ + "es.math.cosh" + ], + "core-js/features/math/deg-per-rad": [ + "esnext.math.deg-per-rad" + ], + "core-js/features/math/degrees": [ + "esnext.math.degrees" + ], + "core-js/features/math/expm1": [ + "es.math.expm1" + ], + "core-js/features/math/f16round": [ + "es.math.f16round", + "esnext.math.f16round" + ], + "core-js/features/math/fround": [ + "es.math.fround" + ], + "core-js/features/math/fscale": [ + "esnext.math.fscale" + ], + "core-js/features/math/hypot": [ + "es.math.hypot" + ], + "core-js/features/math/iaddh": [ + "esnext.math.iaddh" + ], + "core-js/features/math/imul": [ + "es.math.imul" + ], + "core-js/features/math/imulh": [ + "esnext.math.imulh" + ], + "core-js/features/math/isubh": [ + "esnext.math.isubh" + ], + "core-js/features/math/log10": [ + "es.math.log10" + ], + "core-js/features/math/log1p": [ + "es.math.log1p" + ], + "core-js/features/math/log2": [ + "es.math.log2" + ], + "core-js/features/math/rad-per-deg": [ + "esnext.math.rad-per-deg" + ], + "core-js/features/math/radians": [ + "esnext.math.radians" + ], + "core-js/features/math/scale": [ + "esnext.math.scale" + ], + "core-js/features/math/seeded-prng": [ + "esnext.math.seeded-prng" + ], + "core-js/features/math/sign": [ + "es.math.sign" + ], + "core-js/features/math/signbit": [ + "esnext.math.signbit" + ], + "core-js/features/math/sinh": [ + "es.math.sinh" + ], + "core-js/features/math/sum-precise": [ + "es.array.iterator", + "es.math.sum-precise", + "esnext.math.sum-precise" + ], + "core-js/features/math/tanh": [ + "es.math.tanh" + ], + "core-js/features/math/to-string-tag": [ + "es.math.to-string-tag" + ], + "core-js/features/math/trunc": [ + "es.math.trunc" + ], + "core-js/features/math/umulh": [ + "esnext.math.umulh" + ], + "core-js/features/number": [ + "es.number.constructor", + "es.number.epsilon", + "es.number.is-finite", + "es.number.is-integer", + "es.number.is-nan", + "es.number.is-safe-integer", + "es.number.max-safe-integer", + "es.number.min-safe-integer", + "es.number.parse-float", + "es.number.parse-int", + "es.number.to-exponential", + "es.number.to-fixed", + "es.number.to-precision", + "es.object.to-string", + "esnext.number.clamp", + "esnext.number.from-string", + "esnext.number.range" + ], + "core-js/features/number/clamp": [ + "esnext.number.clamp" + ], + "core-js/features/number/constructor": [ + "es.number.constructor" + ], + "core-js/features/number/epsilon": [ + "es.number.epsilon" + ], + "core-js/features/number/from-string": [ + "esnext.number.from-string" + ], + "core-js/features/number/is-finite": [ + "es.number.is-finite" + ], + "core-js/features/number/is-integer": [ + "es.number.is-integer" + ], + "core-js/features/number/is-nan": [ + "es.number.is-nan" + ], + "core-js/features/number/is-safe-integer": [ + "es.number.is-safe-integer" + ], + "core-js/features/number/max-safe-integer": [ + "es.number.max-safe-integer" + ], + "core-js/features/number/min-safe-integer": [ + "es.number.min-safe-integer" + ], + "core-js/features/number/parse-float": [ + "es.number.parse-float" + ], + "core-js/features/number/parse-int": [ + "es.number.parse-int" + ], + "core-js/features/number/range": [ + "es.object.to-string", + "esnext.number.range" + ], + "core-js/features/number/to-exponential": [ + "es.number.to-exponential" + ], + "core-js/features/number/to-fixed": [ + "es.number.to-fixed" + ], + "core-js/features/number/to-precision": [ + "es.number.to-precision" + ], + "core-js/features/number/virtual": [ + "es.number.to-exponential", + "es.number.to-fixed", + "es.number.to-precision" + ], + "core-js/features/number/virtual/clamp": [ + "esnext.number.clamp" + ], + "core-js/features/number/virtual/to-exponential": [ + "es.number.to-exponential" + ], + "core-js/features/number/virtual/to-fixed": [ + "es.number.to-fixed" + ], + "core-js/features/number/virtual/to-precision": [ + "es.number.to-precision" + ], + "core-js/features/object": [ + "es.symbol", + "es.json.to-string-tag", + "es.math.to-string-tag", + "es.object.assign", + "es.object.create", + "es.object.define-getter", + "es.object.define-properties", + "es.object.define-property", + "es.object.define-setter", + "es.object.entries", + "es.object.freeze", + "es.object.from-entries", + "es.object.get-own-property-descriptor", + "es.object.get-own-property-descriptors", + "es.object.get-own-property-names", + "es.object.get-prototype-of", + "es.object.group-by", + "es.object.has-own", + "es.object.is", + "es.object.is-extensible", + "es.object.is-frozen", + "es.object.is-sealed", + "es.object.keys", + "es.object.lookup-getter", + "es.object.lookup-setter", + "es.object.prevent-extensions", + "es.object.proto", + "es.object.seal", + "es.object.set-prototype-of", + "es.object.to-string", + "es.object.values", + "es.reflect.to-string-tag", + "esnext.object.has-own", + "esnext.object.iterate-entries", + "esnext.object.iterate-keys", + "esnext.object.iterate-values", + "esnext.object.group-by", + "web.dom-collections.iterator" + ], + "core-js/features/object/assign": [ + "es.object.assign" + ], + "core-js/features/object/create": [ + "es.object.create" + ], + "core-js/features/object/define-getter": [ + "es.object.define-getter" + ], + "core-js/features/object/define-properties": [ + "es.object.define-properties" + ], + "core-js/features/object/define-property": [ + "es.object.define-property" + ], + "core-js/features/object/define-setter": [ + "es.object.define-setter" + ], + "core-js/features/object/entries": [ + "es.object.entries" + ], + "core-js/features/object/freeze": [ + "es.object.freeze" + ], + "core-js/features/object/from-entries": [ + "es.array.iterator", + "es.object.from-entries", + "web.dom-collections.iterator" + ], + "core-js/features/object/get-own-property-descriptor": [ + "es.object.get-own-property-descriptor" + ], + "core-js/features/object/get-own-property-descriptors": [ + "es.object.get-own-property-descriptors" + ], + "core-js/features/object/get-own-property-names": [ + "es.object.get-own-property-names" + ], + "core-js/features/object/get-own-property-symbols": [ + "es.symbol" + ], + "core-js/features/object/get-prototype-of": [ + "es.object.get-prototype-of" + ], + "core-js/features/object/group-by": [ + "es.object.create", + "es.object.group-by", + "esnext.object.group-by" + ], + "core-js/features/object/has-own": [ + "es.object.has-own", + "esnext.object.has-own" + ], + "core-js/features/object/is": [ + "es.object.is" + ], + "core-js/features/object/is-extensible": [ + "es.object.is-extensible" + ], + "core-js/features/object/is-frozen": [ + "es.object.is-frozen" + ], + "core-js/features/object/is-sealed": [ + "es.object.is-sealed" + ], + "core-js/features/object/iterate-entries": [ + "esnext.object.iterate-entries" + ], + "core-js/features/object/iterate-keys": [ + "esnext.object.iterate-keys" + ], + "core-js/features/object/iterate-values": [ + "esnext.object.iterate-values" + ], + "core-js/features/object/keys": [ + "es.object.keys" + ], + "core-js/features/object/lookup-getter": [ + "es.object.lookup-getter" + ], + "core-js/features/object/lookup-setter": [ + "es.object.lookup-setter" + ], + "core-js/features/object/prevent-extensions": [ + "es.object.prevent-extensions" + ], + "core-js/features/object/proto": [ + "es.object.proto" + ], + "core-js/features/object/seal": [ + "es.object.seal" + ], + "core-js/features/object/set-prototype-of": [ + "es.object.set-prototype-of" + ], + "core-js/features/object/to-string": [ + "es.json.to-string-tag", + "es.math.to-string-tag", + "es.object.to-string", + "es.reflect.to-string-tag" + ], + "core-js/features/object/values": [ + "es.object.values" + ], + "core-js/features/observable": [ + "es.object.to-string", + "es.string.iterator", + "esnext.observable", + "esnext.symbol.observable", + "web.dom-collections.iterator" + ], + "core-js/features/parse-float": [ + "es.parse-float" + ], + "core-js/features/parse-int": [ + "es.parse-int" + ], + "core-js/features/promise": [ + "es.aggregate-error", + "es.array.iterator", + "es.object.to-string", + "es.promise", + "es.promise.all-settled", + "es.promise.any", + "es.promise.finally", + "es.promise.try", + "es.promise.with-resolvers", + "es.string.iterator", + "esnext.aggregate-error", + "esnext.promise.all-settled", + "esnext.promise.any", + "esnext.promise.try", + "esnext.promise.with-resolvers", + "web.dom-collections.iterator" + ], + "core-js/features/promise/all-settled": [ + "es.array.iterator", + "es.object.to-string", + "es.promise", + "es.promise.all-settled", + "es.string.iterator", + "esnext.promise.all-settled", + "web.dom-collections.iterator" + ], + "core-js/features/promise/any": [ + "es.aggregate-error", + "es.array.iterator", + "es.object.to-string", + "es.promise", + "es.promise.any", + "es.string.iterator", + "esnext.aggregate-error", + "esnext.promise.any", + "web.dom-collections.iterator" + ], + "core-js/features/promise/finally": [ + "es.object.to-string", + "es.promise", + "es.promise.finally" + ], + "core-js/features/promise/try": [ + "es.object.to-string", + "es.promise", + "es.promise.try", + "esnext.promise.try" + ], + "core-js/features/promise/with-resolvers": [ + "es.promise", + "es.promise.with-resolvers", + "esnext.promise.with-resolvers" + ], + "core-js/features/queue-microtask": [ + "web.queue-microtask" + ], + "core-js/features/reflect": [ + "es.object.to-string", + "es.reflect.apply", + "es.reflect.construct", + "es.reflect.define-property", + "es.reflect.delete-property", + "es.reflect.get", + "es.reflect.get-own-property-descriptor", + "es.reflect.get-prototype-of", + "es.reflect.has", + "es.reflect.is-extensible", + "es.reflect.own-keys", + "es.reflect.prevent-extensions", + "es.reflect.set", + "es.reflect.set-prototype-of", + "es.reflect.to-string-tag", + "esnext.reflect.define-metadata", + "esnext.reflect.delete-metadata", + "esnext.reflect.get-metadata", + "esnext.reflect.get-metadata-keys", + "esnext.reflect.get-own-metadata", + "esnext.reflect.get-own-metadata-keys", + "esnext.reflect.has-metadata", + "esnext.reflect.has-own-metadata", + "esnext.reflect.metadata" + ], + "core-js/features/reflect/apply": [ + "es.reflect.apply" + ], + "core-js/features/reflect/construct": [ + "es.reflect.construct" + ], + "core-js/features/reflect/define-metadata": [ + "esnext.reflect.define-metadata" + ], + "core-js/features/reflect/define-property": [ + "es.reflect.define-property" + ], + "core-js/features/reflect/delete-metadata": [ + "esnext.reflect.delete-metadata" + ], + "core-js/features/reflect/delete-property": [ + "es.reflect.delete-property" + ], + "core-js/features/reflect/get": [ + "es.reflect.get" + ], + "core-js/features/reflect/get-metadata": [ + "esnext.reflect.get-metadata" + ], + "core-js/features/reflect/get-metadata-keys": [ + "esnext.reflect.get-metadata-keys" + ], + "core-js/features/reflect/get-own-metadata": [ + "esnext.reflect.get-own-metadata" + ], + "core-js/features/reflect/get-own-metadata-keys": [ + "esnext.reflect.get-own-metadata-keys" + ], + "core-js/features/reflect/get-own-property-descriptor": [ + "es.reflect.get-own-property-descriptor" + ], + "core-js/features/reflect/get-prototype-of": [ + "es.reflect.get-prototype-of" + ], + "core-js/features/reflect/has": [ + "es.reflect.has" + ], + "core-js/features/reflect/has-metadata": [ + "esnext.reflect.has-metadata" + ], + "core-js/features/reflect/has-own-metadata": [ + "esnext.reflect.has-own-metadata" + ], + "core-js/features/reflect/is-extensible": [ + "es.reflect.is-extensible" + ], + "core-js/features/reflect/metadata": [ + "esnext.reflect.metadata" + ], + "core-js/features/reflect/own-keys": [ + "es.reflect.own-keys" + ], + "core-js/features/reflect/prevent-extensions": [ + "es.reflect.prevent-extensions" + ], + "core-js/features/reflect/set": [ + "es.reflect.set" + ], + "core-js/features/reflect/set-prototype-of": [ + "es.reflect.set-prototype-of" + ], + "core-js/features/reflect/to-string-tag": [ + "es.reflect.to-string-tag" + ], + "core-js/features/regexp": [ + "es.regexp.constructor", + "es.regexp.escape", + "es.regexp.dot-all", + "es.regexp.exec", + "es.regexp.flags", + "es.regexp.sticky", + "es.regexp.test", + "es.regexp.to-string", + "es.string.match", + "es.string.replace", + "es.string.search", + "es.string.split", + "esnext.regexp.escape" + ], + "core-js/features/regexp/constructor": [ + "es.regexp.constructor", + "es.regexp.dot-all", + "es.regexp.exec", + "es.regexp.sticky" + ], + "core-js/features/regexp/dot-all": [ + "es.regexp.constructor", + "es.regexp.dot-all", + "es.regexp.exec" + ], + "core-js/features/regexp/escape": [ + "es.regexp.escape", + "esnext.regexp.escape" + ], + "core-js/features/regexp/flags": [ + "es.regexp.flags" + ], + "core-js/features/regexp/match": [ + "es.regexp.exec", + "es.string.match" + ], + "core-js/features/regexp/replace": [ + "es.regexp.exec", + "es.string.replace" + ], + "core-js/features/regexp/search": [ + "es.regexp.exec", + "es.string.search" + ], + "core-js/features/regexp/split": [ + "es.regexp.exec", + "es.string.split" + ], + "core-js/features/regexp/sticky": [ + "es.regexp.constructor", + "es.regexp.exec", + "es.regexp.sticky" + ], + "core-js/features/regexp/test": [ + "es.regexp.exec", + "es.regexp.test" + ], + "core-js/features/regexp/to-string": [ + "es.regexp.to-string" + ], + "core-js/features/self": [ + "web.self" + ], + "core-js/features/set": [ + "es.array.iterator", + "es.object.to-string", + "es.set", + "es.set.difference.v2", + "es.set.intersection.v2", + "es.set.is-disjoint-from.v2", + "es.set.is-subset-of.v2", + "es.set.is-superset-of.v2", + "es.set.symmetric-difference.v2", + "es.set.union.v2", + "es.string.iterator", + "esnext.set.add-all", + "esnext.set.delete-all", + "esnext.set.difference.v2", + "esnext.set.difference", + "esnext.set.every", + "esnext.set.filter", + "esnext.set.find", + "esnext.set.from", + "esnext.set.intersection.v2", + "esnext.set.intersection", + "esnext.set.is-disjoint-from.v2", + "esnext.set.is-disjoint-from", + "esnext.set.is-subset-of.v2", + "esnext.set.is-subset-of", + "esnext.set.is-superset-of.v2", + "esnext.set.is-superset-of", + "esnext.set.join", + "esnext.set.map", + "esnext.set.of", + "esnext.set.reduce", + "esnext.set.some", + "esnext.set.symmetric-difference.v2", + "esnext.set.symmetric-difference", + "esnext.set.union.v2", + "esnext.set.union", + "web.dom-collections.iterator" + ], + "core-js/features/set-immediate": [ + "web.immediate" + ], + "core-js/features/set-interval": [ + "web.timers" + ], + "core-js/features/set-timeout": [ + "web.timers" + ], + "core-js/features/set/add-all": [ + "es.set", + "esnext.set.add-all" + ], + "core-js/features/set/delete-all": [ + "es.set", + "esnext.set.delete-all" + ], + "core-js/features/set/difference": [ + "es.array.iterator", + "es.set", + "es.set.difference.v2", + "es.string.iterator", + "esnext.set.difference.v2", + "esnext.set.difference", + "web.dom-collections.iterator" + ], + "core-js/features/set/every": [ + "es.set", + "esnext.set.every" + ], + "core-js/features/set/filter": [ + "es.set", + "esnext.set.filter" + ], + "core-js/features/set/find": [ + "es.set", + "esnext.set.find" + ], + "core-js/features/set/from": [ + "es.array.iterator", + "es.object.to-string", + "es.set", + "es.string.iterator", + "esnext.set.add-all", + "esnext.set.delete-all", + "esnext.set.difference.v2", + "esnext.set.every", + "esnext.set.filter", + "esnext.set.find", + "esnext.set.from", + "esnext.set.intersection.v2", + "esnext.set.is-disjoint-from.v2", + "esnext.set.is-subset-of.v2", + "esnext.set.is-superset-of.v2", + "esnext.set.join", + "esnext.set.map", + "esnext.set.reduce", + "esnext.set.some", + "esnext.set.symmetric-difference.v2", + "esnext.set.union.v2", + "web.dom-collections.iterator" + ], + "core-js/features/set/intersection": [ + "es.array.iterator", + "es.set", + "es.set.intersection.v2", + "es.string.iterator", + "esnext.set.intersection.v2", + "esnext.set.intersection", + "web.dom-collections.iterator" + ], + "core-js/features/set/is-disjoint-from": [ + "es.array.iterator", + "es.set", + "es.set.is-disjoint-from.v2", + "es.string.iterator", + "esnext.set.is-disjoint-from.v2", + "esnext.set.is-disjoint-from", + "web.dom-collections.iterator" + ], + "core-js/features/set/is-subset-of": [ + "es.array.iterator", + "es.set", + "es.set.is-subset-of.v2", + "es.string.iterator", + "esnext.set.is-subset-of.v2", + "esnext.set.is-subset-of", + "web.dom-collections.iterator" + ], + "core-js/features/set/is-superset-of": [ + "es.array.iterator", + "es.set", + "es.set.is-superset-of.v2", + "es.string.iterator", + "esnext.set.is-superset-of.v2", + "esnext.set.is-superset-of", + "web.dom-collections.iterator" + ], + "core-js/features/set/join": [ + "es.set", + "esnext.set.join" + ], + "core-js/features/set/map": [ + "es.set", + "esnext.set.map" + ], + "core-js/features/set/of": [ + "es.array.iterator", + "es.object.to-string", + "es.set", + "esnext.set.add-all", + "esnext.set.delete-all", + "esnext.set.difference.v2", + "esnext.set.every", + "esnext.set.filter", + "esnext.set.find", + "esnext.set.intersection.v2", + "esnext.set.is-disjoint-from.v2", + "esnext.set.is-subset-of.v2", + "esnext.set.is-superset-of.v2", + "esnext.set.join", + "esnext.set.map", + "esnext.set.of", + "esnext.set.reduce", + "esnext.set.some", + "esnext.set.symmetric-difference.v2", + "esnext.set.union.v2" + ], + "core-js/features/set/reduce": [ + "es.set", + "esnext.set.reduce" + ], + "core-js/features/set/some": [ + "es.set", + "esnext.set.some" + ], + "core-js/features/set/symmetric-difference": [ + "es.array.iterator", + "es.set", + "es.set.symmetric-difference.v2", + "es.string.iterator", + "esnext.set.symmetric-difference.v2", + "esnext.set.symmetric-difference", + "web.dom-collections.iterator" + ], + "core-js/features/set/union": [ + "es.array.iterator", + "es.set", + "es.set.union.v2", + "es.string.iterator", + "esnext.set.union.v2", + "esnext.set.union", + "web.dom-collections.iterator" + ], + "core-js/features/string": [ + "es.object.to-string", + "es.regexp.exec", + "es.string.at-alternative", + "es.string.code-point-at", + "es.string.ends-with", + "es.string.from-code-point", + "es.string.includes", + "es.string.is-well-formed", + "es.string.iterator", + "es.string.match", + "es.string.match-all", + "es.string.pad-end", + "es.string.pad-start", + "es.string.raw", + "es.string.repeat", + "es.string.replace", + "es.string.replace-all", + "es.string.search", + "es.string.split", + "es.string.starts-with", + "es.string.substr", + "es.string.to-well-formed", + "es.string.trim", + "es.string.trim-end", + "es.string.trim-start", + "es.string.anchor", + "es.string.big", + "es.string.blink", + "es.string.bold", + "es.string.fixed", + "es.string.fontcolor", + "es.string.fontsize", + "es.string.italics", + "es.string.link", + "es.string.small", + "es.string.strike", + "es.string.sub", + "es.string.sup", + "es.weak-map", + "esnext.string.at", + "esnext.string.cooked", + "esnext.string.code-points", + "esnext.string.dedent", + "esnext.string.is-well-formed", + "esnext.string.match-all", + "esnext.string.replace-all", + "esnext.string.to-well-formed" + ], + "core-js/features/string/anchor": [ + "es.string.anchor" + ], + "core-js/features/string/at": [ + "es.string.at-alternative", + "esnext.string.at" + ], + "core-js/features/string/big": [ + "es.string.big" + ], + "core-js/features/string/blink": [ + "es.string.blink" + ], + "core-js/features/string/bold": [ + "es.string.bold" + ], + "core-js/features/string/code-point-at": [ + "es.string.code-point-at" + ], + "core-js/features/string/code-points": [ + "es.object.to-string", + "esnext.string.code-points" + ], + "core-js/features/string/cooked": [ + "esnext.string.cooked" + ], + "core-js/features/string/dedent": [ + "es.string.from-code-point", + "es.weak-map", + "esnext.string.dedent" + ], + "core-js/features/string/ends-with": [ + "es.string.ends-with" + ], + "core-js/features/string/fixed": [ + "es.string.fixed" + ], + "core-js/features/string/fontcolor": [ + "es.string.fontcolor" + ], + "core-js/features/string/fontsize": [ + "es.string.fontsize" + ], + "core-js/features/string/from-code-point": [ + "es.string.from-code-point" + ], + "core-js/features/string/includes": [ + "es.string.includes" + ], + "core-js/features/string/is-well-formed": [ + "es.string.is-well-formed", + "esnext.string.is-well-formed" + ], + "core-js/features/string/italics": [ + "es.string.italics" + ], + "core-js/features/string/iterator": [ + "es.object.to-string", + "es.string.iterator" + ], + "core-js/features/string/link": [ + "es.string.link" + ], + "core-js/features/string/match": [ + "es.regexp.exec", + "es.string.match" + ], + "core-js/features/string/match-all": [ + "es.object.to-string", + "es.regexp.exec", + "es.string.match-all", + "esnext.string.match-all" + ], + "core-js/features/string/pad-end": [ + "es.string.pad-end" + ], + "core-js/features/string/pad-start": [ + "es.string.pad-start" + ], + "core-js/features/string/raw": [ + "es.string.raw" + ], + "core-js/features/string/repeat": [ + "es.string.repeat" + ], + "core-js/features/string/replace": [ + "es.regexp.exec", + "es.string.replace" + ], + "core-js/features/string/replace-all": [ + "es.regexp.exec", + "es.string.replace", + "es.string.replace-all", + "esnext.string.replace-all" + ], + "core-js/features/string/search": [ + "es.regexp.exec", + "es.string.search" + ], + "core-js/features/string/small": [ + "es.string.small" + ], + "core-js/features/string/split": [ + "es.regexp.exec", + "es.string.split" + ], + "core-js/features/string/starts-with": [ + "es.string.starts-with" + ], + "core-js/features/string/strike": [ + "es.string.strike" + ], + "core-js/features/string/sub": [ + "es.string.sub" + ], + "core-js/features/string/substr": [ + "es.string.substr" + ], + "core-js/features/string/sup": [ + "es.string.sup" + ], + "core-js/features/string/to-well-formed": [ + "es.string.to-well-formed", + "esnext.string.to-well-formed" + ], + "core-js/features/string/trim": [ + "es.string.trim" + ], + "core-js/features/string/trim-end": [ + "es.string.trim-end" + ], + "core-js/features/string/trim-left": [ + "es.string.trim-start" + ], + "core-js/features/string/trim-right": [ + "es.string.trim-end" + ], + "core-js/features/string/trim-start": [ + "es.string.trim-start" + ], + "core-js/features/string/virtual": [ + "es.object.to-string", + "es.regexp.exec", + "es.string.at-alternative", + "es.string.code-point-at", + "es.string.ends-with", + "es.string.includes", + "es.string.iterator", + "es.string.match", + "es.string.match-all", + "es.string.pad-end", + "es.string.pad-start", + "es.string.repeat", + "es.string.replace", + "es.string.replace-all", + "es.string.search", + "es.string.split", + "es.string.starts-with", + "es.string.substr", + "es.string.trim", + "es.string.trim-end", + "es.string.trim-start", + "es.string.anchor", + "es.string.big", + "es.string.blink", + "es.string.bold", + "es.string.fixed", + "es.string.fontcolor", + "es.string.fontsize", + "es.string.italics", + "es.string.link", + "es.string.small", + "es.string.strike", + "es.string.sub", + "es.string.sup", + "esnext.string.at", + "esnext.string.code-points", + "esnext.string.is-well-formed", + "esnext.string.match-all", + "esnext.string.replace-all", + "esnext.string.to-well-formed" + ], + "core-js/features/string/virtual/anchor": [ + "es.string.anchor" + ], + "core-js/features/string/virtual/at": [ + "es.string.at-alternative", + "esnext.string.at" + ], + "core-js/features/string/virtual/big": [ + "es.string.big" + ], + "core-js/features/string/virtual/blink": [ + "es.string.blink" + ], + "core-js/features/string/virtual/bold": [ + "es.string.bold" + ], + "core-js/features/string/virtual/code-point-at": [ + "es.string.code-point-at" + ], + "core-js/features/string/virtual/code-points": [ + "es.object.to-string", + "esnext.string.code-points" + ], + "core-js/features/string/virtual/ends-with": [ + "es.string.ends-with" + ], + "core-js/features/string/virtual/fixed": [ + "es.string.fixed" + ], + "core-js/features/string/virtual/fontcolor": [ + "es.string.fontcolor" + ], + "core-js/features/string/virtual/fontsize": [ + "es.string.fontsize" + ], + "core-js/features/string/virtual/includes": [ + "es.string.includes" + ], + "core-js/features/string/virtual/is-well-formed": [ + "es.string.is-well-formed", + "esnext.string.is-well-formed" + ], + "core-js/features/string/virtual/italics": [ + "es.string.italics" + ], + "core-js/features/string/virtual/iterator": [ + "es.object.to-string", + "es.string.iterator" + ], + "core-js/features/string/virtual/link": [ + "es.string.link" + ], + "core-js/features/string/virtual/match-all": [ + "es.object.to-string", + "es.regexp.exec", + "es.string.match-all", + "esnext.string.match-all" + ], + "core-js/features/string/virtual/pad-end": [ + "es.string.pad-end" + ], + "core-js/features/string/virtual/pad-start": [ + "es.string.pad-start" + ], + "core-js/features/string/virtual/repeat": [ + "es.string.repeat" + ], + "core-js/features/string/virtual/replace-all": [ + "es.regexp.exec", + "es.string.replace", + "es.string.replace-all", + "esnext.string.replace-all" + ], + "core-js/features/string/virtual/small": [ + "es.string.small" + ], + "core-js/features/string/virtual/starts-with": [ + "es.string.starts-with" + ], + "core-js/features/string/virtual/strike": [ + "es.string.strike" + ], + "core-js/features/string/virtual/sub": [ + "es.string.sub" + ], + "core-js/features/string/virtual/substr": [ + "es.string.substr" + ], + "core-js/features/string/virtual/sup": [ + "es.string.sup" + ], + "core-js/features/string/virtual/to-well-formed": [ + "es.string.to-well-formed", + "esnext.string.to-well-formed" + ], + "core-js/features/string/virtual/trim": [ + "es.string.trim" + ], + "core-js/features/string/virtual/trim-end": [ + "es.string.trim-end" + ], + "core-js/features/string/virtual/trim-left": [ + "es.string.trim-start" + ], + "core-js/features/string/virtual/trim-right": [ + "es.string.trim-end" + ], + "core-js/features/string/virtual/trim-start": [ + "es.string.trim-start" + ], + "core-js/features/structured-clone": [ + "es.error.to-string", + "es.array.iterator", + "es.map", + "es.object.keys", + "es.object.to-string", + "es.set", + "web.dom-exception.constructor", + "web.dom-exception.stack", + "web.dom-exception.to-string-tag", + "web.structured-clone" + ], + "core-js/features/suppressed-error": [], + "core-js/features/symbol": [ + "es.symbol", + "es.symbol.description", + "es.symbol.async-dispose", + "es.symbol.async-iterator", + "es.symbol.dispose", + "es.symbol.has-instance", + "es.symbol.is-concat-spreadable", + "es.symbol.iterator", + "es.symbol.match", + "es.symbol.match-all", + "es.symbol.replace", + "es.symbol.search", + "es.symbol.species", + "es.symbol.split", + "es.symbol.to-primitive", + "es.symbol.to-string-tag", + "es.symbol.unscopables", + "es.array.concat", + "es.json.to-string-tag", + "es.math.to-string-tag", + "es.object.to-string", + "es.reflect.to-string-tag", + "esnext.function.metadata", + "esnext.symbol.async-dispose", + "esnext.symbol.custom-matcher", + "esnext.symbol.dispose", + "esnext.symbol.is-registered-symbol", + "esnext.symbol.is-registered", + "esnext.symbol.is-well-known-symbol", + "esnext.symbol.is-well-known", + "esnext.symbol.matcher", + "esnext.symbol.metadata", + "esnext.symbol.metadata-key", + "esnext.symbol.observable", + "esnext.symbol.pattern-match", + "esnext.symbol.replace-all", + "web.dom-collections.iterator" + ], + "core-js/features/symbol/async-dispose": [ + "es.symbol.async-dispose", + "esnext.symbol.async-dispose" + ], + "core-js/features/symbol/async-iterator": [ + "es.symbol.async-iterator" + ], + "core-js/features/symbol/custom-matcher": [ + "esnext.symbol.custom-matcher" + ], + "core-js/features/symbol/description": [ + "es.symbol.description" + ], + "core-js/features/symbol/dispose": [ + "es.symbol.dispose", + "esnext.symbol.dispose" + ], + "core-js/features/symbol/for": [ + "es.symbol" + ], + "core-js/features/symbol/has-instance": [ + "es.symbol.has-instance", + "es.function.has-instance" + ], + "core-js/features/symbol/is-concat-spreadable": [ + "es.symbol.is-concat-spreadable", + "es.array.concat" + ], + "core-js/features/symbol/is-registered": [ + "es.symbol", + "esnext.symbol.is-registered" + ], + "core-js/features/symbol/is-registered-symbol": [ + "es.symbol", + "esnext.symbol.is-registered-symbol" + ], + "core-js/features/symbol/is-well-known": [ + "es.symbol", + "esnext.symbol.is-well-known" + ], + "core-js/features/symbol/is-well-known-symbol": [ + "es.symbol", + "esnext.symbol.is-well-known-symbol" + ], + "core-js/features/symbol/iterator": [ + "es.symbol.iterator", + "es.array.iterator", + "es.object.to-string", + "es.string.iterator", + "web.dom-collections.iterator" + ], + "core-js/features/symbol/key-for": [ + "es.symbol" + ], + "core-js/features/symbol/match": [ + "es.symbol.match", + "es.regexp.exec", + "es.string.match" + ], + "core-js/features/symbol/match-all": [ + "es.symbol.match-all", + "es.object.to-string", + "es.regexp.exec", + "es.string.match-all" + ], + "core-js/features/symbol/matcher": [ + "esnext.symbol.matcher" + ], + "core-js/features/symbol/metadata": [ + "esnext.function.metadata", + "esnext.symbol.metadata" + ], + "core-js/features/symbol/metadata-key": [ + "esnext.symbol.metadata-key" + ], + "core-js/features/symbol/observable": [ + "esnext.symbol.observable" + ], + "core-js/features/symbol/pattern-match": [ + "esnext.symbol.pattern-match" + ], + "core-js/features/symbol/replace": [ + "es.symbol.replace", + "es.regexp.exec", + "es.string.replace" + ], + "core-js/features/symbol/replace-all": [ + "esnext.symbol.replace-all" + ], + "core-js/features/symbol/search": [ + "es.symbol.search", + "es.regexp.exec", + "es.string.search" + ], + "core-js/features/symbol/species": [ + "es.symbol.species" + ], + "core-js/features/symbol/split": [ + "es.symbol.split", + "es.regexp.exec", + "es.string.split" + ], + "core-js/features/symbol/to-primitive": [ + "es.symbol.to-primitive", + "es.date.to-primitive" + ], + "core-js/features/symbol/to-string-tag": [ + "es.symbol.to-string-tag", + "es.json.to-string-tag", + "es.math.to-string-tag", + "es.object.to-string", + "es.reflect.to-string-tag" + ], + "core-js/features/symbol/unscopables": [ + "es.symbol.unscopables" + ], + "core-js/features/typed-array": [ + "es.map", + "es.object.to-string", + "es.promise", + "es.string.iterator", + "es.typed-array.float32-array", + "es.typed-array.float64-array", + "es.typed-array.int8-array", + "es.typed-array.int16-array", + "es.typed-array.int32-array", + "es.typed-array.uint8-array", + "es.typed-array.uint8-clamped-array", + "es.typed-array.uint16-array", + "es.typed-array.uint32-array", + "es.typed-array.at", + "es.typed-array.copy-within", + "es.typed-array.every", + "es.typed-array.fill", + "es.typed-array.filter", + "es.typed-array.find", + "es.typed-array.find-index", + "es.typed-array.find-last", + "es.typed-array.find-last-index", + "es.typed-array.for-each", + "es.typed-array.from", + "es.typed-array.includes", + "es.typed-array.index-of", + "es.typed-array.iterator", + "es.typed-array.join", + "es.typed-array.last-index-of", + "es.typed-array.map", + "es.typed-array.of", + "es.typed-array.reduce", + "es.typed-array.reduce-right", + "es.typed-array.reverse", + "es.typed-array.set", + "es.typed-array.slice", + "es.typed-array.some", + "es.typed-array.sort", + "es.typed-array.subarray", + "es.typed-array.to-locale-string", + "es.typed-array.to-reversed", + "es.typed-array.to-sorted", + "es.typed-array.to-string", + "es.typed-array.with", + "es.uint8-array.from-base64", + "es.uint8-array.from-hex", + "es.uint8-array.set-from-base64", + "es.uint8-array.set-from-hex", + "es.uint8-array.to-base64", + "es.uint8-array.to-hex", + "esnext.typed-array.from-async", + "esnext.typed-array.at", + "esnext.typed-array.filter-out", + "esnext.typed-array.filter-reject", + "esnext.typed-array.find-last", + "esnext.typed-array.find-last-index", + "esnext.typed-array.group-by", + "esnext.typed-array.to-reversed", + "esnext.typed-array.to-sorted", + "esnext.typed-array.to-spliced", + "esnext.typed-array.unique-by", + "esnext.typed-array.with", + "esnext.uint8-array.from-base64", + "esnext.uint8-array.from-hex", + "esnext.uint8-array.set-from-base64", + "esnext.uint8-array.set-from-hex", + "esnext.uint8-array.to-base64", + "esnext.uint8-array.to-hex" + ], + "core-js/features/typed-array/at": [ + "es.typed-array.at", + "esnext.typed-array.at" + ], + "core-js/features/typed-array/copy-within": [ + "es.typed-array.copy-within" + ], + "core-js/features/typed-array/entries": [ + "es.object.to-string", + "es.typed-array.iterator" + ], + "core-js/features/typed-array/every": [ + "es.typed-array.every" + ], + "core-js/features/typed-array/fill": [ + "es.typed-array.fill" + ], + "core-js/features/typed-array/filter": [ + "es.typed-array.filter" + ], + "core-js/features/typed-array/filter-out": [ + "esnext.typed-array.filter-out" + ], + "core-js/features/typed-array/filter-reject": [ + "esnext.typed-array.filter-reject" + ], + "core-js/features/typed-array/find": [ + "es.typed-array.find" + ], + "core-js/features/typed-array/find-index": [ + "es.typed-array.find-index" + ], + "core-js/features/typed-array/find-last": [ + "es.typed-array.find-last", + "esnext.typed-array.find-last" + ], + "core-js/features/typed-array/find-last-index": [ + "es.typed-array.find-last-index", + "esnext.typed-array.find-last-index" + ], + "core-js/features/typed-array/float32-array": [ + "es.array-buffer.constructor", + "es.array-buffer.slice", + "es.map", + "es.object.to-string", + "es.promise", + "es.string.iterator", + "es.typed-array.float32-array", + "es.typed-array.at", + "es.typed-array.copy-within", + "es.typed-array.every", + "es.typed-array.fill", + "es.typed-array.filter", + "es.typed-array.find", + "es.typed-array.find-index", + "es.typed-array.find-last", + "es.typed-array.find-last-index", + "es.typed-array.for-each", + "es.typed-array.from", + "es.typed-array.includes", + "es.typed-array.index-of", + "es.typed-array.iterator", + "es.typed-array.join", + "es.typed-array.last-index-of", + "es.typed-array.map", + "es.typed-array.of", + "es.typed-array.reduce", + "es.typed-array.reduce-right", + "es.typed-array.reverse", + "es.typed-array.set", + "es.typed-array.slice", + "es.typed-array.some", + "es.typed-array.sort", + "es.typed-array.subarray", + "es.typed-array.to-locale-string", + "es.typed-array.to-reversed", + "es.typed-array.to-sorted", + "es.typed-array.to-string", + "es.typed-array.with", + "es.uint8-array.from-base64", + "es.uint8-array.from-hex", + "es.uint8-array.set-from-base64", + "es.uint8-array.set-from-hex", + "es.uint8-array.to-base64", + "es.uint8-array.to-hex", + "esnext.typed-array.from-async", + "esnext.typed-array.at", + "esnext.typed-array.filter-out", + "esnext.typed-array.filter-reject", + "esnext.typed-array.find-last", + "esnext.typed-array.find-last-index", + "esnext.typed-array.group-by", + "esnext.typed-array.to-reversed", + "esnext.typed-array.to-sorted", + "esnext.typed-array.to-spliced", + "esnext.typed-array.unique-by", + "esnext.typed-array.with", + "esnext.uint8-array.from-base64", + "esnext.uint8-array.from-hex", + "esnext.uint8-array.set-from-base64", + "esnext.uint8-array.set-from-hex", + "esnext.uint8-array.to-base64", + "esnext.uint8-array.to-hex" + ], + "core-js/features/typed-array/float64-array": [ + "es.array-buffer.constructor", + "es.array-buffer.slice", + "es.map", + "es.object.to-string", + "es.promise", + "es.string.iterator", + "es.typed-array.float64-array", + "es.typed-array.at", + "es.typed-array.copy-within", + "es.typed-array.every", + "es.typed-array.fill", + "es.typed-array.filter", + "es.typed-array.find", + "es.typed-array.find-index", + "es.typed-array.find-last", + "es.typed-array.find-last-index", + "es.typed-array.for-each", + "es.typed-array.from", + "es.typed-array.includes", + "es.typed-array.index-of", + "es.typed-array.iterator", + "es.typed-array.join", + "es.typed-array.last-index-of", + "es.typed-array.map", + "es.typed-array.of", + "es.typed-array.reduce", + "es.typed-array.reduce-right", + "es.typed-array.reverse", + "es.typed-array.set", + "es.typed-array.slice", + "es.typed-array.some", + "es.typed-array.sort", + "es.typed-array.subarray", + "es.typed-array.to-locale-string", + "es.typed-array.to-reversed", + "es.typed-array.to-sorted", + "es.typed-array.to-string", + "es.typed-array.with", + "es.uint8-array.from-base64", + "es.uint8-array.from-hex", + "es.uint8-array.set-from-base64", + "es.uint8-array.set-from-hex", + "es.uint8-array.to-base64", + "es.uint8-array.to-hex", + "esnext.typed-array.from-async", + "esnext.typed-array.at", + "esnext.typed-array.filter-out", + "esnext.typed-array.filter-reject", + "esnext.typed-array.find-last", + "esnext.typed-array.find-last-index", + "esnext.typed-array.group-by", + "esnext.typed-array.to-reversed", + "esnext.typed-array.to-sorted", + "esnext.typed-array.to-spliced", + "esnext.typed-array.unique-by", + "esnext.typed-array.with", + "esnext.uint8-array.from-base64", + "esnext.uint8-array.from-hex", + "esnext.uint8-array.set-from-base64", + "esnext.uint8-array.set-from-hex", + "esnext.uint8-array.to-base64", + "esnext.uint8-array.to-hex" + ], + "core-js/features/typed-array/for-each": [ + "es.typed-array.for-each" + ], + "core-js/features/typed-array/from": [ + "es.typed-array.from" + ], + "core-js/features/typed-array/from-async": [ + "esnext.typed-array.from-async" + ], + "core-js/features/typed-array/from-base64": [ + "es.uint8-array.from-base64", + "esnext.uint8-array.from-base64" + ], + "core-js/features/typed-array/from-hex": [ + "es.uint8-array.from-hex", + "esnext.uint8-array.from-hex" + ], + "core-js/features/typed-array/group-by": [ + "esnext.typed-array.group-by" + ], + "core-js/features/typed-array/includes": [ + "es.typed-array.includes" + ], + "core-js/features/typed-array/index-of": [ + "es.typed-array.index-of" + ], + "core-js/features/typed-array/int16-array": [ + "es.array-buffer.constructor", + "es.array-buffer.slice", + "es.map", + "es.object.to-string", + "es.promise", + "es.string.iterator", + "es.typed-array.int16-array", + "es.typed-array.at", + "es.typed-array.copy-within", + "es.typed-array.every", + "es.typed-array.fill", + "es.typed-array.filter", + "es.typed-array.find", + "es.typed-array.find-index", + "es.typed-array.find-last", + "es.typed-array.find-last-index", + "es.typed-array.for-each", + "es.typed-array.from", + "es.typed-array.includes", + "es.typed-array.index-of", + "es.typed-array.iterator", + "es.typed-array.join", + "es.typed-array.last-index-of", + "es.typed-array.map", + "es.typed-array.of", + "es.typed-array.reduce", + "es.typed-array.reduce-right", + "es.typed-array.reverse", + "es.typed-array.set", + "es.typed-array.slice", + "es.typed-array.some", + "es.typed-array.sort", + "es.typed-array.subarray", + "es.typed-array.to-locale-string", + "es.typed-array.to-reversed", + "es.typed-array.to-sorted", + "es.typed-array.to-string", + "es.typed-array.with", + "es.uint8-array.from-base64", + "es.uint8-array.from-hex", + "es.uint8-array.set-from-base64", + "es.uint8-array.set-from-hex", + "es.uint8-array.to-base64", + "es.uint8-array.to-hex", + "esnext.typed-array.from-async", + "esnext.typed-array.at", + "esnext.typed-array.filter-out", + "esnext.typed-array.filter-reject", + "esnext.typed-array.find-last", + "esnext.typed-array.find-last-index", + "esnext.typed-array.group-by", + "esnext.typed-array.to-reversed", + "esnext.typed-array.to-sorted", + "esnext.typed-array.to-spliced", + "esnext.typed-array.unique-by", + "esnext.typed-array.with", + "esnext.uint8-array.from-base64", + "esnext.uint8-array.from-hex", + "esnext.uint8-array.set-from-base64", + "esnext.uint8-array.set-from-hex", + "esnext.uint8-array.to-base64", + "esnext.uint8-array.to-hex" + ], + "core-js/features/typed-array/int32-array": [ + "es.array-buffer.constructor", + "es.array-buffer.slice", + "es.map", + "es.object.to-string", + "es.promise", + "es.string.iterator", + "es.typed-array.int32-array", + "es.typed-array.at", + "es.typed-array.copy-within", + "es.typed-array.every", + "es.typed-array.fill", + "es.typed-array.filter", + "es.typed-array.find", + "es.typed-array.find-index", + "es.typed-array.find-last", + "es.typed-array.find-last-index", + "es.typed-array.for-each", + "es.typed-array.from", + "es.typed-array.includes", + "es.typed-array.index-of", + "es.typed-array.iterator", + "es.typed-array.join", + "es.typed-array.last-index-of", + "es.typed-array.map", + "es.typed-array.of", + "es.typed-array.reduce", + "es.typed-array.reduce-right", + "es.typed-array.reverse", + "es.typed-array.set", + "es.typed-array.slice", + "es.typed-array.some", + "es.typed-array.sort", + "es.typed-array.subarray", + "es.typed-array.to-locale-string", + "es.typed-array.to-reversed", + "es.typed-array.to-sorted", + "es.typed-array.to-string", + "es.typed-array.with", + "es.uint8-array.from-base64", + "es.uint8-array.from-hex", + "es.uint8-array.set-from-base64", + "es.uint8-array.set-from-hex", + "es.uint8-array.to-base64", + "es.uint8-array.to-hex", + "esnext.typed-array.from-async", + "esnext.typed-array.at", + "esnext.typed-array.filter-out", + "esnext.typed-array.filter-reject", + "esnext.typed-array.find-last", + "esnext.typed-array.find-last-index", + "esnext.typed-array.group-by", + "esnext.typed-array.to-reversed", + "esnext.typed-array.to-sorted", + "esnext.typed-array.to-spliced", + "esnext.typed-array.unique-by", + "esnext.typed-array.with", + "esnext.uint8-array.from-base64", + "esnext.uint8-array.from-hex", + "esnext.uint8-array.set-from-base64", + "esnext.uint8-array.set-from-hex", + "esnext.uint8-array.to-base64", + "esnext.uint8-array.to-hex" + ], + "core-js/features/typed-array/int8-array": [ + "es.array-buffer.constructor", + "es.array-buffer.slice", + "es.map", + "es.object.to-string", + "es.promise", + "es.string.iterator", + "es.typed-array.int8-array", + "es.typed-array.at", + "es.typed-array.copy-within", + "es.typed-array.every", + "es.typed-array.fill", + "es.typed-array.filter", + "es.typed-array.find", + "es.typed-array.find-index", + "es.typed-array.find-last", + "es.typed-array.find-last-index", + "es.typed-array.for-each", + "es.typed-array.from", + "es.typed-array.includes", + "es.typed-array.index-of", + "es.typed-array.iterator", + "es.typed-array.join", + "es.typed-array.last-index-of", + "es.typed-array.map", + "es.typed-array.of", + "es.typed-array.reduce", + "es.typed-array.reduce-right", + "es.typed-array.reverse", + "es.typed-array.set", + "es.typed-array.slice", + "es.typed-array.some", + "es.typed-array.sort", + "es.typed-array.subarray", + "es.typed-array.to-locale-string", + "es.typed-array.to-reversed", + "es.typed-array.to-sorted", + "es.typed-array.to-string", + "es.typed-array.with", + "es.uint8-array.from-base64", + "es.uint8-array.from-hex", + "es.uint8-array.set-from-base64", + "es.uint8-array.set-from-hex", + "es.uint8-array.to-base64", + "es.uint8-array.to-hex", + "esnext.typed-array.from-async", + "esnext.typed-array.at", + "esnext.typed-array.filter-out", + "esnext.typed-array.filter-reject", + "esnext.typed-array.find-last", + "esnext.typed-array.find-last-index", + "esnext.typed-array.group-by", + "esnext.typed-array.to-reversed", + "esnext.typed-array.to-sorted", + "esnext.typed-array.to-spliced", + "esnext.typed-array.unique-by", + "esnext.typed-array.with", + "esnext.uint8-array.from-base64", + "esnext.uint8-array.from-hex", + "esnext.uint8-array.set-from-base64", + "esnext.uint8-array.set-from-hex", + "esnext.uint8-array.to-base64", + "esnext.uint8-array.to-hex" + ], + "core-js/features/typed-array/iterator": [ + "es.object.to-string", + "es.typed-array.iterator" + ], + "core-js/features/typed-array/join": [ + "es.typed-array.join" + ], + "core-js/features/typed-array/keys": [ + "es.object.to-string", + "es.typed-array.iterator" + ], + "core-js/features/typed-array/last-index-of": [ + "es.typed-array.last-index-of" + ], + "core-js/features/typed-array/map": [ + "es.typed-array.map" + ], + "core-js/features/typed-array/methods": [ + "es.map", + "es.object.to-string", + "es.promise", + "es.string.iterator", + "es.typed-array.at", + "es.typed-array.copy-within", + "es.typed-array.every", + "es.typed-array.fill", + "es.typed-array.filter", + "es.typed-array.find", + "es.typed-array.find-index", + "es.typed-array.find-last", + "es.typed-array.find-last-index", + "es.typed-array.for-each", + "es.typed-array.from", + "es.typed-array.includes", + "es.typed-array.index-of", + "es.typed-array.iterator", + "es.typed-array.join", + "es.typed-array.last-index-of", + "es.typed-array.map", + "es.typed-array.of", + "es.typed-array.reduce", + "es.typed-array.reduce-right", + "es.typed-array.reverse", + "es.typed-array.set", + "es.typed-array.slice", + "es.typed-array.some", + "es.typed-array.sort", + "es.typed-array.subarray", + "es.typed-array.to-locale-string", + "es.typed-array.to-reversed", + "es.typed-array.to-sorted", + "es.typed-array.to-string", + "es.typed-array.with", + "es.uint8-array.from-base64", + "es.uint8-array.from-hex", + "es.uint8-array.set-from-base64", + "es.uint8-array.set-from-hex", + "es.uint8-array.to-base64", + "es.uint8-array.to-hex", + "esnext.typed-array.from-async", + "esnext.typed-array.at", + "esnext.typed-array.filter-out", + "esnext.typed-array.filter-reject", + "esnext.typed-array.find-last", + "esnext.typed-array.find-last-index", + "esnext.typed-array.group-by", + "esnext.typed-array.to-reversed", + "esnext.typed-array.to-sorted", + "esnext.typed-array.to-spliced", + "esnext.typed-array.unique-by", + "esnext.typed-array.with", + "esnext.uint8-array.from-base64", + "esnext.uint8-array.from-hex", + "esnext.uint8-array.set-from-base64", + "esnext.uint8-array.set-from-hex", + "esnext.uint8-array.to-base64", + "esnext.uint8-array.to-hex" + ], + "core-js/features/typed-array/of": [ + "es.typed-array.of" + ], + "core-js/features/typed-array/reduce": [ + "es.typed-array.reduce" + ], + "core-js/features/typed-array/reduce-right": [ + "es.typed-array.reduce-right" + ], + "core-js/features/typed-array/reverse": [ + "es.typed-array.reverse" + ], + "core-js/features/typed-array/set": [ + "es.typed-array.set" + ], + "core-js/features/typed-array/set-from-base64": [ + "es.uint8-array.set-from-base64", + "esnext.uint8-array.set-from-base64" + ], + "core-js/features/typed-array/set-from-hex": [ + "es.uint8-array.set-from-hex", + "esnext.uint8-array.set-from-hex" + ], + "core-js/features/typed-array/slice": [ + "es.typed-array.slice" + ], + "core-js/features/typed-array/some": [ + "es.typed-array.some" + ], + "core-js/features/typed-array/sort": [ + "es.typed-array.sort" + ], + "core-js/features/typed-array/subarray": [ + "es.typed-array.subarray" + ], + "core-js/features/typed-array/to-base64": [ + "es.uint8-array.to-base64", + "esnext.uint8-array.to-base64" + ], + "core-js/features/typed-array/to-hex": [ + "es.uint8-array.to-hex", + "esnext.uint8-array.to-hex" + ], + "core-js/features/typed-array/to-locale-string": [ + "es.typed-array.to-locale-string" + ], + "core-js/features/typed-array/to-reversed": [ + "es.typed-array.to-reversed", + "esnext.typed-array.to-reversed" + ], + "core-js/features/typed-array/to-sorted": [ + "es.typed-array.sort", + "es.typed-array.to-sorted", + "esnext.typed-array.to-sorted" + ], + "core-js/features/typed-array/to-spliced": [ + "esnext.typed-array.to-spliced" + ], + "core-js/features/typed-array/to-string": [ + "es.typed-array.to-string" + ], + "core-js/features/typed-array/uint16-array": [ + "es.array-buffer.constructor", + "es.array-buffer.slice", + "es.map", + "es.object.to-string", + "es.promise", + "es.string.iterator", + "es.typed-array.uint16-array", + "es.typed-array.at", + "es.typed-array.copy-within", + "es.typed-array.every", + "es.typed-array.fill", + "es.typed-array.filter", + "es.typed-array.find", + "es.typed-array.find-index", + "es.typed-array.find-last", + "es.typed-array.find-last-index", + "es.typed-array.for-each", + "es.typed-array.from", + "es.typed-array.includes", + "es.typed-array.index-of", + "es.typed-array.iterator", + "es.typed-array.join", + "es.typed-array.last-index-of", + "es.typed-array.map", + "es.typed-array.of", + "es.typed-array.reduce", + "es.typed-array.reduce-right", + "es.typed-array.reverse", + "es.typed-array.set", + "es.typed-array.slice", + "es.typed-array.some", + "es.typed-array.sort", + "es.typed-array.subarray", + "es.typed-array.to-locale-string", + "es.typed-array.to-reversed", + "es.typed-array.to-sorted", + "es.typed-array.to-string", + "es.typed-array.with", + "es.uint8-array.from-base64", + "es.uint8-array.from-hex", + "es.uint8-array.set-from-base64", + "es.uint8-array.set-from-hex", + "es.uint8-array.to-base64", + "es.uint8-array.to-hex", + "esnext.typed-array.from-async", + "esnext.typed-array.at", + "esnext.typed-array.filter-out", + "esnext.typed-array.filter-reject", + "esnext.typed-array.find-last", + "esnext.typed-array.find-last-index", + "esnext.typed-array.group-by", + "esnext.typed-array.to-reversed", + "esnext.typed-array.to-sorted", + "esnext.typed-array.to-spliced", + "esnext.typed-array.unique-by", + "esnext.typed-array.with", + "esnext.uint8-array.from-base64", + "esnext.uint8-array.from-hex", + "esnext.uint8-array.set-from-base64", + "esnext.uint8-array.set-from-hex", + "esnext.uint8-array.to-base64", + "esnext.uint8-array.to-hex" + ], + "core-js/features/typed-array/uint32-array": [ + "es.array-buffer.constructor", + "es.array-buffer.slice", + "es.map", + "es.object.to-string", + "es.promise", + "es.string.iterator", + "es.typed-array.uint32-array", + "es.typed-array.at", + "es.typed-array.copy-within", + "es.typed-array.every", + "es.typed-array.fill", + "es.typed-array.filter", + "es.typed-array.find", + "es.typed-array.find-index", + "es.typed-array.find-last", + "es.typed-array.find-last-index", + "es.typed-array.for-each", + "es.typed-array.from", + "es.typed-array.includes", + "es.typed-array.index-of", + "es.typed-array.iterator", + "es.typed-array.join", + "es.typed-array.last-index-of", + "es.typed-array.map", + "es.typed-array.of", + "es.typed-array.reduce", + "es.typed-array.reduce-right", + "es.typed-array.reverse", + "es.typed-array.set", + "es.typed-array.slice", + "es.typed-array.some", + "es.typed-array.sort", + "es.typed-array.subarray", + "es.typed-array.to-locale-string", + "es.typed-array.to-reversed", + "es.typed-array.to-sorted", + "es.typed-array.to-string", + "es.typed-array.with", + "es.uint8-array.from-base64", + "es.uint8-array.from-hex", + "es.uint8-array.set-from-base64", + "es.uint8-array.set-from-hex", + "es.uint8-array.to-base64", + "es.uint8-array.to-hex", + "esnext.typed-array.from-async", + "esnext.typed-array.at", + "esnext.typed-array.filter-out", + "esnext.typed-array.filter-reject", + "esnext.typed-array.find-last", + "esnext.typed-array.find-last-index", + "esnext.typed-array.group-by", + "esnext.typed-array.to-reversed", + "esnext.typed-array.to-sorted", + "esnext.typed-array.to-spliced", + "esnext.typed-array.unique-by", + "esnext.typed-array.with", + "esnext.uint8-array.from-base64", + "esnext.uint8-array.from-hex", + "esnext.uint8-array.set-from-base64", + "esnext.uint8-array.set-from-hex", + "esnext.uint8-array.to-base64", + "esnext.uint8-array.to-hex" + ], + "core-js/features/typed-array/uint8-array": [ + "es.array-buffer.constructor", + "es.array-buffer.slice", + "es.map", + "es.object.to-string", + "es.promise", + "es.string.iterator", + "es.typed-array.uint8-array", + "es.typed-array.at", + "es.typed-array.copy-within", + "es.typed-array.every", + "es.typed-array.fill", + "es.typed-array.filter", + "es.typed-array.find", + "es.typed-array.find-index", + "es.typed-array.find-last", + "es.typed-array.find-last-index", + "es.typed-array.for-each", + "es.typed-array.from", + "es.typed-array.includes", + "es.typed-array.index-of", + "es.typed-array.iterator", + "es.typed-array.join", + "es.typed-array.last-index-of", + "es.typed-array.map", + "es.typed-array.of", + "es.typed-array.reduce", + "es.typed-array.reduce-right", + "es.typed-array.reverse", + "es.typed-array.set", + "es.typed-array.slice", + "es.typed-array.some", + "es.typed-array.sort", + "es.typed-array.subarray", + "es.typed-array.to-locale-string", + "es.typed-array.to-reversed", + "es.typed-array.to-sorted", + "es.typed-array.to-string", + "es.typed-array.with", + "es.uint8-array.from-base64", + "es.uint8-array.from-hex", + "es.uint8-array.set-from-base64", + "es.uint8-array.set-from-hex", + "es.uint8-array.to-base64", + "es.uint8-array.to-hex", + "esnext.typed-array.from-async", + "esnext.typed-array.at", + "esnext.typed-array.filter-out", + "esnext.typed-array.filter-reject", + "esnext.typed-array.find-last", + "esnext.typed-array.find-last-index", + "esnext.typed-array.group-by", + "esnext.typed-array.to-reversed", + "esnext.typed-array.to-sorted", + "esnext.typed-array.to-spliced", + "esnext.typed-array.unique-by", + "esnext.typed-array.with", + "esnext.uint8-array.from-base64", + "esnext.uint8-array.from-hex", + "esnext.uint8-array.set-from-base64", + "esnext.uint8-array.set-from-hex", + "esnext.uint8-array.to-base64", + "esnext.uint8-array.to-hex" + ], + "core-js/features/typed-array/uint8-clamped-array": [ + "es.array-buffer.constructor", + "es.array-buffer.slice", + "es.map", + "es.object.to-string", + "es.promise", + "es.string.iterator", + "es.typed-array.uint8-clamped-array", + "es.typed-array.at", + "es.typed-array.copy-within", + "es.typed-array.every", + "es.typed-array.fill", + "es.typed-array.filter", + "es.typed-array.find", + "es.typed-array.find-index", + "es.typed-array.find-last", + "es.typed-array.find-last-index", + "es.typed-array.for-each", + "es.typed-array.from", + "es.typed-array.includes", + "es.typed-array.index-of", + "es.typed-array.iterator", + "es.typed-array.join", + "es.typed-array.last-index-of", + "es.typed-array.map", + "es.typed-array.of", + "es.typed-array.reduce", + "es.typed-array.reduce-right", + "es.typed-array.reverse", + "es.typed-array.set", + "es.typed-array.slice", + "es.typed-array.some", + "es.typed-array.sort", + "es.typed-array.subarray", + "es.typed-array.to-locale-string", + "es.typed-array.to-reversed", + "es.typed-array.to-sorted", + "es.typed-array.to-string", + "es.typed-array.with", + "es.uint8-array.from-base64", + "es.uint8-array.from-hex", + "es.uint8-array.set-from-base64", + "es.uint8-array.set-from-hex", + "es.uint8-array.to-base64", + "es.uint8-array.to-hex", + "esnext.typed-array.from-async", + "esnext.typed-array.at", + "esnext.typed-array.filter-out", + "esnext.typed-array.filter-reject", + "esnext.typed-array.find-last", + "esnext.typed-array.find-last-index", + "esnext.typed-array.group-by", + "esnext.typed-array.to-reversed", + "esnext.typed-array.to-sorted", + "esnext.typed-array.to-spliced", + "esnext.typed-array.unique-by", + "esnext.typed-array.with", + "esnext.uint8-array.from-base64", + "esnext.uint8-array.from-hex", + "esnext.uint8-array.set-from-base64", + "esnext.uint8-array.set-from-hex", + "esnext.uint8-array.to-base64", + "esnext.uint8-array.to-hex" + ], + "core-js/features/typed-array/unique-by": [ + "es.map", + "esnext.typed-array.unique-by" + ], + "core-js/features/typed-array/values": [ + "es.object.to-string", + "es.typed-array.iterator" + ], + "core-js/features/typed-array/with": [ + "es.typed-array.with", + "esnext.typed-array.with" + ], + "core-js/features/unescape": [ + "es.unescape" + ], + "core-js/features/url": [ + "web.url", + "web.url.can-parse", + "web.url.parse", + "web.url.to-json", + "web.url-search-params", + "web.url-search-params.delete", + "web.url-search-params.has", + "web.url-search-params.size" + ], + "core-js/features/url-search-params": [ + "web.dom-collections.iterator", + "web.url-search-params", + "web.url-search-params.delete", + "web.url-search-params.has", + "web.url-search-params.size" + ], + "core-js/features/url/can-parse": [ + "web.url", + "web.url.can-parse" + ], + "core-js/features/url/parse": [ + "web.url", + "web.url.parse" + ], + "core-js/features/url/to-json": [ + "web.url.to-json" + ], + "core-js/features/weak-map": [ + "es.array.iterator", + "es.object.to-string", + "es.string.iterator", + "es.weak-map", + "esnext.weak-map.delete-all", + "esnext.weak-map.from", + "esnext.weak-map.of", + "esnext.weak-map.emplace", + "esnext.weak-map.get-or-insert", + "esnext.weak-map.get-or-insert-computed", + "esnext.weak-map.upsert", + "web.dom-collections.iterator" + ], + "core-js/features/weak-map/delete-all": [ + "es.weak-map", + "esnext.weak-map.delete-all" + ], + "core-js/features/weak-map/emplace": [ + "es.weak-map", + "esnext.weak-map.emplace" + ], + "core-js/features/weak-map/from": [ + "es.array.iterator", + "es.object.to-string", + "es.string.iterator", + "es.weak-map", + "esnext.weak-map.delete-all", + "esnext.weak-map.from", + "esnext.weak-map.emplace", + "esnext.weak-map.get-or-insert", + "esnext.weak-map.get-or-insert-computed", + "web.dom-collections.iterator" + ], + "core-js/features/weak-map/get-or-insert": [ + "es.weak-map", + "esnext.weak-map.get-or-insert" + ], + "core-js/features/weak-map/get-or-insert-computed": [ + "es.weak-map", + "esnext.weak-map.get-or-insert-computed" + ], + "core-js/features/weak-map/of": [ + "es.array.iterator", + "es.object.to-string", + "es.weak-map", + "esnext.weak-map.delete-all", + "esnext.weak-map.of", + "esnext.weak-map.emplace", + "esnext.weak-map.get-or-insert", + "esnext.weak-map.get-or-insert-computed" + ], + "core-js/features/weak-map/upsert": [ + "es.weak-map", + "esnext.weak-map.upsert" + ], + "core-js/features/weak-set": [ + "es.array.iterator", + "es.object.to-string", + "es.string.iterator", + "es.weak-set", + "esnext.weak-set.add-all", + "esnext.weak-set.delete-all", + "esnext.weak-set.from", + "esnext.weak-set.of", + "web.dom-collections.iterator" + ], + "core-js/features/weak-set/add-all": [ + "es.weak-set", + "esnext.weak-set.add-all" + ], + "core-js/features/weak-set/delete-all": [ + "es.weak-set", + "esnext.weak-set.delete-all" + ], + "core-js/features/weak-set/from": [ + "es.array.iterator", + "es.object.to-string", + "es.string.iterator", + "es.weak-set", + "esnext.weak-set.add-all", + "esnext.weak-set.delete-all", + "esnext.weak-set.from", + "web.dom-collections.iterator" + ], + "core-js/features/weak-set/of": [ + "es.array.iterator", + "es.object.to-string", + "es.weak-set", + "esnext.weak-set.add-all", + "esnext.weak-set.delete-all", + "esnext.weak-set.of" + ], + "core-js/full": [ + "es.symbol", + "es.symbol.description", + "es.symbol.async-dispose", + "es.symbol.async-iterator", + "es.symbol.dispose", + "es.symbol.has-instance", + "es.symbol.is-concat-spreadable", + "es.symbol.iterator", + "es.symbol.match", + "es.symbol.match-all", + "es.symbol.replace", + "es.symbol.search", + "es.symbol.species", + "es.symbol.split", + "es.symbol.to-primitive", + "es.symbol.to-string-tag", + "es.symbol.unscopables", + "es.error.cause", + "es.error.is-error", + "es.error.to-string", + "es.aggregate-error", + "es.aggregate-error.cause", + "es.suppressed-error.constructor", + "es.array.at", + "es.array.concat", + "es.array.copy-within", + "es.array.every", + "es.array.fill", + "es.array.filter", + "es.array.find", + "es.array.find-index", + "es.array.find-last", + "es.array.find-last-index", + "es.array.flat", + "es.array.flat-map", + "es.array.for-each", + "es.array.from", + "es.array.includes", + "es.array.index-of", + "es.array.is-array", + "es.array.iterator", + "es.array.join", + "es.array.last-index-of", + "es.array.map", + "es.array.of", + "es.array.push", + "es.array.reduce", + "es.array.reduce-right", + "es.array.reverse", + "es.array.slice", + "es.array.some", + "es.array.sort", + "es.array.species", + "es.array.splice", + "es.array.to-reversed", + "es.array.to-sorted", + "es.array.to-spliced", + "es.array.unscopables.flat", + "es.array.unscopables.flat-map", + "es.array.unshift", + "es.array.with", + "es.array-buffer.constructor", + "es.array-buffer.is-view", + "es.array-buffer.slice", + "es.data-view", + "es.data-view.get-float16", + "es.data-view.set-float16", + "es.array-buffer.detached", + "es.array-buffer.transfer", + "es.array-buffer.transfer-to-fixed-length", + "es.date.get-year", + "es.date.now", + "es.date.set-year", + "es.date.to-gmt-string", + "es.date.to-iso-string", + "es.date.to-json", + "es.date.to-primitive", + "es.date.to-string", + "es.disposable-stack.constructor", + "es.escape", + "es.function.bind", + "es.function.has-instance", + "es.function.name", + "es.global-this", + "es.iterator.constructor", + "es.iterator.dispose", + "es.iterator.drop", + "es.iterator.every", + "es.iterator.filter", + "es.iterator.find", + "es.iterator.flat-map", + "es.iterator.for-each", + "es.iterator.from", + "es.iterator.map", + "es.iterator.reduce", + "es.iterator.some", + "es.iterator.take", + "es.iterator.to-array", + "es.json.stringify", + "es.json.to-string-tag", + "es.map", + "es.map.group-by", + "es.math.acosh", + "es.math.asinh", + "es.math.atanh", + "es.math.cbrt", + "es.math.clz32", + "es.math.cosh", + "es.math.expm1", + "es.math.fround", + "es.math.f16round", + "es.math.hypot", + "es.math.imul", + "es.math.log10", + "es.math.log1p", + "es.math.log2", + "es.math.sign", + "es.math.sinh", + "es.math.sum-precise", + "es.math.tanh", + "es.math.to-string-tag", + "es.math.trunc", + "es.number.constructor", + "es.number.epsilon", + "es.number.is-finite", + "es.number.is-integer", + "es.number.is-nan", + "es.number.is-safe-integer", + "es.number.max-safe-integer", + "es.number.min-safe-integer", + "es.number.parse-float", + "es.number.parse-int", + "es.number.to-exponential", + "es.number.to-fixed", + "es.number.to-precision", + "es.object.assign", + "es.object.create", + "es.object.define-getter", + "es.object.define-properties", + "es.object.define-property", + "es.object.define-setter", + "es.object.entries", + "es.object.freeze", + "es.object.from-entries", + "es.object.get-own-property-descriptor", + "es.object.get-own-property-descriptors", + "es.object.get-own-property-names", + "es.object.get-prototype-of", + "es.object.group-by", + "es.object.has-own", + "es.object.is", + "es.object.is-extensible", + "es.object.is-frozen", + "es.object.is-sealed", + "es.object.keys", + "es.object.lookup-getter", + "es.object.lookup-setter", + "es.object.prevent-extensions", + "es.object.proto", + "es.object.seal", + "es.object.set-prototype-of", + "es.object.to-string", + "es.object.values", + "es.parse-float", + "es.parse-int", + "es.promise", + "es.promise.all-settled", + "es.promise.any", + "es.promise.finally", + "es.promise.try", + "es.promise.with-resolvers", + "es.array.from-async", + "es.async-disposable-stack.constructor", + "es.async-iterator.async-dispose", + "es.reflect.apply", + "es.reflect.construct", + "es.reflect.define-property", + "es.reflect.delete-property", + "es.reflect.get", + "es.reflect.get-own-property-descriptor", + "es.reflect.get-prototype-of", + "es.reflect.has", + "es.reflect.is-extensible", + "es.reflect.own-keys", + "es.reflect.prevent-extensions", + "es.reflect.set", + "es.reflect.set-prototype-of", + "es.reflect.to-string-tag", + "es.regexp.constructor", + "es.regexp.escape", + "es.regexp.dot-all", + "es.regexp.exec", + "es.regexp.flags", + "es.regexp.sticky", + "es.regexp.test", + "es.regexp.to-string", + "es.set", + "es.set.difference.v2", + "es.set.intersection.v2", + "es.set.is-disjoint-from.v2", + "es.set.is-subset-of.v2", + "es.set.is-superset-of.v2", + "es.set.symmetric-difference.v2", + "es.set.union.v2", + "es.string.at-alternative", + "es.string.code-point-at", + "es.string.ends-with", + "es.string.from-code-point", + "es.string.includes", + "es.string.is-well-formed", + "es.string.iterator", + "es.string.match", + "es.string.match-all", + "es.string.pad-end", + "es.string.pad-start", + "es.string.raw", + "es.string.repeat", + "es.string.replace", + "es.string.replace-all", + "es.string.search", + "es.string.split", + "es.string.starts-with", + "es.string.substr", + "es.string.to-well-formed", + "es.string.trim", + "es.string.trim-end", + "es.string.trim-start", + "es.string.anchor", + "es.string.big", + "es.string.blink", + "es.string.bold", + "es.string.fixed", + "es.string.fontcolor", + "es.string.fontsize", + "es.string.italics", + "es.string.link", + "es.string.small", + "es.string.strike", + "es.string.sub", + "es.string.sup", + "es.typed-array.float32-array", + "es.typed-array.float64-array", + "es.typed-array.int8-array", + "es.typed-array.int16-array", + "es.typed-array.int32-array", + "es.typed-array.uint8-array", + "es.typed-array.uint8-clamped-array", + "es.typed-array.uint16-array", + "es.typed-array.uint32-array", + "es.typed-array.at", + "es.typed-array.copy-within", + "es.typed-array.every", + "es.typed-array.fill", + "es.typed-array.filter", + "es.typed-array.find", + "es.typed-array.find-index", + "es.typed-array.find-last", + "es.typed-array.find-last-index", + "es.typed-array.for-each", + "es.typed-array.from", + "es.typed-array.includes", + "es.typed-array.index-of", + "es.typed-array.iterator", + "es.typed-array.join", + "es.typed-array.last-index-of", + "es.typed-array.map", + "es.typed-array.of", + "es.typed-array.reduce", + "es.typed-array.reduce-right", + "es.typed-array.reverse", + "es.typed-array.set", + "es.typed-array.slice", + "es.typed-array.some", + "es.typed-array.sort", + "es.typed-array.subarray", + "es.typed-array.to-locale-string", + "es.typed-array.to-reversed", + "es.typed-array.to-sorted", + "es.typed-array.to-string", + "es.typed-array.with", + "es.uint8-array.from-base64", + "es.uint8-array.from-hex", + "es.uint8-array.set-from-base64", + "es.uint8-array.set-from-hex", + "es.uint8-array.to-base64", + "es.uint8-array.to-hex", + "es.unescape", + "es.weak-map", + "es.weak-set", + "esnext.aggregate-error", + "esnext.suppressed-error.constructor", + "esnext.array.from-async", + "esnext.array.at", + "esnext.array.filter-out", + "esnext.array.filter-reject", + "esnext.array.find-last", + "esnext.array.find-last-index", + "esnext.array.group", + "esnext.array.group-by", + "esnext.array.group-by-to-map", + "esnext.array.group-to-map", + "esnext.array.is-template-object", + "esnext.array.last-index", + "esnext.array.last-item", + "esnext.array.to-reversed", + "esnext.array.to-sorted", + "esnext.array.to-spliced", + "esnext.array.unique-by", + "esnext.array.with", + "esnext.array-buffer.detached", + "esnext.array-buffer.transfer", + "esnext.array-buffer.transfer-to-fixed-length", + "esnext.async-disposable-stack.constructor", + "esnext.async-iterator.constructor", + "esnext.async-iterator.as-indexed-pairs", + "esnext.async-iterator.async-dispose", + "esnext.async-iterator.drop", + "esnext.async-iterator.every", + "esnext.async-iterator.filter", + "esnext.async-iterator.find", + "esnext.async-iterator.flat-map", + "esnext.async-iterator.for-each", + "esnext.async-iterator.from", + "esnext.async-iterator.indexed", + "esnext.async-iterator.map", + "esnext.async-iterator.reduce", + "esnext.async-iterator.some", + "esnext.async-iterator.take", + "esnext.async-iterator.to-array", + "esnext.bigint.range", + "esnext.composite-key", + "esnext.composite-symbol", + "esnext.data-view.get-float16", + "esnext.data-view.get-uint8-clamped", + "esnext.data-view.set-float16", + "esnext.data-view.set-uint8-clamped", + "esnext.disposable-stack.constructor", + "esnext.error.is-error", + "esnext.function.demethodize", + "esnext.function.is-callable", + "esnext.function.is-constructor", + "esnext.function.metadata", + "esnext.function.un-this", + "esnext.global-this", + "esnext.iterator.constructor", + "esnext.iterator.as-indexed-pairs", + "esnext.iterator.chunks", + "esnext.iterator.concat", + "esnext.iterator.dispose", + "esnext.iterator.drop", + "esnext.iterator.every", + "esnext.iterator.filter", + "esnext.iterator.find", + "esnext.iterator.flat-map", + "esnext.iterator.for-each", + "esnext.iterator.from", + "esnext.iterator.indexed", + "esnext.iterator.map", + "esnext.iterator.range", + "esnext.iterator.reduce", + "esnext.iterator.sliding", + "esnext.iterator.some", + "esnext.iterator.take", + "esnext.iterator.to-array", + "esnext.iterator.to-async", + "esnext.iterator.windows", + "esnext.iterator.zip", + "esnext.iterator.zip-keyed", + "esnext.json.is-raw-json", + "esnext.json.parse", + "esnext.json.raw-json", + "esnext.map.delete-all", + "esnext.map.emplace", + "esnext.map.every", + "esnext.map.filter", + "esnext.map.find", + "esnext.map.find-key", + "esnext.map.from", + "esnext.map.get-or-insert", + "esnext.map.get-or-insert-computed", + "esnext.map.group-by", + "esnext.map.includes", + "esnext.map.key-by", + "esnext.map.key-of", + "esnext.map.map-keys", + "esnext.map.map-values", + "esnext.map.merge", + "esnext.map.of", + "esnext.map.reduce", + "esnext.map.some", + "esnext.map.update", + "esnext.map.update-or-insert", + "esnext.map.upsert", + "esnext.math.clamp", + "esnext.math.deg-per-rad", + "esnext.math.degrees", + "esnext.math.fscale", + "esnext.math.f16round", + "esnext.math.iaddh", + "esnext.math.imulh", + "esnext.math.isubh", + "esnext.math.rad-per-deg", + "esnext.math.radians", + "esnext.math.scale", + "esnext.math.seeded-prng", + "esnext.math.signbit", + "esnext.math.sum-precise", + "esnext.math.umulh", + "esnext.number.clamp", + "esnext.number.from-string", + "esnext.number.range", + "esnext.object.has-own", + "esnext.object.iterate-entries", + "esnext.object.iterate-keys", + "esnext.object.iterate-values", + "esnext.object.group-by", + "esnext.observable", + "esnext.promise.all-settled", + "esnext.promise.any", + "esnext.promise.try", + "esnext.promise.with-resolvers", + "esnext.reflect.define-metadata", + "esnext.reflect.delete-metadata", + "esnext.reflect.get-metadata", + "esnext.reflect.get-metadata-keys", + "esnext.reflect.get-own-metadata", + "esnext.reflect.get-own-metadata-keys", + "esnext.reflect.has-metadata", + "esnext.reflect.has-own-metadata", + "esnext.reflect.metadata", + "esnext.regexp.escape", + "esnext.set.add-all", + "esnext.set.delete-all", + "esnext.set.difference.v2", + "esnext.set.difference", + "esnext.set.every", + "esnext.set.filter", + "esnext.set.find", + "esnext.set.from", + "esnext.set.intersection.v2", + "esnext.set.intersection", + "esnext.set.is-disjoint-from.v2", + "esnext.set.is-disjoint-from", + "esnext.set.is-subset-of.v2", + "esnext.set.is-subset-of", + "esnext.set.is-superset-of.v2", + "esnext.set.is-superset-of", + "esnext.set.join", + "esnext.set.map", + "esnext.set.of", + "esnext.set.reduce", + "esnext.set.some", + "esnext.set.symmetric-difference.v2", + "esnext.set.symmetric-difference", + "esnext.set.union.v2", + "esnext.set.union", + "esnext.string.at", + "esnext.string.cooked", + "esnext.string.code-points", + "esnext.string.dedent", + "esnext.string.is-well-formed", + "esnext.string.match-all", + "esnext.string.replace-all", + "esnext.string.to-well-formed", + "esnext.symbol.async-dispose", + "esnext.symbol.custom-matcher", + "esnext.symbol.dispose", + "esnext.symbol.is-registered-symbol", + "esnext.symbol.is-registered", + "esnext.symbol.is-well-known-symbol", + "esnext.symbol.is-well-known", + "esnext.symbol.matcher", + "esnext.symbol.metadata", + "esnext.symbol.metadata-key", + "esnext.symbol.observable", + "esnext.symbol.pattern-match", + "esnext.symbol.replace-all", + "esnext.typed-array.from-async", + "esnext.typed-array.at", + "esnext.typed-array.filter-out", + "esnext.typed-array.filter-reject", + "esnext.typed-array.find-last", + "esnext.typed-array.find-last-index", + "esnext.typed-array.group-by", + "esnext.typed-array.to-reversed", + "esnext.typed-array.to-sorted", + "esnext.typed-array.to-spliced", + "esnext.typed-array.unique-by", + "esnext.typed-array.with", + "esnext.uint8-array.from-base64", + "esnext.uint8-array.from-hex", + "esnext.uint8-array.set-from-base64", + "esnext.uint8-array.set-from-hex", + "esnext.uint8-array.to-base64", + "esnext.uint8-array.to-hex", + "esnext.weak-map.delete-all", + "esnext.weak-map.from", + "esnext.weak-map.of", + "esnext.weak-map.emplace", + "esnext.weak-map.get-or-insert", + "esnext.weak-map.get-or-insert-computed", + "esnext.weak-map.upsert", + "esnext.weak-set.add-all", + "esnext.weak-set.delete-all", + "esnext.weak-set.from", + "esnext.weak-set.of", + "web.atob", + "web.btoa", + "web.dom-collections.for-each", + "web.dom-collections.iterator", + "web.dom-exception.constructor", + "web.dom-exception.stack", + "web.dom-exception.to-string-tag", + "web.immediate", + "web.queue-microtask", + "web.self", + "web.structured-clone", + "web.timers", + "web.url", + "web.url.can-parse", + "web.url.parse", + "web.url.to-json", + "web.url-search-params", + "web.url-search-params.delete", + "web.url-search-params.has", + "web.url-search-params.size" + ], + "core-js/full/aggregate-error": [], + "core-js/full/array": [ + "es.array.at", + "es.array.concat", + "es.array.copy-within", + "es.array.every", + "es.array.fill", + "es.array.filter", + "es.array.find", + "es.array.find-index", + "es.array.find-last", + "es.array.find-last-index", + "es.array.flat", + "es.array.flat-map", + "es.array.for-each", + "es.array.from", + "es.array.includes", + "es.array.index-of", + "es.array.is-array", + "es.array.iterator", + "es.array.join", + "es.array.last-index-of", + "es.array.map", + "es.array.of", + "es.array.push", + "es.array.reduce", + "es.array.reduce-right", + "es.array.reverse", + "es.array.slice", + "es.array.some", + "es.array.sort", + "es.array.species", + "es.array.splice", + "es.array.to-reversed", + "es.array.to-sorted", + "es.array.to-spliced", + "es.array.unscopables.flat", + "es.array.unscopables.flat-map", + "es.array.unshift", + "es.array.with", + "es.map", + "es.object.to-string", + "es.promise", + "es.array.from-async", + "es.string.iterator", + "esnext.array.from-async", + "esnext.array.at", + "esnext.array.filter-out", + "esnext.array.filter-reject", + "esnext.array.find-last", + "esnext.array.find-last-index", + "esnext.array.group", + "esnext.array.group-by", + "esnext.array.group-by-to-map", + "esnext.array.group-to-map", + "esnext.array.is-template-object", + "esnext.array.last-index", + "esnext.array.last-item", + "esnext.array.to-reversed", + "esnext.array.to-sorted", + "esnext.array.to-spliced", + "esnext.array.unique-by", + "esnext.array.with" + ], + "core-js/full/array-buffer": [ + "es.array-buffer.constructor", + "es.array-buffer.is-view", + "es.array-buffer.slice", + "es.data-view", + "es.array-buffer.detached", + "es.array-buffer.transfer", + "es.array-buffer.transfer-to-fixed-length", + "es.object.to-string", + "esnext.array-buffer.detached", + "esnext.array-buffer.transfer", + "esnext.array-buffer.transfer-to-fixed-length" + ], + "core-js/full/array-buffer/constructor": [ + "es.array-buffer.constructor", + "es.array-buffer.slice", + "es.array-buffer.detached", + "es.array-buffer.transfer", + "es.array-buffer.transfer-to-fixed-length", + "es.object.to-string", + "esnext.array-buffer.detached", + "esnext.array-buffer.transfer", + "esnext.array-buffer.transfer-to-fixed-length" + ], + "core-js/full/array-buffer/detached": [ + "es.array-buffer.constructor", + "es.array-buffer.slice", + "es.array-buffer.detached", + "esnext.array-buffer.detached" + ], + "core-js/full/array-buffer/is-view": [ + "es.array-buffer.is-view" + ], + "core-js/full/array-buffer/slice": [ + "es.array-buffer.slice" + ], + "core-js/full/array-buffer/transfer": [ + "es.array-buffer.constructor", + "es.array-buffer.slice", + "es.data-view", + "es.array-buffer.transfer", + "esnext.array-buffer.transfer" + ], + "core-js/full/array-buffer/transfer-to-fixed-length": [ + "es.array-buffer.constructor", + "es.array-buffer.slice", + "es.data-view", + "es.array-buffer.transfer-to-fixed-length", + "esnext.array-buffer.transfer-to-fixed-length" + ], + "core-js/full/array/at": [ + "es.array.at", + "esnext.array.at" + ], + "core-js/full/array/concat": [ + "es.array.concat" + ], + "core-js/full/array/copy-within": [ + "es.array.copy-within" + ], + "core-js/full/array/entries": [ + "es.array.iterator", + "es.object.to-string" + ], + "core-js/full/array/every": [ + "es.array.every" + ], + "core-js/full/array/fill": [ + "es.array.fill" + ], + "core-js/full/array/filter": [ + "es.array.filter" + ], + "core-js/full/array/filter-out": [ + "esnext.array.filter-out" + ], + "core-js/full/array/filter-reject": [ + "esnext.array.filter-reject" + ], + "core-js/full/array/find": [ + "es.array.find" + ], + "core-js/full/array/find-index": [ + "es.array.find-index" + ], + "core-js/full/array/find-last": [ + "es.array.find-last", + "esnext.array.find-last" + ], + "core-js/full/array/find-last-index": [ + "es.array.find-last-index", + "esnext.array.find-last-index" + ], + "core-js/full/array/flat": [ + "es.array.flat", + "es.array.unscopables.flat" + ], + "core-js/full/array/flat-map": [ + "es.array.flat-map", + "es.array.unscopables.flat-map" + ], + "core-js/full/array/for-each": [ + "es.array.for-each" + ], + "core-js/full/array/from": [ + "es.array.from", + "es.string.iterator" + ], + "core-js/full/array/from-async": [ + "es.array.iterator", + "es.object.to-string", + "es.promise", + "es.array.from-async", + "es.string.iterator", + "esnext.array.from-async" + ], + "core-js/full/array/group": [ + "esnext.array.group" + ], + "core-js/full/array/group-by": [ + "esnext.array.group-by" + ], + "core-js/full/array/group-by-to-map": [ + "es.map", + "es.object.to-string", + "esnext.array.group-by-to-map" + ], + "core-js/full/array/group-to-map": [ + "es.map", + "es.object.to-string", + "esnext.array.group-to-map" + ], + "core-js/full/array/includes": [ + "es.array.includes" + ], + "core-js/full/array/index-of": [ + "es.array.index-of" + ], + "core-js/full/array/is-array": [ + "es.array.is-array" + ], + "core-js/full/array/is-template-object": [ + "esnext.array.is-template-object" + ], + "core-js/full/array/iterator": [ + "es.array.iterator", + "es.object.to-string" + ], + "core-js/full/array/join": [ + "es.array.join" + ], + "core-js/full/array/keys": [ + "es.array.iterator", + "es.object.to-string" + ], + "core-js/full/array/last-index": [ + "esnext.array.last-index" + ], + "core-js/full/array/last-index-of": [ + "es.array.last-index-of" + ], + "core-js/full/array/last-item": [ + "esnext.array.last-item" + ], + "core-js/full/array/map": [ + "es.array.map" + ], + "core-js/full/array/of": [ + "es.array.of" + ], + "core-js/full/array/push": [ + "es.array.push" + ], + "core-js/full/array/reduce": [ + "es.array.reduce" + ], + "core-js/full/array/reduce-right": [ + "es.array.reduce-right" + ], + "core-js/full/array/reverse": [ + "es.array.reverse" + ], + "core-js/full/array/slice": [ + "es.array.slice" + ], + "core-js/full/array/some": [ + "es.array.some" + ], + "core-js/full/array/sort": [ + "es.array.sort" + ], + "core-js/full/array/splice": [ + "es.array.splice" + ], + "core-js/full/array/to-reversed": [ + "es.array.to-reversed", + "esnext.array.to-reversed" + ], + "core-js/full/array/to-sorted": [ + "es.array.sort", + "es.array.to-sorted", + "esnext.array.to-sorted" + ], + "core-js/full/array/to-spliced": [ + "es.array.to-spliced", + "esnext.array.to-spliced" + ], + "core-js/full/array/unique-by": [ + "es.map", + "esnext.array.unique-by" + ], + "core-js/full/array/unshift": [ + "es.array.unshift" + ], + "core-js/full/array/values": [ + "es.array.iterator", + "es.object.to-string" + ], + "core-js/full/array/virtual": [ + "es.array.at", + "es.array.concat", + "es.array.copy-within", + "es.array.every", + "es.array.fill", + "es.array.filter", + "es.array.find", + "es.array.find-index", + "es.array.find-last", + "es.array.find-last-index", + "es.array.flat", + "es.array.flat-map", + "es.array.for-each", + "es.array.includes", + "es.array.index-of", + "es.array.iterator", + "es.array.join", + "es.array.last-index-of", + "es.array.map", + "es.array.push", + "es.array.reduce", + "es.array.reduce-right", + "es.array.reverse", + "es.array.slice", + "es.array.some", + "es.array.sort", + "es.array.species", + "es.array.splice", + "es.array.to-reversed", + "es.array.to-sorted", + "es.array.to-spliced", + "es.array.unscopables.flat", + "es.array.unscopables.flat-map", + "es.array.unshift", + "es.array.with", + "es.map", + "es.object.to-string", + "esnext.array.at", + "esnext.array.filter-out", + "esnext.array.filter-reject", + "esnext.array.find-last", + "esnext.array.find-last-index", + "esnext.array.group", + "esnext.array.group-by", + "esnext.array.group-by-to-map", + "esnext.array.group-to-map", + "esnext.array.to-reversed", + "esnext.array.to-sorted", + "esnext.array.to-spliced", + "esnext.array.unique-by", + "esnext.array.with" + ], + "core-js/full/array/virtual/at": [ + "es.array.at", + "esnext.array.at" + ], + "core-js/full/array/virtual/concat": [ + "es.array.concat" + ], + "core-js/full/array/virtual/copy-within": [ + "es.array.copy-within" + ], + "core-js/full/array/virtual/entries": [ + "es.array.iterator", + "es.object.to-string" + ], + "core-js/full/array/virtual/every": [ + "es.array.every" + ], + "core-js/full/array/virtual/fill": [ + "es.array.fill" + ], + "core-js/full/array/virtual/filter": [ + "es.array.filter" + ], + "core-js/full/array/virtual/filter-out": [ + "esnext.array.filter-out" + ], + "core-js/full/array/virtual/filter-reject": [ + "esnext.array.filter-reject" + ], + "core-js/full/array/virtual/find": [ + "es.array.find" + ], + "core-js/full/array/virtual/find-index": [ + "es.array.find-index" + ], + "core-js/full/array/virtual/find-last": [ + "es.array.find-last", + "esnext.array.find-last" + ], + "core-js/full/array/virtual/find-last-index": [ + "es.array.find-last-index", + "esnext.array.find-last-index" + ], + "core-js/full/array/virtual/flat": [ + "es.array.flat", + "es.array.unscopables.flat" + ], + "core-js/full/array/virtual/flat-map": [ + "es.array.flat-map", + "es.array.unscopables.flat-map" + ], + "core-js/full/array/virtual/for-each": [ + "es.array.for-each" + ], + "core-js/full/array/virtual/group": [ + "esnext.array.group" + ], + "core-js/full/array/virtual/group-by": [ + "esnext.array.group-by" + ], + "core-js/full/array/virtual/group-by-to-map": [ + "es.map", + "es.object.to-string", + "esnext.array.group-by-to-map" + ], + "core-js/full/array/virtual/group-to-map": [ + "es.map", + "es.object.to-string", + "esnext.array.group-to-map" + ], + "core-js/full/array/virtual/includes": [ + "es.array.includes" + ], + "core-js/full/array/virtual/index-of": [ + "es.array.index-of" + ], + "core-js/full/array/virtual/iterator": [ + "es.array.iterator", + "es.object.to-string" + ], + "core-js/full/array/virtual/join": [ + "es.array.join" + ], + "core-js/full/array/virtual/keys": [ + "es.array.iterator", + "es.object.to-string" + ], + "core-js/full/array/virtual/last-index-of": [ + "es.array.last-index-of" + ], + "core-js/full/array/virtual/map": [ + "es.array.map" + ], + "core-js/full/array/virtual/push": [ + "es.array.push" + ], + "core-js/full/array/virtual/reduce": [ + "es.array.reduce" + ], + "core-js/full/array/virtual/reduce-right": [ + "es.array.reduce-right" + ], + "core-js/full/array/virtual/reverse": [ + "es.array.reverse" + ], + "core-js/full/array/virtual/slice": [ + "es.array.slice" + ], + "core-js/full/array/virtual/some": [ + "es.array.some" + ], + "core-js/full/array/virtual/sort": [ + "es.array.sort" + ], + "core-js/full/array/virtual/splice": [ + "es.array.splice" + ], + "core-js/full/array/virtual/to-reversed": [ + "es.array.to-reversed", + "esnext.array.to-reversed" + ], + "core-js/full/array/virtual/to-sorted": [ + "es.array.sort", + "es.array.to-sorted", + "esnext.array.to-sorted" + ], + "core-js/full/array/virtual/to-spliced": [ + "es.array.to-spliced", + "esnext.array.to-spliced" + ], + "core-js/full/array/virtual/unique-by": [ + "es.map", + "esnext.array.unique-by" + ], + "core-js/full/array/virtual/unshift": [ + "es.array.unshift" + ], + "core-js/full/array/virtual/values": [ + "es.array.iterator", + "es.object.to-string" + ], + "core-js/full/array/virtual/with": [ + "es.array.with", + "esnext.array.with" + ], + "core-js/full/array/with": [ + "es.array.with", + "esnext.array.with" + ], + "core-js/full/async-disposable-stack": [ + "es.error.cause", + "es.error.to-string", + "es.suppressed-error.constructor", + "es.iterator.dispose", + "es.object.to-string", + "es.promise", + "es.async-disposable-stack.constructor", + "es.async-iterator.async-dispose", + "esnext.suppressed-error.constructor", + "esnext.async-disposable-stack.constructor", + "esnext.async-iterator.async-dispose", + "esnext.iterator.dispose" + ], + "core-js/full/async-disposable-stack/constructor": [ + "es.error.cause", + "es.error.to-string", + "es.suppressed-error.constructor", + "es.iterator.dispose", + "es.object.to-string", + "es.promise", + "es.async-disposable-stack.constructor", + "es.async-iterator.async-dispose", + "esnext.suppressed-error.constructor", + "esnext.async-disposable-stack.constructor", + "esnext.async-iterator.async-dispose", + "esnext.iterator.dispose" + ], + "core-js/full/async-iterator": [ + "es.array.iterator", + "es.object.to-string", + "es.promise", + "es.async-iterator.async-dispose", + "es.string.iterator", + "esnext.async-iterator.constructor", + "esnext.async-iterator.as-indexed-pairs", + "esnext.async-iterator.async-dispose", + "esnext.async-iterator.drop", + "esnext.async-iterator.every", + "esnext.async-iterator.filter", + "esnext.async-iterator.find", + "esnext.async-iterator.flat-map", + "esnext.async-iterator.for-each", + "esnext.async-iterator.from", + "esnext.async-iterator.indexed", + "esnext.async-iterator.map", + "esnext.async-iterator.reduce", + "esnext.async-iterator.some", + "esnext.async-iterator.take", + "esnext.async-iterator.to-array", + "web.dom-collections.iterator" + ], + "core-js/full/async-iterator/as-indexed-pairs": [ + "es.object.to-string", + "es.promise", + "esnext.async-iterator.constructor", + "esnext.async-iterator.as-indexed-pairs" + ], + "core-js/full/async-iterator/async-dispose": [ + "es.object.to-string", + "es.promise", + "es.async-iterator.async-dispose", + "esnext.async-iterator.async-dispose" + ], + "core-js/full/async-iterator/drop": [ + "es.object.to-string", + "es.promise", + "esnext.async-iterator.constructor", + "esnext.async-iterator.drop" + ], + "core-js/full/async-iterator/every": [ + "es.object.to-string", + "es.promise", + "esnext.async-iterator.constructor", + "esnext.async-iterator.every" + ], + "core-js/full/async-iterator/filter": [ + "es.object.to-string", + "es.promise", + "esnext.async-iterator.constructor", + "esnext.async-iterator.filter" + ], + "core-js/full/async-iterator/find": [ + "es.object.to-string", + "es.promise", + "esnext.async-iterator.constructor", + "esnext.async-iterator.find" + ], + "core-js/full/async-iterator/flat-map": [ + "es.object.to-string", + "es.promise", + "esnext.async-iterator.constructor", + "esnext.async-iterator.flat-map" + ], + "core-js/full/async-iterator/for-each": [ + "es.object.to-string", + "es.promise", + "esnext.async-iterator.constructor", + "esnext.async-iterator.for-each" + ], + "core-js/full/async-iterator/from": [ + "es.array.iterator", + "es.object.to-string", + "es.promise", + "es.string.iterator", + "esnext.async-iterator.constructor", + "esnext.async-iterator.drop", + "esnext.async-iterator.every", + "esnext.async-iterator.filter", + "esnext.async-iterator.find", + "esnext.async-iterator.flat-map", + "esnext.async-iterator.for-each", + "esnext.async-iterator.from", + "esnext.async-iterator.map", + "esnext.async-iterator.reduce", + "esnext.async-iterator.some", + "esnext.async-iterator.take", + "esnext.async-iterator.to-array", + "web.dom-collections.iterator" + ], + "core-js/full/async-iterator/indexed": [ + "es.object.to-string", + "es.promise", + "esnext.async-iterator.constructor", + "esnext.async-iterator.indexed" + ], + "core-js/full/async-iterator/map": [ + "es.object.to-string", + "es.promise", + "esnext.async-iterator.constructor", + "esnext.async-iterator.map" + ], + "core-js/full/async-iterator/reduce": [ + "es.object.to-string", + "es.promise", + "esnext.async-iterator.constructor", + "esnext.async-iterator.reduce" + ], + "core-js/full/async-iterator/some": [ + "es.object.to-string", + "es.promise", + "esnext.async-iterator.constructor", + "esnext.async-iterator.some" + ], + "core-js/full/async-iterator/take": [ + "es.object.to-string", + "es.promise", + "esnext.async-iterator.constructor", + "esnext.async-iterator.take" + ], + "core-js/full/async-iterator/to-array": [ + "es.object.to-string", + "es.promise", + "esnext.async-iterator.constructor", + "esnext.async-iterator.to-array" + ], + "core-js/full/atob": [ + "es.error.to-string", + "es.object.to-string", + "web.atob", + "web.dom-exception.constructor", + "web.dom-exception.stack", + "web.dom-exception.to-string-tag" + ], + "core-js/full/bigint": [ + "es.object.to-string", + "esnext.bigint.range" + ], + "core-js/full/bigint/range": [ + "es.object.to-string", + "esnext.bigint.range" + ], + "core-js/full/btoa": [ + "es.error.to-string", + "es.object.to-string", + "web.btoa", + "web.dom-exception.constructor", + "web.dom-exception.stack", + "web.dom-exception.to-string-tag" + ], + "core-js/full/clear-immediate": [ + "web.immediate" + ], + "core-js/full/composite-key": [ + "esnext.composite-key" + ], + "core-js/full/composite-symbol": [ + "es.symbol", + "esnext.composite-symbol" + ], + "core-js/full/data-view": [ + "es.array-buffer.constructor", + "es.array-buffer.slice", + "es.data-view", + "es.data-view.get-float16", + "es.data-view.set-float16", + "es.object.to-string", + "esnext.data-view.get-float16", + "esnext.data-view.get-uint8-clamped", + "esnext.data-view.set-float16", + "esnext.data-view.set-uint8-clamped" + ], + "core-js/full/data-view/get-float16": [ + "es.data-view.get-float16", + "esnext.data-view.get-float16" + ], + "core-js/full/data-view/get-uint8-clamped": [ + "esnext.data-view.get-uint8-clamped" + ], + "core-js/full/data-view/set-float16": [ + "es.data-view.set-float16", + "esnext.data-view.set-float16" + ], + "core-js/full/data-view/set-uint8-clamped": [ + "esnext.data-view.set-uint8-clamped" + ], + "core-js/full/date": [ + "es.date.get-year", + "es.date.now", + "es.date.set-year", + "es.date.to-gmt-string", + "es.date.to-iso-string", + "es.date.to-json", + "es.date.to-primitive", + "es.date.to-string" + ], + "core-js/full/date/get-year": [ + "es.date.get-year" + ], + "core-js/full/date/now": [ + "es.date.now" + ], + "core-js/full/date/set-year": [ + "es.date.set-year" + ], + "core-js/full/date/to-gmt-string": [ + "es.date.to-gmt-string" + ], + "core-js/full/date/to-iso-string": [ + "es.date.to-iso-string", + "es.date.to-json" + ], + "core-js/full/date/to-json": [ + "es.date.to-json" + ], + "core-js/full/date/to-primitive": [ + "es.date.to-primitive" + ], + "core-js/full/date/to-string": [ + "es.date.to-string" + ], + "core-js/full/disposable-stack": [ + "es.error.cause", + "es.error.to-string", + "es.suppressed-error.constructor", + "es.disposable-stack.constructor", + "es.iterator.dispose", + "es.object.to-string", + "esnext.suppressed-error.constructor", + "esnext.disposable-stack.constructor", + "esnext.iterator.dispose" + ], + "core-js/full/disposable-stack/constructor": [ + "es.error.cause", + "es.error.to-string", + "es.suppressed-error.constructor", + "es.disposable-stack.constructor", + "es.iterator.dispose", + "es.object.to-string", + "esnext.suppressed-error.constructor", + "esnext.disposable-stack.constructor", + "esnext.iterator.dispose" + ], + "core-js/full/dom-collections": [ + "es.array.iterator", + "es.object.to-string", + "web.dom-collections.for-each", + "web.dom-collections.iterator" + ], + "core-js/full/dom-collections/for-each": [ + "web.dom-collections.for-each" + ], + "core-js/full/dom-collections/iterator": [ + "es.object.to-string", + "web.dom-collections.iterator" + ], + "core-js/full/dom-exception": [ + "es.error.to-string", + "web.dom-exception.constructor", + "web.dom-exception.stack", + "web.dom-exception.to-string-tag" + ], + "core-js/full/dom-exception/constructor": [ + "es.error.to-string", + "web.dom-exception.constructor", + "web.dom-exception.stack" + ], + "core-js/full/dom-exception/to-string-tag": [ + "web.dom-exception.to-string-tag" + ], + "core-js/full/error": [ + "es.error.cause", + "es.error.is-error", + "es.error.to-string", + "es.object.create", + "esnext.error.is-error" + ], + "core-js/full/error/constructor": [ + "es.error.cause" + ], + "core-js/full/error/is-error": [ + "es.error.is-error", + "es.object.create", + "esnext.error.is-error" + ], + "core-js/full/error/to-string": [ + "es.error.to-string" + ], + "core-js/full/escape": [ + "es.escape" + ], + "core-js/full/function": [ + "es.function.bind", + "es.function.has-instance", + "es.function.name", + "esnext.function.demethodize", + "esnext.function.is-callable", + "esnext.function.is-constructor", + "esnext.function.metadata", + "esnext.function.un-this" + ], + "core-js/full/function/bind": [ + "es.function.bind" + ], + "core-js/full/function/demethodize": [ + "esnext.function.demethodize" + ], + "core-js/full/function/has-instance": [ + "es.function.has-instance" + ], + "core-js/full/function/is-callable": [ + "esnext.function.is-callable" + ], + "core-js/full/function/is-constructor": [ + "esnext.function.is-constructor" + ], + "core-js/full/function/metadata": [ + "esnext.function.metadata" + ], + "core-js/full/function/name": [ + "es.function.name" + ], + "core-js/full/function/un-this": [ + "esnext.function.un-this" + ], + "core-js/full/function/virtual": [ + "es.function.bind", + "esnext.function.demethodize", + "esnext.function.un-this" + ], + "core-js/full/function/virtual/bind": [ + "es.function.bind" + ], + "core-js/full/function/virtual/demethodize": [ + "esnext.function.demethodize" + ], + "core-js/full/function/virtual/un-this": [ + "esnext.function.un-this" + ], + "core-js/full/get-iterator": [ + "es.array.iterator", + "es.string.iterator", + "web.dom-collections.iterator" + ], + "core-js/full/get-iterator-method": [ + "es.array.iterator", + "es.string.iterator", + "web.dom-collections.iterator" + ], + "core-js/full/global-this": [ + "es.global-this", + "esnext.global-this" + ], + "core-js/full/instance/at": [ + "es.array.at", + "es.string.at-alternative", + "esnext.array.at", + "esnext.string.at" + ], + "core-js/full/instance/bind": [ + "es.function.bind" + ], + "core-js/full/instance/clamp": [ + "esnext.number.clamp" + ], + "core-js/full/instance/code-point-at": [ + "es.string.code-point-at" + ], + "core-js/full/instance/code-points": [ + "es.object.to-string", + "esnext.string.code-points" + ], + "core-js/full/instance/concat": [ + "es.array.concat" + ], + "core-js/full/instance/copy-within": [ + "es.array.copy-within" + ], + "core-js/full/instance/demethodize": [ + "esnext.function.demethodize" + ], + "core-js/full/instance/ends-with": [ + "es.string.ends-with" + ], + "core-js/full/instance/entries": [ + "es.array.iterator", + "es.object.to-string", + "web.dom-collections.iterator" + ], + "core-js/full/instance/every": [ + "es.array.every" + ], + "core-js/full/instance/fill": [ + "es.array.fill" + ], + "core-js/full/instance/filter": [ + "es.array.filter" + ], + "core-js/full/instance/filter-out": [ + "esnext.array.filter-out" + ], + "core-js/full/instance/filter-reject": [ + "esnext.array.filter-reject" + ], + "core-js/full/instance/find": [ + "es.array.find" + ], + "core-js/full/instance/find-index": [ + "es.array.find-index" + ], + "core-js/full/instance/find-last": [ + "es.array.find-last", + "esnext.array.find-last" + ], + "core-js/full/instance/find-last-index": [ + "es.array.find-last-index", + "esnext.array.find-last-index" + ], + "core-js/full/instance/flags": [ + "es.regexp.flags" + ], + "core-js/full/instance/flat": [ + "es.array.flat", + "es.array.unscopables.flat" + ], + "core-js/full/instance/flat-map": [ + "es.array.flat-map", + "es.array.unscopables.flat-map" + ], + "core-js/full/instance/for-each": [ + "es.array.for-each", + "web.dom-collections.for-each" + ], + "core-js/full/instance/group": [ + "esnext.array.group" + ], + "core-js/full/instance/group-by": [ + "esnext.array.group-by" + ], + "core-js/full/instance/group-by-to-map": [ + "es.map", + "es.object.to-string", + "esnext.array.group-by-to-map" + ], + "core-js/full/instance/group-to-map": [ + "es.map", + "es.object.to-string", + "esnext.array.group-to-map" + ], + "core-js/full/instance/includes": [ + "es.array.includes", + "es.string.includes" + ], + "core-js/full/instance/index-of": [ + "es.array.index-of" + ], + "core-js/full/instance/is-well-formed": [ + "es.string.is-well-formed" + ], + "core-js/full/instance/keys": [ + "es.array.iterator", + "es.object.to-string", + "web.dom-collections.iterator" + ], + "core-js/full/instance/last-index-of": [ + "es.array.last-index-of" + ], + "core-js/full/instance/map": [ + "es.array.map" + ], + "core-js/full/instance/match-all": [ + "es.object.to-string", + "es.regexp.exec", + "es.string.match-all", + "esnext.string.match-all" + ], + "core-js/full/instance/pad-end": [ + "es.string.pad-end" + ], + "core-js/full/instance/pad-start": [ + "es.string.pad-start" + ], + "core-js/full/instance/push": [ + "es.array.push" + ], + "core-js/full/instance/reduce": [ + "es.array.reduce" + ], + "core-js/full/instance/reduce-right": [ + "es.array.reduce-right" + ], + "core-js/full/instance/repeat": [ + "es.string.repeat" + ], + "core-js/full/instance/replace-all": [ + "es.regexp.exec", + "es.string.replace", + "es.string.replace-all", + "esnext.string.replace-all" + ], + "core-js/full/instance/reverse": [ + "es.array.reverse" + ], + "core-js/full/instance/slice": [ + "es.array.slice" + ], + "core-js/full/instance/some": [ + "es.array.some" + ], + "core-js/full/instance/sort": [ + "es.array.sort" + ], + "core-js/full/instance/splice": [ + "es.array.splice" + ], + "core-js/full/instance/starts-with": [ + "es.string.starts-with" + ], + "core-js/full/instance/to-reversed": [ + "es.array.to-reversed", + "esnext.array.to-reversed" + ], + "core-js/full/instance/to-sorted": [ + "es.array.sort", + "es.array.to-sorted", + "esnext.array.to-sorted" + ], + "core-js/full/instance/to-spliced": [ + "es.array.to-spliced", + "esnext.array.to-spliced" + ], + "core-js/full/instance/to-well-formed": [ + "es.string.to-well-formed" + ], + "core-js/full/instance/trim": [ + "es.string.trim" + ], + "core-js/full/instance/trim-end": [ + "es.string.trim-end" + ], + "core-js/full/instance/trim-left": [ + "es.string.trim-start" + ], + "core-js/full/instance/trim-right": [ + "es.string.trim-end" + ], + "core-js/full/instance/trim-start": [ + "es.string.trim-start" + ], + "core-js/full/instance/un-this": [ + "esnext.function.un-this" + ], + "core-js/full/instance/unique-by": [ + "es.map", + "esnext.array.unique-by" + ], + "core-js/full/instance/unshift": [ + "es.array.unshift" + ], + "core-js/full/instance/values": [ + "es.array.iterator", + "es.object.to-string", + "web.dom-collections.iterator" + ], + "core-js/full/instance/with": [ + "es.array.with", + "esnext.array.with" + ], + "core-js/full/is-iterable": [ + "es.array.iterator", + "es.string.iterator", + "web.dom-collections.iterator" + ], + "core-js/full/iterator": [ + "es.array.iterator", + "es.iterator.constructor", + "es.iterator.dispose", + "es.iterator.drop", + "es.iterator.every", + "es.iterator.filter", + "es.iterator.find", + "es.iterator.flat-map", + "es.iterator.for-each", + "es.iterator.from", + "es.iterator.map", + "es.iterator.reduce", + "es.iterator.some", + "es.iterator.take", + "es.iterator.to-array", + "es.object.to-string", + "es.promise", + "es.string.iterator", + "esnext.iterator.constructor", + "esnext.iterator.as-indexed-pairs", + "esnext.iterator.chunks", + "esnext.iterator.concat", + "esnext.iterator.dispose", + "esnext.iterator.drop", + "esnext.iterator.every", + "esnext.iterator.filter", + "esnext.iterator.find", + "esnext.iterator.flat-map", + "esnext.iterator.for-each", + "esnext.iterator.from", + "esnext.iterator.indexed", + "esnext.iterator.map", + "esnext.iterator.range", + "esnext.iterator.reduce", + "esnext.iterator.sliding", + "esnext.iterator.some", + "esnext.iterator.take", + "esnext.iterator.to-array", + "esnext.iterator.to-async", + "esnext.iterator.windows", + "esnext.iterator.zip", + "esnext.iterator.zip-keyed", + "web.dom-collections.iterator" + ], + "core-js/full/iterator/as-indexed-pairs": [ + "es.object.to-string", + "esnext.iterator.constructor", + "esnext.iterator.as-indexed-pairs" + ], + "core-js/full/iterator/chunks": [ + "es.iterator.constructor", + "es.object.to-string", + "esnext.iterator.chunks" + ], + "core-js/full/iterator/concat": [ + "es.array.iterator", + "es.iterator.constructor", + "es.iterator.drop", + "es.iterator.every", + "es.iterator.filter", + "es.iterator.find", + "es.iterator.flat-map", + "es.iterator.for-each", + "es.iterator.map", + "es.iterator.reduce", + "es.iterator.some", + "es.iterator.take", + "es.iterator.to-array", + "es.object.to-string", + "es.string.iterator", + "esnext.iterator.chunks", + "esnext.iterator.concat", + "esnext.iterator.sliding", + "esnext.iterator.windows", + "web.dom-collections.iterator" + ], + "core-js/full/iterator/dispose": [ + "esnext.iterator.dispose" + ], + "core-js/full/iterator/drop": [ + "es.iterator.constructor", + "es.iterator.drop", + "es.object.to-string", + "esnext.iterator.constructor", + "esnext.iterator.drop" + ], + "core-js/full/iterator/every": [ + "es.iterator.constructor", + "es.iterator.every", + "es.object.to-string", + "esnext.iterator.constructor", + "esnext.iterator.every" + ], + "core-js/full/iterator/filter": [ + "es.iterator.constructor", + "es.iterator.filter", + "es.object.to-string", + "esnext.iterator.constructor", + "esnext.iterator.filter" + ], + "core-js/full/iterator/find": [ + "es.iterator.constructor", + "es.iterator.find", + "es.object.to-string", + "esnext.iterator.constructor", + "esnext.iterator.find" + ], + "core-js/full/iterator/flat-map": [ + "es.array.iterator", + "es.iterator.constructor", + "es.iterator.flat-map", + "es.object.to-string", + "esnext.iterator.constructor", + "esnext.iterator.flat-map", + "web.dom-collections.iterator" + ], + "core-js/full/iterator/for-each": [ + "es.iterator.constructor", + "es.iterator.for-each", + "es.object.to-string", + "esnext.iterator.constructor", + "esnext.iterator.for-each" + ], + "core-js/full/iterator/from": [ + "es.array.iterator", + "es.iterator.constructor", + "es.iterator.drop", + "es.iterator.every", + "es.iterator.filter", + "es.iterator.find", + "es.iterator.flat-map", + "es.iterator.for-each", + "es.iterator.from", + "es.iterator.map", + "es.iterator.reduce", + "es.iterator.some", + "es.iterator.take", + "es.iterator.to-array", + "es.object.to-string", + "es.promise", + "es.string.iterator", + "esnext.iterator.constructor", + "esnext.iterator.chunks", + "esnext.iterator.dispose", + "esnext.iterator.drop", + "esnext.iterator.every", + "esnext.iterator.filter", + "esnext.iterator.find", + "esnext.iterator.flat-map", + "esnext.iterator.for-each", + "esnext.iterator.from", + "esnext.iterator.map", + "esnext.iterator.reduce", + "esnext.iterator.sliding", + "esnext.iterator.some", + "esnext.iterator.take", + "esnext.iterator.to-array", + "esnext.iterator.to-async", + "esnext.iterator.windows", + "web.dom-collections.iterator" + ], + "core-js/full/iterator/indexed": [ + "es.object.to-string", + "esnext.iterator.constructor", + "esnext.iterator.indexed" + ], + "core-js/full/iterator/map": [ + "es.iterator.constructor", + "es.iterator.map", + "es.object.to-string", + "esnext.iterator.constructor", + "esnext.iterator.map" + ], + "core-js/full/iterator/range": [ + "es.array.iterator", + "es.iterator.constructor", + "es.iterator.drop", + "es.iterator.every", + "es.iterator.filter", + "es.iterator.find", + "es.iterator.flat-map", + "es.iterator.for-each", + "es.iterator.map", + "es.iterator.reduce", + "es.iterator.some", + "es.iterator.take", + "es.iterator.to-array", + "es.object.to-string", + "es.string.iterator", + "esnext.iterator.constructor", + "esnext.iterator.chunks", + "esnext.iterator.range", + "esnext.iterator.sliding", + "esnext.iterator.windows", + "web.dom-collections.iterator" + ], + "core-js/full/iterator/reduce": [ + "es.iterator.constructor", + "es.iterator.reduce", + "es.object.to-string", + "esnext.iterator.constructor", + "esnext.iterator.reduce" + ], + "core-js/full/iterator/sliding": [ + "es.iterator.constructor", + "es.object.to-string", + "esnext.iterator.sliding" + ], + "core-js/full/iterator/some": [ + "es.iterator.constructor", + "es.iterator.some", + "es.object.to-string", + "esnext.iterator.constructor", + "esnext.iterator.some" + ], + "core-js/full/iterator/take": [ + "es.iterator.constructor", + "es.iterator.take", + "es.object.to-string", + "esnext.iterator.constructor", + "esnext.iterator.take" + ], + "core-js/full/iterator/to-array": [ + "es.iterator.constructor", + "es.iterator.to-array", + "es.object.to-string", + "esnext.iterator.constructor", + "esnext.iterator.to-array" + ], + "core-js/full/iterator/to-async": [ + "es.iterator.constructor", + "es.object.to-string", + "es.promise", + "esnext.iterator.constructor", + "esnext.iterator.to-async" + ], + "core-js/full/iterator/windows": [ + "es.iterator.constructor", + "es.object.to-string", + "esnext.iterator.windows" + ], + "core-js/full/iterator/zip": [ + "es.array.iterator", + "es.iterator.constructor", + "es.iterator.drop", + "es.iterator.every", + "es.iterator.filter", + "es.iterator.find", + "es.iterator.flat-map", + "es.iterator.for-each", + "es.iterator.map", + "es.iterator.reduce", + "es.iterator.some", + "es.iterator.take", + "es.iterator.to-array", + "es.object.to-string", + "es.string.iterator", + "esnext.iterator.chunks", + "esnext.iterator.sliding", + "esnext.iterator.windows", + "esnext.iterator.zip", + "web.dom-collections.iterator" + ], + "core-js/full/iterator/zip-keyed": [ + "es.array.iterator", + "es.iterator.constructor", + "es.iterator.drop", + "es.iterator.every", + "es.iterator.filter", + "es.iterator.find", + "es.iterator.flat-map", + "es.iterator.for-each", + "es.iterator.map", + "es.iterator.reduce", + "es.iterator.some", + "es.iterator.take", + "es.iterator.to-array", + "es.object.create", + "es.object.to-string", + "es.reflect.own-keys", + "es.string.iterator", + "esnext.iterator.chunks", + "esnext.iterator.sliding", + "esnext.iterator.windows", + "esnext.iterator.zip-keyed", + "web.dom-collections.iterator" + ], + "core-js/full/json": [ + "es.date.to-json", + "es.json.stringify", + "es.json.to-string-tag", + "es.object.create", + "es.object.freeze", + "es.object.keys", + "esnext.json.is-raw-json", + "esnext.json.parse", + "esnext.json.raw-json" + ], + "core-js/full/json/is-raw-json": [ + "esnext.json.is-raw-json" + ], + "core-js/full/json/parse": [ + "es.object.keys", + "esnext.json.parse" + ], + "core-js/full/json/raw-json": [ + "es.object.create", + "es.object.freeze", + "esnext.json.raw-json" + ], + "core-js/full/json/stringify": [ + "es.date.to-json", + "es.json.stringify" + ], + "core-js/full/json/to-string-tag": [ + "es.json.to-string-tag" + ], + "core-js/full/map": [ + "es.array.iterator", + "es.map", + "es.map.group-by", + "es.object.to-string", + "es.string.iterator", + "esnext.map.delete-all", + "esnext.map.emplace", + "esnext.map.every", + "esnext.map.filter", + "esnext.map.find", + "esnext.map.find-key", + "esnext.map.from", + "esnext.map.get-or-insert", + "esnext.map.get-or-insert-computed", + "esnext.map.group-by", + "esnext.map.includes", + "esnext.map.key-by", + "esnext.map.key-of", + "esnext.map.map-keys", + "esnext.map.map-values", + "esnext.map.merge", + "esnext.map.of", + "esnext.map.reduce", + "esnext.map.some", + "esnext.map.update", + "esnext.map.update-or-insert", + "esnext.map.upsert", + "web.dom-collections.iterator" + ], + "core-js/full/map/delete-all": [ + "es.map", + "esnext.map.delete-all" + ], + "core-js/full/map/emplace": [ + "es.map", + "esnext.map.emplace" + ], + "core-js/full/map/every": [ + "es.map", + "esnext.map.every" + ], + "core-js/full/map/filter": [ + "es.map", + "esnext.map.filter" + ], + "core-js/full/map/find": [ + "es.map", + "esnext.map.find" + ], + "core-js/full/map/find-key": [ + "es.map", + "esnext.map.find-key" + ], + "core-js/full/map/from": [ + "es.array.iterator", + "es.map", + "es.object.to-string", + "es.string.iterator", + "esnext.map.delete-all", + "esnext.map.emplace", + "esnext.map.every", + "esnext.map.filter", + "esnext.map.find", + "esnext.map.find-key", + "esnext.map.from", + "esnext.map.get-or-insert", + "esnext.map.get-or-insert-computed", + "esnext.map.includes", + "esnext.map.key-of", + "esnext.map.map-keys", + "esnext.map.map-values", + "esnext.map.merge", + "esnext.map.reduce", + "esnext.map.some", + "esnext.map.update", + "web.dom-collections.iterator" + ], + "core-js/full/map/get-or-insert": [ + "es.map", + "esnext.map.get-or-insert" + ], + "core-js/full/map/get-or-insert-computed": [ + "es.map", + "esnext.map.get-or-insert-computed" + ], + "core-js/full/map/group-by": [ + "es.map", + "es.map.group-by", + "es.object.to-string", + "esnext.map.delete-all", + "esnext.map.emplace", + "esnext.map.every", + "esnext.map.filter", + "esnext.map.find", + "esnext.map.find-key", + "esnext.map.get-or-insert", + "esnext.map.get-or-insert-computed", + "esnext.map.group-by", + "esnext.map.includes", + "esnext.map.key-of", + "esnext.map.map-keys", + "esnext.map.map-values", + "esnext.map.merge", + "esnext.map.reduce", + "esnext.map.some", + "esnext.map.update" + ], + "core-js/full/map/includes": [ + "es.map", + "esnext.map.includes" + ], + "core-js/full/map/key-by": [ + "es.map", + "es.object.to-string", + "esnext.map.delete-all", + "esnext.map.emplace", + "esnext.map.every", + "esnext.map.filter", + "esnext.map.find", + "esnext.map.find-key", + "esnext.map.get-or-insert", + "esnext.map.get-or-insert-computed", + "esnext.map.includes", + "esnext.map.key-by", + "esnext.map.key-of", + "esnext.map.map-keys", + "esnext.map.map-values", + "esnext.map.merge", + "esnext.map.reduce", + "esnext.map.some", + "esnext.map.update" + ], + "core-js/full/map/key-of": [ + "es.map", + "esnext.map.key-of" + ], + "core-js/full/map/map-keys": [ + "es.map", + "esnext.map.map-keys" + ], + "core-js/full/map/map-values": [ + "es.map", + "esnext.map.map-values" + ], + "core-js/full/map/merge": [ + "es.map", + "esnext.map.merge" + ], + "core-js/full/map/of": [ + "es.array.iterator", + "es.map", + "es.object.to-string", + "esnext.map.delete-all", + "esnext.map.emplace", + "esnext.map.every", + "esnext.map.filter", + "esnext.map.find", + "esnext.map.find-key", + "esnext.map.get-or-insert", + "esnext.map.get-or-insert-computed", + "esnext.map.includes", + "esnext.map.key-of", + "esnext.map.map-keys", + "esnext.map.map-values", + "esnext.map.merge", + "esnext.map.of", + "esnext.map.reduce", + "esnext.map.some", + "esnext.map.update" + ], + "core-js/full/map/reduce": [ + "es.map", + "esnext.map.reduce" + ], + "core-js/full/map/some": [ + "es.map", + "esnext.map.some" + ], + "core-js/full/map/update": [ + "es.map", + "esnext.map.update" + ], + "core-js/full/map/update-or-insert": [ + "es.map", + "esnext.map.update-or-insert" + ], + "core-js/full/map/upsert": [ + "es.map", + "esnext.map.upsert" + ], + "core-js/full/math": [ + "es.array.iterator", + "es.math.acosh", + "es.math.asinh", + "es.math.atanh", + "es.math.cbrt", + "es.math.clz32", + "es.math.cosh", + "es.math.expm1", + "es.math.fround", + "es.math.f16round", + "es.math.hypot", + "es.math.imul", + "es.math.log10", + "es.math.log1p", + "es.math.log2", + "es.math.sign", + "es.math.sinh", + "es.math.sum-precise", + "es.math.tanh", + "es.math.to-string-tag", + "es.math.trunc", + "esnext.math.clamp", + "esnext.math.deg-per-rad", + "esnext.math.degrees", + "esnext.math.fscale", + "esnext.math.f16round", + "esnext.math.iaddh", + "esnext.math.imulh", + "esnext.math.isubh", + "esnext.math.rad-per-deg", + "esnext.math.radians", + "esnext.math.scale", + "esnext.math.seeded-prng", + "esnext.math.signbit", + "esnext.math.sum-precise", + "esnext.math.umulh" + ], + "core-js/full/math/acosh": [ + "es.math.acosh" + ], + "core-js/full/math/asinh": [ + "es.math.asinh" + ], + "core-js/full/math/atanh": [ + "es.math.atanh" + ], + "core-js/full/math/cbrt": [ + "es.math.cbrt" + ], + "core-js/full/math/clamp": [ + "esnext.math.clamp" + ], + "core-js/full/math/clz32": [ + "es.math.clz32" + ], + "core-js/full/math/cosh": [ + "es.math.cosh" + ], + "core-js/full/math/deg-per-rad": [ + "esnext.math.deg-per-rad" + ], + "core-js/full/math/degrees": [ + "esnext.math.degrees" + ], + "core-js/full/math/expm1": [ + "es.math.expm1" + ], + "core-js/full/math/f16round": [ + "es.math.f16round", + "esnext.math.f16round" + ], + "core-js/full/math/fround": [ + "es.math.fround" + ], + "core-js/full/math/fscale": [ + "esnext.math.fscale" + ], + "core-js/full/math/hypot": [ + "es.math.hypot" + ], + "core-js/full/math/iaddh": [ + "esnext.math.iaddh" + ], + "core-js/full/math/imul": [ + "es.math.imul" + ], + "core-js/full/math/imulh": [ + "esnext.math.imulh" + ], + "core-js/full/math/isubh": [ + "esnext.math.isubh" + ], + "core-js/full/math/log10": [ + "es.math.log10" + ], + "core-js/full/math/log1p": [ + "es.math.log1p" + ], + "core-js/full/math/log2": [ + "es.math.log2" + ], + "core-js/full/math/rad-per-deg": [ + "esnext.math.rad-per-deg" + ], + "core-js/full/math/radians": [ + "esnext.math.radians" + ], + "core-js/full/math/scale": [ + "esnext.math.scale" + ], + "core-js/full/math/seeded-prng": [ + "esnext.math.seeded-prng" + ], + "core-js/full/math/sign": [ + "es.math.sign" + ], + "core-js/full/math/signbit": [ + "esnext.math.signbit" + ], + "core-js/full/math/sinh": [ + "es.math.sinh" + ], + "core-js/full/math/sum-precise": [ + "es.array.iterator", + "es.math.sum-precise", + "esnext.math.sum-precise" + ], + "core-js/full/math/tanh": [ + "es.math.tanh" + ], + "core-js/full/math/to-string-tag": [ + "es.math.to-string-tag" + ], + "core-js/full/math/trunc": [ + "es.math.trunc" + ], + "core-js/full/math/umulh": [ + "esnext.math.umulh" + ], + "core-js/full/number": [ + "es.number.constructor", + "es.number.epsilon", + "es.number.is-finite", + "es.number.is-integer", + "es.number.is-nan", + "es.number.is-safe-integer", + "es.number.max-safe-integer", + "es.number.min-safe-integer", + "es.number.parse-float", + "es.number.parse-int", + "es.number.to-exponential", + "es.number.to-fixed", + "es.number.to-precision", + "es.object.to-string", + "esnext.number.clamp", + "esnext.number.from-string", + "esnext.number.range" + ], + "core-js/full/number/clamp": [ + "esnext.number.clamp" + ], + "core-js/full/number/constructor": [ + "es.number.constructor" + ], + "core-js/full/number/epsilon": [ + "es.number.epsilon" + ], + "core-js/full/number/from-string": [ + "esnext.number.from-string" + ], + "core-js/full/number/is-finite": [ + "es.number.is-finite" + ], + "core-js/full/number/is-integer": [ + "es.number.is-integer" + ], + "core-js/full/number/is-nan": [ + "es.number.is-nan" + ], + "core-js/full/number/is-safe-integer": [ + "es.number.is-safe-integer" + ], + "core-js/full/number/max-safe-integer": [ + "es.number.max-safe-integer" + ], + "core-js/full/number/min-safe-integer": [ + "es.number.min-safe-integer" + ], + "core-js/full/number/parse-float": [ + "es.number.parse-float" + ], + "core-js/full/number/parse-int": [ + "es.number.parse-int" + ], + "core-js/full/number/range": [ + "es.object.to-string", + "esnext.number.range" + ], + "core-js/full/number/to-exponential": [ + "es.number.to-exponential" + ], + "core-js/full/number/to-fixed": [ + "es.number.to-fixed" + ], + "core-js/full/number/to-precision": [ + "es.number.to-precision" + ], + "core-js/full/number/virtual": [ + "es.number.to-exponential", + "es.number.to-fixed", + "es.number.to-precision" + ], + "core-js/full/number/virtual/clamp": [ + "esnext.number.clamp" + ], + "core-js/full/number/virtual/to-exponential": [ + "es.number.to-exponential" + ], + "core-js/full/number/virtual/to-fixed": [ + "es.number.to-fixed" + ], + "core-js/full/number/virtual/to-precision": [ + "es.number.to-precision" + ], + "core-js/full/object": [ + "es.symbol", + "es.json.to-string-tag", + "es.math.to-string-tag", + "es.object.assign", + "es.object.create", + "es.object.define-getter", + "es.object.define-properties", + "es.object.define-property", + "es.object.define-setter", + "es.object.entries", + "es.object.freeze", + "es.object.from-entries", + "es.object.get-own-property-descriptor", + "es.object.get-own-property-descriptors", + "es.object.get-own-property-names", + "es.object.get-prototype-of", + "es.object.group-by", + "es.object.has-own", + "es.object.is", + "es.object.is-extensible", + "es.object.is-frozen", + "es.object.is-sealed", + "es.object.keys", + "es.object.lookup-getter", + "es.object.lookup-setter", + "es.object.prevent-extensions", + "es.object.proto", + "es.object.seal", + "es.object.set-prototype-of", + "es.object.to-string", + "es.object.values", + "es.reflect.to-string-tag", + "esnext.object.has-own", + "esnext.object.iterate-entries", + "esnext.object.iterate-keys", + "esnext.object.iterate-values", + "esnext.object.group-by", + "web.dom-collections.iterator" + ], + "core-js/full/object/assign": [ + "es.object.assign" + ], + "core-js/full/object/create": [ + "es.object.create" + ], + "core-js/full/object/define-getter": [ + "es.object.define-getter" + ], + "core-js/full/object/define-properties": [ + "es.object.define-properties" + ], + "core-js/full/object/define-property": [ + "es.object.define-property" + ], + "core-js/full/object/define-setter": [ + "es.object.define-setter" + ], + "core-js/full/object/entries": [ + "es.object.entries" + ], + "core-js/full/object/freeze": [ + "es.object.freeze" + ], + "core-js/full/object/from-entries": [ + "es.array.iterator", + "es.object.from-entries", + "web.dom-collections.iterator" + ], + "core-js/full/object/get-own-property-descriptor": [ + "es.object.get-own-property-descriptor" + ], + "core-js/full/object/get-own-property-descriptors": [ + "es.object.get-own-property-descriptors" + ], + "core-js/full/object/get-own-property-names": [ + "es.object.get-own-property-names" + ], + "core-js/full/object/get-own-property-symbols": [ + "es.symbol" + ], + "core-js/full/object/get-prototype-of": [ + "es.object.get-prototype-of" + ], + "core-js/full/object/group-by": [ + "es.object.create", + "es.object.group-by", + "esnext.object.group-by" + ], + "core-js/full/object/has-own": [ + "es.object.has-own", + "esnext.object.has-own" + ], + "core-js/full/object/is": [ + "es.object.is" + ], + "core-js/full/object/is-extensible": [ + "es.object.is-extensible" + ], + "core-js/full/object/is-frozen": [ + "es.object.is-frozen" + ], + "core-js/full/object/is-sealed": [ + "es.object.is-sealed" + ], + "core-js/full/object/iterate-entries": [ + "esnext.object.iterate-entries" + ], + "core-js/full/object/iterate-keys": [ + "esnext.object.iterate-keys" + ], + "core-js/full/object/iterate-values": [ + "esnext.object.iterate-values" + ], + "core-js/full/object/keys": [ + "es.object.keys" + ], + "core-js/full/object/lookup-getter": [ + "es.object.lookup-getter" + ], + "core-js/full/object/lookup-setter": [ + "es.object.lookup-setter" + ], + "core-js/full/object/prevent-extensions": [ + "es.object.prevent-extensions" + ], + "core-js/full/object/proto": [ + "es.object.proto" + ], + "core-js/full/object/seal": [ + "es.object.seal" + ], + "core-js/full/object/set-prototype-of": [ + "es.object.set-prototype-of" + ], + "core-js/full/object/to-string": [ + "es.json.to-string-tag", + "es.math.to-string-tag", + "es.object.to-string", + "es.reflect.to-string-tag" + ], + "core-js/full/object/values": [ + "es.object.values" + ], + "core-js/full/observable": [ + "es.object.to-string", + "es.string.iterator", + "esnext.observable", + "esnext.symbol.observable", + "web.dom-collections.iterator" + ], + "core-js/full/parse-float": [ + "es.parse-float" + ], + "core-js/full/parse-int": [ + "es.parse-int" + ], + "core-js/full/promise": [ + "es.aggregate-error", + "es.array.iterator", + "es.object.to-string", + "es.promise", + "es.promise.all-settled", + "es.promise.any", + "es.promise.finally", + "es.promise.try", + "es.promise.with-resolvers", + "es.string.iterator", + "esnext.aggregate-error", + "esnext.promise.all-settled", + "esnext.promise.any", + "esnext.promise.try", + "esnext.promise.with-resolvers", + "web.dom-collections.iterator" + ], + "core-js/full/promise/all-settled": [ + "es.array.iterator", + "es.object.to-string", + "es.promise", + "es.promise.all-settled", + "es.string.iterator", + "esnext.promise.all-settled", + "web.dom-collections.iterator" + ], + "core-js/full/promise/any": [ + "es.aggregate-error", + "es.array.iterator", + "es.object.to-string", + "es.promise", + "es.promise.any", + "es.string.iterator", + "esnext.aggregate-error", + "esnext.promise.any", + "web.dom-collections.iterator" + ], + "core-js/full/promise/finally": [ + "es.object.to-string", + "es.promise", + "es.promise.finally" + ], + "core-js/full/promise/try": [ + "es.object.to-string", + "es.promise", + "es.promise.try", + "esnext.promise.try" + ], + "core-js/full/promise/with-resolvers": [ + "es.promise", + "es.promise.with-resolvers", + "esnext.promise.with-resolvers" + ], + "core-js/full/queue-microtask": [ + "web.queue-microtask" + ], + "core-js/full/reflect": [ + "es.object.to-string", + "es.reflect.apply", + "es.reflect.construct", + "es.reflect.define-property", + "es.reflect.delete-property", + "es.reflect.get", + "es.reflect.get-own-property-descriptor", + "es.reflect.get-prototype-of", + "es.reflect.has", + "es.reflect.is-extensible", + "es.reflect.own-keys", + "es.reflect.prevent-extensions", + "es.reflect.set", + "es.reflect.set-prototype-of", + "es.reflect.to-string-tag", + "esnext.reflect.define-metadata", + "esnext.reflect.delete-metadata", + "esnext.reflect.get-metadata", + "esnext.reflect.get-metadata-keys", + "esnext.reflect.get-own-metadata", + "esnext.reflect.get-own-metadata-keys", + "esnext.reflect.has-metadata", + "esnext.reflect.has-own-metadata", + "esnext.reflect.metadata" + ], + "core-js/full/reflect/apply": [ + "es.reflect.apply" + ], + "core-js/full/reflect/construct": [ + "es.reflect.construct" + ], + "core-js/full/reflect/define-metadata": [ + "esnext.reflect.define-metadata" + ], + "core-js/full/reflect/define-property": [ + "es.reflect.define-property" + ], + "core-js/full/reflect/delete-metadata": [ + "esnext.reflect.delete-metadata" + ], + "core-js/full/reflect/delete-property": [ + "es.reflect.delete-property" + ], + "core-js/full/reflect/get": [ + "es.reflect.get" + ], + "core-js/full/reflect/get-metadata": [ + "esnext.reflect.get-metadata" + ], + "core-js/full/reflect/get-metadata-keys": [ + "esnext.reflect.get-metadata-keys" + ], + "core-js/full/reflect/get-own-metadata": [ + "esnext.reflect.get-own-metadata" + ], + "core-js/full/reflect/get-own-metadata-keys": [ + "esnext.reflect.get-own-metadata-keys" + ], + "core-js/full/reflect/get-own-property-descriptor": [ + "es.reflect.get-own-property-descriptor" + ], + "core-js/full/reflect/get-prototype-of": [ + "es.reflect.get-prototype-of" + ], + "core-js/full/reflect/has": [ + "es.reflect.has" + ], + "core-js/full/reflect/has-metadata": [ + "esnext.reflect.has-metadata" + ], + "core-js/full/reflect/has-own-metadata": [ + "esnext.reflect.has-own-metadata" + ], + "core-js/full/reflect/is-extensible": [ + "es.reflect.is-extensible" + ], + "core-js/full/reflect/metadata": [ + "esnext.reflect.metadata" + ], + "core-js/full/reflect/own-keys": [ + "es.reflect.own-keys" + ], + "core-js/full/reflect/prevent-extensions": [ + "es.reflect.prevent-extensions" + ], + "core-js/full/reflect/set": [ + "es.reflect.set" + ], + "core-js/full/reflect/set-prototype-of": [ + "es.reflect.set-prototype-of" + ], + "core-js/full/reflect/to-string-tag": [ + "es.reflect.to-string-tag" + ], + "core-js/full/regexp": [ + "es.regexp.constructor", + "es.regexp.escape", + "es.regexp.dot-all", + "es.regexp.exec", + "es.regexp.flags", + "es.regexp.sticky", + "es.regexp.test", + "es.regexp.to-string", + "es.string.match", + "es.string.replace", + "es.string.search", + "es.string.split", + "esnext.regexp.escape" + ], + "core-js/full/regexp/constructor": [ + "es.regexp.constructor", + "es.regexp.dot-all", + "es.regexp.exec", + "es.regexp.sticky" + ], + "core-js/full/regexp/dot-all": [ + "es.regexp.constructor", + "es.regexp.dot-all", + "es.regexp.exec" + ], + "core-js/full/regexp/escape": [ + "es.regexp.escape", + "esnext.regexp.escape" + ], + "core-js/full/regexp/flags": [ + "es.regexp.flags" + ], + "core-js/full/regexp/match": [ + "es.regexp.exec", + "es.string.match" + ], + "core-js/full/regexp/replace": [ + "es.regexp.exec", + "es.string.replace" + ], + "core-js/full/regexp/search": [ + "es.regexp.exec", + "es.string.search" + ], + "core-js/full/regexp/split": [ + "es.regexp.exec", + "es.string.split" + ], + "core-js/full/regexp/sticky": [ + "es.regexp.constructor", + "es.regexp.exec", + "es.regexp.sticky" + ], + "core-js/full/regexp/test": [ + "es.regexp.exec", + "es.regexp.test" + ], + "core-js/full/regexp/to-string": [ + "es.regexp.to-string" + ], + "core-js/full/self": [ + "web.self" + ], + "core-js/full/set": [ + "es.array.iterator", + "es.object.to-string", + "es.set", + "es.set.difference.v2", + "es.set.intersection.v2", + "es.set.is-disjoint-from.v2", + "es.set.is-subset-of.v2", + "es.set.is-superset-of.v2", + "es.set.symmetric-difference.v2", + "es.set.union.v2", + "es.string.iterator", + "esnext.set.add-all", + "esnext.set.delete-all", + "esnext.set.difference.v2", + "esnext.set.difference", + "esnext.set.every", + "esnext.set.filter", + "esnext.set.find", + "esnext.set.from", + "esnext.set.intersection.v2", + "esnext.set.intersection", + "esnext.set.is-disjoint-from.v2", + "esnext.set.is-disjoint-from", + "esnext.set.is-subset-of.v2", + "esnext.set.is-subset-of", + "esnext.set.is-superset-of.v2", + "esnext.set.is-superset-of", + "esnext.set.join", + "esnext.set.map", + "esnext.set.of", + "esnext.set.reduce", + "esnext.set.some", + "esnext.set.symmetric-difference.v2", + "esnext.set.symmetric-difference", + "esnext.set.union.v2", + "esnext.set.union", + "web.dom-collections.iterator" + ], + "core-js/full/set-immediate": [ + "web.immediate" + ], + "core-js/full/set-interval": [ + "web.timers" + ], + "core-js/full/set-timeout": [ + "web.timers" + ], + "core-js/full/set/add-all": [ + "es.set", + "esnext.set.add-all" + ], + "core-js/full/set/delete-all": [ + "es.set", + "esnext.set.delete-all" + ], + "core-js/full/set/difference": [ + "es.array.iterator", + "es.set", + "es.set.difference.v2", + "es.string.iterator", + "esnext.set.difference.v2", + "esnext.set.difference", + "web.dom-collections.iterator" + ], + "core-js/full/set/every": [ + "es.set", + "esnext.set.every" + ], + "core-js/full/set/filter": [ + "es.set", + "esnext.set.filter" + ], + "core-js/full/set/find": [ + "es.set", + "esnext.set.find" + ], + "core-js/full/set/from": [ + "es.array.iterator", + "es.object.to-string", + "es.set", + "es.string.iterator", + "esnext.set.add-all", + "esnext.set.delete-all", + "esnext.set.difference.v2", + "esnext.set.every", + "esnext.set.filter", + "esnext.set.find", + "esnext.set.from", + "esnext.set.intersection.v2", + "esnext.set.is-disjoint-from.v2", + "esnext.set.is-subset-of.v2", + "esnext.set.is-superset-of.v2", + "esnext.set.join", + "esnext.set.map", + "esnext.set.reduce", + "esnext.set.some", + "esnext.set.symmetric-difference.v2", + "esnext.set.union.v2", + "web.dom-collections.iterator" + ], + "core-js/full/set/intersection": [ + "es.array.iterator", + "es.set", + "es.set.intersection.v2", + "es.string.iterator", + "esnext.set.intersection.v2", + "esnext.set.intersection", + "web.dom-collections.iterator" + ], + "core-js/full/set/is-disjoint-from": [ + "es.array.iterator", + "es.set", + "es.set.is-disjoint-from.v2", + "es.string.iterator", + "esnext.set.is-disjoint-from.v2", + "esnext.set.is-disjoint-from", + "web.dom-collections.iterator" + ], + "core-js/full/set/is-subset-of": [ + "es.array.iterator", + "es.set", + "es.set.is-subset-of.v2", + "es.string.iterator", + "esnext.set.is-subset-of.v2", + "esnext.set.is-subset-of", + "web.dom-collections.iterator" + ], + "core-js/full/set/is-superset-of": [ + "es.array.iterator", + "es.set", + "es.set.is-superset-of.v2", + "es.string.iterator", + "esnext.set.is-superset-of.v2", + "esnext.set.is-superset-of", + "web.dom-collections.iterator" + ], + "core-js/full/set/join": [ + "es.set", + "esnext.set.join" + ], + "core-js/full/set/map": [ + "es.set", + "esnext.set.map" + ], + "core-js/full/set/of": [ + "es.array.iterator", + "es.object.to-string", + "es.set", + "esnext.set.add-all", + "esnext.set.delete-all", + "esnext.set.difference.v2", + "esnext.set.every", + "esnext.set.filter", + "esnext.set.find", + "esnext.set.intersection.v2", + "esnext.set.is-disjoint-from.v2", + "esnext.set.is-subset-of.v2", + "esnext.set.is-superset-of.v2", + "esnext.set.join", + "esnext.set.map", + "esnext.set.of", + "esnext.set.reduce", + "esnext.set.some", + "esnext.set.symmetric-difference.v2", + "esnext.set.union.v2" + ], + "core-js/full/set/reduce": [ + "es.set", + "esnext.set.reduce" + ], + "core-js/full/set/some": [ + "es.set", + "esnext.set.some" + ], + "core-js/full/set/symmetric-difference": [ + "es.array.iterator", + "es.set", + "es.set.symmetric-difference.v2", + "es.string.iterator", + "esnext.set.symmetric-difference.v2", + "esnext.set.symmetric-difference", + "web.dom-collections.iterator" + ], + "core-js/full/set/union": [ + "es.array.iterator", + "es.set", + "es.set.union.v2", + "es.string.iterator", + "esnext.set.union.v2", + "esnext.set.union", + "web.dom-collections.iterator" + ], + "core-js/full/string": [ + "es.object.to-string", + "es.regexp.exec", + "es.string.at-alternative", + "es.string.code-point-at", + "es.string.ends-with", + "es.string.from-code-point", + "es.string.includes", + "es.string.is-well-formed", + "es.string.iterator", + "es.string.match", + "es.string.match-all", + "es.string.pad-end", + "es.string.pad-start", + "es.string.raw", + "es.string.repeat", + "es.string.replace", + "es.string.replace-all", + "es.string.search", + "es.string.split", + "es.string.starts-with", + "es.string.substr", + "es.string.to-well-formed", + "es.string.trim", + "es.string.trim-end", + "es.string.trim-start", + "es.string.anchor", + "es.string.big", + "es.string.blink", + "es.string.bold", + "es.string.fixed", + "es.string.fontcolor", + "es.string.fontsize", + "es.string.italics", + "es.string.link", + "es.string.small", + "es.string.strike", + "es.string.sub", + "es.string.sup", + "es.weak-map", + "esnext.string.at", + "esnext.string.cooked", + "esnext.string.code-points", + "esnext.string.dedent", + "esnext.string.is-well-formed", + "esnext.string.match-all", + "esnext.string.replace-all", + "esnext.string.to-well-formed" + ], + "core-js/full/string/anchor": [ + "es.string.anchor" + ], + "core-js/full/string/at": [ + "es.string.at-alternative", + "esnext.string.at" + ], + "core-js/full/string/big": [ + "es.string.big" + ], + "core-js/full/string/blink": [ + "es.string.blink" + ], + "core-js/full/string/bold": [ + "es.string.bold" + ], + "core-js/full/string/code-point-at": [ + "es.string.code-point-at" + ], + "core-js/full/string/code-points": [ + "es.object.to-string", + "esnext.string.code-points" + ], + "core-js/full/string/cooked": [ + "esnext.string.cooked" + ], + "core-js/full/string/dedent": [ + "es.string.from-code-point", + "es.weak-map", + "esnext.string.dedent" + ], + "core-js/full/string/ends-with": [ + "es.string.ends-with" + ], + "core-js/full/string/fixed": [ + "es.string.fixed" + ], + "core-js/full/string/fontcolor": [ + "es.string.fontcolor" + ], + "core-js/full/string/fontsize": [ + "es.string.fontsize" + ], + "core-js/full/string/from-code-point": [ + "es.string.from-code-point" + ], + "core-js/full/string/includes": [ + "es.string.includes" + ], + "core-js/full/string/is-well-formed": [ + "es.string.is-well-formed", + "esnext.string.is-well-formed" + ], + "core-js/full/string/italics": [ + "es.string.italics" + ], + "core-js/full/string/iterator": [ + "es.object.to-string", + "es.string.iterator" + ], + "core-js/full/string/link": [ + "es.string.link" + ], + "core-js/full/string/match": [ + "es.regexp.exec", + "es.string.match" + ], + "core-js/full/string/match-all": [ + "es.object.to-string", + "es.regexp.exec", + "es.string.match-all", + "esnext.string.match-all" + ], + "core-js/full/string/pad-end": [ + "es.string.pad-end" + ], + "core-js/full/string/pad-start": [ + "es.string.pad-start" + ], + "core-js/full/string/raw": [ + "es.string.raw" + ], + "core-js/full/string/repeat": [ + "es.string.repeat" + ], + "core-js/full/string/replace": [ + "es.regexp.exec", + "es.string.replace" + ], + "core-js/full/string/replace-all": [ + "es.regexp.exec", + "es.string.replace", + "es.string.replace-all", + "esnext.string.replace-all" + ], + "core-js/full/string/search": [ + "es.regexp.exec", + "es.string.search" + ], + "core-js/full/string/small": [ + "es.string.small" + ], + "core-js/full/string/split": [ + "es.regexp.exec", + "es.string.split" + ], + "core-js/full/string/starts-with": [ + "es.string.starts-with" + ], + "core-js/full/string/strike": [ + "es.string.strike" + ], + "core-js/full/string/sub": [ + "es.string.sub" + ], + "core-js/full/string/substr": [ + "es.string.substr" + ], + "core-js/full/string/sup": [ + "es.string.sup" + ], + "core-js/full/string/to-well-formed": [ + "es.string.to-well-formed", + "esnext.string.to-well-formed" + ], + "core-js/full/string/trim": [ + "es.string.trim" + ], + "core-js/full/string/trim-end": [ + "es.string.trim-end" + ], + "core-js/full/string/trim-left": [ + "es.string.trim-start" + ], + "core-js/full/string/trim-right": [ + "es.string.trim-end" + ], + "core-js/full/string/trim-start": [ + "es.string.trim-start" + ], + "core-js/full/string/virtual": [ + "es.object.to-string", + "es.regexp.exec", + "es.string.at-alternative", + "es.string.code-point-at", + "es.string.ends-with", + "es.string.includes", + "es.string.iterator", + "es.string.match", + "es.string.match-all", + "es.string.pad-end", + "es.string.pad-start", + "es.string.repeat", + "es.string.replace", + "es.string.replace-all", + "es.string.search", + "es.string.split", + "es.string.starts-with", + "es.string.substr", + "es.string.trim", + "es.string.trim-end", + "es.string.trim-start", + "es.string.anchor", + "es.string.big", + "es.string.blink", + "es.string.bold", + "es.string.fixed", + "es.string.fontcolor", + "es.string.fontsize", + "es.string.italics", + "es.string.link", + "es.string.small", + "es.string.strike", + "es.string.sub", + "es.string.sup", + "esnext.string.at", + "esnext.string.code-points", + "esnext.string.is-well-formed", + "esnext.string.match-all", + "esnext.string.replace-all", + "esnext.string.to-well-formed" + ], + "core-js/full/string/virtual/anchor": [ + "es.string.anchor" + ], + "core-js/full/string/virtual/at": [ + "es.string.at-alternative", + "esnext.string.at" + ], + "core-js/full/string/virtual/big": [ + "es.string.big" + ], + "core-js/full/string/virtual/blink": [ + "es.string.blink" + ], + "core-js/full/string/virtual/bold": [ + "es.string.bold" + ], + "core-js/full/string/virtual/code-point-at": [ + "es.string.code-point-at" + ], + "core-js/full/string/virtual/code-points": [ + "es.object.to-string", + "esnext.string.code-points" + ], + "core-js/full/string/virtual/ends-with": [ + "es.string.ends-with" + ], + "core-js/full/string/virtual/fixed": [ + "es.string.fixed" + ], + "core-js/full/string/virtual/fontcolor": [ + "es.string.fontcolor" + ], + "core-js/full/string/virtual/fontsize": [ + "es.string.fontsize" + ], + "core-js/full/string/virtual/includes": [ + "es.string.includes" + ], + "core-js/full/string/virtual/is-well-formed": [ + "es.string.is-well-formed", + "esnext.string.is-well-formed" + ], + "core-js/full/string/virtual/italics": [ + "es.string.italics" + ], + "core-js/full/string/virtual/iterator": [ + "es.object.to-string", + "es.string.iterator" + ], + "core-js/full/string/virtual/link": [ + "es.string.link" + ], + "core-js/full/string/virtual/match-all": [ + "es.object.to-string", + "es.regexp.exec", + "es.string.match-all", + "esnext.string.match-all" + ], + "core-js/full/string/virtual/pad-end": [ + "es.string.pad-end" + ], + "core-js/full/string/virtual/pad-start": [ + "es.string.pad-start" + ], + "core-js/full/string/virtual/repeat": [ + "es.string.repeat" + ], + "core-js/full/string/virtual/replace-all": [ + "es.regexp.exec", + "es.string.replace", + "es.string.replace-all", + "esnext.string.replace-all" + ], + "core-js/full/string/virtual/small": [ + "es.string.small" + ], + "core-js/full/string/virtual/starts-with": [ + "es.string.starts-with" + ], + "core-js/full/string/virtual/strike": [ + "es.string.strike" + ], + "core-js/full/string/virtual/sub": [ + "es.string.sub" + ], + "core-js/full/string/virtual/substr": [ + "es.string.substr" + ], + "core-js/full/string/virtual/sup": [ + "es.string.sup" + ], + "core-js/full/string/virtual/to-well-formed": [ + "es.string.to-well-formed", + "esnext.string.to-well-formed" + ], + "core-js/full/string/virtual/trim": [ + "es.string.trim" + ], + "core-js/full/string/virtual/trim-end": [ + "es.string.trim-end" + ], + "core-js/full/string/virtual/trim-left": [ + "es.string.trim-start" + ], + "core-js/full/string/virtual/trim-right": [ + "es.string.trim-end" + ], + "core-js/full/string/virtual/trim-start": [ + "es.string.trim-start" + ], + "core-js/full/structured-clone": [ + "es.error.to-string", + "es.array.iterator", + "es.map", + "es.object.keys", + "es.object.to-string", + "es.set", + "web.dom-exception.constructor", + "web.dom-exception.stack", + "web.dom-exception.to-string-tag", + "web.structured-clone" + ], + "core-js/full/suppressed-error": [], + "core-js/full/symbol": [ + "es.symbol", + "es.symbol.description", + "es.symbol.async-dispose", + "es.symbol.async-iterator", + "es.symbol.dispose", + "es.symbol.has-instance", + "es.symbol.is-concat-spreadable", + "es.symbol.iterator", + "es.symbol.match", + "es.symbol.match-all", + "es.symbol.replace", + "es.symbol.search", + "es.symbol.species", + "es.symbol.split", + "es.symbol.to-primitive", + "es.symbol.to-string-tag", + "es.symbol.unscopables", + "es.array.concat", + "es.json.to-string-tag", + "es.math.to-string-tag", + "es.object.to-string", + "es.reflect.to-string-tag", + "esnext.function.metadata", + "esnext.symbol.async-dispose", + "esnext.symbol.custom-matcher", + "esnext.symbol.dispose", + "esnext.symbol.is-registered-symbol", + "esnext.symbol.is-registered", + "esnext.symbol.is-well-known-symbol", + "esnext.symbol.is-well-known", + "esnext.symbol.matcher", + "esnext.symbol.metadata", + "esnext.symbol.metadata-key", + "esnext.symbol.observable", + "esnext.symbol.pattern-match", + "esnext.symbol.replace-all", + "web.dom-collections.iterator" + ], + "core-js/full/symbol/async-dispose": [ + "es.symbol.async-dispose", + "esnext.symbol.async-dispose" + ], + "core-js/full/symbol/async-iterator": [ + "es.symbol.async-iterator" + ], + "core-js/full/symbol/custom-matcher": [ + "esnext.symbol.custom-matcher" + ], + "core-js/full/symbol/description": [ + "es.symbol.description" + ], + "core-js/full/symbol/dispose": [ + "es.symbol.dispose", + "esnext.symbol.dispose" + ], + "core-js/full/symbol/for": [ + "es.symbol" + ], + "core-js/full/symbol/has-instance": [ + "es.symbol.has-instance", + "es.function.has-instance" + ], + "core-js/full/symbol/is-concat-spreadable": [ + "es.symbol.is-concat-spreadable", + "es.array.concat" + ], + "core-js/full/symbol/is-registered": [ + "es.symbol", + "esnext.symbol.is-registered" + ], + "core-js/full/symbol/is-registered-symbol": [ + "es.symbol", + "esnext.symbol.is-registered-symbol" + ], + "core-js/full/symbol/is-well-known": [ + "es.symbol", + "esnext.symbol.is-well-known" + ], + "core-js/full/symbol/is-well-known-symbol": [ + "es.symbol", + "esnext.symbol.is-well-known-symbol" + ], + "core-js/full/symbol/iterator": [ + "es.symbol.iterator", + "es.array.iterator", + "es.object.to-string", + "es.string.iterator", + "web.dom-collections.iterator" + ], + "core-js/full/symbol/key-for": [ + "es.symbol" + ], + "core-js/full/symbol/match": [ + "es.symbol.match", + "es.regexp.exec", + "es.string.match" + ], + "core-js/full/symbol/match-all": [ + "es.symbol.match-all", + "es.object.to-string", + "es.regexp.exec", + "es.string.match-all" + ], + "core-js/full/symbol/matcher": [ + "esnext.symbol.matcher" + ], + "core-js/full/symbol/metadata": [ + "esnext.function.metadata", + "esnext.symbol.metadata" + ], + "core-js/full/symbol/metadata-key": [ + "esnext.symbol.metadata-key" + ], + "core-js/full/symbol/observable": [ + "esnext.symbol.observable" + ], + "core-js/full/symbol/pattern-match": [ + "esnext.symbol.pattern-match" + ], + "core-js/full/symbol/replace": [ + "es.symbol.replace", + "es.regexp.exec", + "es.string.replace" + ], + "core-js/full/symbol/replace-all": [ + "esnext.symbol.replace-all" + ], + "core-js/full/symbol/search": [ + "es.symbol.search", + "es.regexp.exec", + "es.string.search" + ], + "core-js/full/symbol/species": [ + "es.symbol.species" + ], + "core-js/full/symbol/split": [ + "es.symbol.split", + "es.regexp.exec", + "es.string.split" + ], + "core-js/full/symbol/to-primitive": [ + "es.symbol.to-primitive", + "es.date.to-primitive" + ], + "core-js/full/symbol/to-string-tag": [ + "es.symbol.to-string-tag", + "es.json.to-string-tag", + "es.math.to-string-tag", + "es.object.to-string", + "es.reflect.to-string-tag" + ], + "core-js/full/symbol/unscopables": [ + "es.symbol.unscopables" + ], + "core-js/full/typed-array": [ + "es.map", + "es.object.to-string", + "es.promise", + "es.string.iterator", + "es.typed-array.float32-array", + "es.typed-array.float64-array", + "es.typed-array.int8-array", + "es.typed-array.int16-array", + "es.typed-array.int32-array", + "es.typed-array.uint8-array", + "es.typed-array.uint8-clamped-array", + "es.typed-array.uint16-array", + "es.typed-array.uint32-array", + "es.typed-array.at", + "es.typed-array.copy-within", + "es.typed-array.every", + "es.typed-array.fill", + "es.typed-array.filter", + "es.typed-array.find", + "es.typed-array.find-index", + "es.typed-array.find-last", + "es.typed-array.find-last-index", + "es.typed-array.for-each", + "es.typed-array.from", + "es.typed-array.includes", + "es.typed-array.index-of", + "es.typed-array.iterator", + "es.typed-array.join", + "es.typed-array.last-index-of", + "es.typed-array.map", + "es.typed-array.of", + "es.typed-array.reduce", + "es.typed-array.reduce-right", + "es.typed-array.reverse", + "es.typed-array.set", + "es.typed-array.slice", + "es.typed-array.some", + "es.typed-array.sort", + "es.typed-array.subarray", + "es.typed-array.to-locale-string", + "es.typed-array.to-reversed", + "es.typed-array.to-sorted", + "es.typed-array.to-string", + "es.typed-array.with", + "es.uint8-array.from-base64", + "es.uint8-array.from-hex", + "es.uint8-array.set-from-base64", + "es.uint8-array.set-from-hex", + "es.uint8-array.to-base64", + "es.uint8-array.to-hex", + "esnext.typed-array.from-async", + "esnext.typed-array.at", + "esnext.typed-array.filter-out", + "esnext.typed-array.filter-reject", + "esnext.typed-array.find-last", + "esnext.typed-array.find-last-index", + "esnext.typed-array.group-by", + "esnext.typed-array.to-reversed", + "esnext.typed-array.to-sorted", + "esnext.typed-array.to-spliced", + "esnext.typed-array.unique-by", + "esnext.typed-array.with", + "esnext.uint8-array.from-base64", + "esnext.uint8-array.from-hex", + "esnext.uint8-array.set-from-base64", + "esnext.uint8-array.set-from-hex", + "esnext.uint8-array.to-base64", + "esnext.uint8-array.to-hex" + ], + "core-js/full/typed-array/at": [ + "es.typed-array.at", + "esnext.typed-array.at" + ], + "core-js/full/typed-array/copy-within": [ + "es.typed-array.copy-within" + ], + "core-js/full/typed-array/entries": [ + "es.object.to-string", + "es.typed-array.iterator" + ], + "core-js/full/typed-array/every": [ + "es.typed-array.every" + ], + "core-js/full/typed-array/fill": [ + "es.typed-array.fill" + ], + "core-js/full/typed-array/filter": [ + "es.typed-array.filter" + ], + "core-js/full/typed-array/filter-out": [ + "esnext.typed-array.filter-out" + ], + "core-js/full/typed-array/filter-reject": [ + "esnext.typed-array.filter-reject" + ], + "core-js/full/typed-array/find": [ + "es.typed-array.find" + ], + "core-js/full/typed-array/find-index": [ + "es.typed-array.find-index" + ], + "core-js/full/typed-array/find-last": [ + "es.typed-array.find-last", + "esnext.typed-array.find-last" + ], + "core-js/full/typed-array/find-last-index": [ + "es.typed-array.find-last-index", + "esnext.typed-array.find-last-index" + ], + "core-js/full/typed-array/float32-array": [ + "es.array-buffer.constructor", + "es.array-buffer.slice", + "es.map", + "es.object.to-string", + "es.promise", + "es.string.iterator", + "es.typed-array.float32-array", + "es.typed-array.at", + "es.typed-array.copy-within", + "es.typed-array.every", + "es.typed-array.fill", + "es.typed-array.filter", + "es.typed-array.find", + "es.typed-array.find-index", + "es.typed-array.find-last", + "es.typed-array.find-last-index", + "es.typed-array.for-each", + "es.typed-array.from", + "es.typed-array.includes", + "es.typed-array.index-of", + "es.typed-array.iterator", + "es.typed-array.join", + "es.typed-array.last-index-of", + "es.typed-array.map", + "es.typed-array.of", + "es.typed-array.reduce", + "es.typed-array.reduce-right", + "es.typed-array.reverse", + "es.typed-array.set", + "es.typed-array.slice", + "es.typed-array.some", + "es.typed-array.sort", + "es.typed-array.subarray", + "es.typed-array.to-locale-string", + "es.typed-array.to-reversed", + "es.typed-array.to-sorted", + "es.typed-array.to-string", + "es.typed-array.with", + "es.uint8-array.from-base64", + "es.uint8-array.from-hex", + "es.uint8-array.set-from-base64", + "es.uint8-array.set-from-hex", + "es.uint8-array.to-base64", + "es.uint8-array.to-hex", + "esnext.typed-array.from-async", + "esnext.typed-array.at", + "esnext.typed-array.filter-out", + "esnext.typed-array.filter-reject", + "esnext.typed-array.find-last", + "esnext.typed-array.find-last-index", + "esnext.typed-array.group-by", + "esnext.typed-array.to-reversed", + "esnext.typed-array.to-sorted", + "esnext.typed-array.to-spliced", + "esnext.typed-array.unique-by", + "esnext.typed-array.with", + "esnext.uint8-array.from-base64", + "esnext.uint8-array.from-hex", + "esnext.uint8-array.set-from-base64", + "esnext.uint8-array.set-from-hex", + "esnext.uint8-array.to-base64", + "esnext.uint8-array.to-hex" + ], + "core-js/full/typed-array/float64-array": [ + "es.array-buffer.constructor", + "es.array-buffer.slice", + "es.map", + "es.object.to-string", + "es.promise", + "es.string.iterator", + "es.typed-array.float64-array", + "es.typed-array.at", + "es.typed-array.copy-within", + "es.typed-array.every", + "es.typed-array.fill", + "es.typed-array.filter", + "es.typed-array.find", + "es.typed-array.find-index", + "es.typed-array.find-last", + "es.typed-array.find-last-index", + "es.typed-array.for-each", + "es.typed-array.from", + "es.typed-array.includes", + "es.typed-array.index-of", + "es.typed-array.iterator", + "es.typed-array.join", + "es.typed-array.last-index-of", + "es.typed-array.map", + "es.typed-array.of", + "es.typed-array.reduce", + "es.typed-array.reduce-right", + "es.typed-array.reverse", + "es.typed-array.set", + "es.typed-array.slice", + "es.typed-array.some", + "es.typed-array.sort", + "es.typed-array.subarray", + "es.typed-array.to-locale-string", + "es.typed-array.to-reversed", + "es.typed-array.to-sorted", + "es.typed-array.to-string", + "es.typed-array.with", + "es.uint8-array.from-base64", + "es.uint8-array.from-hex", + "es.uint8-array.set-from-base64", + "es.uint8-array.set-from-hex", + "es.uint8-array.to-base64", + "es.uint8-array.to-hex", + "esnext.typed-array.from-async", + "esnext.typed-array.at", + "esnext.typed-array.filter-out", + "esnext.typed-array.filter-reject", + "esnext.typed-array.find-last", + "esnext.typed-array.find-last-index", + "esnext.typed-array.group-by", + "esnext.typed-array.to-reversed", + "esnext.typed-array.to-sorted", + "esnext.typed-array.to-spliced", + "esnext.typed-array.unique-by", + "esnext.typed-array.with", + "esnext.uint8-array.from-base64", + "esnext.uint8-array.from-hex", + "esnext.uint8-array.set-from-base64", + "esnext.uint8-array.set-from-hex", + "esnext.uint8-array.to-base64", + "esnext.uint8-array.to-hex" + ], + "core-js/full/typed-array/for-each": [ + "es.typed-array.for-each" + ], + "core-js/full/typed-array/from": [ + "es.typed-array.from" + ], + "core-js/full/typed-array/from-async": [ + "esnext.typed-array.from-async" + ], + "core-js/full/typed-array/from-base64": [ + "es.uint8-array.from-base64", + "esnext.uint8-array.from-base64" + ], + "core-js/full/typed-array/from-hex": [ + "es.uint8-array.from-hex", + "esnext.uint8-array.from-hex" + ], + "core-js/full/typed-array/group-by": [ + "esnext.typed-array.group-by" + ], + "core-js/full/typed-array/includes": [ + "es.typed-array.includes" + ], + "core-js/full/typed-array/index-of": [ + "es.typed-array.index-of" + ], + "core-js/full/typed-array/int16-array": [ + "es.array-buffer.constructor", + "es.array-buffer.slice", + "es.map", + "es.object.to-string", + "es.promise", + "es.string.iterator", + "es.typed-array.int16-array", + "es.typed-array.at", + "es.typed-array.copy-within", + "es.typed-array.every", + "es.typed-array.fill", + "es.typed-array.filter", + "es.typed-array.find", + "es.typed-array.find-index", + "es.typed-array.find-last", + "es.typed-array.find-last-index", + "es.typed-array.for-each", + "es.typed-array.from", + "es.typed-array.includes", + "es.typed-array.index-of", + "es.typed-array.iterator", + "es.typed-array.join", + "es.typed-array.last-index-of", + "es.typed-array.map", + "es.typed-array.of", + "es.typed-array.reduce", + "es.typed-array.reduce-right", + "es.typed-array.reverse", + "es.typed-array.set", + "es.typed-array.slice", + "es.typed-array.some", + "es.typed-array.sort", + "es.typed-array.subarray", + "es.typed-array.to-locale-string", + "es.typed-array.to-reversed", + "es.typed-array.to-sorted", + "es.typed-array.to-string", + "es.typed-array.with", + "es.uint8-array.from-base64", + "es.uint8-array.from-hex", + "es.uint8-array.set-from-base64", + "es.uint8-array.set-from-hex", + "es.uint8-array.to-base64", + "es.uint8-array.to-hex", + "esnext.typed-array.from-async", + "esnext.typed-array.at", + "esnext.typed-array.filter-out", + "esnext.typed-array.filter-reject", + "esnext.typed-array.find-last", + "esnext.typed-array.find-last-index", + "esnext.typed-array.group-by", + "esnext.typed-array.to-reversed", + "esnext.typed-array.to-sorted", + "esnext.typed-array.to-spliced", + "esnext.typed-array.unique-by", + "esnext.typed-array.with", + "esnext.uint8-array.from-base64", + "esnext.uint8-array.from-hex", + "esnext.uint8-array.set-from-base64", + "esnext.uint8-array.set-from-hex", + "esnext.uint8-array.to-base64", + "esnext.uint8-array.to-hex" + ], + "core-js/full/typed-array/int32-array": [ + "es.array-buffer.constructor", + "es.array-buffer.slice", + "es.map", + "es.object.to-string", + "es.promise", + "es.string.iterator", + "es.typed-array.int32-array", + "es.typed-array.at", + "es.typed-array.copy-within", + "es.typed-array.every", + "es.typed-array.fill", + "es.typed-array.filter", + "es.typed-array.find", + "es.typed-array.find-index", + "es.typed-array.find-last", + "es.typed-array.find-last-index", + "es.typed-array.for-each", + "es.typed-array.from", + "es.typed-array.includes", + "es.typed-array.index-of", + "es.typed-array.iterator", + "es.typed-array.join", + "es.typed-array.last-index-of", + "es.typed-array.map", + "es.typed-array.of", + "es.typed-array.reduce", + "es.typed-array.reduce-right", + "es.typed-array.reverse", + "es.typed-array.set", + "es.typed-array.slice", + "es.typed-array.some", + "es.typed-array.sort", + "es.typed-array.subarray", + "es.typed-array.to-locale-string", + "es.typed-array.to-reversed", + "es.typed-array.to-sorted", + "es.typed-array.to-string", + "es.typed-array.with", + "es.uint8-array.from-base64", + "es.uint8-array.from-hex", + "es.uint8-array.set-from-base64", + "es.uint8-array.set-from-hex", + "es.uint8-array.to-base64", + "es.uint8-array.to-hex", + "esnext.typed-array.from-async", + "esnext.typed-array.at", + "esnext.typed-array.filter-out", + "esnext.typed-array.filter-reject", + "esnext.typed-array.find-last", + "esnext.typed-array.find-last-index", + "esnext.typed-array.group-by", + "esnext.typed-array.to-reversed", + "esnext.typed-array.to-sorted", + "esnext.typed-array.to-spliced", + "esnext.typed-array.unique-by", + "esnext.typed-array.with", + "esnext.uint8-array.from-base64", + "esnext.uint8-array.from-hex", + "esnext.uint8-array.set-from-base64", + "esnext.uint8-array.set-from-hex", + "esnext.uint8-array.to-base64", + "esnext.uint8-array.to-hex" + ], + "core-js/full/typed-array/int8-array": [ + "es.array-buffer.constructor", + "es.array-buffer.slice", + "es.map", + "es.object.to-string", + "es.promise", + "es.string.iterator", + "es.typed-array.int8-array", + "es.typed-array.at", + "es.typed-array.copy-within", + "es.typed-array.every", + "es.typed-array.fill", + "es.typed-array.filter", + "es.typed-array.find", + "es.typed-array.find-index", + "es.typed-array.find-last", + "es.typed-array.find-last-index", + "es.typed-array.for-each", + "es.typed-array.from", + "es.typed-array.includes", + "es.typed-array.index-of", + "es.typed-array.iterator", + "es.typed-array.join", + "es.typed-array.last-index-of", + "es.typed-array.map", + "es.typed-array.of", + "es.typed-array.reduce", + "es.typed-array.reduce-right", + "es.typed-array.reverse", + "es.typed-array.set", + "es.typed-array.slice", + "es.typed-array.some", + "es.typed-array.sort", + "es.typed-array.subarray", + "es.typed-array.to-locale-string", + "es.typed-array.to-reversed", + "es.typed-array.to-sorted", + "es.typed-array.to-string", + "es.typed-array.with", + "es.uint8-array.from-base64", + "es.uint8-array.from-hex", + "es.uint8-array.set-from-base64", + "es.uint8-array.set-from-hex", + "es.uint8-array.to-base64", + "es.uint8-array.to-hex", + "esnext.typed-array.from-async", + "esnext.typed-array.at", + "esnext.typed-array.filter-out", + "esnext.typed-array.filter-reject", + "esnext.typed-array.find-last", + "esnext.typed-array.find-last-index", + "esnext.typed-array.group-by", + "esnext.typed-array.to-reversed", + "esnext.typed-array.to-sorted", + "esnext.typed-array.to-spliced", + "esnext.typed-array.unique-by", + "esnext.typed-array.with", + "esnext.uint8-array.from-base64", + "esnext.uint8-array.from-hex", + "esnext.uint8-array.set-from-base64", + "esnext.uint8-array.set-from-hex", + "esnext.uint8-array.to-base64", + "esnext.uint8-array.to-hex" + ], + "core-js/full/typed-array/iterator": [ + "es.object.to-string", + "es.typed-array.iterator" + ], + "core-js/full/typed-array/join": [ + "es.typed-array.join" + ], + "core-js/full/typed-array/keys": [ + "es.object.to-string", + "es.typed-array.iterator" + ], + "core-js/full/typed-array/last-index-of": [ + "es.typed-array.last-index-of" + ], + "core-js/full/typed-array/map": [ + "es.typed-array.map" + ], + "core-js/full/typed-array/methods": [ + "es.map", + "es.object.to-string", + "es.promise", + "es.string.iterator", + "es.typed-array.at", + "es.typed-array.copy-within", + "es.typed-array.every", + "es.typed-array.fill", + "es.typed-array.filter", + "es.typed-array.find", + "es.typed-array.find-index", + "es.typed-array.find-last", + "es.typed-array.find-last-index", + "es.typed-array.for-each", + "es.typed-array.from", + "es.typed-array.includes", + "es.typed-array.index-of", + "es.typed-array.iterator", + "es.typed-array.join", + "es.typed-array.last-index-of", + "es.typed-array.map", + "es.typed-array.of", + "es.typed-array.reduce", + "es.typed-array.reduce-right", + "es.typed-array.reverse", + "es.typed-array.set", + "es.typed-array.slice", + "es.typed-array.some", + "es.typed-array.sort", + "es.typed-array.subarray", + "es.typed-array.to-locale-string", + "es.typed-array.to-reversed", + "es.typed-array.to-sorted", + "es.typed-array.to-string", + "es.typed-array.with", + "es.uint8-array.from-base64", + "es.uint8-array.from-hex", + "es.uint8-array.set-from-base64", + "es.uint8-array.set-from-hex", + "es.uint8-array.to-base64", + "es.uint8-array.to-hex", + "esnext.typed-array.from-async", + "esnext.typed-array.at", + "esnext.typed-array.filter-out", + "esnext.typed-array.filter-reject", + "esnext.typed-array.find-last", + "esnext.typed-array.find-last-index", + "esnext.typed-array.group-by", + "esnext.typed-array.to-reversed", + "esnext.typed-array.to-sorted", + "esnext.typed-array.to-spliced", + "esnext.typed-array.unique-by", + "esnext.typed-array.with", + "esnext.uint8-array.from-base64", + "esnext.uint8-array.from-hex", + "esnext.uint8-array.set-from-base64", + "esnext.uint8-array.set-from-hex", + "esnext.uint8-array.to-base64", + "esnext.uint8-array.to-hex" + ], + "core-js/full/typed-array/of": [ + "es.typed-array.of" + ], + "core-js/full/typed-array/reduce": [ + "es.typed-array.reduce" + ], + "core-js/full/typed-array/reduce-right": [ + "es.typed-array.reduce-right" + ], + "core-js/full/typed-array/reverse": [ + "es.typed-array.reverse" + ], + "core-js/full/typed-array/set": [ + "es.typed-array.set" + ], + "core-js/full/typed-array/set-from-base64": [ + "es.uint8-array.set-from-base64", + "esnext.uint8-array.set-from-base64" + ], + "core-js/full/typed-array/set-from-hex": [ + "es.uint8-array.set-from-hex", + "esnext.uint8-array.set-from-hex" + ], + "core-js/full/typed-array/slice": [ + "es.typed-array.slice" + ], + "core-js/full/typed-array/some": [ + "es.typed-array.some" + ], + "core-js/full/typed-array/sort": [ + "es.typed-array.sort" + ], + "core-js/full/typed-array/subarray": [ + "es.typed-array.subarray" + ], + "core-js/full/typed-array/to-base64": [ + "es.uint8-array.to-base64", + "esnext.uint8-array.to-base64" + ], + "core-js/full/typed-array/to-hex": [ + "es.uint8-array.to-hex", + "esnext.uint8-array.to-hex" + ], + "core-js/full/typed-array/to-locale-string": [ + "es.typed-array.to-locale-string" + ], + "core-js/full/typed-array/to-reversed": [ + "es.typed-array.to-reversed", + "esnext.typed-array.to-reversed" + ], + "core-js/full/typed-array/to-sorted": [ + "es.typed-array.sort", + "es.typed-array.to-sorted", + "esnext.typed-array.to-sorted" + ], + "core-js/full/typed-array/to-spliced": [ + "esnext.typed-array.to-spliced" + ], + "core-js/full/typed-array/to-string": [ + "es.typed-array.to-string" + ], + "core-js/full/typed-array/uint16-array": [ + "es.array-buffer.constructor", + "es.array-buffer.slice", + "es.map", + "es.object.to-string", + "es.promise", + "es.string.iterator", + "es.typed-array.uint16-array", + "es.typed-array.at", + "es.typed-array.copy-within", + "es.typed-array.every", + "es.typed-array.fill", + "es.typed-array.filter", + "es.typed-array.find", + "es.typed-array.find-index", + "es.typed-array.find-last", + "es.typed-array.find-last-index", + "es.typed-array.for-each", + "es.typed-array.from", + "es.typed-array.includes", + "es.typed-array.index-of", + "es.typed-array.iterator", + "es.typed-array.join", + "es.typed-array.last-index-of", + "es.typed-array.map", + "es.typed-array.of", + "es.typed-array.reduce", + "es.typed-array.reduce-right", + "es.typed-array.reverse", + "es.typed-array.set", + "es.typed-array.slice", + "es.typed-array.some", + "es.typed-array.sort", + "es.typed-array.subarray", + "es.typed-array.to-locale-string", + "es.typed-array.to-reversed", + "es.typed-array.to-sorted", + "es.typed-array.to-string", + "es.typed-array.with", + "es.uint8-array.from-base64", + "es.uint8-array.from-hex", + "es.uint8-array.set-from-base64", + "es.uint8-array.set-from-hex", + "es.uint8-array.to-base64", + "es.uint8-array.to-hex", + "esnext.typed-array.from-async", + "esnext.typed-array.at", + "esnext.typed-array.filter-out", + "esnext.typed-array.filter-reject", + "esnext.typed-array.find-last", + "esnext.typed-array.find-last-index", + "esnext.typed-array.group-by", + "esnext.typed-array.to-reversed", + "esnext.typed-array.to-sorted", + "esnext.typed-array.to-spliced", + "esnext.typed-array.unique-by", + "esnext.typed-array.with", + "esnext.uint8-array.from-base64", + "esnext.uint8-array.from-hex", + "esnext.uint8-array.set-from-base64", + "esnext.uint8-array.set-from-hex", + "esnext.uint8-array.to-base64", + "esnext.uint8-array.to-hex" + ], + "core-js/full/typed-array/uint32-array": [ + "es.array-buffer.constructor", + "es.array-buffer.slice", + "es.map", + "es.object.to-string", + "es.promise", + "es.string.iterator", + "es.typed-array.uint32-array", + "es.typed-array.at", + "es.typed-array.copy-within", + "es.typed-array.every", + "es.typed-array.fill", + "es.typed-array.filter", + "es.typed-array.find", + "es.typed-array.find-index", + "es.typed-array.find-last", + "es.typed-array.find-last-index", + "es.typed-array.for-each", + "es.typed-array.from", + "es.typed-array.includes", + "es.typed-array.index-of", + "es.typed-array.iterator", + "es.typed-array.join", + "es.typed-array.last-index-of", + "es.typed-array.map", + "es.typed-array.of", + "es.typed-array.reduce", + "es.typed-array.reduce-right", + "es.typed-array.reverse", + "es.typed-array.set", + "es.typed-array.slice", + "es.typed-array.some", + "es.typed-array.sort", + "es.typed-array.subarray", + "es.typed-array.to-locale-string", + "es.typed-array.to-reversed", + "es.typed-array.to-sorted", + "es.typed-array.to-string", + "es.typed-array.with", + "es.uint8-array.from-base64", + "es.uint8-array.from-hex", + "es.uint8-array.set-from-base64", + "es.uint8-array.set-from-hex", + "es.uint8-array.to-base64", + "es.uint8-array.to-hex", + "esnext.typed-array.from-async", + "esnext.typed-array.at", + "esnext.typed-array.filter-out", + "esnext.typed-array.filter-reject", + "esnext.typed-array.find-last", + "esnext.typed-array.find-last-index", + "esnext.typed-array.group-by", + "esnext.typed-array.to-reversed", + "esnext.typed-array.to-sorted", + "esnext.typed-array.to-spliced", + "esnext.typed-array.unique-by", + "esnext.typed-array.with", + "esnext.uint8-array.from-base64", + "esnext.uint8-array.from-hex", + "esnext.uint8-array.set-from-base64", + "esnext.uint8-array.set-from-hex", + "esnext.uint8-array.to-base64", + "esnext.uint8-array.to-hex" + ], + "core-js/full/typed-array/uint8-array": [ + "es.array-buffer.constructor", + "es.array-buffer.slice", + "es.map", + "es.object.to-string", + "es.promise", + "es.string.iterator", + "es.typed-array.uint8-array", + "es.typed-array.at", + "es.typed-array.copy-within", + "es.typed-array.every", + "es.typed-array.fill", + "es.typed-array.filter", + "es.typed-array.find", + "es.typed-array.find-index", + "es.typed-array.find-last", + "es.typed-array.find-last-index", + "es.typed-array.for-each", + "es.typed-array.from", + "es.typed-array.includes", + "es.typed-array.index-of", + "es.typed-array.iterator", + "es.typed-array.join", + "es.typed-array.last-index-of", + "es.typed-array.map", + "es.typed-array.of", + "es.typed-array.reduce", + "es.typed-array.reduce-right", + "es.typed-array.reverse", + "es.typed-array.set", + "es.typed-array.slice", + "es.typed-array.some", + "es.typed-array.sort", + "es.typed-array.subarray", + "es.typed-array.to-locale-string", + "es.typed-array.to-reversed", + "es.typed-array.to-sorted", + "es.typed-array.to-string", + "es.typed-array.with", + "es.uint8-array.from-base64", + "es.uint8-array.from-hex", + "es.uint8-array.set-from-base64", + "es.uint8-array.set-from-hex", + "es.uint8-array.to-base64", + "es.uint8-array.to-hex", + "esnext.typed-array.from-async", + "esnext.typed-array.at", + "esnext.typed-array.filter-out", + "esnext.typed-array.filter-reject", + "esnext.typed-array.find-last", + "esnext.typed-array.find-last-index", + "esnext.typed-array.group-by", + "esnext.typed-array.to-reversed", + "esnext.typed-array.to-sorted", + "esnext.typed-array.to-spliced", + "esnext.typed-array.unique-by", + "esnext.typed-array.with", + "esnext.uint8-array.from-base64", + "esnext.uint8-array.from-hex", + "esnext.uint8-array.set-from-base64", + "esnext.uint8-array.set-from-hex", + "esnext.uint8-array.to-base64", + "esnext.uint8-array.to-hex" + ], + "core-js/full/typed-array/uint8-clamped-array": [ + "es.array-buffer.constructor", + "es.array-buffer.slice", + "es.map", + "es.object.to-string", + "es.promise", + "es.string.iterator", + "es.typed-array.uint8-clamped-array", + "es.typed-array.at", + "es.typed-array.copy-within", + "es.typed-array.every", + "es.typed-array.fill", + "es.typed-array.filter", + "es.typed-array.find", + "es.typed-array.find-index", + "es.typed-array.find-last", + "es.typed-array.find-last-index", + "es.typed-array.for-each", + "es.typed-array.from", + "es.typed-array.includes", + "es.typed-array.index-of", + "es.typed-array.iterator", + "es.typed-array.join", + "es.typed-array.last-index-of", + "es.typed-array.map", + "es.typed-array.of", + "es.typed-array.reduce", + "es.typed-array.reduce-right", + "es.typed-array.reverse", + "es.typed-array.set", + "es.typed-array.slice", + "es.typed-array.some", + "es.typed-array.sort", + "es.typed-array.subarray", + "es.typed-array.to-locale-string", + "es.typed-array.to-reversed", + "es.typed-array.to-sorted", + "es.typed-array.to-string", + "es.typed-array.with", + "es.uint8-array.from-base64", + "es.uint8-array.from-hex", + "es.uint8-array.set-from-base64", + "es.uint8-array.set-from-hex", + "es.uint8-array.to-base64", + "es.uint8-array.to-hex", + "esnext.typed-array.from-async", + "esnext.typed-array.at", + "esnext.typed-array.filter-out", + "esnext.typed-array.filter-reject", + "esnext.typed-array.find-last", + "esnext.typed-array.find-last-index", + "esnext.typed-array.group-by", + "esnext.typed-array.to-reversed", + "esnext.typed-array.to-sorted", + "esnext.typed-array.to-spliced", + "esnext.typed-array.unique-by", + "esnext.typed-array.with", + "esnext.uint8-array.from-base64", + "esnext.uint8-array.from-hex", + "esnext.uint8-array.set-from-base64", + "esnext.uint8-array.set-from-hex", + "esnext.uint8-array.to-base64", + "esnext.uint8-array.to-hex" + ], + "core-js/full/typed-array/unique-by": [ + "es.map", + "esnext.typed-array.unique-by" + ], + "core-js/full/typed-array/values": [ + "es.object.to-string", + "es.typed-array.iterator" + ], + "core-js/full/typed-array/with": [ + "es.typed-array.with", + "esnext.typed-array.with" + ], + "core-js/full/unescape": [ + "es.unescape" + ], + "core-js/full/url": [ + "web.url", + "web.url.can-parse", + "web.url.parse", + "web.url.to-json", + "web.url-search-params", + "web.url-search-params.delete", + "web.url-search-params.has", + "web.url-search-params.size" + ], + "core-js/full/url-search-params": [ + "web.dom-collections.iterator", + "web.url-search-params", + "web.url-search-params.delete", + "web.url-search-params.has", + "web.url-search-params.size" + ], + "core-js/full/url/can-parse": [ + "web.url", + "web.url.can-parse" + ], + "core-js/full/url/parse": [ + "web.url", + "web.url.parse" + ], + "core-js/full/url/to-json": [ + "web.url.to-json" + ], + "core-js/full/weak-map": [ + "es.array.iterator", + "es.object.to-string", + "es.string.iterator", + "es.weak-map", + "esnext.weak-map.delete-all", + "esnext.weak-map.from", + "esnext.weak-map.of", + "esnext.weak-map.emplace", + "esnext.weak-map.get-or-insert", + "esnext.weak-map.get-or-insert-computed", + "esnext.weak-map.upsert", + "web.dom-collections.iterator" + ], + "core-js/full/weak-map/delete-all": [ + "es.weak-map", + "esnext.weak-map.delete-all" + ], + "core-js/full/weak-map/emplace": [ + "es.weak-map", + "esnext.weak-map.emplace" + ], + "core-js/full/weak-map/from": [ + "es.array.iterator", + "es.object.to-string", + "es.string.iterator", + "es.weak-map", + "esnext.weak-map.delete-all", + "esnext.weak-map.from", + "esnext.weak-map.emplace", + "esnext.weak-map.get-or-insert", + "esnext.weak-map.get-or-insert-computed", + "web.dom-collections.iterator" + ], + "core-js/full/weak-map/get-or-insert": [ + "es.weak-map", + "esnext.weak-map.get-or-insert" + ], + "core-js/full/weak-map/get-or-insert-computed": [ + "es.weak-map", + "esnext.weak-map.get-or-insert-computed" + ], + "core-js/full/weak-map/of": [ + "es.array.iterator", + "es.object.to-string", + "es.weak-map", + "esnext.weak-map.delete-all", + "esnext.weak-map.of", + "esnext.weak-map.emplace", + "esnext.weak-map.get-or-insert", + "esnext.weak-map.get-or-insert-computed" + ], + "core-js/full/weak-map/upsert": [ + "es.weak-map", + "esnext.weak-map.upsert" + ], + "core-js/full/weak-set": [ + "es.array.iterator", + "es.object.to-string", + "es.string.iterator", + "es.weak-set", + "esnext.weak-set.add-all", + "esnext.weak-set.delete-all", + "esnext.weak-set.from", + "esnext.weak-set.of", + "web.dom-collections.iterator" + ], + "core-js/full/weak-set/add-all": [ + "es.weak-set", + "esnext.weak-set.add-all" + ], + "core-js/full/weak-set/delete-all": [ + "es.weak-set", + "esnext.weak-set.delete-all" + ], + "core-js/full/weak-set/from": [ + "es.array.iterator", + "es.object.to-string", + "es.string.iterator", + "es.weak-set", + "esnext.weak-set.add-all", + "esnext.weak-set.delete-all", + "esnext.weak-set.from", + "web.dom-collections.iterator" + ], + "core-js/full/weak-set/of": [ + "es.array.iterator", + "es.object.to-string", + "es.weak-set", + "esnext.weak-set.add-all", + "esnext.weak-set.delete-all", + "esnext.weak-set.of" + ], + "core-js/modules/es.aggregate-error": [ + "es.aggregate-error" + ], + "core-js/modules/es.aggregate-error.cause": [ + "es.aggregate-error.cause" + ], + "core-js/modules/es.aggregate-error.constructor": [ + "es.aggregate-error.constructor" + ], + "core-js/modules/es.array-buffer.constructor": [ + "es.array-buffer.constructor" + ], + "core-js/modules/es.array-buffer.detached": [ + "es.array-buffer.detached" + ], + "core-js/modules/es.array-buffer.is-view": [ + "es.array-buffer.is-view" + ], + "core-js/modules/es.array-buffer.slice": [ + "es.array-buffer.slice" + ], + "core-js/modules/es.array-buffer.transfer": [ + "es.array-buffer.transfer" + ], + "core-js/modules/es.array-buffer.transfer-to-fixed-length": [ + "es.array-buffer.transfer-to-fixed-length" + ], + "core-js/modules/es.array.at": [ + "es.array.at" + ], + "core-js/modules/es.array.concat": [ + "es.array.concat" + ], + "core-js/modules/es.array.copy-within": [ + "es.array.copy-within" + ], + "core-js/modules/es.array.every": [ + "es.array.every" + ], + "core-js/modules/es.array.fill": [ + "es.array.fill" + ], + "core-js/modules/es.array.filter": [ + "es.array.filter" + ], + "core-js/modules/es.array.find": [ + "es.array.find" + ], + "core-js/modules/es.array.find-index": [ + "es.array.find-index" + ], + "core-js/modules/es.array.find-last": [ + "es.array.find-last" + ], + "core-js/modules/es.array.find-last-index": [ + "es.array.find-last-index" + ], + "core-js/modules/es.array.flat": [ + "es.array.flat" + ], + "core-js/modules/es.array.flat-map": [ + "es.array.flat-map" + ], + "core-js/modules/es.array.for-each": [ + "es.array.for-each" + ], + "core-js/modules/es.array.from": [ + "es.array.from" + ], + "core-js/modules/es.array.from-async": [ + "es.array.from-async" + ], + "core-js/modules/es.array.includes": [ + "es.array.includes" + ], + "core-js/modules/es.array.index-of": [ + "es.array.index-of" + ], + "core-js/modules/es.array.is-array": [ + "es.array.is-array" + ], + "core-js/modules/es.array.iterator": [ + "es.array.iterator" + ], + "core-js/modules/es.array.join": [ + "es.array.join" + ], + "core-js/modules/es.array.last-index-of": [ + "es.array.last-index-of" + ], + "core-js/modules/es.array.map": [ + "es.array.map" + ], + "core-js/modules/es.array.of": [ + "es.array.of" + ], + "core-js/modules/es.array.push": [ + "es.array.push" + ], + "core-js/modules/es.array.reduce": [ + "es.array.reduce" + ], + "core-js/modules/es.array.reduce-right": [ + "es.array.reduce-right" + ], + "core-js/modules/es.array.reverse": [ + "es.array.reverse" + ], + "core-js/modules/es.array.slice": [ + "es.array.slice" + ], + "core-js/modules/es.array.some": [ + "es.array.some" + ], + "core-js/modules/es.array.sort": [ + "es.array.sort" + ], + "core-js/modules/es.array.species": [ + "es.array.species" + ], + "core-js/modules/es.array.splice": [ + "es.array.splice" + ], + "core-js/modules/es.array.to-reversed": [ + "es.array.to-reversed" + ], + "core-js/modules/es.array.to-sorted": [ + "es.array.to-sorted" + ], + "core-js/modules/es.array.to-spliced": [ + "es.array.to-spliced" + ], + "core-js/modules/es.array.unscopables.flat": [ + "es.array.unscopables.flat" + ], + "core-js/modules/es.array.unscopables.flat-map": [ + "es.array.unscopables.flat-map" + ], + "core-js/modules/es.array.unshift": [ + "es.array.unshift" + ], + "core-js/modules/es.array.with": [ + "es.array.with" + ], + "core-js/modules/es.async-disposable-stack.constructor": [ + "es.async-disposable-stack.constructor" + ], + "core-js/modules/es.async-iterator.async-dispose": [ + "es.async-iterator.async-dispose" + ], + "core-js/modules/es.data-view": [ + "es.data-view" + ], + "core-js/modules/es.data-view.constructor": [ + "es.data-view.constructor" + ], + "core-js/modules/es.data-view.get-float16": [ + "es.data-view.get-float16" + ], + "core-js/modules/es.data-view.set-float16": [ + "es.data-view.set-float16" + ], + "core-js/modules/es.date.get-year": [ + "es.date.get-year" + ], + "core-js/modules/es.date.now": [ + "es.date.now" + ], + "core-js/modules/es.date.set-year": [ + "es.date.set-year" + ], + "core-js/modules/es.date.to-gmt-string": [ + "es.date.to-gmt-string" + ], + "core-js/modules/es.date.to-iso-string": [ + "es.date.to-iso-string" + ], + "core-js/modules/es.date.to-json": [ + "es.date.to-json" + ], + "core-js/modules/es.date.to-primitive": [ + "es.date.to-primitive" + ], + "core-js/modules/es.date.to-string": [ + "es.date.to-string" + ], + "core-js/modules/es.disposable-stack.constructor": [ + "es.disposable-stack.constructor" + ], + "core-js/modules/es.error.cause": [ + "es.error.cause" + ], + "core-js/modules/es.error.is-error": [ + "es.error.is-error" + ], + "core-js/modules/es.error.to-string": [ + "es.error.to-string" + ], + "core-js/modules/es.escape": [ + "es.escape" + ], + "core-js/modules/es.function.bind": [ + "es.function.bind" + ], + "core-js/modules/es.function.has-instance": [ + "es.function.has-instance" + ], + "core-js/modules/es.function.name": [ + "es.function.name" + ], + "core-js/modules/es.global-this": [ + "es.global-this" + ], + "core-js/modules/es.iterator.constructor": [ + "es.iterator.constructor" + ], + "core-js/modules/es.iterator.dispose": [ + "es.iterator.dispose" + ], + "core-js/modules/es.iterator.drop": [ + "es.iterator.drop" + ], + "core-js/modules/es.iterator.every": [ + "es.iterator.every" + ], + "core-js/modules/es.iterator.filter": [ + "es.iterator.filter" + ], + "core-js/modules/es.iterator.find": [ + "es.iterator.find" + ], + "core-js/modules/es.iterator.flat-map": [ + "es.iterator.flat-map" + ], + "core-js/modules/es.iterator.for-each": [ + "es.iterator.for-each" + ], + "core-js/modules/es.iterator.from": [ + "es.iterator.from" + ], + "core-js/modules/es.iterator.map": [ + "es.iterator.map" + ], + "core-js/modules/es.iterator.reduce": [ + "es.iterator.reduce" + ], + "core-js/modules/es.iterator.some": [ + "es.iterator.some" + ], + "core-js/modules/es.iterator.take": [ + "es.iterator.take" + ], + "core-js/modules/es.iterator.to-array": [ + "es.iterator.to-array" + ], + "core-js/modules/es.json.stringify": [ + "es.json.stringify" + ], + "core-js/modules/es.json.to-string-tag": [ + "es.json.to-string-tag" + ], + "core-js/modules/es.map": [ + "es.map" + ], + "core-js/modules/es.map.constructor": [ + "es.map.constructor" + ], + "core-js/modules/es.map.group-by": [ + "es.map.group-by" + ], + "core-js/modules/es.math.acosh": [ + "es.math.acosh" + ], + "core-js/modules/es.math.asinh": [ + "es.math.asinh" + ], + "core-js/modules/es.math.atanh": [ + "es.math.atanh" + ], + "core-js/modules/es.math.cbrt": [ + "es.math.cbrt" + ], + "core-js/modules/es.math.clz32": [ + "es.math.clz32" + ], + "core-js/modules/es.math.cosh": [ + "es.math.cosh" + ], + "core-js/modules/es.math.expm1": [ + "es.math.expm1" + ], + "core-js/modules/es.math.f16round": [ + "es.math.f16round" + ], + "core-js/modules/es.math.fround": [ + "es.math.fround" + ], + "core-js/modules/es.math.hypot": [ + "es.math.hypot" + ], + "core-js/modules/es.math.imul": [ + "es.math.imul" + ], + "core-js/modules/es.math.log10": [ + "es.math.log10" + ], + "core-js/modules/es.math.log1p": [ + "es.math.log1p" + ], + "core-js/modules/es.math.log2": [ + "es.math.log2" + ], + "core-js/modules/es.math.sign": [ + "es.math.sign" + ], + "core-js/modules/es.math.sinh": [ + "es.math.sinh" + ], + "core-js/modules/es.math.sum-precise": [ + "es.math.sum-precise" + ], + "core-js/modules/es.math.tanh": [ + "es.math.tanh" + ], + "core-js/modules/es.math.to-string-tag": [ + "es.math.to-string-tag" + ], + "core-js/modules/es.math.trunc": [ + "es.math.trunc" + ], + "core-js/modules/es.number.constructor": [ + "es.number.constructor" + ], + "core-js/modules/es.number.epsilon": [ + "es.number.epsilon" + ], + "core-js/modules/es.number.is-finite": [ + "es.number.is-finite" + ], + "core-js/modules/es.number.is-integer": [ + "es.number.is-integer" + ], + "core-js/modules/es.number.is-nan": [ + "es.number.is-nan" + ], + "core-js/modules/es.number.is-safe-integer": [ + "es.number.is-safe-integer" + ], + "core-js/modules/es.number.max-safe-integer": [ + "es.number.max-safe-integer" + ], + "core-js/modules/es.number.min-safe-integer": [ + "es.number.min-safe-integer" + ], + "core-js/modules/es.number.parse-float": [ + "es.number.parse-float" + ], + "core-js/modules/es.number.parse-int": [ + "es.number.parse-int" + ], + "core-js/modules/es.number.to-exponential": [ + "es.number.to-exponential" + ], + "core-js/modules/es.number.to-fixed": [ + "es.number.to-fixed" + ], + "core-js/modules/es.number.to-precision": [ + "es.number.to-precision" + ], + "core-js/modules/es.object.assign": [ + "es.object.assign" + ], + "core-js/modules/es.object.create": [ + "es.object.create" + ], + "core-js/modules/es.object.define-getter": [ + "es.object.define-getter" + ], + "core-js/modules/es.object.define-properties": [ + "es.object.define-properties" + ], + "core-js/modules/es.object.define-property": [ + "es.object.define-property" + ], + "core-js/modules/es.object.define-setter": [ + "es.object.define-setter" + ], + "core-js/modules/es.object.entries": [ + "es.object.entries" + ], + "core-js/modules/es.object.freeze": [ + "es.object.freeze" + ], + "core-js/modules/es.object.from-entries": [ + "es.object.from-entries" + ], + "core-js/modules/es.object.get-own-property-descriptor": [ + "es.object.get-own-property-descriptor" + ], + "core-js/modules/es.object.get-own-property-descriptors": [ + "es.object.get-own-property-descriptors" + ], + "core-js/modules/es.object.get-own-property-names": [ + "es.object.get-own-property-names" + ], + "core-js/modules/es.object.get-own-property-symbols": [ + "es.object.get-own-property-symbols" + ], + "core-js/modules/es.object.get-prototype-of": [ + "es.object.get-prototype-of" + ], + "core-js/modules/es.object.group-by": [ + "es.object.group-by" + ], + "core-js/modules/es.object.has-own": [ + "es.object.has-own" + ], + "core-js/modules/es.object.is": [ + "es.object.is" + ], + "core-js/modules/es.object.is-extensible": [ + "es.object.is-extensible" + ], + "core-js/modules/es.object.is-frozen": [ + "es.object.is-frozen" + ], + "core-js/modules/es.object.is-sealed": [ + "es.object.is-sealed" + ], + "core-js/modules/es.object.keys": [ + "es.object.keys" + ], + "core-js/modules/es.object.lookup-getter": [ + "es.object.lookup-getter" + ], + "core-js/modules/es.object.lookup-setter": [ + "es.object.lookup-setter" + ], + "core-js/modules/es.object.prevent-extensions": [ + "es.object.prevent-extensions" + ], + "core-js/modules/es.object.proto": [ + "es.object.proto" + ], + "core-js/modules/es.object.seal": [ + "es.object.seal" + ], + "core-js/modules/es.object.set-prototype-of": [ + "es.object.set-prototype-of" + ], + "core-js/modules/es.object.to-string": [ + "es.object.to-string" + ], + "core-js/modules/es.object.values": [ + "es.object.values" + ], + "core-js/modules/es.parse-float": [ + "es.parse-float" + ], + "core-js/modules/es.parse-int": [ + "es.parse-int" + ], + "core-js/modules/es.promise": [ + "es.promise" + ], + "core-js/modules/es.promise.all": [ + "es.promise.all" + ], + "core-js/modules/es.promise.all-settled": [ + "es.promise.all-settled" + ], + "core-js/modules/es.promise.any": [ + "es.promise.any" + ], + "core-js/modules/es.promise.catch": [ + "es.promise.catch" + ], + "core-js/modules/es.promise.constructor": [ + "es.promise.constructor" + ], + "core-js/modules/es.promise.finally": [ + "es.promise.finally" + ], + "core-js/modules/es.promise.race": [ + "es.promise.race" + ], + "core-js/modules/es.promise.reject": [ + "es.promise.reject" + ], + "core-js/modules/es.promise.resolve": [ + "es.promise.resolve" + ], + "core-js/modules/es.promise.try": [ + "es.promise.try" + ], + "core-js/modules/es.promise.with-resolvers": [ + "es.promise.with-resolvers" + ], + "core-js/modules/es.reflect.apply": [ + "es.reflect.apply" + ], + "core-js/modules/es.reflect.construct": [ + "es.reflect.construct" + ], + "core-js/modules/es.reflect.define-property": [ + "es.reflect.define-property" + ], + "core-js/modules/es.reflect.delete-property": [ + "es.reflect.delete-property" + ], + "core-js/modules/es.reflect.get": [ + "es.reflect.get" + ], + "core-js/modules/es.reflect.get-own-property-descriptor": [ + "es.reflect.get-own-property-descriptor" + ], + "core-js/modules/es.reflect.get-prototype-of": [ + "es.reflect.get-prototype-of" + ], + "core-js/modules/es.reflect.has": [ + "es.reflect.has" + ], + "core-js/modules/es.reflect.is-extensible": [ + "es.reflect.is-extensible" + ], + "core-js/modules/es.reflect.own-keys": [ + "es.reflect.own-keys" + ], + "core-js/modules/es.reflect.prevent-extensions": [ + "es.reflect.prevent-extensions" + ], + "core-js/modules/es.reflect.set": [ + "es.reflect.set" + ], + "core-js/modules/es.reflect.set-prototype-of": [ + "es.reflect.set-prototype-of" + ], + "core-js/modules/es.reflect.to-string-tag": [ + "es.reflect.to-string-tag" + ], + "core-js/modules/es.regexp.constructor": [ + "es.regexp.constructor" + ], + "core-js/modules/es.regexp.dot-all": [ + "es.regexp.dot-all" + ], + "core-js/modules/es.regexp.escape": [ + "es.regexp.escape" + ], + "core-js/modules/es.regexp.exec": [ + "es.regexp.exec" + ], + "core-js/modules/es.regexp.flags": [ + "es.regexp.flags" + ], + "core-js/modules/es.regexp.sticky": [ + "es.regexp.sticky" + ], + "core-js/modules/es.regexp.test": [ + "es.regexp.test" + ], + "core-js/modules/es.regexp.to-string": [ + "es.regexp.to-string" + ], + "core-js/modules/es.set": [ + "es.set" + ], + "core-js/modules/es.set.constructor": [ + "es.set.constructor" + ], + "core-js/modules/es.set.difference.v2": [ + "es.set.difference.v2" + ], + "core-js/modules/es.set.intersection.v2": [ + "es.set.intersection.v2" + ], + "core-js/modules/es.set.is-disjoint-from.v2": [ + "es.set.is-disjoint-from.v2" + ], + "core-js/modules/es.set.is-subset-of.v2": [ + "es.set.is-subset-of.v2" + ], + "core-js/modules/es.set.is-superset-of.v2": [ + "es.set.is-superset-of.v2" + ], + "core-js/modules/es.set.symmetric-difference.v2": [ + "es.set.symmetric-difference.v2" + ], + "core-js/modules/es.set.union.v2": [ + "es.set.union.v2" + ], + "core-js/modules/es.string.anchor": [ + "es.string.anchor" + ], + "core-js/modules/es.string.at-alternative": [ + "es.string.at-alternative" + ], + "core-js/modules/es.string.big": [ + "es.string.big" + ], + "core-js/modules/es.string.blink": [ + "es.string.blink" + ], + "core-js/modules/es.string.bold": [ + "es.string.bold" + ], + "core-js/modules/es.string.code-point-at": [ + "es.string.code-point-at" + ], + "core-js/modules/es.string.ends-with": [ + "es.string.ends-with" + ], + "core-js/modules/es.string.fixed": [ + "es.string.fixed" + ], + "core-js/modules/es.string.fontcolor": [ + "es.string.fontcolor" + ], + "core-js/modules/es.string.fontsize": [ + "es.string.fontsize" + ], + "core-js/modules/es.string.from-code-point": [ + "es.string.from-code-point" + ], + "core-js/modules/es.string.includes": [ + "es.string.includes" + ], + "core-js/modules/es.string.is-well-formed": [ + "es.string.is-well-formed" + ], + "core-js/modules/es.string.italics": [ + "es.string.italics" + ], + "core-js/modules/es.string.iterator": [ + "es.string.iterator" + ], + "core-js/modules/es.string.link": [ + "es.string.link" + ], + "core-js/modules/es.string.match": [ + "es.string.match" + ], + "core-js/modules/es.string.match-all": [ + "es.string.match-all" + ], + "core-js/modules/es.string.pad-end": [ + "es.string.pad-end" + ], + "core-js/modules/es.string.pad-start": [ + "es.string.pad-start" + ], + "core-js/modules/es.string.raw": [ + "es.string.raw" + ], + "core-js/modules/es.string.repeat": [ + "es.string.repeat" + ], + "core-js/modules/es.string.replace": [ + "es.string.replace" + ], + "core-js/modules/es.string.replace-all": [ + "es.string.replace-all" + ], + "core-js/modules/es.string.search": [ + "es.string.search" + ], + "core-js/modules/es.string.small": [ + "es.string.small" + ], + "core-js/modules/es.string.split": [ + "es.string.split" + ], + "core-js/modules/es.string.starts-with": [ + "es.string.starts-with" + ], + "core-js/modules/es.string.strike": [ + "es.string.strike" + ], + "core-js/modules/es.string.sub": [ + "es.string.sub" + ], + "core-js/modules/es.string.substr": [ + "es.string.substr" + ], + "core-js/modules/es.string.sup": [ + "es.string.sup" + ], + "core-js/modules/es.string.to-well-formed": [ + "es.string.to-well-formed" + ], + "core-js/modules/es.string.trim": [ + "es.string.trim" + ], + "core-js/modules/es.string.trim-end": [ + "es.string.trim-end" + ], + "core-js/modules/es.string.trim-left": [ + "es.string.trim-left" + ], + "core-js/modules/es.string.trim-right": [ + "es.string.trim-right" + ], + "core-js/modules/es.string.trim-start": [ + "es.string.trim-start" + ], + "core-js/modules/es.suppressed-error.constructor": [ + "es.suppressed-error.constructor" + ], + "core-js/modules/es.symbol": [ + "es.symbol" + ], + "core-js/modules/es.symbol.async-dispose": [ + "es.symbol.async-dispose" + ], + "core-js/modules/es.symbol.async-iterator": [ + "es.symbol.async-iterator" + ], + "core-js/modules/es.symbol.constructor": [ + "es.symbol.constructor" + ], + "core-js/modules/es.symbol.description": [ + "es.symbol.description" + ], + "core-js/modules/es.symbol.dispose": [ + "es.symbol.dispose" + ], + "core-js/modules/es.symbol.for": [ + "es.symbol.for" + ], + "core-js/modules/es.symbol.has-instance": [ + "es.symbol.has-instance" + ], + "core-js/modules/es.symbol.is-concat-spreadable": [ + "es.symbol.is-concat-spreadable" + ], + "core-js/modules/es.symbol.iterator": [ + "es.symbol.iterator" + ], + "core-js/modules/es.symbol.key-for": [ + "es.symbol.key-for" + ], + "core-js/modules/es.symbol.match": [ + "es.symbol.match" + ], + "core-js/modules/es.symbol.match-all": [ + "es.symbol.match-all" + ], + "core-js/modules/es.symbol.replace": [ + "es.symbol.replace" + ], + "core-js/modules/es.symbol.search": [ + "es.symbol.search" + ], + "core-js/modules/es.symbol.species": [ + "es.symbol.species" + ], + "core-js/modules/es.symbol.split": [ + "es.symbol.split" + ], + "core-js/modules/es.symbol.to-primitive": [ + "es.symbol.to-primitive" + ], + "core-js/modules/es.symbol.to-string-tag": [ + "es.symbol.to-string-tag" + ], + "core-js/modules/es.symbol.unscopables": [ + "es.symbol.unscopables" + ], + "core-js/modules/es.typed-array.at": [ + "es.typed-array.at" + ], + "core-js/modules/es.typed-array.copy-within": [ + "es.typed-array.copy-within" + ], + "core-js/modules/es.typed-array.every": [ + "es.typed-array.every" + ], + "core-js/modules/es.typed-array.fill": [ + "es.typed-array.fill" + ], + "core-js/modules/es.typed-array.filter": [ + "es.typed-array.filter" + ], + "core-js/modules/es.typed-array.find": [ + "es.typed-array.find" + ], + "core-js/modules/es.typed-array.find-index": [ + "es.typed-array.find-index" + ], + "core-js/modules/es.typed-array.find-last": [ + "es.typed-array.find-last" + ], + "core-js/modules/es.typed-array.find-last-index": [ + "es.typed-array.find-last-index" + ], + "core-js/modules/es.typed-array.float32-array": [ + "es.typed-array.float32-array" + ], + "core-js/modules/es.typed-array.float64-array": [ + "es.typed-array.float64-array" + ], + "core-js/modules/es.typed-array.for-each": [ + "es.typed-array.for-each" + ], + "core-js/modules/es.typed-array.from": [ + "es.typed-array.from" + ], + "core-js/modules/es.typed-array.includes": [ + "es.typed-array.includes" + ], + "core-js/modules/es.typed-array.index-of": [ + "es.typed-array.index-of" + ], + "core-js/modules/es.typed-array.int16-array": [ + "es.typed-array.int16-array" + ], + "core-js/modules/es.typed-array.int32-array": [ + "es.typed-array.int32-array" + ], + "core-js/modules/es.typed-array.int8-array": [ + "es.typed-array.int8-array" + ], + "core-js/modules/es.typed-array.iterator": [ + "es.typed-array.iterator" + ], + "core-js/modules/es.typed-array.join": [ + "es.typed-array.join" + ], + "core-js/modules/es.typed-array.last-index-of": [ + "es.typed-array.last-index-of" + ], + "core-js/modules/es.typed-array.map": [ + "es.typed-array.map" + ], + "core-js/modules/es.typed-array.of": [ + "es.typed-array.of" + ], + "core-js/modules/es.typed-array.reduce": [ + "es.typed-array.reduce" + ], + "core-js/modules/es.typed-array.reduce-right": [ + "es.typed-array.reduce-right" + ], + "core-js/modules/es.typed-array.reverse": [ + "es.typed-array.reverse" + ], + "core-js/modules/es.typed-array.set": [ + "es.typed-array.set" + ], + "core-js/modules/es.typed-array.slice": [ + "es.typed-array.slice" + ], + "core-js/modules/es.typed-array.some": [ + "es.typed-array.some" + ], + "core-js/modules/es.typed-array.sort": [ + "es.typed-array.sort" + ], + "core-js/modules/es.typed-array.subarray": [ + "es.typed-array.subarray" + ], + "core-js/modules/es.typed-array.to-locale-string": [ + "es.typed-array.to-locale-string" + ], + "core-js/modules/es.typed-array.to-reversed": [ + "es.typed-array.to-reversed" + ], + "core-js/modules/es.typed-array.to-sorted": [ + "es.typed-array.to-sorted" + ], + "core-js/modules/es.typed-array.to-string": [ + "es.typed-array.to-string" + ], + "core-js/modules/es.typed-array.uint16-array": [ + "es.typed-array.uint16-array" + ], + "core-js/modules/es.typed-array.uint32-array": [ + "es.typed-array.uint32-array" + ], + "core-js/modules/es.typed-array.uint8-array": [ + "es.typed-array.uint8-array" + ], + "core-js/modules/es.typed-array.uint8-clamped-array": [ + "es.typed-array.uint8-clamped-array" + ], + "core-js/modules/es.typed-array.with": [ + "es.typed-array.with" + ], + "core-js/modules/es.uint8-array.from-base64": [ + "es.uint8-array.from-base64" + ], + "core-js/modules/es.uint8-array.from-hex": [ + "es.uint8-array.from-hex" + ], + "core-js/modules/es.uint8-array.set-from-base64": [ + "es.uint8-array.set-from-base64" + ], + "core-js/modules/es.uint8-array.set-from-hex": [ + "es.uint8-array.set-from-hex" + ], + "core-js/modules/es.uint8-array.to-base64": [ + "es.uint8-array.to-base64" + ], + "core-js/modules/es.uint8-array.to-hex": [ + "es.uint8-array.to-hex" + ], + "core-js/modules/es.unescape": [ + "es.unescape" + ], + "core-js/modules/es.weak-map": [ + "es.weak-map" + ], + "core-js/modules/es.weak-map.constructor": [ + "es.weak-map.constructor" + ], + "core-js/modules/es.weak-set": [ + "es.weak-set" + ], + "core-js/modules/es.weak-set.constructor": [ + "es.weak-set.constructor" + ], + "core-js/modules/esnext.aggregate-error": [ + "esnext.aggregate-error" + ], + "core-js/modules/esnext.array-buffer.detached": [ + "esnext.array-buffer.detached" + ], + "core-js/modules/esnext.array-buffer.transfer": [ + "esnext.array-buffer.transfer" + ], + "core-js/modules/esnext.array-buffer.transfer-to-fixed-length": [ + "esnext.array-buffer.transfer-to-fixed-length" + ], + "core-js/modules/esnext.array.at": [ + "esnext.array.at" + ], + "core-js/modules/esnext.array.filter-out": [ + "esnext.array.filter-out" + ], + "core-js/modules/esnext.array.filter-reject": [ + "esnext.array.filter-reject" + ], + "core-js/modules/esnext.array.find-last": [ + "esnext.array.find-last" + ], + "core-js/modules/esnext.array.find-last-index": [ + "esnext.array.find-last-index" + ], + "core-js/modules/esnext.array.from-async": [ + "esnext.array.from-async" + ], + "core-js/modules/esnext.array.group": [ + "esnext.array.group" + ], + "core-js/modules/esnext.array.group-by": [ + "esnext.array.group-by" + ], + "core-js/modules/esnext.array.group-by-to-map": [ + "esnext.array.group-by-to-map" + ], + "core-js/modules/esnext.array.group-to-map": [ + "esnext.array.group-to-map" + ], + "core-js/modules/esnext.array.is-template-object": [ + "esnext.array.is-template-object" + ], + "core-js/modules/esnext.array.last-index": [ + "esnext.array.last-index" + ], + "core-js/modules/esnext.array.last-item": [ + "esnext.array.last-item" + ], + "core-js/modules/esnext.array.to-reversed": [ + "esnext.array.to-reversed" + ], + "core-js/modules/esnext.array.to-sorted": [ + "esnext.array.to-sorted" + ], + "core-js/modules/esnext.array.to-spliced": [ + "esnext.array.to-spliced" + ], + "core-js/modules/esnext.array.unique-by": [ + "esnext.array.unique-by" + ], + "core-js/modules/esnext.array.with": [ + "esnext.array.with" + ], + "core-js/modules/esnext.async-disposable-stack.constructor": [ + "esnext.async-disposable-stack.constructor" + ], + "core-js/modules/esnext.async-iterator.as-indexed-pairs": [ + "esnext.async-iterator.as-indexed-pairs" + ], + "core-js/modules/esnext.async-iterator.async-dispose": [ + "esnext.async-iterator.async-dispose" + ], + "core-js/modules/esnext.async-iterator.constructor": [ + "esnext.async-iterator.constructor" + ], + "core-js/modules/esnext.async-iterator.drop": [ + "esnext.async-iterator.drop" + ], + "core-js/modules/esnext.async-iterator.every": [ + "esnext.async-iterator.every" + ], + "core-js/modules/esnext.async-iterator.filter": [ + "esnext.async-iterator.filter" + ], + "core-js/modules/esnext.async-iterator.find": [ + "esnext.async-iterator.find" + ], + "core-js/modules/esnext.async-iterator.flat-map": [ + "esnext.async-iterator.flat-map" + ], + "core-js/modules/esnext.async-iterator.for-each": [ + "esnext.async-iterator.for-each" + ], + "core-js/modules/esnext.async-iterator.from": [ + "esnext.async-iterator.from" + ], + "core-js/modules/esnext.async-iterator.indexed": [ + "esnext.async-iterator.indexed" + ], + "core-js/modules/esnext.async-iterator.map": [ + "esnext.async-iterator.map" + ], + "core-js/modules/esnext.async-iterator.reduce": [ + "esnext.async-iterator.reduce" + ], + "core-js/modules/esnext.async-iterator.some": [ + "esnext.async-iterator.some" + ], + "core-js/modules/esnext.async-iterator.take": [ + "esnext.async-iterator.take" + ], + "core-js/modules/esnext.async-iterator.to-array": [ + "esnext.async-iterator.to-array" + ], + "core-js/modules/esnext.bigint.range": [ + "esnext.bigint.range" + ], + "core-js/modules/esnext.composite-key": [ + "esnext.composite-key" + ], + "core-js/modules/esnext.composite-symbol": [ + "esnext.composite-symbol" + ], + "core-js/modules/esnext.data-view.get-float16": [ + "esnext.data-view.get-float16" + ], + "core-js/modules/esnext.data-view.get-uint8-clamped": [ + "esnext.data-view.get-uint8-clamped" + ], + "core-js/modules/esnext.data-view.set-float16": [ + "esnext.data-view.set-float16" + ], + "core-js/modules/esnext.data-view.set-uint8-clamped": [ + "esnext.data-view.set-uint8-clamped" + ], + "core-js/modules/esnext.disposable-stack.constructor": [ + "esnext.disposable-stack.constructor" + ], + "core-js/modules/esnext.error.is-error": [ + "esnext.error.is-error" + ], + "core-js/modules/esnext.function.demethodize": [ + "esnext.function.demethodize" + ], + "core-js/modules/esnext.function.is-callable": [ + "esnext.function.is-callable" + ], + "core-js/modules/esnext.function.is-constructor": [ + "esnext.function.is-constructor" + ], + "core-js/modules/esnext.function.metadata": [ + "esnext.function.metadata" + ], + "core-js/modules/esnext.function.un-this": [ + "esnext.function.un-this" + ], + "core-js/modules/esnext.global-this": [ + "esnext.global-this" + ], + "core-js/modules/esnext.iterator.as-indexed-pairs": [ + "esnext.iterator.as-indexed-pairs" + ], + "core-js/modules/esnext.iterator.chunks": [ + "esnext.iterator.chunks" + ], + "core-js/modules/esnext.iterator.concat": [ + "esnext.iterator.concat" + ], + "core-js/modules/esnext.iterator.constructor": [ + "esnext.iterator.constructor" + ], + "core-js/modules/esnext.iterator.dispose": [ + "esnext.iterator.dispose" + ], + "core-js/modules/esnext.iterator.drop": [ + "esnext.iterator.drop" + ], + "core-js/modules/esnext.iterator.every": [ + "esnext.iterator.every" + ], + "core-js/modules/esnext.iterator.filter": [ + "esnext.iterator.filter" + ], + "core-js/modules/esnext.iterator.find": [ + "esnext.iterator.find" + ], + "core-js/modules/esnext.iterator.flat-map": [ + "esnext.iterator.flat-map" + ], + "core-js/modules/esnext.iterator.for-each": [ + "esnext.iterator.for-each" + ], + "core-js/modules/esnext.iterator.from": [ + "esnext.iterator.from" + ], + "core-js/modules/esnext.iterator.indexed": [ + "esnext.iterator.indexed" + ], + "core-js/modules/esnext.iterator.map": [ + "esnext.iterator.map" + ], + "core-js/modules/esnext.iterator.range": [ + "esnext.iterator.range" + ], + "core-js/modules/esnext.iterator.reduce": [ + "esnext.iterator.reduce" + ], + "core-js/modules/esnext.iterator.sliding": [ + "esnext.iterator.sliding" + ], + "core-js/modules/esnext.iterator.some": [ + "esnext.iterator.some" + ], + "core-js/modules/esnext.iterator.take": [ + "esnext.iterator.take" + ], + "core-js/modules/esnext.iterator.to-array": [ + "esnext.iterator.to-array" + ], + "core-js/modules/esnext.iterator.to-async": [ + "esnext.iterator.to-async" + ], + "core-js/modules/esnext.iterator.windows": [ + "esnext.iterator.windows" + ], + "core-js/modules/esnext.iterator.zip": [ + "esnext.iterator.zip" + ], + "core-js/modules/esnext.iterator.zip-keyed": [ + "esnext.iterator.zip-keyed" + ], + "core-js/modules/esnext.json.is-raw-json": [ + "esnext.json.is-raw-json" + ], + "core-js/modules/esnext.json.parse": [ + "esnext.json.parse" + ], + "core-js/modules/esnext.json.raw-json": [ + "esnext.json.raw-json" + ], + "core-js/modules/esnext.map.delete-all": [ + "esnext.map.delete-all" + ], + "core-js/modules/esnext.map.emplace": [ + "esnext.map.emplace" + ], + "core-js/modules/esnext.map.every": [ + "esnext.map.every" + ], + "core-js/modules/esnext.map.filter": [ + "esnext.map.filter" + ], + "core-js/modules/esnext.map.find": [ + "esnext.map.find" + ], + "core-js/modules/esnext.map.find-key": [ + "esnext.map.find-key" + ], + "core-js/modules/esnext.map.from": [ + "esnext.map.from" + ], + "core-js/modules/esnext.map.get-or-insert": [ + "esnext.map.get-or-insert" + ], + "core-js/modules/esnext.map.get-or-insert-computed": [ + "esnext.map.get-or-insert-computed" + ], + "core-js/modules/esnext.map.group-by": [ + "esnext.map.group-by" + ], + "core-js/modules/esnext.map.includes": [ + "esnext.map.includes" + ], + "core-js/modules/esnext.map.key-by": [ + "esnext.map.key-by" + ], + "core-js/modules/esnext.map.key-of": [ + "esnext.map.key-of" + ], + "core-js/modules/esnext.map.map-keys": [ + "esnext.map.map-keys" + ], + "core-js/modules/esnext.map.map-values": [ + "esnext.map.map-values" + ], + "core-js/modules/esnext.map.merge": [ + "esnext.map.merge" + ], + "core-js/modules/esnext.map.of": [ + "esnext.map.of" + ], + "core-js/modules/esnext.map.reduce": [ + "esnext.map.reduce" + ], + "core-js/modules/esnext.map.some": [ + "esnext.map.some" + ], + "core-js/modules/esnext.map.update": [ + "esnext.map.update" + ], + "core-js/modules/esnext.map.update-or-insert": [ + "esnext.map.update-or-insert" + ], + "core-js/modules/esnext.map.upsert": [ + "esnext.map.upsert" + ], + "core-js/modules/esnext.math.clamp": [ + "esnext.math.clamp" + ], + "core-js/modules/esnext.math.deg-per-rad": [ + "esnext.math.deg-per-rad" + ], + "core-js/modules/esnext.math.degrees": [ + "esnext.math.degrees" + ], + "core-js/modules/esnext.math.f16round": [ + "esnext.math.f16round" + ], + "core-js/modules/esnext.math.fscale": [ + "esnext.math.fscale" + ], + "core-js/modules/esnext.math.iaddh": [ + "esnext.math.iaddh" + ], + "core-js/modules/esnext.math.imulh": [ + "esnext.math.imulh" + ], + "core-js/modules/esnext.math.isubh": [ + "esnext.math.isubh" + ], + "core-js/modules/esnext.math.rad-per-deg": [ + "esnext.math.rad-per-deg" + ], + "core-js/modules/esnext.math.radians": [ + "esnext.math.radians" + ], + "core-js/modules/esnext.math.scale": [ + "esnext.math.scale" + ], + "core-js/modules/esnext.math.seeded-prng": [ + "esnext.math.seeded-prng" + ], + "core-js/modules/esnext.math.signbit": [ + "esnext.math.signbit" + ], + "core-js/modules/esnext.math.sum-precise": [ + "esnext.math.sum-precise" + ], + "core-js/modules/esnext.math.umulh": [ + "esnext.math.umulh" + ], + "core-js/modules/esnext.number.clamp": [ + "esnext.number.clamp" + ], + "core-js/modules/esnext.number.from-string": [ + "esnext.number.from-string" + ], + "core-js/modules/esnext.number.range": [ + "esnext.number.range" + ], + "core-js/modules/esnext.object.group-by": [ + "esnext.object.group-by" + ], + "core-js/modules/esnext.object.has-own": [ + "esnext.object.has-own" + ], + "core-js/modules/esnext.object.iterate-entries": [ + "esnext.object.iterate-entries" + ], + "core-js/modules/esnext.object.iterate-keys": [ + "esnext.object.iterate-keys" + ], + "core-js/modules/esnext.object.iterate-values": [ + "esnext.object.iterate-values" + ], + "core-js/modules/esnext.observable": [ + "esnext.observable" + ], + "core-js/modules/esnext.observable.constructor": [ + "esnext.observable.constructor" + ], + "core-js/modules/esnext.observable.from": [ + "esnext.observable.from" + ], + "core-js/modules/esnext.observable.of": [ + "esnext.observable.of" + ], + "core-js/modules/esnext.promise.all-settled": [ + "esnext.promise.all-settled" + ], + "core-js/modules/esnext.promise.any": [ + "esnext.promise.any" + ], + "core-js/modules/esnext.promise.try": [ + "esnext.promise.try" + ], + "core-js/modules/esnext.promise.with-resolvers": [ + "esnext.promise.with-resolvers" + ], + "core-js/modules/esnext.reflect.define-metadata": [ + "esnext.reflect.define-metadata" + ], + "core-js/modules/esnext.reflect.delete-metadata": [ + "esnext.reflect.delete-metadata" + ], + "core-js/modules/esnext.reflect.get-metadata": [ + "esnext.reflect.get-metadata" + ], + "core-js/modules/esnext.reflect.get-metadata-keys": [ + "esnext.reflect.get-metadata-keys" + ], + "core-js/modules/esnext.reflect.get-own-metadata": [ + "esnext.reflect.get-own-metadata" + ], + "core-js/modules/esnext.reflect.get-own-metadata-keys": [ + "esnext.reflect.get-own-metadata-keys" + ], + "core-js/modules/esnext.reflect.has-metadata": [ + "esnext.reflect.has-metadata" + ], + "core-js/modules/esnext.reflect.has-own-metadata": [ + "esnext.reflect.has-own-metadata" + ], + "core-js/modules/esnext.reflect.metadata": [ + "esnext.reflect.metadata" + ], + "core-js/modules/esnext.regexp.escape": [ + "esnext.regexp.escape" + ], + "core-js/modules/esnext.set.add-all": [ + "esnext.set.add-all" + ], + "core-js/modules/esnext.set.delete-all": [ + "esnext.set.delete-all" + ], + "core-js/modules/esnext.set.difference": [ + "esnext.set.difference" + ], + "core-js/modules/esnext.set.difference.v2": [ + "esnext.set.difference.v2" + ], + "core-js/modules/esnext.set.every": [ + "esnext.set.every" + ], + "core-js/modules/esnext.set.filter": [ + "esnext.set.filter" + ], + "core-js/modules/esnext.set.find": [ + "esnext.set.find" + ], + "core-js/modules/esnext.set.from": [ + "esnext.set.from" + ], + "core-js/modules/esnext.set.intersection": [ + "esnext.set.intersection" + ], + "core-js/modules/esnext.set.intersection.v2": [ + "esnext.set.intersection.v2" + ], + "core-js/modules/esnext.set.is-disjoint-from": [ + "esnext.set.is-disjoint-from" + ], + "core-js/modules/esnext.set.is-disjoint-from.v2": [ + "esnext.set.is-disjoint-from.v2" + ], + "core-js/modules/esnext.set.is-subset-of": [ + "esnext.set.is-subset-of" + ], + "core-js/modules/esnext.set.is-subset-of.v2": [ + "esnext.set.is-subset-of.v2" + ], + "core-js/modules/esnext.set.is-superset-of": [ + "esnext.set.is-superset-of" + ], + "core-js/modules/esnext.set.is-superset-of.v2": [ + "esnext.set.is-superset-of.v2" + ], + "core-js/modules/esnext.set.join": [ + "esnext.set.join" + ], + "core-js/modules/esnext.set.map": [ + "esnext.set.map" + ], + "core-js/modules/esnext.set.of": [ + "esnext.set.of" + ], + "core-js/modules/esnext.set.reduce": [ + "esnext.set.reduce" + ], + "core-js/modules/esnext.set.some": [ + "esnext.set.some" + ], + "core-js/modules/esnext.set.symmetric-difference": [ + "esnext.set.symmetric-difference" + ], + "core-js/modules/esnext.set.symmetric-difference.v2": [ + "esnext.set.symmetric-difference.v2" + ], + "core-js/modules/esnext.set.union": [ + "esnext.set.union" + ], + "core-js/modules/esnext.set.union.v2": [ + "esnext.set.union.v2" + ], + "core-js/modules/esnext.string.at": [ + "esnext.string.at" + ], + "core-js/modules/esnext.string.at-alternative": [ + "esnext.string.at-alternative" + ], + "core-js/modules/esnext.string.code-points": [ + "esnext.string.code-points" + ], + "core-js/modules/esnext.string.cooked": [ + "esnext.string.cooked" + ], + "core-js/modules/esnext.string.dedent": [ + "esnext.string.dedent" + ], + "core-js/modules/esnext.string.is-well-formed": [ + "esnext.string.is-well-formed" + ], + "core-js/modules/esnext.string.match-all": [ + "esnext.string.match-all" + ], + "core-js/modules/esnext.string.replace-all": [ + "esnext.string.replace-all" + ], + "core-js/modules/esnext.string.to-well-formed": [ + "esnext.string.to-well-formed" + ], + "core-js/modules/esnext.suppressed-error.constructor": [ + "esnext.suppressed-error.constructor" + ], + "core-js/modules/esnext.symbol.async-dispose": [ + "esnext.symbol.async-dispose" + ], + "core-js/modules/esnext.symbol.custom-matcher": [ + "esnext.symbol.custom-matcher" + ], + "core-js/modules/esnext.symbol.dispose": [ + "esnext.symbol.dispose" + ], + "core-js/modules/esnext.symbol.is-registered": [ + "esnext.symbol.is-registered" + ], + "core-js/modules/esnext.symbol.is-registered-symbol": [ + "esnext.symbol.is-registered-symbol" + ], + "core-js/modules/esnext.symbol.is-well-known": [ + "esnext.symbol.is-well-known" + ], + "core-js/modules/esnext.symbol.is-well-known-symbol": [ + "esnext.symbol.is-well-known-symbol" + ], + "core-js/modules/esnext.symbol.matcher": [ + "esnext.symbol.matcher" + ], + "core-js/modules/esnext.symbol.metadata": [ + "esnext.symbol.metadata" + ], + "core-js/modules/esnext.symbol.metadata-key": [ + "esnext.symbol.metadata-key" + ], + "core-js/modules/esnext.symbol.observable": [ + "esnext.symbol.observable" + ], + "core-js/modules/esnext.symbol.pattern-match": [ + "esnext.symbol.pattern-match" + ], + "core-js/modules/esnext.symbol.replace-all": [ + "esnext.symbol.replace-all" + ], + "core-js/modules/esnext.typed-array.at": [ + "esnext.typed-array.at" + ], + "core-js/modules/esnext.typed-array.filter-out": [ + "esnext.typed-array.filter-out" + ], + "core-js/modules/esnext.typed-array.filter-reject": [ + "esnext.typed-array.filter-reject" + ], + "core-js/modules/esnext.typed-array.find-last": [ + "esnext.typed-array.find-last" + ], + "core-js/modules/esnext.typed-array.find-last-index": [ + "esnext.typed-array.find-last-index" + ], + "core-js/modules/esnext.typed-array.from-async": [ + "esnext.typed-array.from-async" + ], + "core-js/modules/esnext.typed-array.group-by": [ + "esnext.typed-array.group-by" + ], + "core-js/modules/esnext.typed-array.to-reversed": [ + "esnext.typed-array.to-reversed" + ], + "core-js/modules/esnext.typed-array.to-sorted": [ + "esnext.typed-array.to-sorted" + ], + "core-js/modules/esnext.typed-array.to-spliced": [ + "esnext.typed-array.to-spliced" + ], + "core-js/modules/esnext.typed-array.unique-by": [ + "esnext.typed-array.unique-by" + ], + "core-js/modules/esnext.typed-array.with": [ + "esnext.typed-array.with" + ], + "core-js/modules/esnext.uint8-array.from-base64": [ + "esnext.uint8-array.from-base64" + ], + "core-js/modules/esnext.uint8-array.from-hex": [ + "esnext.uint8-array.from-hex" + ], + "core-js/modules/esnext.uint8-array.set-from-base64": [ + "esnext.uint8-array.set-from-base64" + ], + "core-js/modules/esnext.uint8-array.set-from-hex": [ + "esnext.uint8-array.set-from-hex" + ], + "core-js/modules/esnext.uint8-array.to-base64": [ + "esnext.uint8-array.to-base64" + ], + "core-js/modules/esnext.uint8-array.to-hex": [ + "esnext.uint8-array.to-hex" + ], + "core-js/modules/esnext.weak-map.delete-all": [ + "esnext.weak-map.delete-all" + ], + "core-js/modules/esnext.weak-map.emplace": [ + "esnext.weak-map.emplace" + ], + "core-js/modules/esnext.weak-map.from": [ + "esnext.weak-map.from" + ], + "core-js/modules/esnext.weak-map.get-or-insert": [ + "esnext.weak-map.get-or-insert" + ], + "core-js/modules/esnext.weak-map.get-or-insert-computed": [ + "esnext.weak-map.get-or-insert-computed" + ], + "core-js/modules/esnext.weak-map.of": [ + "esnext.weak-map.of" + ], + "core-js/modules/esnext.weak-map.upsert": [ + "esnext.weak-map.upsert" + ], + "core-js/modules/esnext.weak-set.add-all": [ + "esnext.weak-set.add-all" + ], + "core-js/modules/esnext.weak-set.delete-all": [ + "esnext.weak-set.delete-all" + ], + "core-js/modules/esnext.weak-set.from": [ + "esnext.weak-set.from" + ], + "core-js/modules/esnext.weak-set.of": [ + "esnext.weak-set.of" + ], + "core-js/modules/web.atob": [ + "web.atob" + ], + "core-js/modules/web.btoa": [ + "web.btoa" + ], + "core-js/modules/web.clear-immediate": [ + "web.clear-immediate" + ], + "core-js/modules/web.dom-collections.for-each": [ + "web.dom-collections.for-each" + ], + "core-js/modules/web.dom-collections.iterator": [ + "web.dom-collections.iterator" + ], + "core-js/modules/web.dom-exception.constructor": [ + "web.dom-exception.constructor" + ], + "core-js/modules/web.dom-exception.stack": [ + "web.dom-exception.stack" + ], + "core-js/modules/web.dom-exception.to-string-tag": [ + "web.dom-exception.to-string-tag" + ], + "core-js/modules/web.immediate": [ + "web.immediate" + ], + "core-js/modules/web.queue-microtask": [ + "web.queue-microtask" + ], + "core-js/modules/web.self": [ + "web.self" + ], + "core-js/modules/web.set-immediate": [ + "web.set-immediate" + ], + "core-js/modules/web.set-interval": [ + "web.set-interval" + ], + "core-js/modules/web.set-timeout": [ + "web.set-timeout" + ], + "core-js/modules/web.structured-clone": [ + "web.structured-clone" + ], + "core-js/modules/web.timers": [ + "web.timers" + ], + "core-js/modules/web.url": [ + "web.url" + ], + "core-js/modules/web.url-search-params": [ + "web.url-search-params" + ], + "core-js/modules/web.url-search-params.constructor": [ + "web.url-search-params.constructor" + ], + "core-js/modules/web.url-search-params.delete": [ + "web.url-search-params.delete" + ], + "core-js/modules/web.url-search-params.has": [ + "web.url-search-params.has" + ], + "core-js/modules/web.url-search-params.size": [ + "web.url-search-params.size" + ], + "core-js/modules/web.url.can-parse": [ + "web.url.can-parse" + ], + "core-js/modules/web.url.constructor": [ + "web.url.constructor" + ], + "core-js/modules/web.url.parse": [ + "web.url.parse" + ], + "core-js/modules/web.url.to-json": [ + "web.url.to-json" + ], + "core-js/proposals": [ + "es.map", + "es.string.at-alternative", + "esnext.aggregate-error", + "esnext.suppressed-error.constructor", + "esnext.array.from-async", + "esnext.array.at", + "esnext.array.filter-out", + "esnext.array.filter-reject", + "esnext.array.find-last", + "esnext.array.find-last-index", + "esnext.array.group", + "esnext.array.group-by", + "esnext.array.group-by-to-map", + "esnext.array.group-to-map", + "esnext.array.is-template-object", + "esnext.array.last-index", + "esnext.array.last-item", + "esnext.array.to-reversed", + "esnext.array.to-sorted", + "esnext.array.to-spliced", + "esnext.array.unique-by", + "esnext.array.with", + "esnext.array-buffer.detached", + "esnext.array-buffer.transfer", + "esnext.array-buffer.transfer-to-fixed-length", + "esnext.async-disposable-stack.constructor", + "esnext.async-iterator.constructor", + "esnext.async-iterator.as-indexed-pairs", + "esnext.async-iterator.async-dispose", + "esnext.async-iterator.drop", + "esnext.async-iterator.every", + "esnext.async-iterator.filter", + "esnext.async-iterator.find", + "esnext.async-iterator.flat-map", + "esnext.async-iterator.for-each", + "esnext.async-iterator.from", + "esnext.async-iterator.indexed", + "esnext.async-iterator.map", + "esnext.async-iterator.reduce", + "esnext.async-iterator.some", + "esnext.async-iterator.take", + "esnext.async-iterator.to-array", + "esnext.bigint.range", + "esnext.composite-key", + "esnext.composite-symbol", + "esnext.data-view.get-float16", + "esnext.data-view.get-uint8-clamped", + "esnext.data-view.set-float16", + "esnext.data-view.set-uint8-clamped", + "esnext.disposable-stack.constructor", + "esnext.error.is-error", + "esnext.function.demethodize", + "esnext.function.is-callable", + "esnext.function.is-constructor", + "esnext.function.metadata", + "esnext.function.un-this", + "esnext.global-this", + "esnext.iterator.constructor", + "esnext.iterator.as-indexed-pairs", + "esnext.iterator.chunks", + "esnext.iterator.concat", + "esnext.iterator.dispose", + "esnext.iterator.drop", + "esnext.iterator.every", + "esnext.iterator.filter", + "esnext.iterator.find", + "esnext.iterator.flat-map", + "esnext.iterator.for-each", + "esnext.iterator.from", + "esnext.iterator.indexed", + "esnext.iterator.map", + "esnext.iterator.range", + "esnext.iterator.reduce", + "esnext.iterator.sliding", + "esnext.iterator.some", + "esnext.iterator.take", + "esnext.iterator.to-array", + "esnext.iterator.to-async", + "esnext.iterator.windows", + "esnext.iterator.zip", + "esnext.iterator.zip-keyed", + "esnext.json.is-raw-json", + "esnext.json.parse", + "esnext.json.raw-json", + "esnext.map.delete-all", + "esnext.map.emplace", + "esnext.map.every", + "esnext.map.filter", + "esnext.map.find", + "esnext.map.find-key", + "esnext.map.from", + "esnext.map.get-or-insert", + "esnext.map.get-or-insert-computed", + "esnext.map.group-by", + "esnext.map.includes", + "esnext.map.key-by", + "esnext.map.key-of", + "esnext.map.map-keys", + "esnext.map.map-values", + "esnext.map.merge", + "esnext.map.of", + "esnext.map.reduce", + "esnext.map.some", + "esnext.map.update", + "esnext.map.update-or-insert", + "esnext.map.upsert", + "esnext.math.clamp", + "esnext.math.deg-per-rad", + "esnext.math.degrees", + "esnext.math.fscale", + "esnext.math.f16round", + "esnext.math.iaddh", + "esnext.math.imulh", + "esnext.math.isubh", + "esnext.math.rad-per-deg", + "esnext.math.radians", + "esnext.math.scale", + "esnext.math.seeded-prng", + "esnext.math.signbit", + "esnext.math.sum-precise", + "esnext.math.umulh", + "esnext.number.clamp", + "esnext.number.from-string", + "esnext.number.range", + "esnext.object.has-own", + "esnext.object.iterate-entries", + "esnext.object.iterate-keys", + "esnext.object.iterate-values", + "esnext.object.group-by", + "esnext.observable", + "esnext.promise.all-settled", + "esnext.promise.any", + "esnext.promise.try", + "esnext.promise.with-resolvers", + "esnext.reflect.define-metadata", + "esnext.reflect.delete-metadata", + "esnext.reflect.get-metadata", + "esnext.reflect.get-metadata-keys", + "esnext.reflect.get-own-metadata", + "esnext.reflect.get-own-metadata-keys", + "esnext.reflect.has-metadata", + "esnext.reflect.has-own-metadata", + "esnext.reflect.metadata", + "esnext.regexp.escape", + "esnext.set.add-all", + "esnext.set.delete-all", + "esnext.set.difference.v2", + "esnext.set.difference", + "esnext.set.every", + "esnext.set.filter", + "esnext.set.find", + "esnext.set.from", + "esnext.set.intersection.v2", + "esnext.set.intersection", + "esnext.set.is-disjoint-from.v2", + "esnext.set.is-disjoint-from", + "esnext.set.is-subset-of.v2", + "esnext.set.is-subset-of", + "esnext.set.is-superset-of.v2", + "esnext.set.is-superset-of", + "esnext.set.join", + "esnext.set.map", + "esnext.set.of", + "esnext.set.reduce", + "esnext.set.some", + "esnext.set.symmetric-difference.v2", + "esnext.set.symmetric-difference", + "esnext.set.union.v2", + "esnext.set.union", + "esnext.string.at", + "esnext.string.cooked", + "esnext.string.code-points", + "esnext.string.dedent", + "esnext.string.is-well-formed", + "esnext.string.match-all", + "esnext.string.replace-all", + "esnext.string.to-well-formed", + "esnext.symbol.async-dispose", + "esnext.symbol.custom-matcher", + "esnext.symbol.dispose", + "esnext.symbol.is-registered-symbol", + "esnext.symbol.is-registered", + "esnext.symbol.is-well-known-symbol", + "esnext.symbol.is-well-known", + "esnext.symbol.matcher", + "esnext.symbol.metadata", + "esnext.symbol.metadata-key", + "esnext.symbol.observable", + "esnext.symbol.pattern-match", + "esnext.symbol.replace-all", + "esnext.typed-array.from-async", + "esnext.typed-array.at", + "esnext.typed-array.filter-out", + "esnext.typed-array.filter-reject", + "esnext.typed-array.find-last", + "esnext.typed-array.find-last-index", + "esnext.typed-array.group-by", + "esnext.typed-array.to-reversed", + "esnext.typed-array.to-sorted", + "esnext.typed-array.to-spliced", + "esnext.typed-array.unique-by", + "esnext.typed-array.with", + "esnext.uint8-array.from-base64", + "esnext.uint8-array.from-hex", + "esnext.uint8-array.set-from-base64", + "esnext.uint8-array.set-from-hex", + "esnext.uint8-array.to-base64", + "esnext.uint8-array.to-hex", + "esnext.weak-map.delete-all", + "esnext.weak-map.from", + "esnext.weak-map.of", + "esnext.weak-map.emplace", + "esnext.weak-map.get-or-insert", + "esnext.weak-map.get-or-insert-computed", + "esnext.weak-map.upsert", + "esnext.weak-set.add-all", + "esnext.weak-set.delete-all", + "esnext.weak-set.from", + "esnext.weak-set.of", + "web.url", + "web.url.can-parse", + "web.url.parse", + "web.url.to-json", + "web.url-search-params", + "web.url-search-params.delete", + "web.url-search-params.has", + "web.url-search-params.size" + ], + "core-js/proposals/accessible-object-hasownproperty": [ + "esnext.object.has-own" + ], + "core-js/proposals/array-buffer-base64": [ + "esnext.uint8-array.from-base64", + "esnext.uint8-array.from-hex", + "esnext.uint8-array.set-from-base64", + "esnext.uint8-array.set-from-hex", + "esnext.uint8-array.to-base64", + "esnext.uint8-array.to-hex" + ], + "core-js/proposals/array-buffer-transfer": [ + "esnext.array-buffer.detached", + "esnext.array-buffer.transfer", + "esnext.array-buffer.transfer-to-fixed-length" + ], + "core-js/proposals/array-filtering": [ + "esnext.array.filter-out", + "esnext.array.filter-reject", + "esnext.typed-array.filter-out", + "esnext.typed-array.filter-reject" + ], + "core-js/proposals/array-filtering-stage-1": [ + "esnext.array.filter-reject", + "esnext.typed-array.filter-reject" + ], + "core-js/proposals/array-find-from-last": [ + "esnext.array.find-last", + "esnext.array.find-last-index", + "esnext.typed-array.find-last", + "esnext.typed-array.find-last-index" + ], + "core-js/proposals/array-flat-map": [ + "es.array.flat", + "es.array.flat-map", + "es.array.unscopables.flat", + "es.array.unscopables.flat-map" + ], + "core-js/proposals/array-from-async": [ + "esnext.array.from-async", + "esnext.typed-array.from-async" + ], + "core-js/proposals/array-from-async-stage-2": [ + "esnext.array.from-async" + ], + "core-js/proposals/array-grouping": [ + "esnext.array.group-by", + "esnext.array.group-by-to-map", + "esnext.typed-array.group-by" + ], + "core-js/proposals/array-grouping-stage-3": [ + "esnext.array.group-by", + "esnext.array.group-by-to-map" + ], + "core-js/proposals/array-grouping-stage-3-2": [ + "esnext.array.group", + "esnext.array.group-to-map" + ], + "core-js/proposals/array-grouping-v2": [ + "esnext.map.group-by", + "esnext.object.group-by" + ], + "core-js/proposals/array-includes": [ + "es.array.includes", + "es.typed-array.includes" + ], + "core-js/proposals/array-is-template-object": [ + "esnext.array.is-template-object" + ], + "core-js/proposals/array-last": [ + "esnext.array.last-index", + "esnext.array.last-item" + ], + "core-js/proposals/array-unique": [ + "es.map", + "esnext.array.unique-by", + "esnext.typed-array.unique-by" + ], + "core-js/proposals/async-explicit-resource-management": [ + "esnext.suppressed-error.constructor", + "esnext.async-disposable-stack.constructor", + "esnext.async-iterator.async-dispose", + "esnext.symbol.async-dispose" + ], + "core-js/proposals/async-iteration": [ + "es.symbol.async-iterator" + ], + "core-js/proposals/async-iterator-helpers": [ + "esnext.async-iterator.constructor", + "esnext.async-iterator.drop", + "esnext.async-iterator.every", + "esnext.async-iterator.filter", + "esnext.async-iterator.find", + "esnext.async-iterator.flat-map", + "esnext.async-iterator.for-each", + "esnext.async-iterator.from", + "esnext.async-iterator.map", + "esnext.async-iterator.reduce", + "esnext.async-iterator.some", + "esnext.async-iterator.take", + "esnext.async-iterator.to-array", + "esnext.iterator.to-async" + ], + "core-js/proposals/change-array-by-copy": [ + "esnext.array.to-reversed", + "esnext.array.to-sorted", + "esnext.array.to-spliced", + "esnext.array.with", + "esnext.typed-array.to-reversed", + "esnext.typed-array.to-sorted", + "esnext.typed-array.to-spliced", + "esnext.typed-array.with" + ], + "core-js/proposals/change-array-by-copy-stage-4": [ + "esnext.array.to-reversed", + "esnext.array.to-sorted", + "esnext.array.to-spliced", + "esnext.array.with", + "esnext.typed-array.to-reversed", + "esnext.typed-array.to-sorted", + "esnext.typed-array.with" + ], + "core-js/proposals/collection-methods": [ + "esnext.map.delete-all", + "esnext.map.every", + "esnext.map.filter", + "esnext.map.find", + "esnext.map.find-key", + "esnext.map.group-by", + "esnext.map.includes", + "esnext.map.key-by", + "esnext.map.key-of", + "esnext.map.map-keys", + "esnext.map.map-values", + "esnext.map.merge", + "esnext.map.reduce", + "esnext.map.some", + "esnext.map.update", + "esnext.set.add-all", + "esnext.set.delete-all", + "esnext.set.every", + "esnext.set.filter", + "esnext.set.find", + "esnext.set.join", + "esnext.set.map", + "esnext.set.reduce", + "esnext.set.some", + "esnext.weak-map.delete-all", + "esnext.weak-set.add-all", + "esnext.weak-set.delete-all" + ], + "core-js/proposals/collection-of-from": [ + "esnext.map.from", + "esnext.map.of", + "esnext.set.from", + "esnext.set.of", + "esnext.weak-map.from", + "esnext.weak-map.of", + "esnext.weak-set.from", + "esnext.weak-set.of" + ], + "core-js/proposals/data-view-get-set-uint8-clamped": [ + "esnext.data-view.get-uint8-clamped", + "esnext.data-view.set-uint8-clamped" + ], + "core-js/proposals/decorator-metadata": [ + "esnext.symbol.metadata-key" + ], + "core-js/proposals/decorator-metadata-v2": [ + "esnext.function.metadata", + "esnext.symbol.metadata" + ], + "core-js/proposals/decorators": [ + "esnext.symbol.metadata" + ], + "core-js/proposals/efficient-64-bit-arithmetic": [ + "esnext.math.iaddh", + "esnext.math.imulh", + "esnext.math.isubh", + "esnext.math.umulh" + ], + "core-js/proposals/error-cause": [ + "es.error.cause", + "es.aggregate-error.cause" + ], + "core-js/proposals/explicit-resource-management": [ + "esnext.suppressed-error.constructor", + "esnext.async-disposable-stack.constructor", + "esnext.async-iterator.async-dispose", + "esnext.disposable-stack.constructor", + "esnext.iterator.dispose", + "esnext.symbol.async-dispose", + "esnext.symbol.dispose" + ], + "core-js/proposals/extractors": [ + "esnext.symbol.custom-matcher" + ], + "core-js/proposals/float16": [ + "esnext.data-view.get-float16", + "esnext.data-view.set-float16", + "esnext.math.f16round" + ], + "core-js/proposals/function-demethodize": [ + "esnext.function.demethodize" + ], + "core-js/proposals/function-is-callable-is-constructor": [ + "esnext.function.is-callable", + "esnext.function.is-constructor" + ], + "core-js/proposals/function-un-this": [ + "esnext.function.un-this" + ], + "core-js/proposals/global-this": [ + "esnext.global-this" + ], + "core-js/proposals/is-error": [ + "esnext.error.is-error" + ], + "core-js/proposals/iterator-chunking": [ + "esnext.iterator.chunks", + "esnext.iterator.sliding", + "esnext.iterator.windows" + ], + "core-js/proposals/iterator-helpers": [ + "esnext.async-iterator.constructor", + "esnext.async-iterator.as-indexed-pairs", + "esnext.async-iterator.drop", + "esnext.async-iterator.every", + "esnext.async-iterator.filter", + "esnext.async-iterator.find", + "esnext.async-iterator.flat-map", + "esnext.async-iterator.for-each", + "esnext.async-iterator.from", + "esnext.async-iterator.indexed", + "esnext.async-iterator.map", + "esnext.async-iterator.reduce", + "esnext.async-iterator.some", + "esnext.async-iterator.take", + "esnext.async-iterator.to-array", + "esnext.iterator.constructor", + "esnext.iterator.as-indexed-pairs", + "esnext.iterator.drop", + "esnext.iterator.every", + "esnext.iterator.filter", + "esnext.iterator.find", + "esnext.iterator.flat-map", + "esnext.iterator.for-each", + "esnext.iterator.from", + "esnext.iterator.indexed", + "esnext.iterator.map", + "esnext.iterator.reduce", + "esnext.iterator.some", + "esnext.iterator.take", + "esnext.iterator.to-array", + "esnext.iterator.to-async" + ], + "core-js/proposals/iterator-helpers-stage-3": [ + "esnext.async-iterator.constructor", + "esnext.async-iterator.drop", + "esnext.async-iterator.every", + "esnext.async-iterator.filter", + "esnext.async-iterator.find", + "esnext.async-iterator.flat-map", + "esnext.async-iterator.for-each", + "esnext.async-iterator.from", + "esnext.async-iterator.map", + "esnext.async-iterator.reduce", + "esnext.async-iterator.some", + "esnext.async-iterator.take", + "esnext.async-iterator.to-array", + "esnext.iterator.constructor", + "esnext.iterator.drop", + "esnext.iterator.every", + "esnext.iterator.filter", + "esnext.iterator.find", + "esnext.iterator.flat-map", + "esnext.iterator.for-each", + "esnext.iterator.from", + "esnext.iterator.map", + "esnext.iterator.reduce", + "esnext.iterator.some", + "esnext.iterator.take", + "esnext.iterator.to-array", + "esnext.iterator.to-async" + ], + "core-js/proposals/iterator-helpers-stage-3-2": [ + "esnext.iterator.constructor", + "esnext.iterator.drop", + "esnext.iterator.every", + "esnext.iterator.filter", + "esnext.iterator.find", + "esnext.iterator.flat-map", + "esnext.iterator.for-each", + "esnext.iterator.from", + "esnext.iterator.map", + "esnext.iterator.reduce", + "esnext.iterator.some", + "esnext.iterator.take", + "esnext.iterator.to-array" + ], + "core-js/proposals/iterator-range": [ + "esnext.iterator.constructor", + "esnext.iterator.range" + ], + "core-js/proposals/iterator-sequencing": [ + "esnext.iterator.concat" + ], + "core-js/proposals/joint-iteration": [ + "esnext.iterator.zip", + "esnext.iterator.zip-keyed" + ], + "core-js/proposals/json-parse-with-source": [ + "esnext.json.is-raw-json", + "esnext.json.parse", + "esnext.json.raw-json" + ], + "core-js/proposals/keys-composition": [ + "esnext.composite-key", + "esnext.composite-symbol" + ], + "core-js/proposals/map-update-or-insert": [ + "esnext.map.emplace", + "esnext.map.update-or-insert", + "esnext.map.upsert", + "esnext.weak-map.emplace", + "esnext.weak-map.upsert" + ], + "core-js/proposals/map-upsert": [ + "esnext.map.emplace", + "esnext.map.update-or-insert", + "esnext.map.upsert", + "esnext.weak-map.emplace", + "esnext.weak-map.upsert" + ], + "core-js/proposals/map-upsert-stage-2": [ + "esnext.map.emplace", + "esnext.weak-map.emplace" + ], + "core-js/proposals/map-upsert-v4": [ + "esnext.map.get-or-insert", + "esnext.map.get-or-insert-computed", + "esnext.weak-map.get-or-insert", + "esnext.weak-map.get-or-insert-computed" + ], + "core-js/proposals/math-clamp": [ + "esnext.math.clamp" + ], + "core-js/proposals/math-clamp-v2": [ + "esnext.number.clamp" + ], + "core-js/proposals/math-extensions": [ + "esnext.math.clamp", + "esnext.math.deg-per-rad", + "esnext.math.degrees", + "esnext.math.fscale", + "esnext.math.rad-per-deg", + "esnext.math.radians", + "esnext.math.scale" + ], + "core-js/proposals/math-signbit": [ + "esnext.math.signbit" + ], + "core-js/proposals/math-sum": [ + "esnext.math.sum-precise" + ], + "core-js/proposals/number-from-string": [ + "esnext.number.from-string" + ], + "core-js/proposals/number-range": [ + "esnext.bigint.range", + "esnext.number.range" + ], + "core-js/proposals/object-from-entries": [ + "es.object.from-entries" + ], + "core-js/proposals/object-getownpropertydescriptors": [ + "es.object.get-own-property-descriptors" + ], + "core-js/proposals/object-iteration": [ + "esnext.object.iterate-entries", + "esnext.object.iterate-keys", + "esnext.object.iterate-values" + ], + "core-js/proposals/object-values-entries": [ + "es.object.entries", + "es.object.values" + ], + "core-js/proposals/observable": [ + "esnext.observable", + "esnext.symbol.observable" + ], + "core-js/proposals/pattern-matching": [ + "esnext.symbol.matcher", + "esnext.symbol.pattern-match" + ], + "core-js/proposals/pattern-matching-v2": [ + "esnext.symbol.custom-matcher" + ], + "core-js/proposals/promise-all-settled": [ + "esnext.promise.all-settled" + ], + "core-js/proposals/promise-any": [ + "esnext.aggregate-error", + "esnext.promise.any" + ], + "core-js/proposals/promise-finally": [ + "es.promise.finally" + ], + "core-js/proposals/promise-try": [ + "esnext.promise.try" + ], + "core-js/proposals/promise-with-resolvers": [ + "esnext.promise.with-resolvers" + ], + "core-js/proposals/reflect-metadata": [ + "esnext.reflect.define-metadata", + "esnext.reflect.delete-metadata", + "esnext.reflect.get-metadata", + "esnext.reflect.get-metadata-keys", + "esnext.reflect.get-own-metadata", + "esnext.reflect.get-own-metadata-keys", + "esnext.reflect.has-metadata", + "esnext.reflect.has-own-metadata", + "esnext.reflect.metadata" + ], + "core-js/proposals/regexp-dotall-flag": [ + "es.regexp.constructor", + "es.regexp.dot-all", + "es.regexp.exec", + "es.regexp.flags" + ], + "core-js/proposals/regexp-escaping": [ + "esnext.regexp.escape" + ], + "core-js/proposals/regexp-named-groups": [ + "es.regexp.constructor", + "es.regexp.exec", + "es.string.replace" + ], + "core-js/proposals/relative-indexing-method": [ + "es.string.at-alternative", + "esnext.array.at", + "esnext.typed-array.at" + ], + "core-js/proposals/seeded-random": [ + "esnext.math.seeded-prng" + ], + "core-js/proposals/set-methods": [ + "esnext.set.difference.v2", + "esnext.set.difference", + "esnext.set.intersection.v2", + "esnext.set.intersection", + "esnext.set.is-disjoint-from.v2", + "esnext.set.is-disjoint-from", + "esnext.set.is-subset-of.v2", + "esnext.set.is-subset-of", + "esnext.set.is-superset-of.v2", + "esnext.set.is-superset-of", + "esnext.set.symmetric-difference.v2", + "esnext.set.symmetric-difference", + "esnext.set.union.v2", + "esnext.set.union" + ], + "core-js/proposals/set-methods-v2": [ + "esnext.set.difference.v2", + "esnext.set.intersection.v2", + "esnext.set.is-disjoint-from.v2", + "esnext.set.is-subset-of.v2", + "esnext.set.is-superset-of.v2", + "esnext.set.symmetric-difference.v2", + "esnext.set.union.v2" + ], + "core-js/proposals/string-at": [ + "esnext.string.at" + ], + "core-js/proposals/string-code-points": [ + "esnext.string.code-points" + ], + "core-js/proposals/string-cooked": [ + "esnext.string.cooked" + ], + "core-js/proposals/string-dedent": [ + "esnext.string.dedent" + ], + "core-js/proposals/string-left-right-trim": [ + "es.string.trim-end", + "es.string.trim-start" + ], + "core-js/proposals/string-match-all": [ + "esnext.string.match-all" + ], + "core-js/proposals/string-padding": [ + "es.string.pad-end", + "es.string.pad-start" + ], + "core-js/proposals/string-replace-all": [ + "esnext.string.replace-all", + "esnext.symbol.replace-all" + ], + "core-js/proposals/string-replace-all-stage-4": [ + "esnext.string.replace-all" + ], + "core-js/proposals/symbol-description": [ + "es.symbol.description" + ], + "core-js/proposals/symbol-predicates": [ + "esnext.symbol.is-registered", + "esnext.symbol.is-well-known" + ], + "core-js/proposals/symbol-predicates-v2": [ + "esnext.symbol.is-registered-symbol", + "esnext.symbol.is-well-known-symbol" + ], + "core-js/proposals/url": [ + "web.url", + "web.url.can-parse", + "web.url.parse", + "web.url.to-json", + "web.url-search-params", + "web.url-search-params.delete", + "web.url-search-params.has", + "web.url-search-params.size" + ], + "core-js/proposals/using-statement": [ + "esnext.symbol.async-dispose", + "esnext.symbol.dispose" + ], + "core-js/proposals/well-formed-stringify": [ + "es.json.stringify" + ], + "core-js/proposals/well-formed-unicode-strings": [ + "esnext.string.is-well-formed", + "esnext.string.to-well-formed" + ], + "core-js/stable": [ + "es.symbol", + "es.symbol.description", + "es.symbol.async-dispose", + "es.symbol.async-iterator", + "es.symbol.dispose", + "es.symbol.has-instance", + "es.symbol.is-concat-spreadable", + "es.symbol.iterator", + "es.symbol.match", + "es.symbol.match-all", + "es.symbol.replace", + "es.symbol.search", + "es.symbol.species", + "es.symbol.split", + "es.symbol.to-primitive", + "es.symbol.to-string-tag", + "es.symbol.unscopables", + "es.error.cause", + "es.error.is-error", + "es.error.to-string", + "es.aggregate-error", + "es.aggregate-error.cause", + "es.suppressed-error.constructor", + "es.array.at", + "es.array.concat", + "es.array.copy-within", + "es.array.every", + "es.array.fill", + "es.array.filter", + "es.array.find", + "es.array.find-index", + "es.array.find-last", + "es.array.find-last-index", + "es.array.flat", + "es.array.flat-map", + "es.array.for-each", + "es.array.from", + "es.array.includes", + "es.array.index-of", + "es.array.is-array", + "es.array.iterator", + "es.array.join", + "es.array.last-index-of", + "es.array.map", + "es.array.of", + "es.array.push", + "es.array.reduce", + "es.array.reduce-right", + "es.array.reverse", + "es.array.slice", + "es.array.some", + "es.array.sort", + "es.array.species", + "es.array.splice", + "es.array.to-reversed", + "es.array.to-sorted", + "es.array.to-spliced", + "es.array.unscopables.flat", + "es.array.unscopables.flat-map", + "es.array.unshift", + "es.array.with", + "es.array-buffer.constructor", + "es.array-buffer.is-view", + "es.array-buffer.slice", + "es.data-view", + "es.data-view.get-float16", + "es.data-view.set-float16", + "es.array-buffer.detached", + "es.array-buffer.transfer", + "es.array-buffer.transfer-to-fixed-length", + "es.date.get-year", + "es.date.now", + "es.date.set-year", + "es.date.to-gmt-string", + "es.date.to-iso-string", + "es.date.to-json", + "es.date.to-primitive", + "es.date.to-string", + "es.disposable-stack.constructor", + "es.escape", + "es.function.bind", + "es.function.has-instance", + "es.function.name", + "es.global-this", + "es.iterator.constructor", + "es.iterator.dispose", + "es.iterator.drop", + "es.iterator.every", + "es.iterator.filter", + "es.iterator.find", + "es.iterator.flat-map", + "es.iterator.for-each", + "es.iterator.from", + "es.iterator.map", + "es.iterator.reduce", + "es.iterator.some", + "es.iterator.take", + "es.iterator.to-array", + "es.json.stringify", + "es.json.to-string-tag", + "es.map", + "es.map.group-by", + "es.math.acosh", + "es.math.asinh", + "es.math.atanh", + "es.math.cbrt", + "es.math.clz32", + "es.math.cosh", + "es.math.expm1", + "es.math.fround", + "es.math.f16round", + "es.math.hypot", + "es.math.imul", + "es.math.log10", + "es.math.log1p", + "es.math.log2", + "es.math.sign", + "es.math.sinh", + "es.math.sum-precise", + "es.math.tanh", + "es.math.to-string-tag", + "es.math.trunc", + "es.number.constructor", + "es.number.epsilon", + "es.number.is-finite", + "es.number.is-integer", + "es.number.is-nan", + "es.number.is-safe-integer", + "es.number.max-safe-integer", + "es.number.min-safe-integer", + "es.number.parse-float", + "es.number.parse-int", + "es.number.to-exponential", + "es.number.to-fixed", + "es.number.to-precision", + "es.object.assign", + "es.object.create", + "es.object.define-getter", + "es.object.define-properties", + "es.object.define-property", + "es.object.define-setter", + "es.object.entries", + "es.object.freeze", + "es.object.from-entries", + "es.object.get-own-property-descriptor", + "es.object.get-own-property-descriptors", + "es.object.get-own-property-names", + "es.object.get-prototype-of", + "es.object.group-by", + "es.object.has-own", + "es.object.is", + "es.object.is-extensible", + "es.object.is-frozen", + "es.object.is-sealed", + "es.object.keys", + "es.object.lookup-getter", + "es.object.lookup-setter", + "es.object.prevent-extensions", + "es.object.proto", + "es.object.seal", + "es.object.set-prototype-of", + "es.object.to-string", + "es.object.values", + "es.parse-float", + "es.parse-int", + "es.promise", + "es.promise.all-settled", + "es.promise.any", + "es.promise.finally", + "es.promise.try", + "es.promise.with-resolvers", + "es.array.from-async", + "es.async-disposable-stack.constructor", + "es.async-iterator.async-dispose", + "es.reflect.apply", + "es.reflect.construct", + "es.reflect.define-property", + "es.reflect.delete-property", + "es.reflect.get", + "es.reflect.get-own-property-descriptor", + "es.reflect.get-prototype-of", + "es.reflect.has", + "es.reflect.is-extensible", + "es.reflect.own-keys", + "es.reflect.prevent-extensions", + "es.reflect.set", + "es.reflect.set-prototype-of", + "es.reflect.to-string-tag", + "es.regexp.constructor", + "es.regexp.escape", + "es.regexp.dot-all", + "es.regexp.exec", + "es.regexp.flags", + "es.regexp.sticky", + "es.regexp.test", + "es.regexp.to-string", + "es.set", + "es.set.difference.v2", + "es.set.intersection.v2", + "es.set.is-disjoint-from.v2", + "es.set.is-subset-of.v2", + "es.set.is-superset-of.v2", + "es.set.symmetric-difference.v2", + "es.set.union.v2", + "es.string.at-alternative", + "es.string.code-point-at", + "es.string.ends-with", + "es.string.from-code-point", + "es.string.includes", + "es.string.is-well-formed", + "es.string.iterator", + "es.string.match", + "es.string.match-all", + "es.string.pad-end", + "es.string.pad-start", + "es.string.raw", + "es.string.repeat", + "es.string.replace", + "es.string.replace-all", + "es.string.search", + "es.string.split", + "es.string.starts-with", + "es.string.substr", + "es.string.to-well-formed", + "es.string.trim", + "es.string.trim-end", + "es.string.trim-start", + "es.string.anchor", + "es.string.big", + "es.string.blink", + "es.string.bold", + "es.string.fixed", + "es.string.fontcolor", + "es.string.fontsize", + "es.string.italics", + "es.string.link", + "es.string.small", + "es.string.strike", + "es.string.sub", + "es.string.sup", + "es.typed-array.float32-array", + "es.typed-array.float64-array", + "es.typed-array.int8-array", + "es.typed-array.int16-array", + "es.typed-array.int32-array", + "es.typed-array.uint8-array", + "es.typed-array.uint8-clamped-array", + "es.typed-array.uint16-array", + "es.typed-array.uint32-array", + "es.typed-array.at", + "es.typed-array.copy-within", + "es.typed-array.every", + "es.typed-array.fill", + "es.typed-array.filter", + "es.typed-array.find", + "es.typed-array.find-index", + "es.typed-array.find-last", + "es.typed-array.find-last-index", + "es.typed-array.for-each", + "es.typed-array.from", + "es.typed-array.includes", + "es.typed-array.index-of", + "es.typed-array.iterator", + "es.typed-array.join", + "es.typed-array.last-index-of", + "es.typed-array.map", + "es.typed-array.of", + "es.typed-array.reduce", + "es.typed-array.reduce-right", + "es.typed-array.reverse", + "es.typed-array.set", + "es.typed-array.slice", + "es.typed-array.some", + "es.typed-array.sort", + "es.typed-array.subarray", + "es.typed-array.to-locale-string", + "es.typed-array.to-reversed", + "es.typed-array.to-sorted", + "es.typed-array.to-string", + "es.typed-array.with", + "es.uint8-array.from-base64", + "es.uint8-array.from-hex", + "es.uint8-array.set-from-base64", + "es.uint8-array.set-from-hex", + "es.uint8-array.to-base64", + "es.uint8-array.to-hex", + "es.unescape", + "es.weak-map", + "es.weak-set", + "web.atob", + "web.btoa", + "web.dom-collections.for-each", + "web.dom-collections.iterator", + "web.dom-exception.constructor", + "web.dom-exception.stack", + "web.dom-exception.to-string-tag", + "web.immediate", + "web.queue-microtask", + "web.self", + "web.structured-clone", + "web.timers", + "web.url", + "web.url.can-parse", + "web.url.parse", + "web.url.to-json", + "web.url-search-params", + "web.url-search-params.delete", + "web.url-search-params.has", + "web.url-search-params.size" + ], + "core-js/stable/aggregate-error": [], + "core-js/stable/array": [ + "es.array.at", + "es.array.concat", + "es.array.copy-within", + "es.array.every", + "es.array.fill", + "es.array.filter", + "es.array.find", + "es.array.find-index", + "es.array.find-last", + "es.array.find-last-index", + "es.array.flat", + "es.array.flat-map", + "es.array.for-each", + "es.array.from", + "es.array.includes", + "es.array.index-of", + "es.array.is-array", + "es.array.iterator", + "es.array.join", + "es.array.last-index-of", + "es.array.map", + "es.array.of", + "es.array.push", + "es.array.reduce", + "es.array.reduce-right", + "es.array.reverse", + "es.array.slice", + "es.array.some", + "es.array.sort", + "es.array.species", + "es.array.splice", + "es.array.to-reversed", + "es.array.to-sorted", + "es.array.to-spliced", + "es.array.unscopables.flat", + "es.array.unscopables.flat-map", + "es.array.unshift", + "es.array.with", + "es.object.to-string", + "es.promise", + "es.array.from-async", + "es.string.iterator" + ], + "core-js/stable/array-buffer": [ + "es.array-buffer.constructor", + "es.array-buffer.is-view", + "es.array-buffer.slice", + "es.data-view", + "es.array-buffer.detached", + "es.array-buffer.transfer", + "es.array-buffer.transfer-to-fixed-length", + "es.object.to-string" + ], + "core-js/stable/array-buffer/constructor": [ + "es.array-buffer.constructor", + "es.array-buffer.slice", + "es.array-buffer.detached", + "es.array-buffer.transfer", + "es.array-buffer.transfer-to-fixed-length", + "es.object.to-string" + ], + "core-js/stable/array-buffer/detached": [ + "es.array-buffer.constructor", + "es.array-buffer.slice", + "es.array-buffer.detached" + ], + "core-js/stable/array-buffer/is-view": [ + "es.array-buffer.is-view" + ], + "core-js/stable/array-buffer/slice": [ + "es.array-buffer.slice" + ], + "core-js/stable/array-buffer/transfer": [ + "es.array-buffer.constructor", + "es.array-buffer.slice", + "es.data-view", + "es.array-buffer.transfer" + ], + "core-js/stable/array-buffer/transfer-to-fixed-length": [ + "es.array-buffer.constructor", + "es.array-buffer.slice", + "es.data-view", + "es.array-buffer.transfer-to-fixed-length" + ], + "core-js/stable/array/at": [ + "es.array.at" + ], + "core-js/stable/array/concat": [ + "es.array.concat" + ], + "core-js/stable/array/copy-within": [ + "es.array.copy-within" + ], + "core-js/stable/array/entries": [ + "es.array.iterator", + "es.object.to-string" + ], + "core-js/stable/array/every": [ + "es.array.every" + ], + "core-js/stable/array/fill": [ + "es.array.fill" + ], + "core-js/stable/array/filter": [ + "es.array.filter" + ], + "core-js/stable/array/find": [ + "es.array.find" + ], + "core-js/stable/array/find-index": [ + "es.array.find-index" + ], + "core-js/stable/array/find-last": [ + "es.array.find-last" + ], + "core-js/stable/array/find-last-index": [ + "es.array.find-last-index" + ], + "core-js/stable/array/flat": [ + "es.array.flat", + "es.array.unscopables.flat" + ], + "core-js/stable/array/flat-map": [ + "es.array.flat-map", + "es.array.unscopables.flat-map" + ], + "core-js/stable/array/for-each": [ + "es.array.for-each" + ], + "core-js/stable/array/from": [ + "es.array.from", + "es.string.iterator" + ], + "core-js/stable/array/from-async": [ + "es.array.iterator", + "es.object.to-string", + "es.promise", + "es.array.from-async", + "es.string.iterator" + ], + "core-js/stable/array/includes": [ + "es.array.includes" + ], + "core-js/stable/array/index-of": [ + "es.array.index-of" + ], + "core-js/stable/array/is-array": [ + "es.array.is-array" + ], + "core-js/stable/array/iterator": [ + "es.array.iterator", + "es.object.to-string" + ], + "core-js/stable/array/join": [ + "es.array.join" + ], + "core-js/stable/array/keys": [ + "es.array.iterator", + "es.object.to-string" + ], + "core-js/stable/array/last-index-of": [ + "es.array.last-index-of" + ], + "core-js/stable/array/map": [ + "es.array.map" + ], + "core-js/stable/array/of": [ + "es.array.of" + ], + "core-js/stable/array/push": [ + "es.array.push" + ], + "core-js/stable/array/reduce": [ + "es.array.reduce" + ], + "core-js/stable/array/reduce-right": [ + "es.array.reduce-right" + ], + "core-js/stable/array/reverse": [ + "es.array.reverse" + ], + "core-js/stable/array/slice": [ + "es.array.slice" + ], + "core-js/stable/array/some": [ + "es.array.some" + ], + "core-js/stable/array/sort": [ + "es.array.sort" + ], + "core-js/stable/array/splice": [ + "es.array.splice" + ], + "core-js/stable/array/to-reversed": [ + "es.array.to-reversed" + ], + "core-js/stable/array/to-sorted": [ + "es.array.sort", + "es.array.to-sorted" + ], + "core-js/stable/array/to-spliced": [ + "es.array.to-spliced" + ], + "core-js/stable/array/unshift": [ + "es.array.unshift" + ], + "core-js/stable/array/values": [ + "es.array.iterator", + "es.object.to-string" + ], + "core-js/stable/array/virtual": [ + "es.array.at", + "es.array.concat", + "es.array.copy-within", + "es.array.every", + "es.array.fill", + "es.array.filter", + "es.array.find", + "es.array.find-index", + "es.array.find-last", + "es.array.find-last-index", + "es.array.flat", + "es.array.flat-map", + "es.array.for-each", + "es.array.includes", + "es.array.index-of", + "es.array.iterator", + "es.array.join", + "es.array.last-index-of", + "es.array.map", + "es.array.push", + "es.array.reduce", + "es.array.reduce-right", + "es.array.reverse", + "es.array.slice", + "es.array.some", + "es.array.sort", + "es.array.species", + "es.array.splice", + "es.array.to-reversed", + "es.array.to-sorted", + "es.array.to-spliced", + "es.array.unscopables.flat", + "es.array.unscopables.flat-map", + "es.array.unshift", + "es.array.with", + "es.object.to-string" + ], + "core-js/stable/array/virtual/at": [ + "es.array.at" + ], + "core-js/stable/array/virtual/concat": [ + "es.array.concat" + ], + "core-js/stable/array/virtual/copy-within": [ + "es.array.copy-within" + ], + "core-js/stable/array/virtual/entries": [ + "es.array.iterator", + "es.object.to-string" + ], + "core-js/stable/array/virtual/every": [ + "es.array.every" + ], + "core-js/stable/array/virtual/fill": [ + "es.array.fill" + ], + "core-js/stable/array/virtual/filter": [ + "es.array.filter" + ], + "core-js/stable/array/virtual/find": [ + "es.array.find" + ], + "core-js/stable/array/virtual/find-index": [ + "es.array.find-index" + ], + "core-js/stable/array/virtual/find-last": [ + "es.array.find-last" + ], + "core-js/stable/array/virtual/find-last-index": [ + "es.array.find-last-index" + ], + "core-js/stable/array/virtual/flat": [ + "es.array.flat", + "es.array.unscopables.flat" + ], + "core-js/stable/array/virtual/flat-map": [ + "es.array.flat-map", + "es.array.unscopables.flat-map" + ], + "core-js/stable/array/virtual/for-each": [ + "es.array.for-each" + ], + "core-js/stable/array/virtual/includes": [ + "es.array.includes" + ], + "core-js/stable/array/virtual/index-of": [ + "es.array.index-of" + ], + "core-js/stable/array/virtual/iterator": [ + "es.array.iterator", + "es.object.to-string" + ], + "core-js/stable/array/virtual/join": [ + "es.array.join" + ], + "core-js/stable/array/virtual/keys": [ + "es.array.iterator", + "es.object.to-string" + ], + "core-js/stable/array/virtual/last-index-of": [ + "es.array.last-index-of" + ], + "core-js/stable/array/virtual/map": [ + "es.array.map" + ], + "core-js/stable/array/virtual/push": [ + "es.array.push" + ], + "core-js/stable/array/virtual/reduce": [ + "es.array.reduce" + ], + "core-js/stable/array/virtual/reduce-right": [ + "es.array.reduce-right" + ], + "core-js/stable/array/virtual/reverse": [ + "es.array.reverse" + ], + "core-js/stable/array/virtual/slice": [ + "es.array.slice" + ], + "core-js/stable/array/virtual/some": [ + "es.array.some" + ], + "core-js/stable/array/virtual/sort": [ + "es.array.sort" + ], + "core-js/stable/array/virtual/splice": [ + "es.array.splice" + ], + "core-js/stable/array/virtual/to-reversed": [ + "es.array.to-reversed" + ], + "core-js/stable/array/virtual/to-sorted": [ + "es.array.sort", + "es.array.to-sorted" + ], + "core-js/stable/array/virtual/to-spliced": [ + "es.array.to-spliced" + ], + "core-js/stable/array/virtual/unshift": [ + "es.array.unshift" + ], + "core-js/stable/array/virtual/values": [ + "es.array.iterator", + "es.object.to-string" + ], + "core-js/stable/array/virtual/with": [ + "es.array.with" + ], + "core-js/stable/array/with": [ + "es.array.with" + ], + "core-js/stable/async-disposable-stack": [ + "es.error.cause", + "es.error.to-string", + "es.suppressed-error.constructor", + "es.iterator.dispose", + "es.object.to-string", + "es.promise", + "es.async-disposable-stack.constructor", + "es.async-iterator.async-dispose" + ], + "core-js/stable/async-disposable-stack/constructor": [ + "es.error.cause", + "es.error.to-string", + "es.suppressed-error.constructor", + "es.iterator.dispose", + "es.object.to-string", + "es.promise", + "es.async-disposable-stack.constructor", + "es.async-iterator.async-dispose" + ], + "core-js/stable/async-iterator": [ + "es.object.to-string", + "es.promise", + "es.async-iterator.async-dispose" + ], + "core-js/stable/async-iterator/async-dispose": [ + "es.object.to-string", + "es.promise", + "es.async-iterator.async-dispose" + ], + "core-js/stable/atob": [ + "es.error.to-string", + "es.object.to-string", + "web.atob", + "web.dom-exception.constructor", + "web.dom-exception.stack", + "web.dom-exception.to-string-tag" + ], + "core-js/stable/btoa": [ + "es.error.to-string", + "es.object.to-string", + "web.btoa", + "web.dom-exception.constructor", + "web.dom-exception.stack", + "web.dom-exception.to-string-tag" + ], + "core-js/stable/clear-immediate": [ + "web.immediate" + ], + "core-js/stable/data-view": [ + "es.array-buffer.constructor", + "es.array-buffer.slice", + "es.data-view", + "es.data-view.get-float16", + "es.data-view.set-float16", + "es.object.to-string" + ], + "core-js/stable/data-view/get-float16": [ + "es.data-view.get-float16" + ], + "core-js/stable/data-view/set-float16": [ + "es.data-view.set-float16" + ], + "core-js/stable/date": [ + "es.date.get-year", + "es.date.now", + "es.date.set-year", + "es.date.to-gmt-string", + "es.date.to-iso-string", + "es.date.to-json", + "es.date.to-primitive", + "es.date.to-string" + ], + "core-js/stable/date/get-year": [ + "es.date.get-year" + ], + "core-js/stable/date/now": [ + "es.date.now" + ], + "core-js/stable/date/set-year": [ + "es.date.set-year" + ], + "core-js/stable/date/to-gmt-string": [ + "es.date.to-gmt-string" + ], + "core-js/stable/date/to-iso-string": [ + "es.date.to-iso-string", + "es.date.to-json" + ], + "core-js/stable/date/to-json": [ + "es.date.to-json" + ], + "core-js/stable/date/to-primitive": [ + "es.date.to-primitive" + ], + "core-js/stable/date/to-string": [ + "es.date.to-string" + ], + "core-js/stable/disposable-stack": [ + "es.error.cause", + "es.error.to-string", + "es.suppressed-error.constructor", + "es.disposable-stack.constructor", + "es.iterator.dispose", + "es.object.to-string" + ], + "core-js/stable/disposable-stack/constructor": [ + "es.error.cause", + "es.error.to-string", + "es.suppressed-error.constructor", + "es.disposable-stack.constructor", + "es.iterator.dispose", + "es.object.to-string" + ], + "core-js/stable/dom-collections": [ + "es.array.iterator", + "es.object.to-string", + "web.dom-collections.for-each", + "web.dom-collections.iterator" + ], + "core-js/stable/dom-collections/for-each": [ + "web.dom-collections.for-each" + ], + "core-js/stable/dom-collections/iterator": [ + "es.object.to-string", + "web.dom-collections.iterator" + ], + "core-js/stable/dom-exception": [ + "es.error.to-string", + "web.dom-exception.constructor", + "web.dom-exception.stack", + "web.dom-exception.to-string-tag" + ], + "core-js/stable/dom-exception/constructor": [ + "es.error.to-string", + "web.dom-exception.constructor", + "web.dom-exception.stack" + ], + "core-js/stable/dom-exception/to-string-tag": [ + "web.dom-exception.to-string-tag" + ], + "core-js/stable/error": [ + "es.error.cause", + "es.error.is-error", + "es.error.to-string" + ], + "core-js/stable/error/constructor": [ + "es.error.cause" + ], + "core-js/stable/error/is-error": [ + "es.error.is-error", + "es.object.create" + ], + "core-js/stable/error/to-string": [ + "es.error.to-string" + ], + "core-js/stable/escape": [ + "es.escape" + ], + "core-js/stable/function": [ + "es.function.bind", + "es.function.has-instance", + "es.function.name" + ], + "core-js/stable/function/bind": [ + "es.function.bind" + ], + "core-js/stable/function/has-instance": [ + "es.function.has-instance" + ], + "core-js/stable/function/name": [ + "es.function.name" + ], + "core-js/stable/function/virtual": [ + "es.function.bind" + ], + "core-js/stable/function/virtual/bind": [ + "es.function.bind" + ], + "core-js/stable/get-iterator": [ + "es.array.iterator", + "es.string.iterator", + "web.dom-collections.iterator" + ], + "core-js/stable/get-iterator-method": [ + "es.array.iterator", + "es.string.iterator", + "web.dom-collections.iterator" + ], + "core-js/stable/global-this": [ + "es.global-this" + ], + "core-js/stable/instance/at": [ + "es.array.at", + "es.string.at-alternative" + ], + "core-js/stable/instance/bind": [ + "es.function.bind" + ], + "core-js/stable/instance/code-point-at": [ + "es.string.code-point-at" + ], + "core-js/stable/instance/concat": [ + "es.array.concat" + ], + "core-js/stable/instance/copy-within": [ + "es.array.copy-within" + ], + "core-js/stable/instance/ends-with": [ + "es.string.ends-with" + ], + "core-js/stable/instance/entries": [ + "es.array.iterator", + "es.object.to-string", + "web.dom-collections.iterator" + ], + "core-js/stable/instance/every": [ + "es.array.every" + ], + "core-js/stable/instance/fill": [ + "es.array.fill" + ], + "core-js/stable/instance/filter": [ + "es.array.filter" + ], + "core-js/stable/instance/find": [ + "es.array.find" + ], + "core-js/stable/instance/find-index": [ + "es.array.find-index" + ], + "core-js/stable/instance/find-last": [ + "es.array.find-last" + ], + "core-js/stable/instance/find-last-index": [ + "es.array.find-last-index" + ], + "core-js/stable/instance/flags": [ + "es.regexp.flags" + ], + "core-js/stable/instance/flat": [ + "es.array.flat", + "es.array.unscopables.flat" + ], + "core-js/stable/instance/flat-map": [ + "es.array.flat-map", + "es.array.unscopables.flat-map" + ], + "core-js/stable/instance/for-each": [ + "es.array.for-each", + "web.dom-collections.for-each" + ], + "core-js/stable/instance/includes": [ + "es.array.includes", + "es.string.includes" + ], + "core-js/stable/instance/index-of": [ + "es.array.index-of" + ], + "core-js/stable/instance/is-well-formed": [ + "es.string.is-well-formed" + ], + "core-js/stable/instance/keys": [ + "es.array.iterator", + "es.object.to-string", + "web.dom-collections.iterator" + ], + "core-js/stable/instance/last-index-of": [ + "es.array.last-index-of" + ], + "core-js/stable/instance/map": [ + "es.array.map" + ], + "core-js/stable/instance/match-all": [ + "es.object.to-string", + "es.regexp.exec", + "es.string.match-all" + ], + "core-js/stable/instance/pad-end": [ + "es.string.pad-end" + ], + "core-js/stable/instance/pad-start": [ + "es.string.pad-start" + ], + "core-js/stable/instance/push": [ + "es.array.push" + ], + "core-js/stable/instance/reduce": [ + "es.array.reduce" + ], + "core-js/stable/instance/reduce-right": [ + "es.array.reduce-right" + ], + "core-js/stable/instance/repeat": [ + "es.string.repeat" + ], + "core-js/stable/instance/replace-all": [ + "es.regexp.exec", + "es.string.replace", + "es.string.replace-all" + ], + "core-js/stable/instance/reverse": [ + "es.array.reverse" + ], + "core-js/stable/instance/slice": [ + "es.array.slice" + ], + "core-js/stable/instance/some": [ + "es.array.some" + ], + "core-js/stable/instance/sort": [ + "es.array.sort" + ], + "core-js/stable/instance/splice": [ + "es.array.splice" + ], + "core-js/stable/instance/starts-with": [ + "es.string.starts-with" + ], + "core-js/stable/instance/to-reversed": [ + "es.array.to-reversed" + ], + "core-js/stable/instance/to-sorted": [ + "es.array.sort", + "es.array.to-sorted" + ], + "core-js/stable/instance/to-spliced": [ + "es.array.to-spliced" + ], + "core-js/stable/instance/to-well-formed": [ + "es.string.to-well-formed" + ], + "core-js/stable/instance/trim": [ + "es.string.trim" + ], + "core-js/stable/instance/trim-end": [ + "es.string.trim-end" + ], + "core-js/stable/instance/trim-left": [ + "es.string.trim-start" + ], + "core-js/stable/instance/trim-right": [ + "es.string.trim-end" + ], + "core-js/stable/instance/trim-start": [ + "es.string.trim-start" + ], + "core-js/stable/instance/unshift": [ + "es.array.unshift" + ], + "core-js/stable/instance/values": [ + "es.array.iterator", + "es.object.to-string", + "web.dom-collections.iterator" + ], + "core-js/stable/instance/with": [ + "es.array.with" + ], + "core-js/stable/is-iterable": [ + "es.array.iterator", + "es.string.iterator", + "web.dom-collections.iterator" + ], + "core-js/stable/iterator": [ + "es.array.iterator", + "es.iterator.constructor", + "es.iterator.dispose", + "es.iterator.drop", + "es.iterator.every", + "es.iterator.filter", + "es.iterator.find", + "es.iterator.flat-map", + "es.iterator.for-each", + "es.iterator.from", + "es.iterator.map", + "es.iterator.reduce", + "es.iterator.some", + "es.iterator.take", + "es.iterator.to-array", + "es.object.to-string", + "es.string.iterator", + "web.dom-collections.iterator" + ], + "core-js/stable/iterator/dispose": [ + "es.iterator.dispose" + ], + "core-js/stable/iterator/drop": [ + "es.iterator.constructor", + "es.iterator.drop", + "es.object.to-string" + ], + "core-js/stable/iterator/every": [ + "es.iterator.constructor", + "es.iterator.every", + "es.object.to-string" + ], + "core-js/stable/iterator/filter": [ + "es.iterator.constructor", + "es.iterator.filter", + "es.object.to-string" + ], + "core-js/stable/iterator/find": [ + "es.iterator.constructor", + "es.iterator.find", + "es.object.to-string" + ], + "core-js/stable/iterator/flat-map": [ + "es.array.iterator", + "es.iterator.constructor", + "es.iterator.flat-map", + "es.object.to-string", + "web.dom-collections.iterator" + ], + "core-js/stable/iterator/for-each": [ + "es.iterator.constructor", + "es.iterator.for-each", + "es.object.to-string" + ], + "core-js/stable/iterator/from": [ + "es.array.iterator", + "es.iterator.constructor", + "es.iterator.drop", + "es.iterator.every", + "es.iterator.filter", + "es.iterator.find", + "es.iterator.flat-map", + "es.iterator.for-each", + "es.iterator.from", + "es.iterator.map", + "es.iterator.reduce", + "es.iterator.some", + "es.iterator.take", + "es.iterator.to-array", + "es.object.to-string", + "es.string.iterator", + "web.dom-collections.iterator" + ], + "core-js/stable/iterator/map": [ + "es.iterator.constructor", + "es.iterator.map", + "es.object.to-string" + ], + "core-js/stable/iterator/reduce": [ + "es.iterator.constructor", + "es.iterator.reduce", + "es.object.to-string" + ], + "core-js/stable/iterator/some": [ + "es.iterator.constructor", + "es.iterator.some", + "es.object.to-string" + ], + "core-js/stable/iterator/take": [ + "es.iterator.constructor", + "es.iterator.take", + "es.object.to-string" + ], + "core-js/stable/iterator/to-array": [ + "es.iterator.constructor", + "es.iterator.to-array", + "es.object.to-string" + ], + "core-js/stable/json": [ + "es.date.to-json", + "es.json.stringify", + "es.json.to-string-tag" + ], + "core-js/stable/json/stringify": [ + "es.date.to-json", + "es.json.stringify" + ], + "core-js/stable/json/to-string-tag": [ + "es.json.to-string-tag" + ], + "core-js/stable/map": [ + "es.array.iterator", + "es.map", + "es.map.group-by", + "es.object.to-string", + "es.string.iterator", + "web.dom-collections.iterator" + ], + "core-js/stable/map/group-by": [ + "es.map", + "es.map.group-by", + "es.object.to-string" + ], + "core-js/stable/math": [ + "es.array.iterator", + "es.math.acosh", + "es.math.asinh", + "es.math.atanh", + "es.math.cbrt", + "es.math.clz32", + "es.math.cosh", + "es.math.expm1", + "es.math.fround", + "es.math.f16round", + "es.math.hypot", + "es.math.imul", + "es.math.log10", + "es.math.log1p", + "es.math.log2", + "es.math.sign", + "es.math.sinh", + "es.math.sum-precise", + "es.math.tanh", + "es.math.to-string-tag", + "es.math.trunc" + ], + "core-js/stable/math/acosh": [ + "es.math.acosh" + ], + "core-js/stable/math/asinh": [ + "es.math.asinh" + ], + "core-js/stable/math/atanh": [ + "es.math.atanh" + ], + "core-js/stable/math/cbrt": [ + "es.math.cbrt" + ], + "core-js/stable/math/clz32": [ + "es.math.clz32" + ], + "core-js/stable/math/cosh": [ + "es.math.cosh" + ], + "core-js/stable/math/expm1": [ + "es.math.expm1" + ], + "core-js/stable/math/f16round": [ + "es.math.f16round" + ], + "core-js/stable/math/fround": [ + "es.math.fround" + ], + "core-js/stable/math/hypot": [ + "es.math.hypot" + ], + "core-js/stable/math/imul": [ + "es.math.imul" + ], + "core-js/stable/math/log10": [ + "es.math.log10" + ], + "core-js/stable/math/log1p": [ + "es.math.log1p" + ], + "core-js/stable/math/log2": [ + "es.math.log2" + ], + "core-js/stable/math/sign": [ + "es.math.sign" + ], + "core-js/stable/math/sinh": [ + "es.math.sinh" + ], + "core-js/stable/math/sum-precise": [ + "es.array.iterator", + "es.math.sum-precise" + ], + "core-js/stable/math/tanh": [ + "es.math.tanh" + ], + "core-js/stable/math/to-string-tag": [ + "es.math.to-string-tag" + ], + "core-js/stable/math/trunc": [ + "es.math.trunc" + ], + "core-js/stable/number": [ + "es.number.constructor", + "es.number.epsilon", + "es.number.is-finite", + "es.number.is-integer", + "es.number.is-nan", + "es.number.is-safe-integer", + "es.number.max-safe-integer", + "es.number.min-safe-integer", + "es.number.parse-float", + "es.number.parse-int", + "es.number.to-exponential", + "es.number.to-fixed", + "es.number.to-precision" + ], + "core-js/stable/number/constructor": [ + "es.number.constructor" + ], + "core-js/stable/number/epsilon": [ + "es.number.epsilon" + ], + "core-js/stable/number/is-finite": [ + "es.number.is-finite" + ], + "core-js/stable/number/is-integer": [ + "es.number.is-integer" + ], + "core-js/stable/number/is-nan": [ + "es.number.is-nan" + ], + "core-js/stable/number/is-safe-integer": [ + "es.number.is-safe-integer" + ], + "core-js/stable/number/max-safe-integer": [ + "es.number.max-safe-integer" + ], + "core-js/stable/number/min-safe-integer": [ + "es.number.min-safe-integer" + ], + "core-js/stable/number/parse-float": [ + "es.number.parse-float" + ], + "core-js/stable/number/parse-int": [ + "es.number.parse-int" + ], + "core-js/stable/number/to-exponential": [ + "es.number.to-exponential" + ], + "core-js/stable/number/to-fixed": [ + "es.number.to-fixed" + ], + "core-js/stable/number/to-precision": [ + "es.number.to-precision" + ], + "core-js/stable/number/virtual": [ + "es.number.to-exponential", + "es.number.to-fixed", + "es.number.to-precision" + ], + "core-js/stable/number/virtual/to-exponential": [ + "es.number.to-exponential" + ], + "core-js/stable/number/virtual/to-fixed": [ + "es.number.to-fixed" + ], + "core-js/stable/number/virtual/to-precision": [ + "es.number.to-precision" + ], + "core-js/stable/object": [ + "es.symbol", + "es.json.to-string-tag", + "es.math.to-string-tag", + "es.object.assign", + "es.object.create", + "es.object.define-getter", + "es.object.define-properties", + "es.object.define-property", + "es.object.define-setter", + "es.object.entries", + "es.object.freeze", + "es.object.from-entries", + "es.object.get-own-property-descriptor", + "es.object.get-own-property-descriptors", + "es.object.get-own-property-names", + "es.object.get-prototype-of", + "es.object.group-by", + "es.object.has-own", + "es.object.is", + "es.object.is-extensible", + "es.object.is-frozen", + "es.object.is-sealed", + "es.object.keys", + "es.object.lookup-getter", + "es.object.lookup-setter", + "es.object.prevent-extensions", + "es.object.proto", + "es.object.seal", + "es.object.set-prototype-of", + "es.object.to-string", + "es.object.values", + "es.reflect.to-string-tag", + "web.dom-collections.iterator" + ], + "core-js/stable/object/assign": [ + "es.object.assign" + ], + "core-js/stable/object/create": [ + "es.object.create" + ], + "core-js/stable/object/define-getter": [ + "es.object.define-getter" + ], + "core-js/stable/object/define-properties": [ + "es.object.define-properties" + ], + "core-js/stable/object/define-property": [ + "es.object.define-property" + ], + "core-js/stable/object/define-setter": [ + "es.object.define-setter" + ], + "core-js/stable/object/entries": [ + "es.object.entries" + ], + "core-js/stable/object/freeze": [ + "es.object.freeze" + ], + "core-js/stable/object/from-entries": [ + "es.array.iterator", + "es.object.from-entries", + "web.dom-collections.iterator" + ], + "core-js/stable/object/get-own-property-descriptor": [ + "es.object.get-own-property-descriptor" + ], + "core-js/stable/object/get-own-property-descriptors": [ + "es.object.get-own-property-descriptors" + ], + "core-js/stable/object/get-own-property-names": [ + "es.object.get-own-property-names" + ], + "core-js/stable/object/get-own-property-symbols": [ + "es.symbol" + ], + "core-js/stable/object/get-prototype-of": [ + "es.object.get-prototype-of" + ], + "core-js/stable/object/group-by": [ + "es.object.create", + "es.object.group-by" + ], + "core-js/stable/object/has-own": [ + "es.object.has-own" + ], + "core-js/stable/object/is": [ + "es.object.is" + ], + "core-js/stable/object/is-extensible": [ + "es.object.is-extensible" + ], + "core-js/stable/object/is-frozen": [ + "es.object.is-frozen" + ], + "core-js/stable/object/is-sealed": [ + "es.object.is-sealed" + ], + "core-js/stable/object/keys": [ + "es.object.keys" + ], + "core-js/stable/object/lookup-getter": [ + "es.object.lookup-getter" + ], + "core-js/stable/object/lookup-setter": [ + "es.object.lookup-setter" + ], + "core-js/stable/object/prevent-extensions": [ + "es.object.prevent-extensions" + ], + "core-js/stable/object/proto": [ + "es.object.proto" + ], + "core-js/stable/object/seal": [ + "es.object.seal" + ], + "core-js/stable/object/set-prototype-of": [ + "es.object.set-prototype-of" + ], + "core-js/stable/object/to-string": [ + "es.json.to-string-tag", + "es.math.to-string-tag", + "es.object.to-string", + "es.reflect.to-string-tag" + ], + "core-js/stable/object/values": [ + "es.object.values" + ], + "core-js/stable/parse-float": [ + "es.parse-float" + ], + "core-js/stable/parse-int": [ + "es.parse-int" + ], + "core-js/stable/promise": [ + "es.aggregate-error", + "es.array.iterator", + "es.object.to-string", + "es.promise", + "es.promise.all-settled", + "es.promise.any", + "es.promise.finally", + "es.promise.try", + "es.promise.with-resolvers", + "es.string.iterator", + "web.dom-collections.iterator" + ], + "core-js/stable/promise/all-settled": [ + "es.array.iterator", + "es.object.to-string", + "es.promise", + "es.promise.all-settled", + "es.string.iterator", + "web.dom-collections.iterator" + ], + "core-js/stable/promise/any": [ + "es.aggregate-error", + "es.array.iterator", + "es.object.to-string", + "es.promise", + "es.promise.any", + "es.string.iterator", + "web.dom-collections.iterator" + ], + "core-js/stable/promise/finally": [ + "es.object.to-string", + "es.promise", + "es.promise.finally" + ], + "core-js/stable/promise/try": [ + "es.object.to-string", + "es.promise", + "es.promise.try" + ], + "core-js/stable/promise/with-resolvers": [ + "es.promise", + "es.promise.with-resolvers" + ], + "core-js/stable/queue-microtask": [ + "web.queue-microtask" + ], + "core-js/stable/reflect": [ + "es.object.to-string", + "es.reflect.apply", + "es.reflect.construct", + "es.reflect.define-property", + "es.reflect.delete-property", + "es.reflect.get", + "es.reflect.get-own-property-descriptor", + "es.reflect.get-prototype-of", + "es.reflect.has", + "es.reflect.is-extensible", + "es.reflect.own-keys", + "es.reflect.prevent-extensions", + "es.reflect.set", + "es.reflect.set-prototype-of", + "es.reflect.to-string-tag" + ], + "core-js/stable/reflect/apply": [ + "es.reflect.apply" + ], + "core-js/stable/reflect/construct": [ + "es.reflect.construct" + ], + "core-js/stable/reflect/define-property": [ + "es.reflect.define-property" + ], + "core-js/stable/reflect/delete-property": [ + "es.reflect.delete-property" + ], + "core-js/stable/reflect/get": [ + "es.reflect.get" + ], + "core-js/stable/reflect/get-own-property-descriptor": [ + "es.reflect.get-own-property-descriptor" + ], + "core-js/stable/reflect/get-prototype-of": [ + "es.reflect.get-prototype-of" + ], + "core-js/stable/reflect/has": [ + "es.reflect.has" + ], + "core-js/stable/reflect/is-extensible": [ + "es.reflect.is-extensible" + ], + "core-js/stable/reflect/own-keys": [ + "es.reflect.own-keys" + ], + "core-js/stable/reflect/prevent-extensions": [ + "es.reflect.prevent-extensions" + ], + "core-js/stable/reflect/set": [ + "es.reflect.set" + ], + "core-js/stable/reflect/set-prototype-of": [ + "es.reflect.set-prototype-of" + ], + "core-js/stable/reflect/to-string-tag": [ + "es.reflect.to-string-tag" + ], + "core-js/stable/regexp": [ + "es.regexp.constructor", + "es.regexp.escape", + "es.regexp.dot-all", + "es.regexp.exec", + "es.regexp.flags", + "es.regexp.sticky", + "es.regexp.test", + "es.regexp.to-string", + "es.string.match", + "es.string.replace", + "es.string.search", + "es.string.split" + ], + "core-js/stable/regexp/constructor": [ + "es.regexp.constructor", + "es.regexp.dot-all", + "es.regexp.exec", + "es.regexp.sticky" + ], + "core-js/stable/regexp/dot-all": [ + "es.regexp.constructor", + "es.regexp.dot-all", + "es.regexp.exec" + ], + "core-js/stable/regexp/escape": [ + "es.regexp.escape" + ], + "core-js/stable/regexp/flags": [ + "es.regexp.flags" + ], + "core-js/stable/regexp/match": [ + "es.regexp.exec", + "es.string.match" + ], + "core-js/stable/regexp/replace": [ + "es.regexp.exec", + "es.string.replace" + ], + "core-js/stable/regexp/search": [ + "es.regexp.exec", + "es.string.search" + ], + "core-js/stable/regexp/split": [ + "es.regexp.exec", + "es.string.split" + ], + "core-js/stable/regexp/sticky": [ + "es.regexp.constructor", + "es.regexp.exec", + "es.regexp.sticky" + ], + "core-js/stable/regexp/test": [ + "es.regexp.exec", + "es.regexp.test" + ], + "core-js/stable/regexp/to-string": [ + "es.regexp.to-string" + ], + "core-js/stable/self": [ + "web.self" + ], + "core-js/stable/set": [ + "es.array.iterator", + "es.object.to-string", + "es.set", + "es.set.difference.v2", + "es.set.intersection.v2", + "es.set.is-disjoint-from.v2", + "es.set.is-subset-of.v2", + "es.set.is-superset-of.v2", + "es.set.symmetric-difference.v2", + "es.set.union.v2", + "es.string.iterator", + "web.dom-collections.iterator" + ], + "core-js/stable/set-immediate": [ + "web.immediate" + ], + "core-js/stable/set-interval": [ + "web.timers" + ], + "core-js/stable/set-timeout": [ + "web.timers" + ], + "core-js/stable/set/difference": [ + "es.set", + "es.set.difference.v2" + ], + "core-js/stable/set/intersection": [ + "es.set", + "es.set.intersection.v2" + ], + "core-js/stable/set/is-disjoint-from": [ + "es.set", + "es.set.is-disjoint-from.v2" + ], + "core-js/stable/set/is-subset-of": [ + "es.set", + "es.set.is-subset-of.v2" + ], + "core-js/stable/set/is-superset-of": [ + "es.set", + "es.set.is-superset-of.v2" + ], + "core-js/stable/set/symmetric-difference": [ + "es.set", + "es.set.symmetric-difference.v2" + ], + "core-js/stable/set/union": [ + "es.set", + "es.set.union.v2" + ], + "core-js/stable/string": [ + "es.object.to-string", + "es.regexp.exec", + "es.string.at-alternative", + "es.string.code-point-at", + "es.string.ends-with", + "es.string.from-code-point", + "es.string.includes", + "es.string.is-well-formed", + "es.string.iterator", + "es.string.match", + "es.string.match-all", + "es.string.pad-end", + "es.string.pad-start", + "es.string.raw", + "es.string.repeat", + "es.string.replace", + "es.string.replace-all", + "es.string.search", + "es.string.split", + "es.string.starts-with", + "es.string.substr", + "es.string.to-well-formed", + "es.string.trim", + "es.string.trim-end", + "es.string.trim-start", + "es.string.anchor", + "es.string.big", + "es.string.blink", + "es.string.bold", + "es.string.fixed", + "es.string.fontcolor", + "es.string.fontsize", + "es.string.italics", + "es.string.link", + "es.string.small", + "es.string.strike", + "es.string.sub", + "es.string.sup" + ], + "core-js/stable/string/anchor": [ + "es.string.anchor" + ], + "core-js/stable/string/at": [ + "es.string.at-alternative" + ], + "core-js/stable/string/big": [ + "es.string.big" + ], + "core-js/stable/string/blink": [ + "es.string.blink" + ], + "core-js/stable/string/bold": [ + "es.string.bold" + ], + "core-js/stable/string/code-point-at": [ + "es.string.code-point-at" + ], + "core-js/stable/string/ends-with": [ + "es.string.ends-with" + ], + "core-js/stable/string/fixed": [ + "es.string.fixed" + ], + "core-js/stable/string/fontcolor": [ + "es.string.fontcolor" + ], + "core-js/stable/string/fontsize": [ + "es.string.fontsize" + ], + "core-js/stable/string/from-code-point": [ + "es.string.from-code-point" + ], + "core-js/stable/string/includes": [ + "es.string.includes" + ], + "core-js/stable/string/is-well-formed": [ + "es.string.is-well-formed" + ], + "core-js/stable/string/italics": [ + "es.string.italics" + ], + "core-js/stable/string/iterator": [ + "es.object.to-string", + "es.string.iterator" + ], + "core-js/stable/string/link": [ + "es.string.link" + ], + "core-js/stable/string/match": [ + "es.regexp.exec", + "es.string.match" + ], + "core-js/stable/string/match-all": [ + "es.object.to-string", + "es.regexp.exec", + "es.string.match-all" + ], + "core-js/stable/string/pad-end": [ + "es.string.pad-end" + ], + "core-js/stable/string/pad-start": [ + "es.string.pad-start" + ], + "core-js/stable/string/raw": [ + "es.string.raw" + ], + "core-js/stable/string/repeat": [ + "es.string.repeat" + ], + "core-js/stable/string/replace": [ + "es.regexp.exec", + "es.string.replace" + ], + "core-js/stable/string/replace-all": [ + "es.regexp.exec", + "es.string.replace", + "es.string.replace-all" + ], + "core-js/stable/string/search": [ + "es.regexp.exec", + "es.string.search" + ], + "core-js/stable/string/small": [ + "es.string.small" + ], + "core-js/stable/string/split": [ + "es.regexp.exec", + "es.string.split" + ], + "core-js/stable/string/starts-with": [ + "es.string.starts-with" + ], + "core-js/stable/string/strike": [ + "es.string.strike" + ], + "core-js/stable/string/sub": [ + "es.string.sub" + ], + "core-js/stable/string/substr": [ + "es.string.substr" + ], + "core-js/stable/string/sup": [ + "es.string.sup" + ], + "core-js/stable/string/to-well-formed": [ + "es.string.to-well-formed" + ], + "core-js/stable/string/trim": [ + "es.string.trim" + ], + "core-js/stable/string/trim-end": [ + "es.string.trim-end" + ], + "core-js/stable/string/trim-left": [ + "es.string.trim-start" + ], + "core-js/stable/string/trim-right": [ + "es.string.trim-end" + ], + "core-js/stable/string/trim-start": [ + "es.string.trim-start" + ], + "core-js/stable/string/virtual": [ + "es.object.to-string", + "es.regexp.exec", + "es.string.at-alternative", + "es.string.code-point-at", + "es.string.ends-with", + "es.string.includes", + "es.string.iterator", + "es.string.match", + "es.string.match-all", + "es.string.pad-end", + "es.string.pad-start", + "es.string.repeat", + "es.string.replace", + "es.string.replace-all", + "es.string.search", + "es.string.split", + "es.string.starts-with", + "es.string.substr", + "es.string.trim", + "es.string.trim-end", + "es.string.trim-start", + "es.string.anchor", + "es.string.big", + "es.string.blink", + "es.string.bold", + "es.string.fixed", + "es.string.fontcolor", + "es.string.fontsize", + "es.string.italics", + "es.string.link", + "es.string.small", + "es.string.strike", + "es.string.sub", + "es.string.sup" + ], + "core-js/stable/string/virtual/anchor": [ + "es.string.anchor" + ], + "core-js/stable/string/virtual/at": [ + "es.string.at-alternative" + ], + "core-js/stable/string/virtual/big": [ + "es.string.big" + ], + "core-js/stable/string/virtual/blink": [ + "es.string.blink" + ], + "core-js/stable/string/virtual/bold": [ + "es.string.bold" + ], + "core-js/stable/string/virtual/code-point-at": [ + "es.string.code-point-at" + ], + "core-js/stable/string/virtual/ends-with": [ + "es.string.ends-with" + ], + "core-js/stable/string/virtual/fixed": [ + "es.string.fixed" + ], + "core-js/stable/string/virtual/fontcolor": [ + "es.string.fontcolor" + ], + "core-js/stable/string/virtual/fontsize": [ + "es.string.fontsize" + ], + "core-js/stable/string/virtual/includes": [ + "es.string.includes" + ], + "core-js/stable/string/virtual/is-well-formed": [ + "es.string.is-well-formed" + ], + "core-js/stable/string/virtual/italics": [ + "es.string.italics" + ], + "core-js/stable/string/virtual/iterator": [ + "es.object.to-string", + "es.string.iterator" + ], + "core-js/stable/string/virtual/link": [ + "es.string.link" + ], + "core-js/stable/string/virtual/match-all": [ + "es.object.to-string", + "es.regexp.exec", + "es.string.match-all" + ], + "core-js/stable/string/virtual/pad-end": [ + "es.string.pad-end" + ], + "core-js/stable/string/virtual/pad-start": [ + "es.string.pad-start" + ], + "core-js/stable/string/virtual/repeat": [ + "es.string.repeat" + ], + "core-js/stable/string/virtual/replace-all": [ + "es.regexp.exec", + "es.string.replace", + "es.string.replace-all" + ], + "core-js/stable/string/virtual/small": [ + "es.string.small" + ], + "core-js/stable/string/virtual/starts-with": [ + "es.string.starts-with" + ], + "core-js/stable/string/virtual/strike": [ + "es.string.strike" + ], + "core-js/stable/string/virtual/sub": [ + "es.string.sub" + ], + "core-js/stable/string/virtual/substr": [ + "es.string.substr" + ], + "core-js/stable/string/virtual/sup": [ + "es.string.sup" + ], + "core-js/stable/string/virtual/to-well-formed": [ + "es.string.to-well-formed" + ], + "core-js/stable/string/virtual/trim": [ + "es.string.trim" + ], + "core-js/stable/string/virtual/trim-end": [ + "es.string.trim-end" + ], + "core-js/stable/string/virtual/trim-left": [ + "es.string.trim-start" + ], + "core-js/stable/string/virtual/trim-right": [ + "es.string.trim-end" + ], + "core-js/stable/string/virtual/trim-start": [ + "es.string.trim-start" + ], + "core-js/stable/structured-clone": [ + "es.error.to-string", + "es.array.iterator", + "es.map", + "es.object.keys", + "es.object.to-string", + "es.set", + "web.dom-exception.constructor", + "web.dom-exception.stack", + "web.dom-exception.to-string-tag", + "web.structured-clone" + ], + "core-js/stable/suppressed-error": [], + "core-js/stable/symbol": [ + "es.symbol", + "es.symbol.description", + "es.symbol.async-dispose", + "es.symbol.async-iterator", + "es.symbol.dispose", + "es.symbol.has-instance", + "es.symbol.is-concat-spreadable", + "es.symbol.iterator", + "es.symbol.match", + "es.symbol.match-all", + "es.symbol.replace", + "es.symbol.search", + "es.symbol.species", + "es.symbol.split", + "es.symbol.to-primitive", + "es.symbol.to-string-tag", + "es.symbol.unscopables", + "es.array.concat", + "es.json.to-string-tag", + "es.math.to-string-tag", + "es.object.to-string", + "es.reflect.to-string-tag", + "web.dom-collections.iterator" + ], + "core-js/stable/symbol/async-dispose": [ + "es.symbol.async-dispose" + ], + "core-js/stable/symbol/async-iterator": [ + "es.symbol.async-iterator" + ], + "core-js/stable/symbol/description": [ + "es.symbol.description" + ], + "core-js/stable/symbol/dispose": [ + "es.symbol.dispose" + ], + "core-js/stable/symbol/for": [ + "es.symbol" + ], + "core-js/stable/symbol/has-instance": [ + "es.symbol.has-instance", + "es.function.has-instance" + ], + "core-js/stable/symbol/is-concat-spreadable": [ + "es.symbol.is-concat-spreadable", + "es.array.concat" + ], + "core-js/stable/symbol/iterator": [ + "es.symbol.iterator", + "es.array.iterator", + "es.object.to-string", + "es.string.iterator", + "web.dom-collections.iterator" + ], + "core-js/stable/symbol/key-for": [ + "es.symbol" + ], + "core-js/stable/symbol/match": [ + "es.symbol.match", + "es.regexp.exec", + "es.string.match" + ], + "core-js/stable/symbol/match-all": [ + "es.symbol.match-all", + "es.object.to-string", + "es.regexp.exec", + "es.string.match-all" + ], + "core-js/stable/symbol/replace": [ + "es.symbol.replace", + "es.regexp.exec", + "es.string.replace" + ], + "core-js/stable/symbol/search": [ + "es.symbol.search", + "es.regexp.exec", + "es.string.search" + ], + "core-js/stable/symbol/species": [ + "es.symbol.species" + ], + "core-js/stable/symbol/split": [ + "es.symbol.split", + "es.regexp.exec", + "es.string.split" + ], + "core-js/stable/symbol/to-primitive": [ + "es.symbol.to-primitive", + "es.date.to-primitive" + ], + "core-js/stable/symbol/to-string-tag": [ + "es.symbol.to-string-tag", + "es.json.to-string-tag", + "es.math.to-string-tag", + "es.object.to-string", + "es.reflect.to-string-tag" + ], + "core-js/stable/symbol/unscopables": [ + "es.symbol.unscopables" + ], + "core-js/stable/typed-array": [ + "es.object.to-string", + "es.string.iterator", + "es.typed-array.float32-array", + "es.typed-array.float64-array", + "es.typed-array.int8-array", + "es.typed-array.int16-array", + "es.typed-array.int32-array", + "es.typed-array.uint8-array", + "es.typed-array.uint8-clamped-array", + "es.typed-array.uint16-array", + "es.typed-array.uint32-array", + "es.typed-array.at", + "es.typed-array.copy-within", + "es.typed-array.every", + "es.typed-array.fill", + "es.typed-array.filter", + "es.typed-array.find", + "es.typed-array.find-index", + "es.typed-array.find-last", + "es.typed-array.find-last-index", + "es.typed-array.for-each", + "es.typed-array.from", + "es.typed-array.includes", + "es.typed-array.index-of", + "es.typed-array.iterator", + "es.typed-array.join", + "es.typed-array.last-index-of", + "es.typed-array.map", + "es.typed-array.of", + "es.typed-array.reduce", + "es.typed-array.reduce-right", + "es.typed-array.reverse", + "es.typed-array.set", + "es.typed-array.slice", + "es.typed-array.some", + "es.typed-array.sort", + "es.typed-array.subarray", + "es.typed-array.to-locale-string", + "es.typed-array.to-reversed", + "es.typed-array.to-sorted", + "es.typed-array.to-string", + "es.typed-array.with", + "es.uint8-array.from-base64", + "es.uint8-array.from-hex", + "es.uint8-array.set-from-base64", + "es.uint8-array.set-from-hex", + "es.uint8-array.to-base64", + "es.uint8-array.to-hex" + ], + "core-js/stable/typed-array/at": [ + "es.typed-array.at" + ], + "core-js/stable/typed-array/copy-within": [ + "es.typed-array.copy-within" + ], + "core-js/stable/typed-array/entries": [ + "es.object.to-string", + "es.typed-array.iterator" + ], + "core-js/stable/typed-array/every": [ + "es.typed-array.every" + ], + "core-js/stable/typed-array/fill": [ + "es.typed-array.fill" + ], + "core-js/stable/typed-array/filter": [ + "es.typed-array.filter" + ], + "core-js/stable/typed-array/find": [ + "es.typed-array.find" + ], + "core-js/stable/typed-array/find-index": [ + "es.typed-array.find-index" + ], + "core-js/stable/typed-array/find-last": [ + "es.typed-array.find-last" + ], + "core-js/stable/typed-array/find-last-index": [ + "es.typed-array.find-last-index" + ], + "core-js/stable/typed-array/float32-array": [ + "es.array-buffer.constructor", + "es.array-buffer.slice", + "es.object.to-string", + "es.string.iterator", + "es.typed-array.float32-array", + "es.typed-array.at", + "es.typed-array.copy-within", + "es.typed-array.every", + "es.typed-array.fill", + "es.typed-array.filter", + "es.typed-array.find", + "es.typed-array.find-index", + "es.typed-array.find-last", + "es.typed-array.find-last-index", + "es.typed-array.for-each", + "es.typed-array.from", + "es.typed-array.includes", + "es.typed-array.index-of", + "es.typed-array.iterator", + "es.typed-array.join", + "es.typed-array.last-index-of", + "es.typed-array.map", + "es.typed-array.of", + "es.typed-array.reduce", + "es.typed-array.reduce-right", + "es.typed-array.reverse", + "es.typed-array.set", + "es.typed-array.slice", + "es.typed-array.some", + "es.typed-array.sort", + "es.typed-array.subarray", + "es.typed-array.to-locale-string", + "es.typed-array.to-reversed", + "es.typed-array.to-sorted", + "es.typed-array.to-string", + "es.typed-array.with", + "es.uint8-array.from-base64", + "es.uint8-array.from-hex", + "es.uint8-array.set-from-base64", + "es.uint8-array.set-from-hex", + "es.uint8-array.to-base64", + "es.uint8-array.to-hex" + ], + "core-js/stable/typed-array/float64-array": [ + "es.array-buffer.constructor", + "es.array-buffer.slice", + "es.object.to-string", + "es.string.iterator", + "es.typed-array.float64-array", + "es.typed-array.at", + "es.typed-array.copy-within", + "es.typed-array.every", + "es.typed-array.fill", + "es.typed-array.filter", + "es.typed-array.find", + "es.typed-array.find-index", + "es.typed-array.find-last", + "es.typed-array.find-last-index", + "es.typed-array.for-each", + "es.typed-array.from", + "es.typed-array.includes", + "es.typed-array.index-of", + "es.typed-array.iterator", + "es.typed-array.join", + "es.typed-array.last-index-of", + "es.typed-array.map", + "es.typed-array.of", + "es.typed-array.reduce", + "es.typed-array.reduce-right", + "es.typed-array.reverse", + "es.typed-array.set", + "es.typed-array.slice", + "es.typed-array.some", + "es.typed-array.sort", + "es.typed-array.subarray", + "es.typed-array.to-locale-string", + "es.typed-array.to-reversed", + "es.typed-array.to-sorted", + "es.typed-array.to-string", + "es.typed-array.with", + "es.uint8-array.from-base64", + "es.uint8-array.from-hex", + "es.uint8-array.set-from-base64", + "es.uint8-array.set-from-hex", + "es.uint8-array.to-base64", + "es.uint8-array.to-hex" + ], + "core-js/stable/typed-array/for-each": [ + "es.typed-array.for-each" + ], + "core-js/stable/typed-array/from": [ + "es.typed-array.from" + ], + "core-js/stable/typed-array/from-base64": [ + "es.uint8-array.from-base64" + ], + "core-js/stable/typed-array/from-hex": [ + "es.uint8-array.from-hex" + ], + "core-js/stable/typed-array/includes": [ + "es.typed-array.includes" + ], + "core-js/stable/typed-array/index-of": [ + "es.typed-array.index-of" + ], + "core-js/stable/typed-array/int16-array": [ + "es.array-buffer.constructor", + "es.array-buffer.slice", + "es.object.to-string", + "es.string.iterator", + "es.typed-array.int16-array", + "es.typed-array.at", + "es.typed-array.copy-within", + "es.typed-array.every", + "es.typed-array.fill", + "es.typed-array.filter", + "es.typed-array.find", + "es.typed-array.find-index", + "es.typed-array.find-last", + "es.typed-array.find-last-index", + "es.typed-array.for-each", + "es.typed-array.from", + "es.typed-array.includes", + "es.typed-array.index-of", + "es.typed-array.iterator", + "es.typed-array.join", + "es.typed-array.last-index-of", + "es.typed-array.map", + "es.typed-array.of", + "es.typed-array.reduce", + "es.typed-array.reduce-right", + "es.typed-array.reverse", + "es.typed-array.set", + "es.typed-array.slice", + "es.typed-array.some", + "es.typed-array.sort", + "es.typed-array.subarray", + "es.typed-array.to-locale-string", + "es.typed-array.to-reversed", + "es.typed-array.to-sorted", + "es.typed-array.to-string", + "es.typed-array.with", + "es.uint8-array.from-base64", + "es.uint8-array.from-hex", + "es.uint8-array.set-from-base64", + "es.uint8-array.set-from-hex", + "es.uint8-array.to-base64", + "es.uint8-array.to-hex" + ], + "core-js/stable/typed-array/int32-array": [ + "es.array-buffer.constructor", + "es.array-buffer.slice", + "es.object.to-string", + "es.string.iterator", + "es.typed-array.int32-array", + "es.typed-array.at", + "es.typed-array.copy-within", + "es.typed-array.every", + "es.typed-array.fill", + "es.typed-array.filter", + "es.typed-array.find", + "es.typed-array.find-index", + "es.typed-array.find-last", + "es.typed-array.find-last-index", + "es.typed-array.for-each", + "es.typed-array.from", + "es.typed-array.includes", + "es.typed-array.index-of", + "es.typed-array.iterator", + "es.typed-array.join", + "es.typed-array.last-index-of", + "es.typed-array.map", + "es.typed-array.of", + "es.typed-array.reduce", + "es.typed-array.reduce-right", + "es.typed-array.reverse", + "es.typed-array.set", + "es.typed-array.slice", + "es.typed-array.some", + "es.typed-array.sort", + "es.typed-array.subarray", + "es.typed-array.to-locale-string", + "es.typed-array.to-reversed", + "es.typed-array.to-sorted", + "es.typed-array.to-string", + "es.typed-array.with", + "es.uint8-array.from-base64", + "es.uint8-array.from-hex", + "es.uint8-array.set-from-base64", + "es.uint8-array.set-from-hex", + "es.uint8-array.to-base64", + "es.uint8-array.to-hex" + ], + "core-js/stable/typed-array/int8-array": [ + "es.array-buffer.constructor", + "es.array-buffer.slice", + "es.object.to-string", + "es.string.iterator", + "es.typed-array.int8-array", + "es.typed-array.at", + "es.typed-array.copy-within", + "es.typed-array.every", + "es.typed-array.fill", + "es.typed-array.filter", + "es.typed-array.find", + "es.typed-array.find-index", + "es.typed-array.find-last", + "es.typed-array.find-last-index", + "es.typed-array.for-each", + "es.typed-array.from", + "es.typed-array.includes", + "es.typed-array.index-of", + "es.typed-array.iterator", + "es.typed-array.join", + "es.typed-array.last-index-of", + "es.typed-array.map", + "es.typed-array.of", + "es.typed-array.reduce", + "es.typed-array.reduce-right", + "es.typed-array.reverse", + "es.typed-array.set", + "es.typed-array.slice", + "es.typed-array.some", + "es.typed-array.sort", + "es.typed-array.subarray", + "es.typed-array.to-locale-string", + "es.typed-array.to-reversed", + "es.typed-array.to-sorted", + "es.typed-array.to-string", + "es.typed-array.with", + "es.uint8-array.from-base64", + "es.uint8-array.from-hex", + "es.uint8-array.set-from-base64", + "es.uint8-array.set-from-hex", + "es.uint8-array.to-base64", + "es.uint8-array.to-hex" + ], + "core-js/stable/typed-array/iterator": [ + "es.object.to-string", + "es.typed-array.iterator" + ], + "core-js/stable/typed-array/join": [ + "es.typed-array.join" + ], + "core-js/stable/typed-array/keys": [ + "es.object.to-string", + "es.typed-array.iterator" + ], + "core-js/stable/typed-array/last-index-of": [ + "es.typed-array.last-index-of" + ], + "core-js/stable/typed-array/map": [ + "es.typed-array.map" + ], + "core-js/stable/typed-array/methods": [ + "es.object.to-string", + "es.string.iterator", + "es.typed-array.at", + "es.typed-array.copy-within", + "es.typed-array.every", + "es.typed-array.fill", + "es.typed-array.filter", + "es.typed-array.find", + "es.typed-array.find-index", + "es.typed-array.find-last", + "es.typed-array.find-last-index", + "es.typed-array.for-each", + "es.typed-array.from", + "es.typed-array.includes", + "es.typed-array.index-of", + "es.typed-array.iterator", + "es.typed-array.join", + "es.typed-array.last-index-of", + "es.typed-array.map", + "es.typed-array.of", + "es.typed-array.reduce", + "es.typed-array.reduce-right", + "es.typed-array.reverse", + "es.typed-array.set", + "es.typed-array.slice", + "es.typed-array.some", + "es.typed-array.sort", + "es.typed-array.subarray", + "es.typed-array.to-locale-string", + "es.typed-array.to-reversed", + "es.typed-array.to-sorted", + "es.typed-array.to-string", + "es.typed-array.with", + "es.uint8-array.from-base64", + "es.uint8-array.from-hex", + "es.uint8-array.set-from-base64", + "es.uint8-array.set-from-hex", + "es.uint8-array.to-base64", + "es.uint8-array.to-hex" + ], + "core-js/stable/typed-array/of": [ + "es.typed-array.of" + ], + "core-js/stable/typed-array/reduce": [ + "es.typed-array.reduce" + ], + "core-js/stable/typed-array/reduce-right": [ + "es.typed-array.reduce-right" + ], + "core-js/stable/typed-array/reverse": [ + "es.typed-array.reverse" + ], + "core-js/stable/typed-array/set": [ + "es.typed-array.set" + ], + "core-js/stable/typed-array/set-from-base64": [ + "es.uint8-array.set-from-base64" + ], + "core-js/stable/typed-array/set-from-hex": [ + "es.uint8-array.set-from-hex" + ], + "core-js/stable/typed-array/slice": [ + "es.typed-array.slice" + ], + "core-js/stable/typed-array/some": [ + "es.typed-array.some" + ], + "core-js/stable/typed-array/sort": [ + "es.typed-array.sort" + ], + "core-js/stable/typed-array/subarray": [ + "es.typed-array.subarray" + ], + "core-js/stable/typed-array/to-base64": [ + "es.uint8-array.to-base64" + ], + "core-js/stable/typed-array/to-hex": [ + "es.uint8-array.to-hex" + ], + "core-js/stable/typed-array/to-locale-string": [ + "es.typed-array.to-locale-string" + ], + "core-js/stable/typed-array/to-reversed": [ + "es.typed-array.to-reversed" + ], + "core-js/stable/typed-array/to-sorted": [ + "es.typed-array.sort", + "es.typed-array.to-sorted" + ], + "core-js/stable/typed-array/to-string": [ + "es.typed-array.to-string" + ], + "core-js/stable/typed-array/uint16-array": [ + "es.array-buffer.constructor", + "es.array-buffer.slice", + "es.object.to-string", + "es.string.iterator", + "es.typed-array.uint16-array", + "es.typed-array.at", + "es.typed-array.copy-within", + "es.typed-array.every", + "es.typed-array.fill", + "es.typed-array.filter", + "es.typed-array.find", + "es.typed-array.find-index", + "es.typed-array.find-last", + "es.typed-array.find-last-index", + "es.typed-array.for-each", + "es.typed-array.from", + "es.typed-array.includes", + "es.typed-array.index-of", + "es.typed-array.iterator", + "es.typed-array.join", + "es.typed-array.last-index-of", + "es.typed-array.map", + "es.typed-array.of", + "es.typed-array.reduce", + "es.typed-array.reduce-right", + "es.typed-array.reverse", + "es.typed-array.set", + "es.typed-array.slice", + "es.typed-array.some", + "es.typed-array.sort", + "es.typed-array.subarray", + "es.typed-array.to-locale-string", + "es.typed-array.to-reversed", + "es.typed-array.to-sorted", + "es.typed-array.to-string", + "es.typed-array.with", + "es.uint8-array.from-base64", + "es.uint8-array.from-hex", + "es.uint8-array.set-from-base64", + "es.uint8-array.set-from-hex", + "es.uint8-array.to-base64", + "es.uint8-array.to-hex" + ], + "core-js/stable/typed-array/uint32-array": [ + "es.array-buffer.constructor", + "es.array-buffer.slice", + "es.object.to-string", + "es.string.iterator", + "es.typed-array.uint32-array", + "es.typed-array.at", + "es.typed-array.copy-within", + "es.typed-array.every", + "es.typed-array.fill", + "es.typed-array.filter", + "es.typed-array.find", + "es.typed-array.find-index", + "es.typed-array.find-last", + "es.typed-array.find-last-index", + "es.typed-array.for-each", + "es.typed-array.from", + "es.typed-array.includes", + "es.typed-array.index-of", + "es.typed-array.iterator", + "es.typed-array.join", + "es.typed-array.last-index-of", + "es.typed-array.map", + "es.typed-array.of", + "es.typed-array.reduce", + "es.typed-array.reduce-right", + "es.typed-array.reverse", + "es.typed-array.set", + "es.typed-array.slice", + "es.typed-array.some", + "es.typed-array.sort", + "es.typed-array.subarray", + "es.typed-array.to-locale-string", + "es.typed-array.to-reversed", + "es.typed-array.to-sorted", + "es.typed-array.to-string", + "es.typed-array.with", + "es.uint8-array.from-base64", + "es.uint8-array.from-hex", + "es.uint8-array.set-from-base64", + "es.uint8-array.set-from-hex", + "es.uint8-array.to-base64", + "es.uint8-array.to-hex" + ], + "core-js/stable/typed-array/uint8-array": [ + "es.array-buffer.constructor", + "es.array-buffer.slice", + "es.object.to-string", + "es.string.iterator", + "es.typed-array.uint8-array", + "es.typed-array.at", + "es.typed-array.copy-within", + "es.typed-array.every", + "es.typed-array.fill", + "es.typed-array.filter", + "es.typed-array.find", + "es.typed-array.find-index", + "es.typed-array.find-last", + "es.typed-array.find-last-index", + "es.typed-array.for-each", + "es.typed-array.from", + "es.typed-array.includes", + "es.typed-array.index-of", + "es.typed-array.iterator", + "es.typed-array.join", + "es.typed-array.last-index-of", + "es.typed-array.map", + "es.typed-array.of", + "es.typed-array.reduce", + "es.typed-array.reduce-right", + "es.typed-array.reverse", + "es.typed-array.set", + "es.typed-array.slice", + "es.typed-array.some", + "es.typed-array.sort", + "es.typed-array.subarray", + "es.typed-array.to-locale-string", + "es.typed-array.to-reversed", + "es.typed-array.to-sorted", + "es.typed-array.to-string", + "es.typed-array.with", + "es.uint8-array.from-base64", + "es.uint8-array.from-hex", + "es.uint8-array.set-from-base64", + "es.uint8-array.set-from-hex", + "es.uint8-array.to-base64", + "es.uint8-array.to-hex" + ], + "core-js/stable/typed-array/uint8-clamped-array": [ + "es.array-buffer.constructor", + "es.array-buffer.slice", + "es.object.to-string", + "es.string.iterator", + "es.typed-array.uint8-clamped-array", + "es.typed-array.at", + "es.typed-array.copy-within", + "es.typed-array.every", + "es.typed-array.fill", + "es.typed-array.filter", + "es.typed-array.find", + "es.typed-array.find-index", + "es.typed-array.find-last", + "es.typed-array.find-last-index", + "es.typed-array.for-each", + "es.typed-array.from", + "es.typed-array.includes", + "es.typed-array.index-of", + "es.typed-array.iterator", + "es.typed-array.join", + "es.typed-array.last-index-of", + "es.typed-array.map", + "es.typed-array.of", + "es.typed-array.reduce", + "es.typed-array.reduce-right", + "es.typed-array.reverse", + "es.typed-array.set", + "es.typed-array.slice", + "es.typed-array.some", + "es.typed-array.sort", + "es.typed-array.subarray", + "es.typed-array.to-locale-string", + "es.typed-array.to-reversed", + "es.typed-array.to-sorted", + "es.typed-array.to-string", + "es.typed-array.with", + "es.uint8-array.from-base64", + "es.uint8-array.from-hex", + "es.uint8-array.set-from-base64", + "es.uint8-array.set-from-hex", + "es.uint8-array.to-base64", + "es.uint8-array.to-hex" + ], + "core-js/stable/typed-array/values": [ + "es.object.to-string", + "es.typed-array.iterator" + ], + "core-js/stable/typed-array/with": [ + "es.typed-array.with" + ], + "core-js/stable/unescape": [ + "es.unescape" + ], + "core-js/stable/url": [ + "web.url", + "web.url.can-parse", + "web.url.parse", + "web.url.to-json", + "web.url-search-params", + "web.url-search-params.delete", + "web.url-search-params.has", + "web.url-search-params.size" + ], + "core-js/stable/url-search-params": [ + "web.dom-collections.iterator", + "web.url-search-params", + "web.url-search-params.delete", + "web.url-search-params.has", + "web.url-search-params.size" + ], + "core-js/stable/url/can-parse": [ + "web.url", + "web.url.can-parse" + ], + "core-js/stable/url/parse": [ + "web.url", + "web.url.parse" + ], + "core-js/stable/url/to-json": [ + "web.url.to-json" + ], + "core-js/stable/weak-map": [ + "es.array.iterator", + "es.object.to-string", + "es.weak-map", + "web.dom-collections.iterator" + ], + "core-js/stable/weak-set": [ + "es.array.iterator", + "es.object.to-string", + "es.weak-set", + "web.dom-collections.iterator" + ], + "core-js/stage": [ + "es.map", + "es.string.at-alternative", + "esnext.aggregate-error", + "esnext.suppressed-error.constructor", + "esnext.array.from-async", + "esnext.array.at", + "esnext.array.filter-out", + "esnext.array.filter-reject", + "esnext.array.find-last", + "esnext.array.find-last-index", + "esnext.array.group", + "esnext.array.group-by", + "esnext.array.group-by-to-map", + "esnext.array.group-to-map", + "esnext.array.is-template-object", + "esnext.array.last-index", + "esnext.array.last-item", + "esnext.array.to-reversed", + "esnext.array.to-sorted", + "esnext.array.to-spliced", + "esnext.array.unique-by", + "esnext.array.with", + "esnext.array-buffer.detached", + "esnext.array-buffer.transfer", + "esnext.array-buffer.transfer-to-fixed-length", + "esnext.async-disposable-stack.constructor", + "esnext.async-iterator.constructor", + "esnext.async-iterator.as-indexed-pairs", + "esnext.async-iterator.async-dispose", + "esnext.async-iterator.drop", + "esnext.async-iterator.every", + "esnext.async-iterator.filter", + "esnext.async-iterator.find", + "esnext.async-iterator.flat-map", + "esnext.async-iterator.for-each", + "esnext.async-iterator.from", + "esnext.async-iterator.indexed", + "esnext.async-iterator.map", + "esnext.async-iterator.reduce", + "esnext.async-iterator.some", + "esnext.async-iterator.take", + "esnext.async-iterator.to-array", + "esnext.bigint.range", + "esnext.composite-key", + "esnext.composite-symbol", + "esnext.data-view.get-float16", + "esnext.data-view.get-uint8-clamped", + "esnext.data-view.set-float16", + "esnext.data-view.set-uint8-clamped", + "esnext.disposable-stack.constructor", + "esnext.error.is-error", + "esnext.function.demethodize", + "esnext.function.is-callable", + "esnext.function.is-constructor", + "esnext.function.metadata", + "esnext.function.un-this", + "esnext.global-this", + "esnext.iterator.constructor", + "esnext.iterator.as-indexed-pairs", + "esnext.iterator.chunks", + "esnext.iterator.concat", + "esnext.iterator.dispose", + "esnext.iterator.drop", + "esnext.iterator.every", + "esnext.iterator.filter", + "esnext.iterator.find", + "esnext.iterator.flat-map", + "esnext.iterator.for-each", + "esnext.iterator.from", + "esnext.iterator.indexed", + "esnext.iterator.map", + "esnext.iterator.range", + "esnext.iterator.reduce", + "esnext.iterator.sliding", + "esnext.iterator.some", + "esnext.iterator.take", + "esnext.iterator.to-array", + "esnext.iterator.to-async", + "esnext.iterator.windows", + "esnext.iterator.zip", + "esnext.iterator.zip-keyed", + "esnext.json.is-raw-json", + "esnext.json.parse", + "esnext.json.raw-json", + "esnext.map.delete-all", + "esnext.map.emplace", + "esnext.map.every", + "esnext.map.filter", + "esnext.map.find", + "esnext.map.find-key", + "esnext.map.from", + "esnext.map.get-or-insert", + "esnext.map.get-or-insert-computed", + "esnext.map.group-by", + "esnext.map.includes", + "esnext.map.key-by", + "esnext.map.key-of", + "esnext.map.map-keys", + "esnext.map.map-values", + "esnext.map.merge", + "esnext.map.of", + "esnext.map.reduce", + "esnext.map.some", + "esnext.map.update", + "esnext.map.update-or-insert", + "esnext.map.upsert", + "esnext.math.clamp", + "esnext.math.deg-per-rad", + "esnext.math.degrees", + "esnext.math.fscale", + "esnext.math.f16round", + "esnext.math.iaddh", + "esnext.math.imulh", + "esnext.math.isubh", + "esnext.math.rad-per-deg", + "esnext.math.radians", + "esnext.math.scale", + "esnext.math.seeded-prng", + "esnext.math.signbit", + "esnext.math.sum-precise", + "esnext.math.umulh", + "esnext.number.clamp", + "esnext.number.from-string", + "esnext.number.range", + "esnext.object.has-own", + "esnext.object.iterate-entries", + "esnext.object.iterate-keys", + "esnext.object.iterate-values", + "esnext.object.group-by", + "esnext.observable", + "esnext.promise.all-settled", + "esnext.promise.any", + "esnext.promise.try", + "esnext.promise.with-resolvers", + "esnext.reflect.define-metadata", + "esnext.reflect.delete-metadata", + "esnext.reflect.get-metadata", + "esnext.reflect.get-metadata-keys", + "esnext.reflect.get-own-metadata", + "esnext.reflect.get-own-metadata-keys", + "esnext.reflect.has-metadata", + "esnext.reflect.has-own-metadata", + "esnext.reflect.metadata", + "esnext.regexp.escape", + "esnext.set.add-all", + "esnext.set.delete-all", + "esnext.set.difference.v2", + "esnext.set.difference", + "esnext.set.every", + "esnext.set.filter", + "esnext.set.find", + "esnext.set.from", + "esnext.set.intersection.v2", + "esnext.set.intersection", + "esnext.set.is-disjoint-from.v2", + "esnext.set.is-disjoint-from", + "esnext.set.is-subset-of.v2", + "esnext.set.is-subset-of", + "esnext.set.is-superset-of.v2", + "esnext.set.is-superset-of", + "esnext.set.join", + "esnext.set.map", + "esnext.set.of", + "esnext.set.reduce", + "esnext.set.some", + "esnext.set.symmetric-difference.v2", + "esnext.set.symmetric-difference", + "esnext.set.union.v2", + "esnext.set.union", + "esnext.string.at", + "esnext.string.cooked", + "esnext.string.code-points", + "esnext.string.dedent", + "esnext.string.is-well-formed", + "esnext.string.match-all", + "esnext.string.replace-all", + "esnext.string.to-well-formed", + "esnext.symbol.async-dispose", + "esnext.symbol.custom-matcher", + "esnext.symbol.dispose", + "esnext.symbol.is-registered-symbol", + "esnext.symbol.is-registered", + "esnext.symbol.is-well-known-symbol", + "esnext.symbol.is-well-known", + "esnext.symbol.matcher", + "esnext.symbol.metadata", + "esnext.symbol.metadata-key", + "esnext.symbol.observable", + "esnext.symbol.pattern-match", + "esnext.symbol.replace-all", + "esnext.typed-array.from-async", + "esnext.typed-array.at", + "esnext.typed-array.filter-out", + "esnext.typed-array.filter-reject", + "esnext.typed-array.find-last", + "esnext.typed-array.find-last-index", + "esnext.typed-array.group-by", + "esnext.typed-array.to-reversed", + "esnext.typed-array.to-sorted", + "esnext.typed-array.to-spliced", + "esnext.typed-array.unique-by", + "esnext.typed-array.with", + "esnext.uint8-array.from-base64", + "esnext.uint8-array.from-hex", + "esnext.uint8-array.set-from-base64", + "esnext.uint8-array.set-from-hex", + "esnext.uint8-array.to-base64", + "esnext.uint8-array.to-hex", + "esnext.weak-map.delete-all", + "esnext.weak-map.from", + "esnext.weak-map.of", + "esnext.weak-map.emplace", + "esnext.weak-map.get-or-insert", + "esnext.weak-map.get-or-insert-computed", + "esnext.weak-map.upsert", + "esnext.weak-set.add-all", + "esnext.weak-set.delete-all", + "esnext.weak-set.from", + "esnext.weak-set.of", + "web.url", + "web.url.can-parse", + "web.url.parse", + "web.url.to-json", + "web.url-search-params", + "web.url-search-params.delete", + "web.url-search-params.has", + "web.url-search-params.size" + ], + "core-js/stage/0": [ + "es.map", + "es.string.at-alternative", + "esnext.aggregate-error", + "esnext.suppressed-error.constructor", + "esnext.array.from-async", + "esnext.array.at", + "esnext.array.filter-out", + "esnext.array.filter-reject", + "esnext.array.find-last", + "esnext.array.find-last-index", + "esnext.array.group", + "esnext.array.group-by", + "esnext.array.group-by-to-map", + "esnext.array.group-to-map", + "esnext.array.is-template-object", + "esnext.array.last-index", + "esnext.array.last-item", + "esnext.array.to-reversed", + "esnext.array.to-sorted", + "esnext.array.to-spliced", + "esnext.array.unique-by", + "esnext.array.with", + "esnext.array-buffer.detached", + "esnext.array-buffer.transfer", + "esnext.array-buffer.transfer-to-fixed-length", + "esnext.async-disposable-stack.constructor", + "esnext.async-iterator.constructor", + "esnext.async-iterator.as-indexed-pairs", + "esnext.async-iterator.async-dispose", + "esnext.async-iterator.drop", + "esnext.async-iterator.every", + "esnext.async-iterator.filter", + "esnext.async-iterator.find", + "esnext.async-iterator.flat-map", + "esnext.async-iterator.for-each", + "esnext.async-iterator.from", + "esnext.async-iterator.indexed", + "esnext.async-iterator.map", + "esnext.async-iterator.reduce", + "esnext.async-iterator.some", + "esnext.async-iterator.take", + "esnext.async-iterator.to-array", + "esnext.bigint.range", + "esnext.composite-key", + "esnext.composite-symbol", + "esnext.data-view.get-float16", + "esnext.data-view.get-uint8-clamped", + "esnext.data-view.set-float16", + "esnext.data-view.set-uint8-clamped", + "esnext.disposable-stack.constructor", + "esnext.error.is-error", + "esnext.function.demethodize", + "esnext.function.is-callable", + "esnext.function.is-constructor", + "esnext.function.metadata", + "esnext.function.un-this", + "esnext.global-this", + "esnext.iterator.constructor", + "esnext.iterator.as-indexed-pairs", + "esnext.iterator.chunks", + "esnext.iterator.concat", + "esnext.iterator.dispose", + "esnext.iterator.drop", + "esnext.iterator.every", + "esnext.iterator.filter", + "esnext.iterator.find", + "esnext.iterator.flat-map", + "esnext.iterator.for-each", + "esnext.iterator.from", + "esnext.iterator.indexed", + "esnext.iterator.map", + "esnext.iterator.range", + "esnext.iterator.reduce", + "esnext.iterator.sliding", + "esnext.iterator.some", + "esnext.iterator.take", + "esnext.iterator.to-array", + "esnext.iterator.to-async", + "esnext.iterator.windows", + "esnext.iterator.zip", + "esnext.iterator.zip-keyed", + "esnext.json.is-raw-json", + "esnext.json.parse", + "esnext.json.raw-json", + "esnext.map.delete-all", + "esnext.map.emplace", + "esnext.map.every", + "esnext.map.filter", + "esnext.map.find", + "esnext.map.find-key", + "esnext.map.from", + "esnext.map.get-or-insert", + "esnext.map.get-or-insert-computed", + "esnext.map.group-by", + "esnext.map.includes", + "esnext.map.key-by", + "esnext.map.key-of", + "esnext.map.map-keys", + "esnext.map.map-values", + "esnext.map.merge", + "esnext.map.of", + "esnext.map.reduce", + "esnext.map.some", + "esnext.map.update", + "esnext.map.update-or-insert", + "esnext.map.upsert", + "esnext.math.clamp", + "esnext.math.deg-per-rad", + "esnext.math.degrees", + "esnext.math.fscale", + "esnext.math.f16round", + "esnext.math.iaddh", + "esnext.math.imulh", + "esnext.math.isubh", + "esnext.math.rad-per-deg", + "esnext.math.radians", + "esnext.math.scale", + "esnext.math.seeded-prng", + "esnext.math.signbit", + "esnext.math.sum-precise", + "esnext.math.umulh", + "esnext.number.clamp", + "esnext.number.from-string", + "esnext.number.range", + "esnext.object.has-own", + "esnext.object.iterate-entries", + "esnext.object.iterate-keys", + "esnext.object.iterate-values", + "esnext.object.group-by", + "esnext.observable", + "esnext.promise.all-settled", + "esnext.promise.any", + "esnext.promise.try", + "esnext.promise.with-resolvers", + "esnext.regexp.escape", + "esnext.set.add-all", + "esnext.set.delete-all", + "esnext.set.difference.v2", + "esnext.set.difference", + "esnext.set.every", + "esnext.set.filter", + "esnext.set.find", + "esnext.set.from", + "esnext.set.intersection.v2", + "esnext.set.intersection", + "esnext.set.is-disjoint-from.v2", + "esnext.set.is-disjoint-from", + "esnext.set.is-subset-of.v2", + "esnext.set.is-subset-of", + "esnext.set.is-superset-of.v2", + "esnext.set.is-superset-of", + "esnext.set.join", + "esnext.set.map", + "esnext.set.of", + "esnext.set.reduce", + "esnext.set.some", + "esnext.set.symmetric-difference.v2", + "esnext.set.symmetric-difference", + "esnext.set.union.v2", + "esnext.set.union", + "esnext.string.at", + "esnext.string.cooked", + "esnext.string.code-points", + "esnext.string.dedent", + "esnext.string.is-well-formed", + "esnext.string.match-all", + "esnext.string.replace-all", + "esnext.string.to-well-formed", + "esnext.symbol.async-dispose", + "esnext.symbol.custom-matcher", + "esnext.symbol.dispose", + "esnext.symbol.is-registered-symbol", + "esnext.symbol.is-registered", + "esnext.symbol.is-well-known-symbol", + "esnext.symbol.is-well-known", + "esnext.symbol.matcher", + "esnext.symbol.metadata", + "esnext.symbol.metadata-key", + "esnext.symbol.observable", + "esnext.symbol.pattern-match", + "esnext.symbol.replace-all", + "esnext.typed-array.from-async", + "esnext.typed-array.at", + "esnext.typed-array.filter-out", + "esnext.typed-array.filter-reject", + "esnext.typed-array.find-last", + "esnext.typed-array.find-last-index", + "esnext.typed-array.group-by", + "esnext.typed-array.to-reversed", + "esnext.typed-array.to-sorted", + "esnext.typed-array.to-spliced", + "esnext.typed-array.unique-by", + "esnext.typed-array.with", + "esnext.uint8-array.from-base64", + "esnext.uint8-array.from-hex", + "esnext.uint8-array.set-from-base64", + "esnext.uint8-array.set-from-hex", + "esnext.uint8-array.to-base64", + "esnext.uint8-array.to-hex", + "esnext.weak-map.delete-all", + "esnext.weak-map.from", + "esnext.weak-map.of", + "esnext.weak-map.emplace", + "esnext.weak-map.get-or-insert", + "esnext.weak-map.get-or-insert-computed", + "esnext.weak-map.upsert", + "esnext.weak-set.add-all", + "esnext.weak-set.delete-all", + "esnext.weak-set.from", + "esnext.weak-set.of", + "web.url", + "web.url.can-parse", + "web.url.parse", + "web.url.to-json", + "web.url-search-params", + "web.url-search-params.delete", + "web.url-search-params.has", + "web.url-search-params.size" + ], + "core-js/stage/1": [ + "es.map", + "es.string.at-alternative", + "esnext.aggregate-error", + "esnext.suppressed-error.constructor", + "esnext.array.from-async", + "esnext.array.at", + "esnext.array.filter-reject", + "esnext.array.find-last", + "esnext.array.find-last-index", + "esnext.array.group", + "esnext.array.group-by", + "esnext.array.group-by-to-map", + "esnext.array.group-to-map", + "esnext.array.is-template-object", + "esnext.array.last-index", + "esnext.array.last-item", + "esnext.array.to-reversed", + "esnext.array.to-sorted", + "esnext.array.to-spliced", + "esnext.array.unique-by", + "esnext.array.with", + "esnext.array-buffer.detached", + "esnext.array-buffer.transfer", + "esnext.array-buffer.transfer-to-fixed-length", + "esnext.async-disposable-stack.constructor", + "esnext.async-iterator.constructor", + "esnext.async-iterator.as-indexed-pairs", + "esnext.async-iterator.async-dispose", + "esnext.async-iterator.drop", + "esnext.async-iterator.every", + "esnext.async-iterator.filter", + "esnext.async-iterator.find", + "esnext.async-iterator.flat-map", + "esnext.async-iterator.for-each", + "esnext.async-iterator.from", + "esnext.async-iterator.indexed", + "esnext.async-iterator.map", + "esnext.async-iterator.reduce", + "esnext.async-iterator.some", + "esnext.async-iterator.take", + "esnext.async-iterator.to-array", + "esnext.bigint.range", + "esnext.composite-key", + "esnext.composite-symbol", + "esnext.data-view.get-float16", + "esnext.data-view.get-uint8-clamped", + "esnext.data-view.set-float16", + "esnext.data-view.set-uint8-clamped", + "esnext.disposable-stack.constructor", + "esnext.error.is-error", + "esnext.function.metadata", + "esnext.global-this", + "esnext.iterator.constructor", + "esnext.iterator.as-indexed-pairs", + "esnext.iterator.chunks", + "esnext.iterator.concat", + "esnext.iterator.dispose", + "esnext.iterator.drop", + "esnext.iterator.every", + "esnext.iterator.filter", + "esnext.iterator.find", + "esnext.iterator.flat-map", + "esnext.iterator.for-each", + "esnext.iterator.from", + "esnext.iterator.indexed", + "esnext.iterator.map", + "esnext.iterator.range", + "esnext.iterator.reduce", + "esnext.iterator.sliding", + "esnext.iterator.some", + "esnext.iterator.take", + "esnext.iterator.to-array", + "esnext.iterator.to-async", + "esnext.iterator.windows", + "esnext.iterator.zip", + "esnext.iterator.zip-keyed", + "esnext.json.is-raw-json", + "esnext.json.parse", + "esnext.json.raw-json", + "esnext.map.delete-all", + "esnext.map.emplace", + "esnext.map.every", + "esnext.map.filter", + "esnext.map.find", + "esnext.map.find-key", + "esnext.map.from", + "esnext.map.get-or-insert", + "esnext.map.get-or-insert-computed", + "esnext.map.group-by", + "esnext.map.includes", + "esnext.map.key-by", + "esnext.map.key-of", + "esnext.map.map-keys", + "esnext.map.map-values", + "esnext.map.merge", + "esnext.map.of", + "esnext.map.reduce", + "esnext.map.some", + "esnext.map.update", + "esnext.map.update-or-insert", + "esnext.map.upsert", + "esnext.math.clamp", + "esnext.math.deg-per-rad", + "esnext.math.degrees", + "esnext.math.fscale", + "esnext.math.f16round", + "esnext.math.rad-per-deg", + "esnext.math.radians", + "esnext.math.scale", + "esnext.math.seeded-prng", + "esnext.math.signbit", + "esnext.math.sum-precise", + "esnext.number.clamp", + "esnext.number.from-string", + "esnext.number.range", + "esnext.object.has-own", + "esnext.object.iterate-entries", + "esnext.object.iterate-keys", + "esnext.object.iterate-values", + "esnext.object.group-by", + "esnext.observable", + "esnext.promise.all-settled", + "esnext.promise.any", + "esnext.promise.try", + "esnext.promise.with-resolvers", + "esnext.regexp.escape", + "esnext.set.add-all", + "esnext.set.delete-all", + "esnext.set.difference.v2", + "esnext.set.difference", + "esnext.set.every", + "esnext.set.filter", + "esnext.set.find", + "esnext.set.from", + "esnext.set.intersection.v2", + "esnext.set.intersection", + "esnext.set.is-disjoint-from.v2", + "esnext.set.is-disjoint-from", + "esnext.set.is-subset-of.v2", + "esnext.set.is-subset-of", + "esnext.set.is-superset-of.v2", + "esnext.set.is-superset-of", + "esnext.set.join", + "esnext.set.map", + "esnext.set.of", + "esnext.set.reduce", + "esnext.set.some", + "esnext.set.symmetric-difference.v2", + "esnext.set.symmetric-difference", + "esnext.set.union.v2", + "esnext.set.union", + "esnext.string.cooked", + "esnext.string.code-points", + "esnext.string.dedent", + "esnext.string.is-well-formed", + "esnext.string.match-all", + "esnext.string.replace-all", + "esnext.string.to-well-formed", + "esnext.symbol.async-dispose", + "esnext.symbol.custom-matcher", + "esnext.symbol.dispose", + "esnext.symbol.is-registered-symbol", + "esnext.symbol.is-registered", + "esnext.symbol.is-well-known-symbol", + "esnext.symbol.is-well-known", + "esnext.symbol.matcher", + "esnext.symbol.metadata", + "esnext.symbol.metadata-key", + "esnext.symbol.observable", + "esnext.symbol.pattern-match", + "esnext.symbol.replace-all", + "esnext.typed-array.from-async", + "esnext.typed-array.at", + "esnext.typed-array.filter-reject", + "esnext.typed-array.find-last", + "esnext.typed-array.find-last-index", + "esnext.typed-array.group-by", + "esnext.typed-array.to-reversed", + "esnext.typed-array.to-sorted", + "esnext.typed-array.to-spliced", + "esnext.typed-array.unique-by", + "esnext.typed-array.with", + "esnext.uint8-array.from-base64", + "esnext.uint8-array.from-hex", + "esnext.uint8-array.set-from-base64", + "esnext.uint8-array.set-from-hex", + "esnext.uint8-array.to-base64", + "esnext.uint8-array.to-hex", + "esnext.weak-map.delete-all", + "esnext.weak-map.from", + "esnext.weak-map.of", + "esnext.weak-map.emplace", + "esnext.weak-map.get-or-insert", + "esnext.weak-map.get-or-insert-computed", + "esnext.weak-map.upsert", + "esnext.weak-set.add-all", + "esnext.weak-set.delete-all", + "esnext.weak-set.from", + "esnext.weak-set.of" + ], + "core-js/stage/2": [ + "es.string.at-alternative", + "esnext.aggregate-error", + "esnext.suppressed-error.constructor", + "esnext.array.from-async", + "esnext.array.at", + "esnext.array.find-last", + "esnext.array.find-last-index", + "esnext.array.group", + "esnext.array.group-by", + "esnext.array.group-by-to-map", + "esnext.array.group-to-map", + "esnext.array.is-template-object", + "esnext.array.to-reversed", + "esnext.array.to-sorted", + "esnext.array.to-spliced", + "esnext.array.with", + "esnext.array-buffer.detached", + "esnext.array-buffer.transfer", + "esnext.array-buffer.transfer-to-fixed-length", + "esnext.async-disposable-stack.constructor", + "esnext.async-iterator.constructor", + "esnext.async-iterator.as-indexed-pairs", + "esnext.async-iterator.async-dispose", + "esnext.async-iterator.drop", + "esnext.async-iterator.every", + "esnext.async-iterator.filter", + "esnext.async-iterator.find", + "esnext.async-iterator.flat-map", + "esnext.async-iterator.for-each", + "esnext.async-iterator.from", + "esnext.async-iterator.indexed", + "esnext.async-iterator.map", + "esnext.async-iterator.reduce", + "esnext.async-iterator.some", + "esnext.async-iterator.take", + "esnext.async-iterator.to-array", + "esnext.data-view.get-float16", + "esnext.data-view.set-float16", + "esnext.disposable-stack.constructor", + "esnext.error.is-error", + "esnext.function.metadata", + "esnext.global-this", + "esnext.iterator.constructor", + "esnext.iterator.as-indexed-pairs", + "esnext.iterator.chunks", + "esnext.iterator.concat", + "esnext.iterator.dispose", + "esnext.iterator.drop", + "esnext.iterator.every", + "esnext.iterator.filter", + "esnext.iterator.find", + "esnext.iterator.flat-map", + "esnext.iterator.for-each", + "esnext.iterator.from", + "esnext.iterator.indexed", + "esnext.iterator.map", + "esnext.iterator.range", + "esnext.iterator.reduce", + "esnext.iterator.sliding", + "esnext.iterator.some", + "esnext.iterator.take", + "esnext.iterator.to-array", + "esnext.iterator.to-async", + "esnext.iterator.windows", + "esnext.iterator.zip", + "esnext.iterator.zip-keyed", + "esnext.json.is-raw-json", + "esnext.json.parse", + "esnext.json.raw-json", + "esnext.map.emplace", + "esnext.map.get-or-insert", + "esnext.map.get-or-insert-computed", + "esnext.map.group-by", + "esnext.math.f16round", + "esnext.math.sum-precise", + "esnext.number.clamp", + "esnext.object.has-own", + "esnext.object.group-by", + "esnext.promise.all-settled", + "esnext.promise.any", + "esnext.promise.try", + "esnext.promise.with-resolvers", + "esnext.regexp.escape", + "esnext.set.difference.v2", + "esnext.set.difference", + "esnext.set.intersection.v2", + "esnext.set.intersection", + "esnext.set.is-disjoint-from.v2", + "esnext.set.is-disjoint-from", + "esnext.set.is-subset-of.v2", + "esnext.set.is-subset-of", + "esnext.set.is-superset-of.v2", + "esnext.set.is-superset-of", + "esnext.set.symmetric-difference.v2", + "esnext.set.symmetric-difference", + "esnext.set.union.v2", + "esnext.set.union", + "esnext.string.dedent", + "esnext.string.is-well-formed", + "esnext.string.match-all", + "esnext.string.replace-all", + "esnext.string.to-well-formed", + "esnext.symbol.async-dispose", + "esnext.symbol.custom-matcher", + "esnext.symbol.dispose", + "esnext.symbol.is-registered-symbol", + "esnext.symbol.is-registered", + "esnext.symbol.is-well-known-symbol", + "esnext.symbol.is-well-known", + "esnext.symbol.metadata", + "esnext.symbol.metadata-key", + "esnext.typed-array.at", + "esnext.typed-array.find-last", + "esnext.typed-array.find-last-index", + "esnext.typed-array.group-by", + "esnext.typed-array.to-reversed", + "esnext.typed-array.to-sorted", + "esnext.typed-array.to-spliced", + "esnext.typed-array.with", + "esnext.uint8-array.from-base64", + "esnext.uint8-array.from-hex", + "esnext.uint8-array.set-from-base64", + "esnext.uint8-array.set-from-hex", + "esnext.uint8-array.to-base64", + "esnext.uint8-array.to-hex", + "esnext.weak-map.emplace", + "esnext.weak-map.get-or-insert", + "esnext.weak-map.get-or-insert-computed" + ], + "core-js/stage/2.7": [ + "es.string.at-alternative", + "esnext.aggregate-error", + "esnext.suppressed-error.constructor", + "esnext.array.from-async", + "esnext.array.at", + "esnext.array.find-last", + "esnext.array.find-last-index", + "esnext.array.group", + "esnext.array.group-by", + "esnext.array.group-by-to-map", + "esnext.array.group-to-map", + "esnext.array.to-reversed", + "esnext.array.to-sorted", + "esnext.array.to-spliced", + "esnext.array.with", + "esnext.array-buffer.detached", + "esnext.array-buffer.transfer", + "esnext.array-buffer.transfer-to-fixed-length", + "esnext.async-disposable-stack.constructor", + "esnext.async-iterator.constructor", + "esnext.async-iterator.async-dispose", + "esnext.async-iterator.drop", + "esnext.async-iterator.every", + "esnext.async-iterator.filter", + "esnext.async-iterator.find", + "esnext.async-iterator.flat-map", + "esnext.async-iterator.for-each", + "esnext.async-iterator.from", + "esnext.async-iterator.map", + "esnext.async-iterator.reduce", + "esnext.async-iterator.some", + "esnext.async-iterator.take", + "esnext.async-iterator.to-array", + "esnext.data-view.get-float16", + "esnext.data-view.set-float16", + "esnext.disposable-stack.constructor", + "esnext.error.is-error", + "esnext.function.metadata", + "esnext.global-this", + "esnext.iterator.constructor", + "esnext.iterator.concat", + "esnext.iterator.dispose", + "esnext.iterator.drop", + "esnext.iterator.every", + "esnext.iterator.filter", + "esnext.iterator.find", + "esnext.iterator.flat-map", + "esnext.iterator.for-each", + "esnext.iterator.from", + "esnext.iterator.map", + "esnext.iterator.reduce", + "esnext.iterator.some", + "esnext.iterator.take", + "esnext.iterator.to-array", + "esnext.iterator.to-async", + "esnext.iterator.zip", + "esnext.iterator.zip-keyed", + "esnext.json.is-raw-json", + "esnext.json.parse", + "esnext.json.raw-json", + "esnext.map.get-or-insert", + "esnext.map.get-or-insert-computed", + "esnext.map.group-by", + "esnext.math.f16round", + "esnext.math.sum-precise", + "esnext.object.has-own", + "esnext.object.group-by", + "esnext.promise.all-settled", + "esnext.promise.any", + "esnext.promise.try", + "esnext.promise.with-resolvers", + "esnext.regexp.escape", + "esnext.set.difference.v2", + "esnext.set.intersection.v2", + "esnext.set.is-disjoint-from.v2", + "esnext.set.is-subset-of.v2", + "esnext.set.is-superset-of.v2", + "esnext.set.symmetric-difference.v2", + "esnext.set.union.v2", + "esnext.string.is-well-formed", + "esnext.string.match-all", + "esnext.string.replace-all", + "esnext.string.to-well-formed", + "esnext.symbol.async-dispose", + "esnext.symbol.dispose", + "esnext.symbol.metadata", + "esnext.typed-array.at", + "esnext.typed-array.find-last", + "esnext.typed-array.find-last-index", + "esnext.typed-array.to-reversed", + "esnext.typed-array.to-sorted", + "esnext.typed-array.to-spliced", + "esnext.typed-array.with", + "esnext.uint8-array.from-base64", + "esnext.uint8-array.from-hex", + "esnext.uint8-array.set-from-base64", + "esnext.uint8-array.set-from-hex", + "esnext.uint8-array.to-base64", + "esnext.uint8-array.to-hex", + "esnext.weak-map.get-or-insert", + "esnext.weak-map.get-or-insert-computed" + ], + "core-js/stage/3": [ + "es.string.at-alternative", + "esnext.aggregate-error", + "esnext.suppressed-error.constructor", + "esnext.array.from-async", + "esnext.array.at", + "esnext.array.find-last", + "esnext.array.find-last-index", + "esnext.array.group", + "esnext.array.group-by", + "esnext.array.group-by-to-map", + "esnext.array.group-to-map", + "esnext.array.to-reversed", + "esnext.array.to-sorted", + "esnext.array.to-spliced", + "esnext.array.with", + "esnext.array-buffer.detached", + "esnext.array-buffer.transfer", + "esnext.array-buffer.transfer-to-fixed-length", + "esnext.async-disposable-stack.constructor", + "esnext.async-iterator.constructor", + "esnext.async-iterator.async-dispose", + "esnext.async-iterator.drop", + "esnext.async-iterator.every", + "esnext.async-iterator.filter", + "esnext.async-iterator.find", + "esnext.async-iterator.flat-map", + "esnext.async-iterator.for-each", + "esnext.async-iterator.from", + "esnext.async-iterator.map", + "esnext.async-iterator.reduce", + "esnext.async-iterator.some", + "esnext.async-iterator.take", + "esnext.async-iterator.to-array", + "esnext.data-view.get-float16", + "esnext.data-view.set-float16", + "esnext.disposable-stack.constructor", + "esnext.error.is-error", + "esnext.function.metadata", + "esnext.global-this", + "esnext.iterator.constructor", + "esnext.iterator.concat", + "esnext.iterator.dispose", + "esnext.iterator.drop", + "esnext.iterator.every", + "esnext.iterator.filter", + "esnext.iterator.find", + "esnext.iterator.flat-map", + "esnext.iterator.for-each", + "esnext.iterator.from", + "esnext.iterator.map", + "esnext.iterator.reduce", + "esnext.iterator.some", + "esnext.iterator.take", + "esnext.iterator.to-array", + "esnext.iterator.to-async", + "esnext.json.is-raw-json", + "esnext.json.parse", + "esnext.json.raw-json", + "esnext.map.get-or-insert", + "esnext.map.get-or-insert-computed", + "esnext.map.group-by", + "esnext.math.f16round", + "esnext.math.sum-precise", + "esnext.object.has-own", + "esnext.object.group-by", + "esnext.promise.all-settled", + "esnext.promise.any", + "esnext.promise.try", + "esnext.promise.with-resolvers", + "esnext.regexp.escape", + "esnext.set.difference.v2", + "esnext.set.intersection.v2", + "esnext.set.is-disjoint-from.v2", + "esnext.set.is-subset-of.v2", + "esnext.set.is-superset-of.v2", + "esnext.set.symmetric-difference.v2", + "esnext.set.union.v2", + "esnext.string.is-well-formed", + "esnext.string.match-all", + "esnext.string.replace-all", + "esnext.string.to-well-formed", + "esnext.symbol.async-dispose", + "esnext.symbol.dispose", + "esnext.symbol.metadata", + "esnext.typed-array.at", + "esnext.typed-array.find-last", + "esnext.typed-array.find-last-index", + "esnext.typed-array.to-reversed", + "esnext.typed-array.to-sorted", + "esnext.typed-array.to-spliced", + "esnext.typed-array.with", + "esnext.uint8-array.from-base64", + "esnext.uint8-array.from-hex", + "esnext.uint8-array.set-from-base64", + "esnext.uint8-array.set-from-hex", + "esnext.uint8-array.to-base64", + "esnext.uint8-array.to-hex", + "esnext.weak-map.get-or-insert", + "esnext.weak-map.get-or-insert-computed" + ], + "core-js/stage/4": [ + "es.string.at-alternative", + "esnext.aggregate-error", + "esnext.suppressed-error.constructor", + "esnext.array.from-async", + "esnext.array.at", + "esnext.array.find-last", + "esnext.array.find-last-index", + "esnext.array.to-reversed", + "esnext.array.to-sorted", + "esnext.array.to-spliced", + "esnext.array.with", + "esnext.array-buffer.detached", + "esnext.array-buffer.transfer", + "esnext.array-buffer.transfer-to-fixed-length", + "esnext.async-disposable-stack.constructor", + "esnext.async-iterator.async-dispose", + "esnext.data-view.get-float16", + "esnext.data-view.set-float16", + "esnext.disposable-stack.constructor", + "esnext.error.is-error", + "esnext.global-this", + "esnext.iterator.constructor", + "esnext.iterator.dispose", + "esnext.iterator.drop", + "esnext.iterator.every", + "esnext.iterator.filter", + "esnext.iterator.find", + "esnext.iterator.flat-map", + "esnext.iterator.for-each", + "esnext.iterator.from", + "esnext.iterator.map", + "esnext.iterator.reduce", + "esnext.iterator.some", + "esnext.iterator.take", + "esnext.iterator.to-array", + "esnext.map.group-by", + "esnext.math.f16round", + "esnext.math.sum-precise", + "esnext.object.has-own", + "esnext.object.group-by", + "esnext.promise.all-settled", + "esnext.promise.any", + "esnext.promise.try", + "esnext.promise.with-resolvers", + "esnext.regexp.escape", + "esnext.set.difference.v2", + "esnext.set.intersection.v2", + "esnext.set.is-disjoint-from.v2", + "esnext.set.is-subset-of.v2", + "esnext.set.is-superset-of.v2", + "esnext.set.symmetric-difference.v2", + "esnext.set.union.v2", + "esnext.string.is-well-formed", + "esnext.string.match-all", + "esnext.string.replace-all", + "esnext.string.to-well-formed", + "esnext.symbol.async-dispose", + "esnext.symbol.dispose", + "esnext.typed-array.at", + "esnext.typed-array.find-last", + "esnext.typed-array.find-last-index", + "esnext.typed-array.to-reversed", + "esnext.typed-array.to-sorted", + "esnext.typed-array.with", + "esnext.uint8-array.from-base64", + "esnext.uint8-array.from-hex", + "esnext.uint8-array.set-from-base64", + "esnext.uint8-array.set-from-hex", + "esnext.uint8-array.to-base64", + "esnext.uint8-array.to-hex" + ], + "core-js/stage/pre": [ + "es.map", + "es.string.at-alternative", + "esnext.aggregate-error", + "esnext.suppressed-error.constructor", + "esnext.array.from-async", + "esnext.array.at", + "esnext.array.filter-out", + "esnext.array.filter-reject", + "esnext.array.find-last", + "esnext.array.find-last-index", + "esnext.array.group", + "esnext.array.group-by", + "esnext.array.group-by-to-map", + "esnext.array.group-to-map", + "esnext.array.is-template-object", + "esnext.array.last-index", + "esnext.array.last-item", + "esnext.array.to-reversed", + "esnext.array.to-sorted", + "esnext.array.to-spliced", + "esnext.array.unique-by", + "esnext.array.with", + "esnext.array-buffer.detached", + "esnext.array-buffer.transfer", + "esnext.array-buffer.transfer-to-fixed-length", + "esnext.async-disposable-stack.constructor", + "esnext.async-iterator.constructor", + "esnext.async-iterator.as-indexed-pairs", + "esnext.async-iterator.async-dispose", + "esnext.async-iterator.drop", + "esnext.async-iterator.every", + "esnext.async-iterator.filter", + "esnext.async-iterator.find", + "esnext.async-iterator.flat-map", + "esnext.async-iterator.for-each", + "esnext.async-iterator.from", + "esnext.async-iterator.indexed", + "esnext.async-iterator.map", + "esnext.async-iterator.reduce", + "esnext.async-iterator.some", + "esnext.async-iterator.take", + "esnext.async-iterator.to-array", + "esnext.bigint.range", + "esnext.composite-key", + "esnext.composite-symbol", + "esnext.data-view.get-float16", + "esnext.data-view.get-uint8-clamped", + "esnext.data-view.set-float16", + "esnext.data-view.set-uint8-clamped", + "esnext.disposable-stack.constructor", + "esnext.error.is-error", + "esnext.function.demethodize", + "esnext.function.is-callable", + "esnext.function.is-constructor", + "esnext.function.metadata", + "esnext.function.un-this", + "esnext.global-this", + "esnext.iterator.constructor", + "esnext.iterator.as-indexed-pairs", + "esnext.iterator.chunks", + "esnext.iterator.concat", + "esnext.iterator.dispose", + "esnext.iterator.drop", + "esnext.iterator.every", + "esnext.iterator.filter", + "esnext.iterator.find", + "esnext.iterator.flat-map", + "esnext.iterator.for-each", + "esnext.iterator.from", + "esnext.iterator.indexed", + "esnext.iterator.map", + "esnext.iterator.range", + "esnext.iterator.reduce", + "esnext.iterator.sliding", + "esnext.iterator.some", + "esnext.iterator.take", + "esnext.iterator.to-array", + "esnext.iterator.to-async", + "esnext.iterator.windows", + "esnext.iterator.zip", + "esnext.iterator.zip-keyed", + "esnext.json.is-raw-json", + "esnext.json.parse", + "esnext.json.raw-json", + "esnext.map.delete-all", + "esnext.map.emplace", + "esnext.map.every", + "esnext.map.filter", + "esnext.map.find", + "esnext.map.find-key", + "esnext.map.from", + "esnext.map.get-or-insert", + "esnext.map.get-or-insert-computed", + "esnext.map.group-by", + "esnext.map.includes", + "esnext.map.key-by", + "esnext.map.key-of", + "esnext.map.map-keys", + "esnext.map.map-values", + "esnext.map.merge", + "esnext.map.of", + "esnext.map.reduce", + "esnext.map.some", + "esnext.map.update", + "esnext.map.update-or-insert", + "esnext.map.upsert", + "esnext.math.clamp", + "esnext.math.deg-per-rad", + "esnext.math.degrees", + "esnext.math.fscale", + "esnext.math.f16round", + "esnext.math.iaddh", + "esnext.math.imulh", + "esnext.math.isubh", + "esnext.math.rad-per-deg", + "esnext.math.radians", + "esnext.math.scale", + "esnext.math.seeded-prng", + "esnext.math.signbit", + "esnext.math.sum-precise", + "esnext.math.umulh", + "esnext.number.clamp", + "esnext.number.from-string", + "esnext.number.range", + "esnext.object.has-own", + "esnext.object.iterate-entries", + "esnext.object.iterate-keys", + "esnext.object.iterate-values", + "esnext.object.group-by", + "esnext.observable", + "esnext.promise.all-settled", + "esnext.promise.any", + "esnext.promise.try", + "esnext.promise.with-resolvers", + "esnext.reflect.define-metadata", + "esnext.reflect.delete-metadata", + "esnext.reflect.get-metadata", + "esnext.reflect.get-metadata-keys", + "esnext.reflect.get-own-metadata", + "esnext.reflect.get-own-metadata-keys", + "esnext.reflect.has-metadata", + "esnext.reflect.has-own-metadata", + "esnext.reflect.metadata", + "esnext.regexp.escape", + "esnext.set.add-all", + "esnext.set.delete-all", + "esnext.set.difference.v2", + "esnext.set.difference", + "esnext.set.every", + "esnext.set.filter", + "esnext.set.find", + "esnext.set.from", + "esnext.set.intersection.v2", + "esnext.set.intersection", + "esnext.set.is-disjoint-from.v2", + "esnext.set.is-disjoint-from", + "esnext.set.is-subset-of.v2", + "esnext.set.is-subset-of", + "esnext.set.is-superset-of.v2", + "esnext.set.is-superset-of", + "esnext.set.join", + "esnext.set.map", + "esnext.set.of", + "esnext.set.reduce", + "esnext.set.some", + "esnext.set.symmetric-difference.v2", + "esnext.set.symmetric-difference", + "esnext.set.union.v2", + "esnext.set.union", + "esnext.string.at", + "esnext.string.cooked", + "esnext.string.code-points", + "esnext.string.dedent", + "esnext.string.is-well-formed", + "esnext.string.match-all", + "esnext.string.replace-all", + "esnext.string.to-well-formed", + "esnext.symbol.async-dispose", + "esnext.symbol.custom-matcher", + "esnext.symbol.dispose", + "esnext.symbol.is-registered-symbol", + "esnext.symbol.is-registered", + "esnext.symbol.is-well-known-symbol", + "esnext.symbol.is-well-known", + "esnext.symbol.matcher", + "esnext.symbol.metadata", + "esnext.symbol.metadata-key", + "esnext.symbol.observable", + "esnext.symbol.pattern-match", + "esnext.symbol.replace-all", + "esnext.typed-array.from-async", + "esnext.typed-array.at", + "esnext.typed-array.filter-out", + "esnext.typed-array.filter-reject", + "esnext.typed-array.find-last", + "esnext.typed-array.find-last-index", + "esnext.typed-array.group-by", + "esnext.typed-array.to-reversed", + "esnext.typed-array.to-sorted", + "esnext.typed-array.to-spliced", + "esnext.typed-array.unique-by", + "esnext.typed-array.with", + "esnext.uint8-array.from-base64", + "esnext.uint8-array.from-hex", + "esnext.uint8-array.set-from-base64", + "esnext.uint8-array.set-from-hex", + "esnext.uint8-array.to-base64", + "esnext.uint8-array.to-hex", + "esnext.weak-map.delete-all", + "esnext.weak-map.from", + "esnext.weak-map.of", + "esnext.weak-map.emplace", + "esnext.weak-map.get-or-insert", + "esnext.weak-map.get-or-insert-computed", + "esnext.weak-map.upsert", + "esnext.weak-set.add-all", + "esnext.weak-set.delete-all", + "esnext.weak-set.from", + "esnext.weak-set.of", + "web.url", + "web.url.can-parse", + "web.url.parse", + "web.url.to-json", + "web.url-search-params", + "web.url-search-params.delete", + "web.url-search-params.has", + "web.url-search-params.size" + ], + "core-js/web": [ + "web.atob", + "web.btoa", + "web.dom-collections.for-each", + "web.dom-collections.iterator", + "web.dom-exception.constructor", + "web.dom-exception.stack", + "web.dom-exception.to-string-tag", + "web.immediate", + "web.queue-microtask", + "web.self", + "web.structured-clone", + "web.timers", + "web.url", + "web.url.can-parse", + "web.url.parse", + "web.url.to-json", + "web.url-search-params", + "web.url-search-params.delete", + "web.url-search-params.has", + "web.url-search-params.size" + ], + "core-js/web/dom-collections": [ + "web.dom-collections.for-each", + "web.dom-collections.iterator" + ], + "core-js/web/dom-exception": [ + "es.error.to-string", + "web.dom-exception.constructor", + "web.dom-exception.stack", + "web.dom-exception.to-string-tag" + ], + "core-js/web/immediate": [ + "web.immediate" + ], + "core-js/web/queue-microtask": [ + "web.queue-microtask" + ], + "core-js/web/structured-clone": [ + "es.array.iterator", + "es.map", + "es.object.to-string", + "es.set", + "web.structured-clone" + ], + "core-js/web/timers": [ + "web.timers" + ], + "core-js/web/url": [ + "web.url", + "web.url.can-parse", + "web.url.parse", + "web.url.to-json", + "web.url-search-params", + "web.url-search-params.delete", + "web.url-search-params.has", + "web.url-search-params.size" + ], + "core-js/web/url-search-params": [ + "web.url-search-params", + "web.url-search-params.delete", + "web.url-search-params.has", + "web.url-search-params.size" + ] +} diff --git a/novas/novacore-zephyr/groq-code-cli/node_modules/core-js-compat/external.json b/novas/novacore-zephyr/groq-code-cli/node_modules/core-js-compat/external.json new file mode 100644 index 0000000000000000000000000000000000000000..6c5bc341171e2e176e30a0208d2dbd7d87b9afad --- /dev/null +++ b/novas/novacore-zephyr/groq-code-cli/node_modules/core-js-compat/external.json @@ -0,0 +1,21 @@ +{ + "modules": { + "android": "61", + "bun": "0.1.1", + "chrome": "61", + "chrome-android": "61", + "deno": "1.0", + "edge": "16", + "firefox": "60", + "firefox-android": "60", + "ios": "10.3", + "node": "13.2", + "oculus": "4.0", + "opera": "48", + "opera-android": "45", + "opera_mobile": "45", + "quest": "4.0", + "safari": "10.1", + "samsung": "8.0" + } +} diff --git a/novas/novacore-zephyr/groq-code-cli/node_modules/core-js-compat/get-modules-list-for-target-version.d.ts b/novas/novacore-zephyr/groq-code-cli/node_modules/core-js-compat/get-modules-list-for-target-version.d.ts new file mode 100644 index 0000000000000000000000000000000000000000..77c3348444a21e794ad27ccfc0266384a144cf34 --- /dev/null +++ b/novas/novacore-zephyr/groq-code-cli/node_modules/core-js-compat/get-modules-list-for-target-version.d.ts @@ -0,0 +1,5 @@ +import type { ModuleName, TargetVersion } from "./shared"; + +declare function getModulesListForTargetVersion(version: TargetVersion): readonly ModuleName[]; + +export = getModulesListForTargetVersion; diff --git a/novas/novacore-zephyr/groq-code-cli/node_modules/core-js-compat/get-modules-list-for-target-version.js b/novas/novacore-zephyr/groq-code-cli/node_modules/core-js-compat/get-modules-list-for-target-version.js new file mode 100644 index 0000000000000000000000000000000000000000..e091c64a7fc84e731393a9ef22726aa24dd503d6 --- /dev/null +++ b/novas/novacore-zephyr/groq-code-cli/node_modules/core-js-compat/get-modules-list-for-target-version.js @@ -0,0 +1,18 @@ +'use strict'; +const { compare, intersection, semver } = require('./helpers'); +const modulesByVersions = require('./modules-by-versions'); +const modules = require('./modules'); + +module.exports = function (raw) { + const corejs = semver(raw); + if (corejs.major !== 3) { + throw new RangeError('This version of `core-js-compat` works only with `core-js@3`.'); + } + const result = []; + for (const version of Object.keys(modulesByVersions)) { + if (compare(version, '<=', corejs)) { + result.push(...modulesByVersions[version]); + } + } + return intersection(result, modules); +}; diff --git a/novas/novacore-zephyr/groq-code-cli/node_modules/core-js-compat/helpers.js b/novas/novacore-zephyr/groq-code-cli/node_modules/core-js-compat/helpers.js new file mode 100644 index 0000000000000000000000000000000000000000..62a6f43556914866075117de77b54c87ecff198c --- /dev/null +++ b/novas/novacore-zephyr/groq-code-cli/node_modules/core-js-compat/helpers.js @@ -0,0 +1,65 @@ +'use strict'; +// eslint-disable-next-line es/no-object-hasown -- safe +const has = Object.hasOwn || Function.call.bind({}.hasOwnProperty); + +const VERSION_PATTERN = /(\d+)(?:\.(\d+))?(?:\.(\d+))?/; + +class SemVer { + constructor(input) { + const match = VERSION_PATTERN.exec(input); + if (!match) throw new TypeError(`Invalid version: ${ input }`); + const [, $major, $minor, $patch] = match; + this.major = +$major; + this.minor = $minor ? +$minor : 0; + this.patch = $patch ? +$patch : 0; + } + toString() { + return `${ this.major }.${ this.minor }.${ this.patch }`; + } +} + +function semver(input) { + return input instanceof SemVer ? input : new SemVer(input); +} + +function compare($a, operator, $b) { + const a = semver($a); + const b = semver($b); + for (const component of ['major', 'minor', 'patch']) { + if (a[component] < b[component]) return operator === '<' || operator === '<=' || operator === '!='; + if (a[component] > b[component]) return operator === '>' || operator === '>=' || operator === '!='; + } return operator === '==' || operator === '<=' || operator === '>='; +} + +function filterOutStabilizedProposals(modules) { + const modulesSet = new Set(modules); + + for (const $module of modulesSet) { + if ($module.startsWith('esnext.') && modulesSet.has($module.replace(/^esnext\./, 'es.'))) { + modulesSet.delete($module); + } + } + + return [...modulesSet]; +} + +function intersection(list, order) { + const set = list instanceof Set ? list : new Set(list); + return order.filter(name => set.has(name)); +} + +function sortObjectByKey(object, fn) { + return Object.keys(object).sort(fn).reduce((memo, key) => { + memo[key] = object[key]; + return memo; + }, {}); +} + +module.exports = { + compare, + filterOutStabilizedProposals, + has, + intersection, + semver, + sortObjectByKey, +}; diff --git a/novas/novacore-zephyr/groq-code-cli/node_modules/core-js-compat/index.d.ts b/novas/novacore-zephyr/groq-code-cli/node_modules/core-js-compat/index.d.ts new file mode 100644 index 0000000000000000000000000000000000000000..b350d6a3e00af2eeb80aba33b249e8c2aa5cea0c --- /dev/null +++ b/novas/novacore-zephyr/groq-code-cli/node_modules/core-js-compat/index.d.ts @@ -0,0 +1,27 @@ +import type compat from './compat' +import type getModulesListForTargetVersion from './get-modules-list-for-target-version'; +import type { ModuleName, Target, TargetVersion } from './shared' + +type CompatData = { + [module: ModuleName]: { + [target in Target]?: TargetVersion + } +}; + +declare const ExportedCompatObject: typeof compat & { + compat: typeof compat, + + /** The subset of modules which available in the passed `core-js` version */ + getModulesListForTargetVersion: typeof getModulesListForTargetVersion, + + /** Full list compatibility data */ + data: CompatData, + + /** map of modules by `core-js` entry points */ + entries: {[entry_point: string]: readonly ModuleName[]}, + + /** Full list of modules */ + modules: readonly ModuleName[] +} + +export = ExportedCompatObject diff --git a/novas/novacore-zephyr/groq-code-cli/node_modules/core-js-compat/index.js b/novas/novacore-zephyr/groq-code-cli/node_modules/core-js-compat/index.js new file mode 100644 index 0000000000000000000000000000000000000000..5e71d2feb1c808c3ded2fb8caaa7589adad8b76a --- /dev/null +++ b/novas/novacore-zephyr/groq-code-cli/node_modules/core-js-compat/index.js @@ -0,0 +1,14 @@ +'use strict'; +const compat = require('./compat'); +const data = require('./data'); +const entries = require('./entries'); +const getModulesListForTargetVersion = require('./get-modules-list-for-target-version'); +const modules = require('./modules'); + +module.exports = Object.assign(compat, { + compat, + data, + entries, + getModulesListForTargetVersion, + modules, +}); diff --git a/novas/novacore-zephyr/groq-code-cli/node_modules/core-js-compat/modules-by-versions.json b/novas/novacore-zephyr/groq-code-cli/node_modules/core-js-compat/modules-by-versions.json new file mode 100644 index 0000000000000000000000000000000000000000..7fcc6a6e73e1977983d10c3d445f9d8156473172 --- /dev/null +++ b/novas/novacore-zephyr/groq-code-cli/node_modules/core-js-compat/modules-by-versions.json @@ -0,0 +1,606 @@ +{ + "3.0": [ + "es.symbol", + "es.symbol.description", + "es.symbol.async-iterator", + "es.symbol.has-instance", + "es.symbol.is-concat-spreadable", + "es.symbol.iterator", + "es.symbol.match", + "es.symbol.replace", + "es.symbol.search", + "es.symbol.species", + "es.symbol.split", + "es.symbol.to-primitive", + "es.symbol.to-string-tag", + "es.symbol.unscopables", + "es.array.concat", + "es.array.copy-within", + "es.array.every", + "es.array.fill", + "es.array.filter", + "es.array.find", + "es.array.find-index", + "es.array.flat", + "es.array.flat-map", + "es.array.for-each", + "es.array.from", + "es.array.includes", + "es.array.index-of", + "es.array.is-array", + "es.array.iterator", + "es.array.join", + "es.array.last-index-of", + "es.array.map", + "es.array.of", + "es.array.reduce", + "es.array.reduce-right", + "es.array.reverse", + "es.array.slice", + "es.array.some", + "es.array.sort", + "es.array.species", + "es.array.splice", + "es.array.unscopables.flat", + "es.array.unscopables.flat-map", + "es.array-buffer.constructor", + "es.array-buffer.is-view", + "es.array-buffer.slice", + "es.data-view", + "es.date.now", + "es.date.to-iso-string", + "es.date.to-json", + "es.date.to-primitive", + "es.date.to-string", + "es.function.bind", + "es.function.has-instance", + "es.function.name", + "es.json.to-string-tag", + "es.map", + "es.math.acosh", + "es.math.asinh", + "es.math.atanh", + "es.math.cbrt", + "es.math.clz32", + "es.math.cosh", + "es.math.expm1", + "es.math.fround", + "es.math.hypot", + "es.math.imul", + "es.math.log10", + "es.math.log1p", + "es.math.log2", + "es.math.sign", + "es.math.sinh", + "es.math.tanh", + "es.math.to-string-tag", + "es.math.trunc", + "es.number.constructor", + "es.number.epsilon", + "es.number.is-finite", + "es.number.is-integer", + "es.number.is-nan", + "es.number.is-safe-integer", + "es.number.max-safe-integer", + "es.number.min-safe-integer", + "es.number.parse-float", + "es.number.parse-int", + "es.number.to-fixed", + "es.number.to-precision", + "es.object.assign", + "es.object.create", + "es.object.define-getter", + "es.object.define-properties", + "es.object.define-property", + "es.object.define-setter", + "es.object.entries", + "es.object.freeze", + "es.object.from-entries", + "es.object.get-own-property-descriptor", + "es.object.get-own-property-descriptors", + "es.object.get-own-property-names", + "es.object.get-prototype-of", + "es.object.is", + "es.object.is-extensible", + "es.object.is-frozen", + "es.object.is-sealed", + "es.object.keys", + "es.object.lookup-getter", + "es.object.lookup-setter", + "es.object.prevent-extensions", + "es.object.seal", + "es.object.set-prototype-of", + "es.object.to-string", + "es.object.values", + "es.parse-float", + "es.parse-int", + "es.promise", + "es.promise.finally", + "es.reflect.apply", + "es.reflect.construct", + "es.reflect.define-property", + "es.reflect.delete-property", + "es.reflect.get", + "es.reflect.get-own-property-descriptor", + "es.reflect.get-prototype-of", + "es.reflect.has", + "es.reflect.is-extensible", + "es.reflect.own-keys", + "es.reflect.prevent-extensions", + "es.reflect.set", + "es.reflect.set-prototype-of", + "es.regexp.constructor", + "es.regexp.exec", + "es.regexp.flags", + "es.regexp.to-string", + "es.set", + "es.string.code-point-at", + "es.string.ends-with", + "es.string.from-code-point", + "es.string.includes", + "es.string.iterator", + "es.string.match", + "es.string.pad-end", + "es.string.pad-start", + "es.string.raw", + "es.string.repeat", + "es.string.replace", + "es.string.search", + "es.string.split", + "es.string.starts-with", + "es.string.trim", + "es.string.trim-end", + "es.string.trim-start", + "es.string.anchor", + "es.string.big", + "es.string.blink", + "es.string.bold", + "es.string.fixed", + "es.string.fontcolor", + "es.string.fontsize", + "es.string.italics", + "es.string.link", + "es.string.small", + "es.string.strike", + "es.string.sub", + "es.string.sup", + "es.typed-array.float32-array", + "es.typed-array.float64-array", + "es.typed-array.int8-array", + "es.typed-array.int16-array", + "es.typed-array.int32-array", + "es.typed-array.uint8-array", + "es.typed-array.uint8-clamped-array", + "es.typed-array.uint16-array", + "es.typed-array.uint32-array", + "es.typed-array.copy-within", + "es.typed-array.every", + "es.typed-array.fill", + "es.typed-array.filter", + "es.typed-array.find", + "es.typed-array.find-index", + "es.typed-array.for-each", + "es.typed-array.from", + "es.typed-array.includes", + "es.typed-array.index-of", + "es.typed-array.iterator", + "es.typed-array.join", + "es.typed-array.last-index-of", + "es.typed-array.map", + "es.typed-array.of", + "es.typed-array.reduce", + "es.typed-array.reduce-right", + "es.typed-array.reverse", + "es.typed-array.set", + "es.typed-array.slice", + "es.typed-array.some", + "es.typed-array.sort", + "es.typed-array.subarray", + "es.typed-array.to-locale-string", + "es.typed-array.to-string", + "es.weak-map", + "es.weak-set", + "esnext.aggregate-error", + "esnext.array.last-index", + "esnext.array.last-item", + "esnext.composite-key", + "esnext.composite-symbol", + "esnext.global-this", + "esnext.map.delete-all", + "esnext.map.every", + "esnext.map.filter", + "esnext.map.find", + "esnext.map.find-key", + "esnext.map.from", + "esnext.map.group-by", + "esnext.map.includes", + "esnext.map.key-by", + "esnext.map.key-of", + "esnext.map.map-keys", + "esnext.map.map-values", + "esnext.map.merge", + "esnext.map.of", + "esnext.map.reduce", + "esnext.map.some", + "esnext.map.update", + "esnext.math.clamp", + "esnext.math.deg-per-rad", + "esnext.math.degrees", + "esnext.math.fscale", + "esnext.math.iaddh", + "esnext.math.imulh", + "esnext.math.isubh", + "esnext.math.rad-per-deg", + "esnext.math.radians", + "esnext.math.scale", + "esnext.math.seeded-prng", + "esnext.math.signbit", + "esnext.math.umulh", + "esnext.number.from-string", + "esnext.observable", + "esnext.promise.all-settled", + "esnext.promise.any", + "esnext.promise.try", + "esnext.reflect.define-metadata", + "esnext.reflect.delete-metadata", + "esnext.reflect.get-metadata", + "esnext.reflect.get-metadata-keys", + "esnext.reflect.get-own-metadata", + "esnext.reflect.get-own-metadata-keys", + "esnext.reflect.has-metadata", + "esnext.reflect.has-own-metadata", + "esnext.reflect.metadata", + "esnext.set.add-all", + "esnext.set.delete-all", + "esnext.set.difference", + "esnext.set.every", + "esnext.set.filter", + "esnext.set.find", + "esnext.set.from", + "esnext.set.intersection", + "esnext.set.is-disjoint-from", + "esnext.set.is-subset-of", + "esnext.set.is-superset-of", + "esnext.set.join", + "esnext.set.map", + "esnext.set.of", + "esnext.set.reduce", + "esnext.set.some", + "esnext.set.symmetric-difference", + "esnext.set.union", + "esnext.string.at", + "esnext.string.code-points", + "esnext.string.match-all", + "esnext.string.replace-all", + "esnext.symbol.dispose", + "esnext.symbol.observable", + "esnext.symbol.pattern-match", + "esnext.weak-map.delete-all", + "esnext.weak-map.from", + "esnext.weak-map.of", + "esnext.weak-set.add-all", + "esnext.weak-set.delete-all", + "esnext.weak-set.from", + "esnext.weak-set.of", + "web.dom-collections.for-each", + "web.dom-collections.iterator", + "web.immediate", + "web.queue-microtask", + "web.timers", + "web.url", + "web.url.to-json", + "web.url-search-params" + ], + "3.1": [ + "es.string.match-all", + "es.symbol.match-all", + "esnext.symbol.replace-all" + ], + "3.2": [ + "es.promise.all-settled", + "esnext.array.is-template-object", + "esnext.map.update-or-insert", + "esnext.symbol.async-dispose" + ], + "3.3": [ + "es.global-this", + "esnext.async-iterator.constructor", + "esnext.async-iterator.as-indexed-pairs", + "esnext.async-iterator.drop", + "esnext.async-iterator.every", + "esnext.async-iterator.filter", + "esnext.async-iterator.find", + "esnext.async-iterator.flat-map", + "esnext.async-iterator.for-each", + "esnext.async-iterator.from", + "esnext.async-iterator.map", + "esnext.async-iterator.reduce", + "esnext.async-iterator.some", + "esnext.async-iterator.take", + "esnext.async-iterator.to-array", + "esnext.iterator.constructor", + "esnext.iterator.as-indexed-pairs", + "esnext.iterator.drop", + "esnext.iterator.every", + "esnext.iterator.filter", + "esnext.iterator.find", + "esnext.iterator.flat-map", + "esnext.iterator.for-each", + "esnext.iterator.from", + "esnext.iterator.map", + "esnext.iterator.reduce", + "esnext.iterator.some", + "esnext.iterator.take", + "esnext.iterator.to-array", + "esnext.map.upsert", + "esnext.weak-map.upsert" + ], + "3.4": [ + "es.json.stringify" + ], + "3.5": [ + "esnext.object.iterate-entries", + "esnext.object.iterate-keys", + "esnext.object.iterate-values" + ], + "3.6": [ + "es.regexp.sticky", + "es.regexp.test" + ], + "3.7": [ + "es.aggregate-error", + "es.promise.any", + "es.reflect.to-string-tag", + "es.string.replace-all", + "esnext.map.emplace", + "esnext.weak-map.emplace" + ], + "3.8": [ + "esnext.array.at", + "esnext.array.filter-out", + "esnext.array.unique-by", + "esnext.bigint.range", + "esnext.number.range", + "esnext.typed-array.at", + "esnext.typed-array.filter-out" + ], + "3.9": [ + "esnext.array.find-last", + "esnext.array.find-last-index", + "esnext.typed-array.find-last", + "esnext.typed-array.find-last-index", + "esnext.typed-array.unique-by" + ], + "3.11": [ + "esnext.object.has-own" + ], + "3.12": [ + "esnext.symbol.matcher", + "esnext.symbol.metadata" + ], + "3.15": [ + "es.date.get-year", + "es.date.set-year", + "es.date.to-gmt-string", + "es.escape", + "es.regexp.dot-all", + "es.string.substr", + "es.unescape" + ], + "3.16": [ + "esnext.array.filter-reject", + "esnext.array.group-by", + "esnext.typed-array.filter-reject", + "esnext.typed-array.group-by" + ], + "3.17": [ + "es.array.at", + "es.object.has-own", + "es.string.at-alternative", + "es.typed-array.at" + ], + "3.18": [ + "esnext.array.from-async", + "esnext.typed-array.from-async" + ], + "3.20": [ + "es.error.cause", + "es.error.to-string", + "es.aggregate-error.cause", + "es.number.to-exponential", + "esnext.array.group-by-to-map", + "esnext.array.to-reversed", + "esnext.array.to-sorted", + "esnext.array.to-spliced", + "esnext.array.with", + "esnext.function.is-callable", + "esnext.function.is-constructor", + "esnext.function.un-this", + "esnext.iterator.to-async", + "esnext.string.cooked", + "esnext.typed-array.to-reversed", + "esnext.typed-array.to-sorted", + "esnext.typed-array.to-spliced", + "esnext.typed-array.with", + "web.dom-exception.constructor", + "web.dom-exception.stack", + "web.dom-exception.to-string-tag", + "web.structured-clone" + ], + "3.21": [ + "web.atob", + "web.btoa" + ], + "3.23": [ + "es.array.find-last", + "es.array.find-last-index", + "es.array.push", + "es.array.unshift", + "es.typed-array.find-last", + "es.typed-array.find-last-index", + "esnext.array.group", + "esnext.array.group-to-map", + "esnext.symbol.metadata-key" + ], + "3.24": [ + "esnext.async-iterator.indexed", + "esnext.iterator.indexed" + ], + "3.25": [ + "es.object.proto" + ], + "3.26": [ + "esnext.string.is-well-formed", + "esnext.string.to-well-formed", + "web.self" + ], + "3.27": [ + "esnext.suppressed-error.constructor", + "esnext.async-disposable-stack.constructor", + "esnext.async-iterator.async-dispose", + "esnext.disposable-stack.constructor", + "esnext.iterator.dispose", + "esnext.set.difference.v2", + "esnext.set.intersection.v2", + "esnext.set.is-disjoint-from.v2", + "esnext.set.is-subset-of.v2", + "esnext.set.is-superset-of.v2", + "esnext.set.symmetric-difference.v2", + "esnext.set.union.v2", + "esnext.string.dedent" + ], + "3.28": [ + "es.array.to-reversed", + "es.array.to-sorted", + "es.array.to-spliced", + "es.array.with", + "es.typed-array.to-reversed", + "es.typed-array.to-sorted", + "es.typed-array.with", + "esnext.array-buffer.detached", + "esnext.array-buffer.transfer", + "esnext.array-buffer.transfer-to-fixed-length", + "esnext.function.demethodize", + "esnext.iterator.range", + "esnext.json.is-raw-json", + "esnext.json.parse", + "esnext.json.raw-json", + "esnext.symbol.is-registered", + "esnext.symbol.is-well-known" + ], + "3.29": [ + "web.url-search-params.size" + ], + "3.30": [ + "web.url.can-parse" + ], + "3.31": [ + "es.string.is-well-formed", + "es.string.to-well-formed", + "esnext.function.metadata", + "esnext.object.group-by", + "esnext.promise.with-resolvers", + "esnext.symbol.is-registered-symbol", + "esnext.symbol.is-well-known-symbol", + "web.url-search-params.delete", + "web.url-search-params.has" + ], + "3.32": [ + "esnext.data-view.get-float16", + "esnext.data-view.get-uint8-clamped", + "esnext.data-view.set-float16", + "esnext.data-view.set-uint8-clamped", + "esnext.math.f16round" + ], + "3.33": [ + "esnext.regexp.escape" + ], + "3.34": [ + "es.map.group-by", + "es.object.group-by", + "es.promise.with-resolvers", + "esnext.uint8-array.from-base64", + "esnext.uint8-array.from-hex", + "esnext.uint8-array.to-base64", + "esnext.uint8-array.to-hex" + ], + "3.36": [ + "es.array-buffer.detached", + "es.array-buffer.transfer", + "es.array-buffer.transfer-to-fixed-length" + ], + "3.37": [ + "es.set.difference.v2", + "es.set.intersection.v2", + "es.set.is-disjoint-from.v2", + "es.set.is-subset-of.v2", + "es.set.is-superset-of.v2", + "es.set.symmetric-difference.v2", + "es.set.union.v2", + "esnext.math.sum-precise", + "esnext.symbol.custom-matcher", + "web.url.parse" + ], + "3.38": [ + "esnext.uint8-array.set-from-base64", + "esnext.uint8-array.set-from-hex" + ], + "3.39": [ + "es.iterator.constructor", + "es.iterator.drop", + "es.iterator.every", + "es.iterator.filter", + "es.iterator.find", + "es.iterator.flat-map", + "es.iterator.for-each", + "es.iterator.from", + "es.iterator.map", + "es.iterator.reduce", + "es.iterator.some", + "es.iterator.take", + "es.iterator.to-array", + "es.promise.try", + "esnext.iterator.concat", + "esnext.map.get-or-insert", + "esnext.map.get-or-insert-computed", + "esnext.weak-map.get-or-insert", + "esnext.weak-map.get-or-insert-computed" + ], + "3.40": [ + "esnext.error.is-error" + ], + "3.41": [ + "es.data-view.get-float16", + "es.data-view.set-float16", + "es.math.f16round", + "es.regexp.escape" + ], + "3.43": [ + "es.array.from-async", + "es.async-disposable-stack.constructor", + "es.async-iterator.async-dispose", + "es.disposable-stack.constructor", + "es.error.is-error", + "es.iterator.dispose", + "es.suppressed-error.constructor", + "es.symbol.async-dispose", + "es.symbol.dispose", + "esnext.iterator.chunks", + "esnext.iterator.windows", + "esnext.iterator.zip", + "esnext.iterator.zip-keyed", + "esnext.number.clamp" + ], + "3.44": [ + "esnext.iterator.sliding" + ], + "3.45": [ + "es.math.sum-precise", + "es.uint8-array.from-base64", + "es.uint8-array.from-hex", + "es.uint8-array.set-from-base64", + "es.uint8-array.set-from-hex", + "es.uint8-array.to-base64", + "es.uint8-array.to-hex" + ] +} diff --git a/novas/novacore-zephyr/groq-code-cli/node_modules/core-js-compat/modules.json b/novas/novacore-zephyr/groq-code-cli/node_modules/core-js-compat/modules.json new file mode 100644 index 0000000000000000000000000000000000000000..c250b383d07f73a4f022356a767df59ad209fe6a --- /dev/null +++ b/novas/novacore-zephyr/groq-code-cli/node_modules/core-js-compat/modules.json @@ -0,0 +1,528 @@ +[ + "es.symbol", + "es.symbol.description", + "es.symbol.async-dispose", + "es.symbol.async-iterator", + "es.symbol.dispose", + "es.symbol.has-instance", + "es.symbol.is-concat-spreadable", + "es.symbol.iterator", + "es.symbol.match", + "es.symbol.match-all", + "es.symbol.replace", + "es.symbol.search", + "es.symbol.species", + "es.symbol.split", + "es.symbol.to-primitive", + "es.symbol.to-string-tag", + "es.symbol.unscopables", + "es.error.cause", + "es.error.is-error", + "es.error.to-string", + "es.aggregate-error", + "es.aggregate-error.cause", + "es.suppressed-error.constructor", + "es.array.at", + "es.array.concat", + "es.array.copy-within", + "es.array.every", + "es.array.fill", + "es.array.filter", + "es.array.find", + "es.array.find-index", + "es.array.find-last", + "es.array.find-last-index", + "es.array.flat", + "es.array.flat-map", + "es.array.for-each", + "es.array.from", + "es.array.includes", + "es.array.index-of", + "es.array.is-array", + "es.array.iterator", + "es.array.join", + "es.array.last-index-of", + "es.array.map", + "es.array.of", + "es.array.push", + "es.array.reduce", + "es.array.reduce-right", + "es.array.reverse", + "es.array.slice", + "es.array.some", + "es.array.sort", + "es.array.species", + "es.array.splice", + "es.array.to-reversed", + "es.array.to-sorted", + "es.array.to-spliced", + "es.array.unscopables.flat", + "es.array.unscopables.flat-map", + "es.array.unshift", + "es.array.with", + "es.array-buffer.constructor", + "es.array-buffer.is-view", + "es.array-buffer.slice", + "es.data-view", + "es.data-view.get-float16", + "es.data-view.set-float16", + "es.array-buffer.detached", + "es.array-buffer.transfer", + "es.array-buffer.transfer-to-fixed-length", + "es.date.get-year", + "es.date.now", + "es.date.set-year", + "es.date.to-gmt-string", + "es.date.to-iso-string", + "es.date.to-json", + "es.date.to-primitive", + "es.date.to-string", + "es.disposable-stack.constructor", + "es.escape", + "es.function.bind", + "es.function.has-instance", + "es.function.name", + "es.global-this", + "es.iterator.constructor", + "es.iterator.dispose", + "es.iterator.drop", + "es.iterator.every", + "es.iterator.filter", + "es.iterator.find", + "es.iterator.flat-map", + "es.iterator.for-each", + "es.iterator.from", + "es.iterator.map", + "es.iterator.reduce", + "es.iterator.some", + "es.iterator.take", + "es.iterator.to-array", + "es.json.stringify", + "es.json.to-string-tag", + "es.map", + "es.map.group-by", + "es.math.acosh", + "es.math.asinh", + "es.math.atanh", + "es.math.cbrt", + "es.math.clz32", + "es.math.cosh", + "es.math.expm1", + "es.math.fround", + "es.math.f16round", + "es.math.hypot", + "es.math.imul", + "es.math.log10", + "es.math.log1p", + "es.math.log2", + "es.math.sign", + "es.math.sinh", + "es.math.sum-precise", + "es.math.tanh", + "es.math.to-string-tag", + "es.math.trunc", + "es.number.constructor", + "es.number.epsilon", + "es.number.is-finite", + "es.number.is-integer", + "es.number.is-nan", + "es.number.is-safe-integer", + "es.number.max-safe-integer", + "es.number.min-safe-integer", + "es.number.parse-float", + "es.number.parse-int", + "es.number.to-exponential", + "es.number.to-fixed", + "es.number.to-precision", + "es.object.assign", + "es.object.create", + "es.object.define-getter", + "es.object.define-properties", + "es.object.define-property", + "es.object.define-setter", + "es.object.entries", + "es.object.freeze", + "es.object.from-entries", + "es.object.get-own-property-descriptor", + "es.object.get-own-property-descriptors", + "es.object.get-own-property-names", + "es.object.get-prototype-of", + "es.object.group-by", + "es.object.has-own", + "es.object.is", + "es.object.is-extensible", + "es.object.is-frozen", + "es.object.is-sealed", + "es.object.keys", + "es.object.lookup-getter", + "es.object.lookup-setter", + "es.object.prevent-extensions", + "es.object.proto", + "es.object.seal", + "es.object.set-prototype-of", + "es.object.to-string", + "es.object.values", + "es.parse-float", + "es.parse-int", + "es.promise", + "es.promise.all-settled", + "es.promise.any", + "es.promise.finally", + "es.promise.try", + "es.promise.with-resolvers", + "es.array.from-async", + "es.async-disposable-stack.constructor", + "es.async-iterator.async-dispose", + "es.reflect.apply", + "es.reflect.construct", + "es.reflect.define-property", + "es.reflect.delete-property", + "es.reflect.get", + "es.reflect.get-own-property-descriptor", + "es.reflect.get-prototype-of", + "es.reflect.has", + "es.reflect.is-extensible", + "es.reflect.own-keys", + "es.reflect.prevent-extensions", + "es.reflect.set", + "es.reflect.set-prototype-of", + "es.reflect.to-string-tag", + "es.regexp.constructor", + "es.regexp.escape", + "es.regexp.dot-all", + "es.regexp.exec", + "es.regexp.flags", + "es.regexp.sticky", + "es.regexp.test", + "es.regexp.to-string", + "es.set", + "es.set.difference.v2", + "es.set.intersection.v2", + "es.set.is-disjoint-from.v2", + "es.set.is-subset-of.v2", + "es.set.is-superset-of.v2", + "es.set.symmetric-difference.v2", + "es.set.union.v2", + "es.string.at-alternative", + "es.string.code-point-at", + "es.string.ends-with", + "es.string.from-code-point", + "es.string.includes", + "es.string.is-well-formed", + "es.string.iterator", + "es.string.match", + "es.string.match-all", + "es.string.pad-end", + "es.string.pad-start", + "es.string.raw", + "es.string.repeat", + "es.string.replace", + "es.string.replace-all", + "es.string.search", + "es.string.split", + "es.string.starts-with", + "es.string.substr", + "es.string.to-well-formed", + "es.string.trim", + "es.string.trim-end", + "es.string.trim-start", + "es.string.anchor", + "es.string.big", + "es.string.blink", + "es.string.bold", + "es.string.fixed", + "es.string.fontcolor", + "es.string.fontsize", + "es.string.italics", + "es.string.link", + "es.string.small", + "es.string.strike", + "es.string.sub", + "es.string.sup", + "es.typed-array.float32-array", + "es.typed-array.float64-array", + "es.typed-array.int8-array", + "es.typed-array.int16-array", + "es.typed-array.int32-array", + "es.typed-array.uint8-array", + "es.typed-array.uint8-clamped-array", + "es.typed-array.uint16-array", + "es.typed-array.uint32-array", + "es.typed-array.at", + "es.typed-array.copy-within", + "es.typed-array.every", + "es.typed-array.fill", + "es.typed-array.filter", + "es.typed-array.find", + "es.typed-array.find-index", + "es.typed-array.find-last", + "es.typed-array.find-last-index", + "es.typed-array.for-each", + "es.typed-array.from", + "es.typed-array.includes", + "es.typed-array.index-of", + "es.typed-array.iterator", + "es.typed-array.join", + "es.typed-array.last-index-of", + "es.typed-array.map", + "es.typed-array.of", + "es.typed-array.reduce", + "es.typed-array.reduce-right", + "es.typed-array.reverse", + "es.typed-array.set", + "es.typed-array.slice", + "es.typed-array.some", + "es.typed-array.sort", + "es.typed-array.subarray", + "es.typed-array.to-locale-string", + "es.typed-array.to-reversed", + "es.typed-array.to-sorted", + "es.typed-array.to-string", + "es.typed-array.with", + "es.uint8-array.from-base64", + "es.uint8-array.from-hex", + "es.uint8-array.set-from-base64", + "es.uint8-array.set-from-hex", + "es.uint8-array.to-base64", + "es.uint8-array.to-hex", + "es.unescape", + "es.weak-map", + "es.weak-set", + "esnext.aggregate-error", + "esnext.suppressed-error.constructor", + "esnext.array.from-async", + "esnext.array.at", + "esnext.array.filter-out", + "esnext.array.filter-reject", + "esnext.array.find-last", + "esnext.array.find-last-index", + "esnext.array.group", + "esnext.array.group-by", + "esnext.array.group-by-to-map", + "esnext.array.group-to-map", + "esnext.array.is-template-object", + "esnext.array.last-index", + "esnext.array.last-item", + "esnext.array.to-reversed", + "esnext.array.to-sorted", + "esnext.array.to-spliced", + "esnext.array.unique-by", + "esnext.array.with", + "esnext.array-buffer.detached", + "esnext.array-buffer.transfer", + "esnext.array-buffer.transfer-to-fixed-length", + "esnext.async-disposable-stack.constructor", + "esnext.async-iterator.constructor", + "esnext.async-iterator.as-indexed-pairs", + "esnext.async-iterator.async-dispose", + "esnext.async-iterator.drop", + "esnext.async-iterator.every", + "esnext.async-iterator.filter", + "esnext.async-iterator.find", + "esnext.async-iterator.flat-map", + "esnext.async-iterator.for-each", + "esnext.async-iterator.from", + "esnext.async-iterator.indexed", + "esnext.async-iterator.map", + "esnext.async-iterator.reduce", + "esnext.async-iterator.some", + "esnext.async-iterator.take", + "esnext.async-iterator.to-array", + "esnext.bigint.range", + "esnext.composite-key", + "esnext.composite-symbol", + "esnext.data-view.get-float16", + "esnext.data-view.get-uint8-clamped", + "esnext.data-view.set-float16", + "esnext.data-view.set-uint8-clamped", + "esnext.disposable-stack.constructor", + "esnext.error.is-error", + "esnext.function.demethodize", + "esnext.function.is-callable", + "esnext.function.is-constructor", + "esnext.function.metadata", + "esnext.function.un-this", + "esnext.global-this", + "esnext.iterator.constructor", + "esnext.iterator.as-indexed-pairs", + "esnext.iterator.chunks", + "esnext.iterator.concat", + "esnext.iterator.dispose", + "esnext.iterator.drop", + "esnext.iterator.every", + "esnext.iterator.filter", + "esnext.iterator.find", + "esnext.iterator.flat-map", + "esnext.iterator.for-each", + "esnext.iterator.from", + "esnext.iterator.indexed", + "esnext.iterator.map", + "esnext.iterator.range", + "esnext.iterator.reduce", + "esnext.iterator.sliding", + "esnext.iterator.some", + "esnext.iterator.take", + "esnext.iterator.to-array", + "esnext.iterator.to-async", + "esnext.iterator.windows", + "esnext.iterator.zip", + "esnext.iterator.zip-keyed", + "esnext.json.is-raw-json", + "esnext.json.parse", + "esnext.json.raw-json", + "esnext.map.delete-all", + "esnext.map.emplace", + "esnext.map.every", + "esnext.map.filter", + "esnext.map.find", + "esnext.map.find-key", + "esnext.map.from", + "esnext.map.get-or-insert", + "esnext.map.get-or-insert-computed", + "esnext.map.group-by", + "esnext.map.includes", + "esnext.map.key-by", + "esnext.map.key-of", + "esnext.map.map-keys", + "esnext.map.map-values", + "esnext.map.merge", + "esnext.map.of", + "esnext.map.reduce", + "esnext.map.some", + "esnext.map.update", + "esnext.map.update-or-insert", + "esnext.map.upsert", + "esnext.math.clamp", + "esnext.math.deg-per-rad", + "esnext.math.degrees", + "esnext.math.fscale", + "esnext.math.f16round", + "esnext.math.iaddh", + "esnext.math.imulh", + "esnext.math.isubh", + "esnext.math.rad-per-deg", + "esnext.math.radians", + "esnext.math.scale", + "esnext.math.seeded-prng", + "esnext.math.signbit", + "esnext.math.sum-precise", + "esnext.math.umulh", + "esnext.number.clamp", + "esnext.number.from-string", + "esnext.number.range", + "esnext.object.has-own", + "esnext.object.iterate-entries", + "esnext.object.iterate-keys", + "esnext.object.iterate-values", + "esnext.object.group-by", + "esnext.observable", + "esnext.promise.all-settled", + "esnext.promise.any", + "esnext.promise.try", + "esnext.promise.with-resolvers", + "esnext.reflect.define-metadata", + "esnext.reflect.delete-metadata", + "esnext.reflect.get-metadata", + "esnext.reflect.get-metadata-keys", + "esnext.reflect.get-own-metadata", + "esnext.reflect.get-own-metadata-keys", + "esnext.reflect.has-metadata", + "esnext.reflect.has-own-metadata", + "esnext.reflect.metadata", + "esnext.regexp.escape", + "esnext.set.add-all", + "esnext.set.delete-all", + "esnext.set.difference.v2", + "esnext.set.difference", + "esnext.set.every", + "esnext.set.filter", + "esnext.set.find", + "esnext.set.from", + "esnext.set.intersection.v2", + "esnext.set.intersection", + "esnext.set.is-disjoint-from.v2", + "esnext.set.is-disjoint-from", + "esnext.set.is-subset-of.v2", + "esnext.set.is-subset-of", + "esnext.set.is-superset-of.v2", + "esnext.set.is-superset-of", + "esnext.set.join", + "esnext.set.map", + "esnext.set.of", + "esnext.set.reduce", + "esnext.set.some", + "esnext.set.symmetric-difference.v2", + "esnext.set.symmetric-difference", + "esnext.set.union.v2", + "esnext.set.union", + "esnext.string.at", + "esnext.string.cooked", + "esnext.string.code-points", + "esnext.string.dedent", + "esnext.string.is-well-formed", + "esnext.string.match-all", + "esnext.string.replace-all", + "esnext.string.to-well-formed", + "esnext.symbol.async-dispose", + "esnext.symbol.custom-matcher", + "esnext.symbol.dispose", + "esnext.symbol.is-registered-symbol", + "esnext.symbol.is-registered", + "esnext.symbol.is-well-known-symbol", + "esnext.symbol.is-well-known", + "esnext.symbol.matcher", + "esnext.symbol.metadata", + "esnext.symbol.metadata-key", + "esnext.symbol.observable", + "esnext.symbol.pattern-match", + "esnext.symbol.replace-all", + "esnext.typed-array.from-async", + "esnext.typed-array.at", + "esnext.typed-array.filter-out", + "esnext.typed-array.filter-reject", + "esnext.typed-array.find-last", + "esnext.typed-array.find-last-index", + "esnext.typed-array.group-by", + "esnext.typed-array.to-reversed", + "esnext.typed-array.to-sorted", + "esnext.typed-array.to-spliced", + "esnext.typed-array.unique-by", + "esnext.typed-array.with", + "esnext.uint8-array.from-base64", + "esnext.uint8-array.from-hex", + "esnext.uint8-array.set-from-base64", + "esnext.uint8-array.set-from-hex", + "esnext.uint8-array.to-base64", + "esnext.uint8-array.to-hex", + "esnext.weak-map.delete-all", + "esnext.weak-map.from", + "esnext.weak-map.of", + "esnext.weak-map.emplace", + "esnext.weak-map.get-or-insert", + "esnext.weak-map.get-or-insert-computed", + "esnext.weak-map.upsert", + "esnext.weak-set.add-all", + "esnext.weak-set.delete-all", + "esnext.weak-set.from", + "esnext.weak-set.of", + "web.atob", + "web.btoa", + "web.dom-collections.for-each", + "web.dom-collections.iterator", + "web.dom-exception.constructor", + "web.dom-exception.stack", + "web.dom-exception.to-string-tag", + "web.immediate", + "web.queue-microtask", + "web.self", + "web.structured-clone", + "web.timers", + "web.url", + "web.url.can-parse", + "web.url.parse", + "web.url.to-json", + "web.url-search-params", + "web.url-search-params.delete", + "web.url-search-params.has", + "web.url-search-params.size" +] diff --git a/novas/novacore-zephyr/groq-code-cli/node_modules/core-js-compat/package.json b/novas/novacore-zephyr/groq-code-cli/node_modules/core-js-compat/package.json new file mode 100644 index 0000000000000000000000000000000000000000..fa8abe4338cfa87c1c272be7b8381ec470a7b24b --- /dev/null +++ b/novas/novacore-zephyr/groq-code-cli/node_modules/core-js-compat/package.json @@ -0,0 +1,30 @@ +{ + "name": "core-js-compat", + "version": "3.45.1", + "type": "commonjs", + "description": "core-js compat", + "repository": { + "type": "git", + "url": "git+https://github.com/zloirock/core-js.git", + "directory": "packages/core-js-compat" + }, + "bugs": { + "url": "https://github.com/zloirock/core-js/issues" + }, + "funding": { + "type": "opencollective", + "url": "https://opencollective.com/core-js" + }, + "license": "MIT", + "author": { + "name": "Denis Pushkarev", + "email": "zloirock@zloirock.ru", + "url": "http://zloirock.ru" + }, + "sideEffects": false, + "main": "index.js", + "types": "index.d.ts", + "dependencies": { + "browserslist": "^4.25.3" + } +} diff --git a/novas/novacore-zephyr/groq-code-cli/node_modules/core-js-compat/shared.d.ts b/novas/novacore-zephyr/groq-code-cli/node_modules/core-js-compat/shared.d.ts new file mode 100644 index 0000000000000000000000000000000000000000..e6c349804de042edbf9d9c76c4dd2c242c436dfe --- /dev/null +++ b/novas/novacore-zephyr/groq-code-cli/node_modules/core-js-compat/shared.d.ts @@ -0,0 +1,32 @@ +export type ModuleName = string; + +export type Target = + | 'android' + | 'bun' + | 'chrome' + | 'chrome-android' + | 'deno' + | 'edge' + | 'electron' + | 'firefox' + | 'firefox-android' + | 'hermes' + | 'ie' + | 'ios' + | 'node' + | 'opera' + | 'opera-android' + | 'phantom' + | 'quest' + | 'react-native' + | 'rhino' + | 'safari' + | 'samsung' + /** `quest` alias */ + | 'oculus' + /** `react-native` alias */ + | 'react' + /** @deprecated use `opera-android` instead */ + | 'opera_mobile'; + +export type TargetVersion = string; diff --git a/novas/novacore-zephyr/groq-code-cli/node_modules/core-js-compat/targets-parser.js b/novas/novacore-zephyr/groq-code-cli/node_modules/core-js-compat/targets-parser.js new file mode 100644 index 0000000000000000000000000000000000000000..881e2c1535a5f1efad7267a36a0548134c2ba63d --- /dev/null +++ b/novas/novacore-zephyr/groq-code-cli/node_modules/core-js-compat/targets-parser.js @@ -0,0 +1,95 @@ +'use strict'; +const browserslist = require('browserslist'); +const { compare, has } = require('./helpers'); +const external = require('./external'); + +const aliases = new Map([ + ['and_chr', 'chrome-android'], + ['and_ff', 'firefox-android'], + ['ie_mob', 'ie'], + ['ios_saf', 'ios'], + ['oculus', 'quest'], + ['op_mob', 'opera-android'], + // TODO: Remove from `core-js@4` + ['opera_mobile', 'opera-android'], + ['react', 'react-native'], + ['reactnative', 'react-native'], +]); + +const validTargets = new Set([ + 'android', + 'bun', + 'chrome', + 'chrome-android', + 'deno', + 'edge', + 'electron', + 'firefox', + 'firefox-android', + 'hermes', + 'ie', + 'ios', + 'node', + 'opera', + 'opera-android', + 'phantom', + 'quest', + 'react-native', + 'rhino', + 'safari', + 'samsung', +]); + +const toLowerKeys = function (object) { + return Object.entries(object).reduce((accumulator, [key, value]) => { + accumulator[key.toLowerCase()] = value; + return accumulator; + }, {}); +}; + +module.exports = function (targets) { + const { browsers, esmodules, node, ...rest } = (typeof targets != 'object' || Array.isArray(targets)) + ? { browsers: targets } : toLowerKeys(targets); + + const list = Object.entries(rest); + + const normalizedESModules = esmodules === 'intersect' ? 'intersect' : !!esmodules; + + if (browsers && normalizedESModules !== true) { + if (typeof browsers == 'string' || Array.isArray(browsers)) { + list.push(...browserslist(browsers).map(it => it.split(' '))); + } else { + list.push(...Object.entries(browsers)); + } + } + if (normalizedESModules === true) { + list.push(...Object.entries(external.modules)); + } + if (node) { + list.push(['node', node === 'current' ? process.versions.node : node]); + } + + const normalized = list.map(([engine, version]) => { + if (has(browserslist.aliases, engine)) { + engine = browserslist.aliases[engine]; + } + if (aliases.has(engine)) { + engine = aliases.get(engine); + } + return [engine, String(version)]; + }).filter(([engine]) => { + return validTargets.has(engine); + }).sort(([a], [b]) => { + return a < b ? -1 : a > b ? 1 : 0; + }); + + const reduced = new Map(); + const operator = normalizedESModules === 'intersect' ? '>' : '<='; + for (const [engine, version] of normalized) { + if (!reduced.has(engine) || compare(version, operator, reduced.get(engine))) { + reduced.set(engine, version); + } + } + + return reduced; +}; diff --git a/novas/novacore-zephyr/groq-code-cli/node_modules/electron-to-chromium/LICENSE b/novas/novacore-zephyr/groq-code-cli/node_modules/electron-to-chromium/LICENSE new file mode 100644 index 0000000000000000000000000000000000000000..6c7b614d4e9f517d6d57c7fe26bd9d7d565a0b7f --- /dev/null +++ b/novas/novacore-zephyr/groq-code-cli/node_modules/electron-to-chromium/LICENSE @@ -0,0 +1,5 @@ +Copyright 2018 Kilian Valkhof + +Permission to use, copy, modify, and/or distribute this software for any purpose with or without fee is hereby granted, provided that the above copyright notice and this permission notice appear in all copies. + +THE SOFTWARE IS PROVIDED "AS IS" AND THE AUTHOR DISCLAIMS ALL WARRANTIES WITH REGARD TO THIS SOFTWARE INCLUDING ALL IMPLIED WARRANTIES OF MERCHANTABILITY AND FITNESS. IN NO EVENT SHALL THE AUTHOR BE LIABLE FOR ANY SPECIAL, DIRECT, INDIRECT, OR CONSEQUENTIAL DAMAGES OR ANY DAMAGES WHATSOEVER RESULTING FROM LOSS OF USE, DATA OR PROFITS, WHETHER IN AN ACTION OF CONTRACT, NEGLIGENCE OR OTHER TORTIOUS ACTION, ARISING OUT OF OR IN CONNECTION WITH THE USE OR PERFORMANCE OF THIS SOFTWARE. diff --git a/novas/novacore-zephyr/groq-code-cli/node_modules/electron-to-chromium/README.md b/novas/novacore-zephyr/groq-code-cli/node_modules/electron-to-chromium/README.md new file mode 100644 index 0000000000000000000000000000000000000000..a96ddf12afe27d617eb3128ccb6317c77b9cce37 --- /dev/null +++ b/novas/novacore-zephyr/groq-code-cli/node_modules/electron-to-chromium/README.md @@ -0,0 +1,186 @@ +### Made by [@kilianvalkhof](https://twitter.com/kilianvalkhof) + +#### Other projects: + +- 💻 [Polypane](https://polypane.app) - Develop responsive websites and apps twice as fast on multiple screens at once +- 🖌️ [Superposition](https://superposition.design) - Kickstart your design system by extracting design tokens from your website +- 🗒️ [FromScratch](https://fromscratch.rocks) - A smart but simple autosaving scratchpad + +--- + +# Electron-to-Chromium [![npm](https://img.shields.io/npm/v/electron-to-chromium.svg)](https://www.npmjs.com/package/electron-to-chromium) [![travis](https://img.shields.io/travis/Kilian/electron-to-chromium/master.svg)](https://travis-ci.org/Kilian/electron-to-chromium) [![npm-downloads](https://img.shields.io/npm/dm/electron-to-chromium.svg)](https://www.npmjs.com/package/electron-to-chromium) [![codecov](https://codecov.io/gh/Kilian/electron-to-chromium/branch/master/graph/badge.svg)](https://codecov.io/gh/Kilian/electron-to-chromium)[![FOSSA Status](https://app.fossa.io/api/projects/git%2Bgithub.com%2FKilian%2Felectron-to-chromium.svg?type=shield)](https://app.fossa.io/projects/git%2Bgithub.com%2FKilian%2Felectron-to-chromium?ref=badge_shield) + +This repository provides a mapping of Electron versions to the Chromium version that it uses. + +This package is used in [Browserslist](https://github.com/ai/browserslist), so you can use e.g. `electron >= 1.4` in [Autoprefixer](https://github.com/postcss/autoprefixer), [Stylelint](https://github.com/stylelint/stylelint), [babel-preset-env](https://github.com/babel/babel-preset-env) and [eslint-plugin-compat](https://github.com/amilajack/eslint-plugin-compat). + +**Supported by:** + + + + + + +## Install +Install using `npm install electron-to-chromium`. + +## Usage +To include Electron-to-Chromium, require it: + +```js +var e2c = require('electron-to-chromium'); +``` + +### Properties +The Electron-to-Chromium object has 4 properties to use: + +#### `versions` +An object of key-value pairs with a _major_ Electron version as the key, and the corresponding major Chromium version as the value. + +```js +var versions = e2c.versions; +console.log(versions['1.4']); +// returns "53" +``` + +#### `fullVersions` +An object of key-value pairs with a Electron version as the key, and the corresponding full Chromium version as the value. + +```js +var versions = e2c.fullVersions; +console.log(versions['1.4.11']); +// returns "53.0.2785.143" +``` + +#### `chromiumVersions` +An object of key-value pairs with a _major_ Chromium version as the key, and the corresponding major Electron version as the value. + +```js +var versions = e2c.chromiumVersions; +console.log(versions['54']); +// returns "1.4" +``` + +#### `fullChromiumVersions` +An object of key-value pairs with a Chromium version as the key, and an array of the corresponding major Electron versions as the value. + +```js +var versions = e2c.fullChromiumVersions; +console.log(versions['54.0.2840.101']); +// returns ["1.5.1", "1.5.0"] +``` +### Functions + +#### `electronToChromium(query)` +Arguments: +* Query: string or number, required. A major or full Electron version. + +A function that returns the corresponding Chromium version for a given Electron function. Returns a string. + +If you provide it with a major Electron version, it will return a major Chromium version: + +```js +var chromeVersion = e2c.electronToChromium('1.4'); +// chromeVersion is "53" +``` + +If you provide it with a full Electron version, it will return the full Chromium version. + +```js +var chromeVersion = e2c.electronToChromium('1.4.11'); +// chromeVersion is "53.0.2785.143" +``` + +If a query does not match a Chromium version, it will return `undefined`. + +```js +var chromeVersion = e2c.electronToChromium('9000'); +// chromeVersion is undefined +``` + +#### `chromiumToElectron(query)` +Arguments: +* Query: string or number, required. A major or full Chromium version. + +Returns a string with the corresponding Electron version for a given Chromium query. + +If you provide it with a major Chromium version, it will return a major Electron version: + +```js +var electronVersion = e2c.chromiumToElectron('54'); +// electronVersion is "1.4" +``` + +If you provide it with a full Chrome version, it will return an array of full Electron versions. + +```js +var electronVersions = e2c.chromiumToElectron('56.0.2924.87'); +// electronVersions is ["1.6.3", "1.6.2", "1.6.1", "1.6.0"] +``` + +If a query does not match an Electron version, it will return `undefined`. + +```js +var electronVersion = e2c.chromiumToElectron('10'); +// electronVersion is undefined +``` + +#### `electronToBrowserList(query)` **DEPRECATED** +Arguments: +* Query: string or number, required. A major Electron version. + +_**Deprecated**: Browserlist already includes electron-to-chromium._ + +A function that returns a [Browserslist](https://github.com/ai/browserslist) query that matches the given major Electron version. Returns a string. + +If you provide it with a major Electron version, it will return a Browserlist query string that matches the Chromium capabilities: + +```js +var query = e2c.electronToBrowserList('1.4'); +// query is "Chrome >= 53" +``` + +If a query does not match a Chromium version, it will return `undefined`. + +```js +var query = e2c.electronToBrowserList('9000'); +// query is undefined +``` + +### Importing just versions, fullVersions, chromiumVersions and fullChromiumVersions +All lists can be imported on their own, if file size is a concern. + +#### `versions` + +```js +var versions = require('electron-to-chromium/versions'); +``` + +#### `fullVersions` + +```js +var fullVersions = require('electron-to-chromium/full-versions'); +``` + +#### `chromiumVersions` + +```js +var chromiumVersions = require('electron-to-chromium/chromium-versions'); +``` + +#### `fullChromiumVersions` + +```js +var fullChromiumVersions = require('electron-to-chromium/full-chromium-versions'); +``` + +## Updating +This package will be updated with each new Electron release. + +To update the list, run `npm run build.js`. Requires internet access as it downloads from the canonical list of Electron versions. + +To verify correct behaviour, run `npm test`. + + +## License +[![FOSSA Status](https://app.fossa.io/api/projects/git%2Bgithub.com%2FKilian%2Felectron-to-chromium.svg?type=large)](https://app.fossa.io/projects/git%2Bgithub.com%2FKilian%2Felectron-to-chromium?ref=badge_large) diff --git a/novas/novacore-zephyr/groq-code-cli/node_modules/electron-to-chromium/chromium-versions.js b/novas/novacore-zephyr/groq-code-cli/node_modules/electron-to-chromium/chromium-versions.js new file mode 100644 index 0000000000000000000000000000000000000000..6ff1fd8f265e7057b073910e09fbf007d7fb6ca1 --- /dev/null +++ b/novas/novacore-zephyr/groq-code-cli/node_modules/electron-to-chromium/chromium-versions.js @@ -0,0 +1,80 @@ +module.exports = { + "39": "0.20", + "40": "0.21", + "41": "0.21", + "42": "0.25", + "43": "0.27", + "44": "0.30", + "45": "0.31", + "47": "0.36", + "49": "0.37", + "50": "1.1", + "51": "1.2", + "52": "1.3", + "53": "1.4", + "54": "1.4", + "56": "1.6", + "58": "1.7", + "59": "1.8", + "61": "2.0", + "66": "3.0", + "69": "4.0", + "72": "5.0", + "73": "5.0", + "76": "6.0", + "78": "7.0", + "79": "8.0", + "80": "8.0", + "82": "9.0", + "83": "9.0", + "84": "10.0", + "85": "10.0", + "86": "11.0", + "87": "11.0", + "89": "12.0", + "90": "13.0", + "91": "13.0", + "92": "14.0", + "93": "14.0", + "94": "15.0", + "95": "16.0", + "96": "16.0", + "98": "17.0", + "99": "18.0", + "100": "18.0", + "102": "19.0", + "103": "20.0", + "104": "20.0", + "105": "21.0", + "106": "21.0", + "107": "22.0", + "108": "22.0", + "110": "23.0", + "111": "24.0", + "112": "24.0", + "114": "25.0", + "116": "26.0", + "118": "27.0", + "119": "28.0", + "120": "28.0", + "121": "29.0", + "122": "29.0", + "123": "30.0", + "124": "30.0", + "125": "31.0", + "126": "31.0", + "127": "32.0", + "128": "32.0", + "129": "33.0", + "130": "33.0", + "131": "34.0", + "132": "34.0", + "133": "35.0", + "134": "35.0", + "135": "36.0", + "136": "36.0", + "137": "37.0", + "138": "37.0", + "139": "38.0", + "140": "38.0" +}; \ No newline at end of file diff --git a/novas/novacore-zephyr/groq-code-cli/node_modules/electron-to-chromium/chromium-versions.json b/novas/novacore-zephyr/groq-code-cli/node_modules/electron-to-chromium/chromium-versions.json new file mode 100644 index 0000000000000000000000000000000000000000..8b877ad7ff32b5dd0d8f0aa32f8afb44458cba81 --- /dev/null +++ b/novas/novacore-zephyr/groq-code-cli/node_modules/electron-to-chromium/chromium-versions.json @@ -0,0 +1 @@ +{"39":"0.20","40":"0.21","41":"0.21","42":"0.25","43":"0.27","44":"0.30","45":"0.31","47":"0.36","49":"0.37","50":"1.1","51":"1.2","52":"1.3","53":"1.4","54":"1.4","56":"1.6","58":"1.7","59":"1.8","61":"2.0","66":"3.0","69":"4.0","72":"5.0","73":"5.0","76":"6.0","78":"7.0","79":"8.0","80":"8.0","82":"9.0","83":"9.0","84":"10.0","85":"10.0","86":"11.0","87":"11.0","89":"12.0","90":"13.0","91":"13.0","92":"14.0","93":"14.0","94":"15.0","95":"16.0","96":"16.0","98":"17.0","99":"18.0","100":"18.0","102":"19.0","103":"20.0","104":"20.0","105":"21.0","106":"21.0","107":"22.0","108":"22.0","110":"23.0","111":"24.0","112":"24.0","114":"25.0","116":"26.0","118":"27.0","119":"28.0","120":"28.0","121":"29.0","122":"29.0","123":"30.0","124":"30.0","125":"31.0","126":"31.0","127":"32.0","128":"32.0","129":"33.0","130":"33.0","131":"34.0","132":"34.0","133":"35.0","134":"35.0","135":"36.0","136":"36.0","137":"37.0","138":"37.0","139":"38.0","140":"38.0"} \ No newline at end of file diff --git a/novas/novacore-zephyr/groq-code-cli/node_modules/electron-to-chromium/full-chromium-versions.js b/novas/novacore-zephyr/groq-code-cli/node_modules/electron-to-chromium/full-chromium-versions.js new file mode 100644 index 0000000000000000000000000000000000000000..56d72875c85f1b7418102573041fe696871290e2 --- /dev/null +++ b/novas/novacore-zephyr/groq-code-cli/node_modules/electron-to-chromium/full-chromium-versions.js @@ -0,0 +1,2521 @@ +module.exports = { + "39.0.2171.65": [ + "0.20.0", + "0.20.1", + "0.20.2", + "0.20.3", + "0.20.4", + "0.20.5", + "0.20.6", + "0.20.7", + "0.20.8" + ], + "40.0.2214.91": [ + "0.21.0", + "0.21.1", + "0.21.2" + ], + "41.0.2272.76": [ + "0.21.3", + "0.22.1", + "0.22.2", + "0.22.3", + "0.23.0", + "0.24.0" + ], + "42.0.2311.107": [ + "0.25.0", + "0.25.1", + "0.25.2", + "0.25.3", + "0.26.0", + "0.26.1", + "0.27.0", + "0.27.1" + ], + "43.0.2357.65": [ + "0.27.2", + "0.27.3", + "0.28.0", + "0.28.1", + "0.28.2", + "0.28.3", + "0.29.1", + "0.29.2" + ], + "44.0.2403.125": [ + "0.30.4", + "0.31.0" + ], + "45.0.2454.85": [ + "0.31.2", + "0.32.2", + "0.32.3", + "0.33.0", + "0.33.1", + "0.33.2", + "0.33.3", + "0.33.4", + "0.33.6", + "0.33.7", + "0.33.8", + "0.33.9", + "0.34.0", + "0.34.1", + "0.34.2", + "0.34.3", + "0.34.4", + "0.35.1", + "0.35.2", + "0.35.3", + "0.35.4", + "0.35.5" + ], + "47.0.2526.73": [ + "0.36.0", + "0.36.2", + "0.36.3", + "0.36.4" + ], + "47.0.2526.110": [ + "0.36.5", + "0.36.6", + "0.36.7", + "0.36.8", + "0.36.9", + "0.36.10", + "0.36.11", + "0.36.12" + ], + "49.0.2623.75": [ + "0.37.0", + "0.37.1", + "0.37.3", + "0.37.4", + "0.37.5", + "0.37.6", + "0.37.7", + "0.37.8", + "1.0.0", + "1.0.1", + "1.0.2" + ], + "50.0.2661.102": [ + "1.1.0", + "1.1.1", + "1.1.2", + "1.1.3" + ], + "51.0.2704.63": [ + "1.2.0", + "1.2.1" + ], + "51.0.2704.84": [ + "1.2.2", + "1.2.3" + ], + "51.0.2704.103": [ + "1.2.4", + "1.2.5" + ], + "51.0.2704.106": [ + "1.2.6", + "1.2.7", + "1.2.8" + ], + "52.0.2743.82": [ + "1.3.0", + "1.3.1", + "1.3.2", + "1.3.3", + "1.3.4", + "1.3.5", + "1.3.6", + "1.3.7", + "1.3.9", + "1.3.10", + "1.3.13", + "1.3.14", + "1.3.15" + ], + "53.0.2785.113": [ + "1.4.0", + "1.4.1", + "1.4.2", + "1.4.3", + "1.4.4", + "1.4.5" + ], + "53.0.2785.143": [ + "1.4.6", + "1.4.7", + "1.4.8", + "1.4.10", + "1.4.11", + "1.4.13", + "1.4.14", + "1.4.15", + "1.4.16" + ], + "54.0.2840.51": [ + "1.4.12" + ], + "54.0.2840.101": [ + "1.5.0", + "1.5.1" + ], + "56.0.2924.87": [ + "1.6.0", + "1.6.1", + "1.6.2", + "1.6.3", + "1.6.4", + "1.6.5", + "1.6.6", + "1.6.7", + "1.6.8", + "1.6.9", + "1.6.10", + "1.6.11", + "1.6.12", + "1.6.13", + "1.6.14", + "1.6.15", + "1.6.16", + "1.6.17", + "1.6.18" + ], + "58.0.3029.110": [ + "1.7.0", + "1.7.1", + "1.7.2", + "1.7.3", + "1.7.4", + "1.7.5", + "1.7.6", + "1.7.7", + "1.7.8", + "1.7.9", + "1.7.10", + "1.7.11", + "1.7.12", + "1.7.13", + "1.7.14", + "1.7.15", + "1.7.16" + ], + "59.0.3071.115": [ + "1.8.0", + "1.8.1", + "1.8.2-beta.1", + "1.8.2-beta.2", + "1.8.2-beta.3", + "1.8.2-beta.4", + "1.8.2-beta.5", + "1.8.2", + "1.8.3", + "1.8.4", + "1.8.5", + "1.8.6", + "1.8.7", + "1.8.8" + ], + "61.0.3163.100": [ + "2.0.0-beta.1", + "2.0.0-beta.2", + "2.0.0-beta.3", + "2.0.0-beta.4", + "2.0.0-beta.5", + "2.0.0-beta.6", + "2.0.0-beta.7", + "2.0.0-beta.8", + "2.0.0", + "2.0.1", + "2.0.2", + "2.0.3", + "2.0.4", + "2.0.5", + "2.0.6", + "2.0.7", + "2.0.8", + "2.0.9", + "2.0.10", + "2.0.11", + "2.0.12", + "2.0.13", + "2.0.14", + "2.0.15", + "2.0.16", + "2.0.17", + "2.0.18", + "2.1.0-unsupported.20180809" + ], + "66.0.3359.181": [ + "3.0.0-beta.1", + "3.0.0-beta.2", + "3.0.0-beta.3", + "3.0.0-beta.4", + "3.0.0-beta.5", + "3.0.0-beta.6", + "3.0.0-beta.7", + "3.0.0-beta.8", + "3.0.0-beta.9", + "3.0.0-beta.10", + "3.0.0-beta.11", + "3.0.0-beta.12", + "3.0.0-beta.13", + "3.0.0", + "3.0.1", + "3.0.2", + "3.0.3", + "3.0.4", + "3.0.5", + "3.0.6", + "3.0.7", + "3.0.8", + "3.0.9", + "3.0.10", + "3.0.11", + "3.0.12", + "3.0.13", + "3.0.14", + "3.0.15", + "3.0.16", + "3.1.0-beta.1", + "3.1.0-beta.2", + "3.1.0-beta.3", + "3.1.0-beta.4", + "3.1.0-beta.5", + "3.1.0", + "3.1.1", + "3.1.2", + "3.1.3", + "3.1.4", + "3.1.5", + "3.1.6", + "3.1.7", + "3.1.8", + "3.1.9", + "3.1.10", + "3.1.11", + "3.1.12", + "3.1.13" + ], + "69.0.3497.106": [ + "4.0.0-beta.1", + "4.0.0-beta.2", + "4.0.0-beta.3", + "4.0.0-beta.4", + "4.0.0-beta.5", + "4.0.0-beta.6", + "4.0.0-beta.7", + "4.0.0-beta.8", + "4.0.0-beta.9", + "4.0.0-beta.10", + "4.0.0-beta.11", + "4.0.0", + "4.0.1", + "4.0.2", + "4.0.3", + "4.0.4", + "4.0.5", + "4.0.6" + ], + "69.0.3497.128": [ + "4.0.7", + "4.0.8", + "4.1.0", + "4.1.1", + "4.1.2", + "4.1.3", + "4.1.4", + "4.1.5", + "4.2.0", + "4.2.1", + "4.2.2", + "4.2.3", + "4.2.4", + "4.2.5", + "4.2.6", + "4.2.7", + "4.2.8", + "4.2.9", + "4.2.10", + "4.2.11", + "4.2.12" + ], + "72.0.3626.52": [ + "5.0.0-beta.1", + "5.0.0-beta.2" + ], + "73.0.3683.27": [ + "5.0.0-beta.3" + ], + "73.0.3683.54": [ + "5.0.0-beta.4" + ], + "73.0.3683.61": [ + "5.0.0-beta.5" + ], + "73.0.3683.84": [ + "5.0.0-beta.6" + ], + "73.0.3683.94": [ + "5.0.0-beta.7" + ], + "73.0.3683.104": [ + "5.0.0-beta.8" + ], + "73.0.3683.117": [ + "5.0.0-beta.9" + ], + "73.0.3683.119": [ + "5.0.0" + ], + "73.0.3683.121": [ + "5.0.1", + "5.0.2", + "5.0.3", + "5.0.4", + "5.0.5", + "5.0.6", + "5.0.7", + "5.0.8", + "5.0.9", + "5.0.10", + "5.0.11", + "5.0.12", + "5.0.13" + ], + "76.0.3774.1": [ + "6.0.0-beta.1" + ], + "76.0.3783.1": [ + "6.0.0-beta.2", + "6.0.0-beta.3", + "6.0.0-beta.4" + ], + "76.0.3805.4": [ + "6.0.0-beta.5" + ], + "76.0.3809.3": [ + "6.0.0-beta.6" + ], + "76.0.3809.22": [ + "6.0.0-beta.7" + ], + "76.0.3809.26": [ + "6.0.0-beta.8", + "6.0.0-beta.9" + ], + "76.0.3809.37": [ + "6.0.0-beta.10" + ], + "76.0.3809.42": [ + "6.0.0-beta.11" + ], + "76.0.3809.54": [ + "6.0.0-beta.12" + ], + "76.0.3809.60": [ + "6.0.0-beta.13" + ], + "76.0.3809.68": [ + "6.0.0-beta.14" + ], + "76.0.3809.74": [ + "6.0.0-beta.15" + ], + "76.0.3809.88": [ + "6.0.0" + ], + "76.0.3809.102": [ + "6.0.1" + ], + "76.0.3809.110": [ + "6.0.2" + ], + "76.0.3809.126": [ + "6.0.3" + ], + "76.0.3809.131": [ + "6.0.4" + ], + "76.0.3809.136": [ + "6.0.5" + ], + "76.0.3809.138": [ + "6.0.6" + ], + "76.0.3809.139": [ + "6.0.7" + ], + "76.0.3809.146": [ + "6.0.8", + "6.0.9", + "6.0.10", + "6.0.11", + "6.0.12", + "6.1.0", + "6.1.1", + "6.1.2", + "6.1.3", + "6.1.4", + "6.1.5", + "6.1.6", + "6.1.7", + "6.1.8", + "6.1.9", + "6.1.10", + "6.1.11", + "6.1.12" + ], + "78.0.3866.0": [ + "7.0.0-beta.1", + "7.0.0-beta.2", + "7.0.0-beta.3" + ], + "78.0.3896.6": [ + "7.0.0-beta.4" + ], + "78.0.3905.1": [ + "7.0.0-beta.5", + "7.0.0-beta.6", + "7.0.0-beta.7", + "7.0.0" + ], + "78.0.3904.92": [ + "7.0.1" + ], + "78.0.3904.94": [ + "7.1.0" + ], + "78.0.3904.99": [ + "7.1.1" + ], + "78.0.3904.113": [ + "7.1.2" + ], + "78.0.3904.126": [ + "7.1.3" + ], + "78.0.3904.130": [ + "7.1.4", + "7.1.5", + "7.1.6", + "7.1.7", + "7.1.8", + "7.1.9", + "7.1.10", + "7.1.11", + "7.1.12", + "7.1.13", + "7.1.14", + "7.2.0", + "7.2.1", + "7.2.2", + "7.2.3", + "7.2.4", + "7.3.0", + "7.3.1", + "7.3.2", + "7.3.3" + ], + "79.0.3931.0": [ + "8.0.0-beta.1", + "8.0.0-beta.2" + ], + "80.0.3955.0": [ + "8.0.0-beta.3", + "8.0.0-beta.4" + ], + "80.0.3987.14": [ + "8.0.0-beta.5" + ], + "80.0.3987.51": [ + "8.0.0-beta.6" + ], + "80.0.3987.59": [ + "8.0.0-beta.7" + ], + "80.0.3987.75": [ + "8.0.0-beta.8", + "8.0.0-beta.9" + ], + "80.0.3987.86": [ + "8.0.0", + "8.0.1", + "8.0.2" + ], + "80.0.3987.134": [ + "8.0.3" + ], + "80.0.3987.137": [ + "8.1.0" + ], + "80.0.3987.141": [ + "8.1.1" + ], + "80.0.3987.158": [ + "8.2.0" + ], + "80.0.3987.163": [ + "8.2.1", + "8.2.2", + "8.2.3", + "8.5.3", + "8.5.4", + "8.5.5" + ], + "80.0.3987.165": [ + "8.2.4", + "8.2.5", + "8.3.0", + "8.3.1", + "8.3.2", + "8.3.3", + "8.3.4", + "8.4.0", + "8.4.1", + "8.5.0", + "8.5.1", + "8.5.2" + ], + "82.0.4048.0": [ + "9.0.0-beta.1", + "9.0.0-beta.2", + "9.0.0-beta.3", + "9.0.0-beta.4", + "9.0.0-beta.5" + ], + "82.0.4058.2": [ + "9.0.0-beta.6", + "9.0.0-beta.7", + "9.0.0-beta.9" + ], + "82.0.4085.10": [ + "9.0.0-beta.10" + ], + "82.0.4085.14": [ + "9.0.0-beta.11", + "9.0.0-beta.12", + "9.0.0-beta.13" + ], + "82.0.4085.27": [ + "9.0.0-beta.14" + ], + "83.0.4102.3": [ + "9.0.0-beta.15", + "9.0.0-beta.16" + ], + "83.0.4103.14": [ + "9.0.0-beta.17" + ], + "83.0.4103.16": [ + "9.0.0-beta.18" + ], + "83.0.4103.24": [ + "9.0.0-beta.19" + ], + "83.0.4103.26": [ + "9.0.0-beta.20", + "9.0.0-beta.21" + ], + "83.0.4103.34": [ + "9.0.0-beta.22" + ], + "83.0.4103.44": [ + "9.0.0-beta.23" + ], + "83.0.4103.45": [ + "9.0.0-beta.24" + ], + "83.0.4103.64": [ + "9.0.0" + ], + "83.0.4103.94": [ + "9.0.1", + "9.0.2" + ], + "83.0.4103.100": [ + "9.0.3" + ], + "83.0.4103.104": [ + "9.0.4" + ], + "83.0.4103.119": [ + "9.0.5" + ], + "83.0.4103.122": [ + "9.1.0", + "9.1.1", + "9.1.2", + "9.2.0", + "9.2.1", + "9.3.0", + "9.3.1", + "9.3.2", + "9.3.3", + "9.3.4", + "9.3.5", + "9.4.0", + "9.4.1", + "9.4.2", + "9.4.3", + "9.4.4" + ], + "84.0.4129.0": [ + "10.0.0-beta.1", + "10.0.0-beta.2" + ], + "85.0.4161.2": [ + "10.0.0-beta.3", + "10.0.0-beta.4" + ], + "85.0.4181.1": [ + "10.0.0-beta.8", + "10.0.0-beta.9" + ], + "85.0.4183.19": [ + "10.0.0-beta.10" + ], + "85.0.4183.20": [ + "10.0.0-beta.11" + ], + "85.0.4183.26": [ + "10.0.0-beta.12" + ], + "85.0.4183.39": [ + "10.0.0-beta.13", + "10.0.0-beta.14", + "10.0.0-beta.15", + "10.0.0-beta.17", + "10.0.0-beta.19", + "10.0.0-beta.20", + "10.0.0-beta.21" + ], + "85.0.4183.70": [ + "10.0.0-beta.23" + ], + "85.0.4183.78": [ + "10.0.0-beta.24" + ], + "85.0.4183.80": [ + "10.0.0-beta.25" + ], + "85.0.4183.84": [ + "10.0.0" + ], + "85.0.4183.86": [ + "10.0.1" + ], + "85.0.4183.87": [ + "10.1.0" + ], + "85.0.4183.93": [ + "10.1.1" + ], + "85.0.4183.98": [ + "10.1.2" + ], + "85.0.4183.121": [ + "10.1.3", + "10.1.4", + "10.1.5", + "10.1.6", + "10.1.7", + "10.2.0", + "10.3.0", + "10.3.1", + "10.3.2", + "10.4.0", + "10.4.1", + "10.4.2", + "10.4.3", + "10.4.4", + "10.4.5", + "10.4.6", + "10.4.7" + ], + "86.0.4234.0": [ + "11.0.0-beta.1", + "11.0.0-beta.3", + "11.0.0-beta.4", + "11.0.0-beta.5", + "11.0.0-beta.6", + "11.0.0-beta.7" + ], + "87.0.4251.1": [ + "11.0.0-beta.8", + "11.0.0-beta.9", + "11.0.0-beta.11" + ], + "87.0.4280.11": [ + "11.0.0-beta.12", + "11.0.0-beta.13" + ], + "87.0.4280.27": [ + "11.0.0-beta.16", + "11.0.0-beta.17", + "11.0.0-beta.18", + "11.0.0-beta.19" + ], + "87.0.4280.40": [ + "11.0.0-beta.20" + ], + "87.0.4280.47": [ + "11.0.0-beta.22", + "11.0.0-beta.23" + ], + "87.0.4280.60": [ + "11.0.0", + "11.0.1" + ], + "87.0.4280.67": [ + "11.0.2", + "11.0.3", + "11.0.4" + ], + "87.0.4280.88": [ + "11.0.5", + "11.1.0", + "11.1.1" + ], + "87.0.4280.141": [ + "11.2.0", + "11.2.1", + "11.2.2", + "11.2.3", + "11.3.0", + "11.4.0", + "11.4.1", + "11.4.2", + "11.4.3", + "11.4.4", + "11.4.5", + "11.4.6", + "11.4.7", + "11.4.8", + "11.4.9", + "11.4.10", + "11.4.11", + "11.4.12", + "11.5.0" + ], + "89.0.4328.0": [ + "12.0.0-beta.1", + "12.0.0-beta.3", + "12.0.0-beta.4", + "12.0.0-beta.5", + "12.0.0-beta.6", + "12.0.0-beta.7", + "12.0.0-beta.8", + "12.0.0-beta.9", + "12.0.0-beta.10", + "12.0.0-beta.11", + "12.0.0-beta.12", + "12.0.0-beta.14" + ], + "89.0.4348.1": [ + "12.0.0-beta.16", + "12.0.0-beta.18", + "12.0.0-beta.19", + "12.0.0-beta.20" + ], + "89.0.4388.2": [ + "12.0.0-beta.21", + "12.0.0-beta.22", + "12.0.0-beta.23", + "12.0.0-beta.24", + "12.0.0-beta.25", + "12.0.0-beta.26" + ], + "89.0.4389.23": [ + "12.0.0-beta.27", + "12.0.0-beta.28", + "12.0.0-beta.29" + ], + "89.0.4389.58": [ + "12.0.0-beta.30", + "12.0.0-beta.31" + ], + "89.0.4389.69": [ + "12.0.0" + ], + "89.0.4389.82": [ + "12.0.1" + ], + "89.0.4389.90": [ + "12.0.2" + ], + "89.0.4389.114": [ + "12.0.3", + "12.0.4" + ], + "89.0.4389.128": [ + "12.0.5", + "12.0.6", + "12.0.7", + "12.0.8", + "12.0.9", + "12.0.10", + "12.0.11", + "12.0.12", + "12.0.13", + "12.0.14", + "12.0.15", + "12.0.16", + "12.0.17", + "12.0.18", + "12.1.0", + "12.1.1", + "12.1.2", + "12.2.0", + "12.2.1", + "12.2.2", + "12.2.3" + ], + "90.0.4402.0": [ + "13.0.0-beta.2", + "13.0.0-beta.3" + ], + "90.0.4415.0": [ + "13.0.0-beta.4", + "13.0.0-beta.5", + "13.0.0-beta.6", + "13.0.0-beta.7", + "13.0.0-beta.8", + "13.0.0-beta.9", + "13.0.0-beta.10", + "13.0.0-beta.11", + "13.0.0-beta.12", + "13.0.0-beta.13" + ], + "91.0.4448.0": [ + "13.0.0-beta.14", + "13.0.0-beta.16", + "13.0.0-beta.17", + "13.0.0-beta.18", + "13.0.0-beta.20" + ], + "91.0.4472.33": [ + "13.0.0-beta.21", + "13.0.0-beta.22", + "13.0.0-beta.23" + ], + "91.0.4472.38": [ + "13.0.0-beta.24", + "13.0.0-beta.25", + "13.0.0-beta.26", + "13.0.0-beta.27", + "13.0.0-beta.28" + ], + "91.0.4472.69": [ + "13.0.0", + "13.0.1" + ], + "91.0.4472.77": [ + "13.1.0", + "13.1.1", + "13.1.2" + ], + "91.0.4472.106": [ + "13.1.3", + "13.1.4" + ], + "91.0.4472.124": [ + "13.1.5", + "13.1.6", + "13.1.7" + ], + "91.0.4472.164": [ + "13.1.8", + "13.1.9", + "13.2.0", + "13.2.1", + "13.2.2", + "13.2.3", + "13.3.0", + "13.4.0", + "13.5.0", + "13.5.1", + "13.5.2", + "13.6.0", + "13.6.1", + "13.6.2", + "13.6.3", + "13.6.6", + "13.6.7", + "13.6.8", + "13.6.9" + ], + "92.0.4511.0": [ + "14.0.0-beta.1", + "14.0.0-beta.2", + "14.0.0-beta.3" + ], + "93.0.4536.0": [ + "14.0.0-beta.5", + "14.0.0-beta.6", + "14.0.0-beta.7", + "14.0.0-beta.8" + ], + "93.0.4539.0": [ + "14.0.0-beta.9", + "14.0.0-beta.10" + ], + "93.0.4557.4": [ + "14.0.0-beta.11", + "14.0.0-beta.12" + ], + "93.0.4566.0": [ + "14.0.0-beta.13", + "14.0.0-beta.14", + "14.0.0-beta.15", + "14.0.0-beta.16", + "14.0.0-beta.17", + "15.0.0-alpha.1", + "15.0.0-alpha.2" + ], + "93.0.4577.15": [ + "14.0.0-beta.18", + "14.0.0-beta.19", + "14.0.0-beta.20", + "14.0.0-beta.21" + ], + "93.0.4577.25": [ + "14.0.0-beta.22", + "14.0.0-beta.23" + ], + "93.0.4577.51": [ + "14.0.0-beta.24", + "14.0.0-beta.25" + ], + "93.0.4577.58": [ + "14.0.0" + ], + "93.0.4577.63": [ + "14.0.1" + ], + "93.0.4577.82": [ + "14.0.2", + "14.1.0", + "14.1.1", + "14.2.0", + "14.2.1", + "14.2.2", + "14.2.3", + "14.2.4", + "14.2.5", + "14.2.6", + "14.2.7", + "14.2.8", + "14.2.9" + ], + "94.0.4584.0": [ + "15.0.0-alpha.3", + "15.0.0-alpha.4", + "15.0.0-alpha.5", + "15.0.0-alpha.6" + ], + "94.0.4590.2": [ + "15.0.0-alpha.7", + "15.0.0-alpha.8", + "15.0.0-alpha.9" + ], + "94.0.4606.12": [ + "15.0.0-alpha.10" + ], + "94.0.4606.20": [ + "15.0.0-beta.1", + "15.0.0-beta.2" + ], + "94.0.4606.31": [ + "15.0.0-beta.3", + "15.0.0-beta.4", + "15.0.0-beta.5", + "15.0.0-beta.6", + "15.0.0-beta.7" + ], + "94.0.4606.51": [ + "15.0.0" + ], + "94.0.4606.61": [ + "15.1.0", + "15.1.1" + ], + "94.0.4606.71": [ + "15.1.2" + ], + "94.0.4606.81": [ + "15.2.0", + "15.3.0", + "15.3.1", + "15.3.2", + "15.3.3", + "15.3.4", + "15.3.5", + "15.3.6", + "15.3.7", + "15.4.0", + "15.4.1", + "15.4.2", + "15.5.0", + "15.5.1", + "15.5.2", + "15.5.3", + "15.5.4", + "15.5.5", + "15.5.6", + "15.5.7" + ], + "95.0.4629.0": [ + "16.0.0-alpha.1", + "16.0.0-alpha.2", + "16.0.0-alpha.3", + "16.0.0-alpha.4", + "16.0.0-alpha.5", + "16.0.0-alpha.6", + "16.0.0-alpha.7" + ], + "96.0.4647.0": [ + "16.0.0-alpha.8", + "16.0.0-alpha.9", + "16.0.0-beta.1", + "16.0.0-beta.2", + "16.0.0-beta.3" + ], + "96.0.4664.18": [ + "16.0.0-beta.4", + "16.0.0-beta.5" + ], + "96.0.4664.27": [ + "16.0.0-beta.6", + "16.0.0-beta.7" + ], + "96.0.4664.35": [ + "16.0.0-beta.8", + "16.0.0-beta.9" + ], + "96.0.4664.45": [ + "16.0.0", + "16.0.1" + ], + "96.0.4664.55": [ + "16.0.2", + "16.0.3", + "16.0.4", + "16.0.5" + ], + "96.0.4664.110": [ + "16.0.6", + "16.0.7", + "16.0.8" + ], + "96.0.4664.174": [ + "16.0.9", + "16.0.10", + "16.1.0", + "16.1.1", + "16.2.0", + "16.2.1", + "16.2.2", + "16.2.3", + "16.2.4", + "16.2.5", + "16.2.6", + "16.2.7", + "16.2.8" + ], + "96.0.4664.4": [ + "17.0.0-alpha.1", + "17.0.0-alpha.2", + "17.0.0-alpha.3" + ], + "98.0.4706.0": [ + "17.0.0-alpha.4", + "17.0.0-alpha.5", + "17.0.0-alpha.6", + "17.0.0-beta.1", + "17.0.0-beta.2" + ], + "98.0.4758.9": [ + "17.0.0-beta.3" + ], + "98.0.4758.11": [ + "17.0.0-beta.4", + "17.0.0-beta.5", + "17.0.0-beta.6", + "17.0.0-beta.7", + "17.0.0-beta.8", + "17.0.0-beta.9" + ], + "98.0.4758.74": [ + "17.0.0" + ], + "98.0.4758.82": [ + "17.0.1" + ], + "98.0.4758.102": [ + "17.1.0" + ], + "98.0.4758.109": [ + "17.1.1", + "17.1.2", + "17.2.0" + ], + "98.0.4758.141": [ + "17.3.0", + "17.3.1", + "17.4.0", + "17.4.1", + "17.4.2", + "17.4.3", + "17.4.4", + "17.4.5", + "17.4.6", + "17.4.7", + "17.4.8", + "17.4.9", + "17.4.10", + "17.4.11" + ], + "99.0.4767.0": [ + "18.0.0-alpha.1", + "18.0.0-alpha.2", + "18.0.0-alpha.3", + "18.0.0-alpha.4", + "18.0.0-alpha.5" + ], + "100.0.4894.0": [ + "18.0.0-beta.1", + "18.0.0-beta.2", + "18.0.0-beta.3", + "18.0.0-beta.4", + "18.0.0-beta.5", + "18.0.0-beta.6" + ], + "100.0.4896.56": [ + "18.0.0" + ], + "100.0.4896.60": [ + "18.0.1", + "18.0.2" + ], + "100.0.4896.75": [ + "18.0.3", + "18.0.4" + ], + "100.0.4896.127": [ + "18.1.0" + ], + "100.0.4896.143": [ + "18.2.0", + "18.2.1", + "18.2.2", + "18.2.3" + ], + "100.0.4896.160": [ + "18.2.4", + "18.3.0", + "18.3.1", + "18.3.2", + "18.3.3", + "18.3.4", + "18.3.5", + "18.3.6", + "18.3.7", + "18.3.8", + "18.3.9", + "18.3.11", + "18.3.12", + "18.3.13", + "18.3.14", + "18.3.15" + ], + "102.0.4962.3": [ + "19.0.0-alpha.1" + ], + "102.0.4971.0": [ + "19.0.0-alpha.2", + "19.0.0-alpha.3" + ], + "102.0.4989.0": [ + "19.0.0-alpha.4", + "19.0.0-alpha.5" + ], + "102.0.4999.0": [ + "19.0.0-beta.1", + "19.0.0-beta.2", + "19.0.0-beta.3" + ], + "102.0.5005.27": [ + "19.0.0-beta.4" + ], + "102.0.5005.40": [ + "19.0.0-beta.5", + "19.0.0-beta.6", + "19.0.0-beta.7" + ], + "102.0.5005.49": [ + "19.0.0-beta.8" + ], + "102.0.5005.61": [ + "19.0.0", + "19.0.1" + ], + "102.0.5005.63": [ + "19.0.2", + "19.0.3", + "19.0.4" + ], + "102.0.5005.115": [ + "19.0.5", + "19.0.6" + ], + "102.0.5005.134": [ + "19.0.7" + ], + "102.0.5005.148": [ + "19.0.8" + ], + "102.0.5005.167": [ + "19.0.9", + "19.0.10", + "19.0.11", + "19.0.12", + "19.0.13", + "19.0.14", + "19.0.15", + "19.0.16", + "19.0.17", + "19.1.0", + "19.1.1", + "19.1.2", + "19.1.3", + "19.1.4", + "19.1.5", + "19.1.6", + "19.1.7", + "19.1.8", + "19.1.9" + ], + "103.0.5044.0": [ + "20.0.0-alpha.1" + ], + "104.0.5073.0": [ + "20.0.0-alpha.2", + "20.0.0-alpha.3", + "20.0.0-alpha.4", + "20.0.0-alpha.5", + "20.0.0-alpha.6", + "20.0.0-alpha.7", + "20.0.0-beta.1", + "20.0.0-beta.2", + "20.0.0-beta.3", + "20.0.0-beta.4", + "20.0.0-beta.5", + "20.0.0-beta.6", + "20.0.0-beta.7", + "20.0.0-beta.8" + ], + "104.0.5112.39": [ + "20.0.0-beta.9" + ], + "104.0.5112.48": [ + "20.0.0-beta.10", + "20.0.0-beta.11", + "20.0.0-beta.12" + ], + "104.0.5112.57": [ + "20.0.0-beta.13" + ], + "104.0.5112.65": [ + "20.0.0" + ], + "104.0.5112.81": [ + "20.0.1", + "20.0.2", + "20.0.3" + ], + "104.0.5112.102": [ + "20.1.0", + "20.1.1" + ], + "104.0.5112.114": [ + "20.1.2", + "20.1.3", + "20.1.4" + ], + "104.0.5112.124": [ + "20.2.0", + "20.3.0", + "20.3.1", + "20.3.2", + "20.3.3", + "20.3.4", + "20.3.5", + "20.3.6", + "20.3.7", + "20.3.8", + "20.3.9", + "20.3.10", + "20.3.11", + "20.3.12" + ], + "105.0.5187.0": [ + "21.0.0-alpha.1", + "21.0.0-alpha.2", + "21.0.0-alpha.3", + "21.0.0-alpha.4", + "21.0.0-alpha.5" + ], + "106.0.5216.0": [ + "21.0.0-alpha.6", + "21.0.0-beta.1", + "21.0.0-beta.2", + "21.0.0-beta.3", + "21.0.0-beta.4", + "21.0.0-beta.5" + ], + "106.0.5249.40": [ + "21.0.0-beta.6", + "21.0.0-beta.7", + "21.0.0-beta.8" + ], + "106.0.5249.51": [ + "21.0.0" + ], + "106.0.5249.61": [ + "21.0.1" + ], + "106.0.5249.91": [ + "21.1.0" + ], + "106.0.5249.103": [ + "21.1.1" + ], + "106.0.5249.119": [ + "21.2.0" + ], + "106.0.5249.165": [ + "21.2.1" + ], + "106.0.5249.168": [ + "21.2.2", + "21.2.3" + ], + "106.0.5249.181": [ + "21.3.0", + "21.3.1" + ], + "106.0.5249.199": [ + "21.3.3", + "21.3.4", + "21.3.5", + "21.4.0", + "21.4.1", + "21.4.2", + "21.4.3", + "21.4.4" + ], + "107.0.5286.0": [ + "22.0.0-alpha.1" + ], + "108.0.5329.0": [ + "22.0.0-alpha.3", + "22.0.0-alpha.4", + "22.0.0-alpha.5", + "22.0.0-alpha.6" + ], + "108.0.5355.0": [ + "22.0.0-alpha.7" + ], + "108.0.5359.10": [ + "22.0.0-alpha.8", + "22.0.0-beta.1", + "22.0.0-beta.2", + "22.0.0-beta.3" + ], + "108.0.5359.29": [ + "22.0.0-beta.4" + ], + "108.0.5359.40": [ + "22.0.0-beta.5", + "22.0.0-beta.6" + ], + "108.0.5359.48": [ + "22.0.0-beta.7", + "22.0.0-beta.8" + ], + "108.0.5359.62": [ + "22.0.0" + ], + "108.0.5359.125": [ + "22.0.1" + ], + "108.0.5359.179": [ + "22.0.2", + "22.0.3", + "22.1.0" + ], + "108.0.5359.215": [ + "22.2.0", + "22.2.1", + "22.3.0", + "22.3.1", + "22.3.2", + "22.3.3", + "22.3.4", + "22.3.5", + "22.3.6", + "22.3.7", + "22.3.8", + "22.3.9", + "22.3.10", + "22.3.11", + "22.3.12", + "22.3.13", + "22.3.14", + "22.3.15", + "22.3.16", + "22.3.17", + "22.3.18", + "22.3.20", + "22.3.21", + "22.3.22", + "22.3.23", + "22.3.24", + "22.3.25", + "22.3.26", + "22.3.27" + ], + "110.0.5415.0": [ + "23.0.0-alpha.1" + ], + "110.0.5451.0": [ + "23.0.0-alpha.2", + "23.0.0-alpha.3" + ], + "110.0.5478.5": [ + "23.0.0-beta.1", + "23.0.0-beta.2", + "23.0.0-beta.3" + ], + "110.0.5481.30": [ + "23.0.0-beta.4" + ], + "110.0.5481.38": [ + "23.0.0-beta.5" + ], + "110.0.5481.52": [ + "23.0.0-beta.6", + "23.0.0-beta.8" + ], + "110.0.5481.77": [ + "23.0.0" + ], + "110.0.5481.100": [ + "23.1.0" + ], + "110.0.5481.104": [ + "23.1.1" + ], + "110.0.5481.177": [ + "23.1.2" + ], + "110.0.5481.179": [ + "23.1.3" + ], + "110.0.5481.192": [ + "23.1.4", + "23.2.0" + ], + "110.0.5481.208": [ + "23.2.1", + "23.2.2", + "23.2.3", + "23.2.4", + "23.3.0", + "23.3.1", + "23.3.2", + "23.3.3", + "23.3.4", + "23.3.5", + "23.3.6", + "23.3.7", + "23.3.8", + "23.3.9", + "23.3.10", + "23.3.11", + "23.3.12", + "23.3.13" + ], + "111.0.5560.0": [ + "24.0.0-alpha.1", + "24.0.0-alpha.2", + "24.0.0-alpha.3", + "24.0.0-alpha.4", + "24.0.0-alpha.5", + "24.0.0-alpha.6", + "24.0.0-alpha.7" + ], + "111.0.5563.50": [ + "24.0.0-beta.1", + "24.0.0-beta.2" + ], + "112.0.5615.20": [ + "24.0.0-beta.3", + "24.0.0-beta.4" + ], + "112.0.5615.29": [ + "24.0.0-beta.5" + ], + "112.0.5615.39": [ + "24.0.0-beta.6", + "24.0.0-beta.7" + ], + "112.0.5615.49": [ + "24.0.0" + ], + "112.0.5615.50": [ + "24.1.0", + "24.1.1" + ], + "112.0.5615.87": [ + "24.1.2" + ], + "112.0.5615.165": [ + "24.1.3", + "24.2.0", + "24.3.0" + ], + "112.0.5615.183": [ + "24.3.1" + ], + "112.0.5615.204": [ + "24.4.0", + "24.4.1", + "24.5.0", + "24.5.1", + "24.6.0", + "24.6.1", + "24.6.2", + "24.6.3", + "24.6.4", + "24.6.5", + "24.7.0", + "24.7.1", + "24.8.0", + "24.8.1", + "24.8.2", + "24.8.3", + "24.8.4", + "24.8.5", + "24.8.6", + "24.8.7", + "24.8.8" + ], + "114.0.5694.0": [ + "25.0.0-alpha.1", + "25.0.0-alpha.2" + ], + "114.0.5710.0": [ + "25.0.0-alpha.3", + "25.0.0-alpha.4" + ], + "114.0.5719.0": [ + "25.0.0-alpha.5", + "25.0.0-alpha.6", + "25.0.0-beta.1", + "25.0.0-beta.2", + "25.0.0-beta.3" + ], + "114.0.5735.16": [ + "25.0.0-beta.4", + "25.0.0-beta.5", + "25.0.0-beta.6", + "25.0.0-beta.7" + ], + "114.0.5735.35": [ + "25.0.0-beta.8" + ], + "114.0.5735.45": [ + "25.0.0-beta.9", + "25.0.0", + "25.0.1" + ], + "114.0.5735.106": [ + "25.1.0", + "25.1.1" + ], + "114.0.5735.134": [ + "25.2.0" + ], + "114.0.5735.199": [ + "25.3.0" + ], + "114.0.5735.243": [ + "25.3.1" + ], + "114.0.5735.248": [ + "25.3.2", + "25.4.0" + ], + "114.0.5735.289": [ + "25.5.0", + "25.6.0", + "25.7.0", + "25.8.0", + "25.8.1", + "25.8.2", + "25.8.3", + "25.8.4", + "25.9.0", + "25.9.1", + "25.9.2", + "25.9.3", + "25.9.4", + "25.9.5", + "25.9.6", + "25.9.7", + "25.9.8" + ], + "116.0.5791.0": [ + "26.0.0-alpha.1", + "26.0.0-alpha.2", + "26.0.0-alpha.3", + "26.0.0-alpha.4", + "26.0.0-alpha.5" + ], + "116.0.5815.0": [ + "26.0.0-alpha.6" + ], + "116.0.5831.0": [ + "26.0.0-alpha.7" + ], + "116.0.5845.0": [ + "26.0.0-alpha.8", + "26.0.0-beta.1" + ], + "116.0.5845.14": [ + "26.0.0-beta.2", + "26.0.0-beta.3", + "26.0.0-beta.4", + "26.0.0-beta.5", + "26.0.0-beta.6", + "26.0.0-beta.7" + ], + "116.0.5845.42": [ + "26.0.0-beta.8", + "26.0.0-beta.9" + ], + "116.0.5845.49": [ + "26.0.0-beta.10", + "26.0.0-beta.11" + ], + "116.0.5845.62": [ + "26.0.0-beta.12" + ], + "116.0.5845.82": [ + "26.0.0" + ], + "116.0.5845.97": [ + "26.1.0" + ], + "116.0.5845.179": [ + "26.2.0" + ], + "116.0.5845.188": [ + "26.2.1" + ], + "116.0.5845.190": [ + "26.2.2", + "26.2.3", + "26.2.4" + ], + "116.0.5845.228": [ + "26.3.0", + "26.4.0", + "26.4.1", + "26.4.2", + "26.4.3", + "26.5.0", + "26.6.0", + "26.6.1", + "26.6.2", + "26.6.3", + "26.6.4", + "26.6.5", + "26.6.6", + "26.6.7", + "26.6.8", + "26.6.9", + "26.6.10" + ], + "118.0.5949.0": [ + "27.0.0-alpha.1", + "27.0.0-alpha.2", + "27.0.0-alpha.3", + "27.0.0-alpha.4", + "27.0.0-alpha.5", + "27.0.0-alpha.6" + ], + "118.0.5993.5": [ + "27.0.0-beta.1", + "27.0.0-beta.2", + "27.0.0-beta.3" + ], + "118.0.5993.11": [ + "27.0.0-beta.4" + ], + "118.0.5993.18": [ + "27.0.0-beta.5", + "27.0.0-beta.6", + "27.0.0-beta.7", + "27.0.0-beta.8", + "27.0.0-beta.9" + ], + "118.0.5993.54": [ + "27.0.0" + ], + "118.0.5993.89": [ + "27.0.1", + "27.0.2" + ], + "118.0.5993.120": [ + "27.0.3" + ], + "118.0.5993.129": [ + "27.0.4" + ], + "118.0.5993.144": [ + "27.1.0", + "27.1.2" + ], + "118.0.5993.159": [ + "27.1.3", + "27.2.0", + "27.2.1", + "27.2.2", + "27.2.3", + "27.2.4", + "27.3.0", + "27.3.1", + "27.3.2", + "27.3.3", + "27.3.4", + "27.3.5", + "27.3.6", + "27.3.7", + "27.3.8", + "27.3.9", + "27.3.10", + "27.3.11" + ], + "119.0.6045.0": [ + "28.0.0-alpha.1", + "28.0.0-alpha.2" + ], + "119.0.6045.21": [ + "28.0.0-alpha.3", + "28.0.0-alpha.4" + ], + "119.0.6045.33": [ + "28.0.0-alpha.5", + "28.0.0-alpha.6", + "28.0.0-alpha.7", + "28.0.0-beta.1" + ], + "120.0.6099.0": [ + "28.0.0-beta.2" + ], + "120.0.6099.5": [ + "28.0.0-beta.3", + "28.0.0-beta.4" + ], + "120.0.6099.18": [ + "28.0.0-beta.5", + "28.0.0-beta.6", + "28.0.0-beta.7", + "28.0.0-beta.8", + "28.0.0-beta.9", + "28.0.0-beta.10" + ], + "120.0.6099.35": [ + "28.0.0-beta.11" + ], + "120.0.6099.56": [ + "28.0.0" + ], + "120.0.6099.109": [ + "28.1.0", + "28.1.1" + ], + "120.0.6099.199": [ + "28.1.2", + "28.1.3" + ], + "120.0.6099.216": [ + "28.1.4" + ], + "120.0.6099.227": [ + "28.2.0" + ], + "120.0.6099.268": [ + "28.2.1" + ], + "120.0.6099.276": [ + "28.2.2" + ], + "120.0.6099.283": [ + "28.2.3" + ], + "120.0.6099.291": [ + "28.2.4", + "28.2.5", + "28.2.6", + "28.2.7", + "28.2.8", + "28.2.9", + "28.2.10", + "28.3.0", + "28.3.1", + "28.3.2", + "28.3.3" + ], + "121.0.6147.0": [ + "29.0.0-alpha.1", + "29.0.0-alpha.2", + "29.0.0-alpha.3" + ], + "121.0.6159.0": [ + "29.0.0-alpha.4", + "29.0.0-alpha.5", + "29.0.0-alpha.6", + "29.0.0-alpha.7" + ], + "122.0.6194.0": [ + "29.0.0-alpha.8" + ], + "122.0.6236.2": [ + "29.0.0-alpha.9", + "29.0.0-alpha.10", + "29.0.0-alpha.11", + "29.0.0-beta.1", + "29.0.0-beta.2" + ], + "122.0.6261.6": [ + "29.0.0-beta.3", + "29.0.0-beta.4" + ], + "122.0.6261.18": [ + "29.0.0-beta.5", + "29.0.0-beta.6", + "29.0.0-beta.7", + "29.0.0-beta.8", + "29.0.0-beta.9", + "29.0.0-beta.10", + "29.0.0-beta.11" + ], + "122.0.6261.29": [ + "29.0.0-beta.12" + ], + "122.0.6261.39": [ + "29.0.0" + ], + "122.0.6261.57": [ + "29.0.1" + ], + "122.0.6261.70": [ + "29.1.0" + ], + "122.0.6261.111": [ + "29.1.1" + ], + "122.0.6261.112": [ + "29.1.2", + "29.1.3" + ], + "122.0.6261.129": [ + "29.1.4" + ], + "122.0.6261.130": [ + "29.1.5" + ], + "122.0.6261.139": [ + "29.1.6" + ], + "122.0.6261.156": [ + "29.2.0", + "29.3.0", + "29.3.1", + "29.3.2", + "29.3.3", + "29.4.0", + "29.4.1", + "29.4.2", + "29.4.3", + "29.4.4", + "29.4.5", + "29.4.6" + ], + "123.0.6296.0": [ + "30.0.0-alpha.1" + ], + "123.0.6312.5": [ + "30.0.0-alpha.2" + ], + "124.0.6323.0": [ + "30.0.0-alpha.3", + "30.0.0-alpha.4" + ], + "124.0.6331.0": [ + "30.0.0-alpha.5", + "30.0.0-alpha.6" + ], + "124.0.6353.0": [ + "30.0.0-alpha.7" + ], + "124.0.6359.0": [ + "30.0.0-beta.1", + "30.0.0-beta.2" + ], + "124.0.6367.9": [ + "30.0.0-beta.3", + "30.0.0-beta.4", + "30.0.0-beta.5" + ], + "124.0.6367.18": [ + "30.0.0-beta.6" + ], + "124.0.6367.29": [ + "30.0.0-beta.7", + "30.0.0-beta.8" + ], + "124.0.6367.49": [ + "30.0.0" + ], + "124.0.6367.60": [ + "30.0.1" + ], + "124.0.6367.91": [ + "30.0.2" + ], + "124.0.6367.119": [ + "30.0.3" + ], + "124.0.6367.201": [ + "30.0.4" + ], + "124.0.6367.207": [ + "30.0.5", + "30.0.6" + ], + "124.0.6367.221": [ + "30.0.7" + ], + "124.0.6367.230": [ + "30.0.8" + ], + "124.0.6367.233": [ + "30.0.9" + ], + "124.0.6367.243": [ + "30.1.0", + "30.1.1", + "30.1.2", + "30.2.0", + "30.3.0", + "30.3.1", + "30.4.0", + "30.5.0", + "30.5.1" + ], + "125.0.6412.0": [ + "31.0.0-alpha.1", + "31.0.0-alpha.2", + "31.0.0-alpha.3", + "31.0.0-alpha.4", + "31.0.0-alpha.5" + ], + "126.0.6445.0": [ + "31.0.0-beta.1", + "31.0.0-beta.2", + "31.0.0-beta.3", + "31.0.0-beta.4", + "31.0.0-beta.5", + "31.0.0-beta.6", + "31.0.0-beta.7", + "31.0.0-beta.8", + "31.0.0-beta.9" + ], + "126.0.6478.36": [ + "31.0.0-beta.10", + "31.0.0", + "31.0.1" + ], + "126.0.6478.61": [ + "31.0.2" + ], + "126.0.6478.114": [ + "31.1.0" + ], + "126.0.6478.127": [ + "31.2.0", + "31.2.1" + ], + "126.0.6478.183": [ + "31.3.0" + ], + "126.0.6478.185": [ + "31.3.1" + ], + "126.0.6478.234": [ + "31.4.0", + "31.5.0", + "31.6.0", + "31.7.0", + "31.7.1", + "31.7.2", + "31.7.3", + "31.7.4", + "31.7.5", + "31.7.6", + "31.7.7" + ], + "127.0.6521.0": [ + "32.0.0-alpha.1", + "32.0.0-alpha.2", + "32.0.0-alpha.3", + "32.0.0-alpha.4", + "32.0.0-alpha.5" + ], + "128.0.6571.0": [ + "32.0.0-alpha.6", + "32.0.0-alpha.7" + ], + "128.0.6573.0": [ + "32.0.0-alpha.8", + "32.0.0-alpha.9", + "32.0.0-alpha.10", + "32.0.0-beta.1" + ], + "128.0.6611.0": [ + "32.0.0-beta.2" + ], + "128.0.6613.7": [ + "32.0.0-beta.3" + ], + "128.0.6613.18": [ + "32.0.0-beta.4" + ], + "128.0.6613.27": [ + "32.0.0-beta.5", + "32.0.0-beta.6", + "32.0.0-beta.7" + ], + "128.0.6613.36": [ + "32.0.0", + "32.0.1" + ], + "128.0.6613.84": [ + "32.0.2" + ], + "128.0.6613.120": [ + "32.1.0" + ], + "128.0.6613.137": [ + "32.1.1" + ], + "128.0.6613.162": [ + "32.1.2" + ], + "128.0.6613.178": [ + "32.2.0" + ], + "128.0.6613.186": [ + "32.2.1", + "32.2.2", + "32.2.3", + "32.2.4", + "32.2.5", + "32.2.6", + "32.2.7", + "32.2.8", + "32.3.0", + "32.3.1", + "32.3.2", + "32.3.3" + ], + "129.0.6668.0": [ + "33.0.0-alpha.1" + ], + "130.0.6672.0": [ + "33.0.0-alpha.2", + "33.0.0-alpha.3", + "33.0.0-alpha.4", + "33.0.0-alpha.5", + "33.0.0-alpha.6", + "33.0.0-beta.1", + "33.0.0-beta.2", + "33.0.0-beta.3", + "33.0.0-beta.4" + ], + "130.0.6723.19": [ + "33.0.0-beta.5", + "33.0.0-beta.6", + "33.0.0-beta.7" + ], + "130.0.6723.31": [ + "33.0.0-beta.8", + "33.0.0-beta.9", + "33.0.0-beta.10" + ], + "130.0.6723.44": [ + "33.0.0-beta.11", + "33.0.0" + ], + "130.0.6723.59": [ + "33.0.1", + "33.0.2" + ], + "130.0.6723.91": [ + "33.1.0" + ], + "130.0.6723.118": [ + "33.2.0" + ], + "130.0.6723.137": [ + "33.2.1" + ], + "130.0.6723.152": [ + "33.3.0" + ], + "130.0.6723.170": [ + "33.3.1" + ], + "130.0.6723.191": [ + "33.3.2", + "33.4.0", + "33.4.1", + "33.4.2", + "33.4.3", + "33.4.4", + "33.4.5", + "33.4.6", + "33.4.7", + "33.4.8", + "33.4.9", + "33.4.10", + "33.4.11" + ], + "131.0.6776.0": [ + "34.0.0-alpha.1" + ], + "132.0.6779.0": [ + "34.0.0-alpha.2" + ], + "132.0.6789.1": [ + "34.0.0-alpha.3", + "34.0.0-alpha.4", + "34.0.0-alpha.5", + "34.0.0-alpha.6", + "34.0.0-alpha.7" + ], + "132.0.6820.0": [ + "34.0.0-alpha.8" + ], + "132.0.6824.0": [ + "34.0.0-alpha.9", + "34.0.0-beta.1", + "34.0.0-beta.2", + "34.0.0-beta.3" + ], + "132.0.6834.6": [ + "34.0.0-beta.4", + "34.0.0-beta.5" + ], + "132.0.6834.15": [ + "34.0.0-beta.6", + "34.0.0-beta.7", + "34.0.0-beta.8" + ], + "132.0.6834.32": [ + "34.0.0-beta.9", + "34.0.0-beta.10", + "34.0.0-beta.11" + ], + "132.0.6834.46": [ + "34.0.0-beta.12", + "34.0.0-beta.13" + ], + "132.0.6834.57": [ + "34.0.0-beta.14", + "34.0.0-beta.15", + "34.0.0-beta.16" + ], + "132.0.6834.83": [ + "34.0.0", + "34.0.1" + ], + "132.0.6834.159": [ + "34.0.2" + ], + "132.0.6834.194": [ + "34.1.0", + "34.1.1" + ], + "132.0.6834.196": [ + "34.2.0" + ], + "132.0.6834.210": [ + "34.3.0", + "34.3.1", + "34.3.2", + "34.3.3", + "34.3.4", + "34.4.0", + "34.4.1", + "34.5.0", + "34.5.1", + "34.5.2", + "34.5.3", + "34.5.4", + "34.5.5", + "34.5.6", + "34.5.7", + "34.5.8" + ], + "133.0.6920.0": [ + "35.0.0-alpha.1", + "35.0.0-alpha.2", + "35.0.0-alpha.3", + "35.0.0-alpha.4", + "35.0.0-alpha.5", + "35.0.0-beta.1" + ], + "134.0.6968.0": [ + "35.0.0-beta.2", + "35.0.0-beta.3", + "35.0.0-beta.4" + ], + "134.0.6989.0": [ + "35.0.0-beta.5" + ], + "134.0.6990.0": [ + "35.0.0-beta.6", + "35.0.0-beta.7" + ], + "134.0.6998.10": [ + "35.0.0-beta.8", + "35.0.0-beta.9" + ], + "134.0.6998.23": [ + "35.0.0-beta.10", + "35.0.0-beta.11", + "35.0.0-beta.12" + ], + "134.0.6998.44": [ + "35.0.0-beta.13", + "35.0.0", + "35.0.1" + ], + "134.0.6998.88": [ + "35.0.2", + "35.0.3" + ], + "134.0.6998.165": [ + "35.1.0", + "35.1.1" + ], + "134.0.6998.178": [ + "35.1.2" + ], + "134.0.6998.179": [ + "35.1.3", + "35.1.4", + "35.1.5" + ], + "134.0.6998.205": [ + "35.2.0", + "35.2.1", + "35.2.2", + "35.3.0", + "35.4.0", + "35.5.0", + "35.5.1", + "35.6.0", + "35.7.0", + "35.7.1", + "35.7.2", + "35.7.4", + "35.7.5" + ], + "135.0.7049.5": [ + "36.0.0-alpha.1" + ], + "136.0.7062.0": [ + "36.0.0-alpha.2", + "36.0.0-alpha.3", + "36.0.0-alpha.4" + ], + "136.0.7067.0": [ + "36.0.0-alpha.5", + "36.0.0-alpha.6", + "36.0.0-beta.1", + "36.0.0-beta.2", + "36.0.0-beta.3", + "36.0.0-beta.4" + ], + "136.0.7103.17": [ + "36.0.0-beta.5" + ], + "136.0.7103.25": [ + "36.0.0-beta.6", + "36.0.0-beta.7" + ], + "136.0.7103.33": [ + "36.0.0-beta.8", + "36.0.0-beta.9" + ], + "136.0.7103.48": [ + "36.0.0", + "36.0.1" + ], + "136.0.7103.49": [ + "36.1.0", + "36.2.0" + ], + "136.0.7103.93": [ + "36.2.1" + ], + "136.0.7103.113": [ + "36.3.0", + "36.3.1" + ], + "136.0.7103.115": [ + "36.3.2" + ], + "136.0.7103.149": [ + "36.4.0" + ], + "136.0.7103.168": [ + "36.5.0" + ], + "136.0.7103.177": [ + "36.6.0", + "36.7.0", + "36.7.1", + "36.7.3", + "36.7.4", + "36.8.0", + "36.8.1" + ], + "137.0.7151.0": [ + "37.0.0-alpha.1", + "37.0.0-alpha.2" + ], + "138.0.7156.0": [ + "37.0.0-alpha.3" + ], + "138.0.7165.0": [ + "37.0.0-alpha.4" + ], + "138.0.7177.0": [ + "37.0.0-alpha.5" + ], + "138.0.7178.0": [ + "37.0.0-alpha.6", + "37.0.0-alpha.7", + "37.0.0-beta.1", + "37.0.0-beta.2" + ], + "138.0.7190.0": [ + "37.0.0-beta.3" + ], + "138.0.7204.15": [ + "37.0.0-beta.4", + "37.0.0-beta.5", + "37.0.0-beta.6", + "37.0.0-beta.7" + ], + "138.0.7204.23": [ + "37.0.0-beta.8" + ], + "138.0.7204.35": [ + "37.0.0-beta.9", + "37.0.0", + "37.1.0" + ], + "138.0.7204.97": [ + "37.2.0", + "37.2.1" + ], + "138.0.7204.100": [ + "37.2.2", + "37.2.3" + ], + "138.0.7204.157": [ + "37.2.4" + ], + "138.0.7204.168": [ + "37.2.5" + ], + "138.0.7204.185": [ + "37.2.6" + ], + "138.0.7204.224": [ + "37.3.0" + ], + "138.0.7204.235": [ + "37.3.1" + ], + "138.0.7204.243": [ + "37.4.0" + ], + "139.0.7219.0": [ + "38.0.0-alpha.1", + "38.0.0-alpha.2", + "38.0.0-alpha.3" + ], + "140.0.7261.0": [ + "38.0.0-alpha.4", + "38.0.0-alpha.5", + "38.0.0-alpha.6" + ], + "140.0.7281.0": [ + "38.0.0-alpha.7", + "38.0.0-alpha.8" + ], + "140.0.7301.0": [ + "38.0.0-alpha.9" + ], + "140.0.7309.0": [ + "38.0.0-alpha.10" + ], + "140.0.7312.0": [ + "38.0.0-alpha.11" + ], + "140.0.7314.0": [ + "38.0.0-alpha.12", + "38.0.0-alpha.13", + "38.0.0-beta.1" + ], + "140.0.7327.0": [ + "38.0.0-beta.2", + "38.0.0-beta.3" + ], + "140.0.7339.2": [ + "38.0.0-beta.4", + "38.0.0-beta.5", + "38.0.0-beta.6" + ], + "140.0.7339.16": [ + "38.0.0-beta.7" + ], + "140.0.7339.24": [ + "38.0.0-beta.8", + "38.0.0-beta.9" + ] +}; \ No newline at end of file diff --git a/novas/novacore-zephyr/groq-code-cli/node_modules/electron-to-chromium/full-chromium-versions.json b/novas/novacore-zephyr/groq-code-cli/node_modules/electron-to-chromium/full-chromium-versions.json new file mode 100644 index 0000000000000000000000000000000000000000..7222d63ffd963ba004b0c29fcb7995b5948180d9 --- /dev/null +++ b/novas/novacore-zephyr/groq-code-cli/node_modules/electron-to-chromium/full-chromium-versions.json @@ -0,0 +1 @@ +{"39.0.2171.65":["0.20.0","0.20.1","0.20.2","0.20.3","0.20.4","0.20.5","0.20.6","0.20.7","0.20.8"],"40.0.2214.91":["0.21.0","0.21.1","0.21.2"],"41.0.2272.76":["0.21.3","0.22.1","0.22.2","0.22.3","0.23.0","0.24.0"],"42.0.2311.107":["0.25.0","0.25.1","0.25.2","0.25.3","0.26.0","0.26.1","0.27.0","0.27.1"],"43.0.2357.65":["0.27.2","0.27.3","0.28.0","0.28.1","0.28.2","0.28.3","0.29.1","0.29.2"],"44.0.2403.125":["0.30.4","0.31.0"],"45.0.2454.85":["0.31.2","0.32.2","0.32.3","0.33.0","0.33.1","0.33.2","0.33.3","0.33.4","0.33.6","0.33.7","0.33.8","0.33.9","0.34.0","0.34.1","0.34.2","0.34.3","0.34.4","0.35.1","0.35.2","0.35.3","0.35.4","0.35.5"],"47.0.2526.73":["0.36.0","0.36.2","0.36.3","0.36.4"],"47.0.2526.110":["0.36.5","0.36.6","0.36.7","0.36.8","0.36.9","0.36.10","0.36.11","0.36.12"],"49.0.2623.75":["0.37.0","0.37.1","0.37.3","0.37.4","0.37.5","0.37.6","0.37.7","0.37.8","1.0.0","1.0.1","1.0.2"],"50.0.2661.102":["1.1.0","1.1.1","1.1.2","1.1.3"],"51.0.2704.63":["1.2.0","1.2.1"],"51.0.2704.84":["1.2.2","1.2.3"],"51.0.2704.103":["1.2.4","1.2.5"],"51.0.2704.106":["1.2.6","1.2.7","1.2.8"],"52.0.2743.82":["1.3.0","1.3.1","1.3.2","1.3.3","1.3.4","1.3.5","1.3.6","1.3.7","1.3.9","1.3.10","1.3.13","1.3.14","1.3.15"],"53.0.2785.113":["1.4.0","1.4.1","1.4.2","1.4.3","1.4.4","1.4.5"],"53.0.2785.143":["1.4.6","1.4.7","1.4.8","1.4.10","1.4.11","1.4.13","1.4.14","1.4.15","1.4.16"],"54.0.2840.51":["1.4.12"],"54.0.2840.101":["1.5.0","1.5.1"],"56.0.2924.87":["1.6.0","1.6.1","1.6.2","1.6.3","1.6.4","1.6.5","1.6.6","1.6.7","1.6.8","1.6.9","1.6.10","1.6.11","1.6.12","1.6.13","1.6.14","1.6.15","1.6.16","1.6.17","1.6.18"],"58.0.3029.110":["1.7.0","1.7.1","1.7.2","1.7.3","1.7.4","1.7.5","1.7.6","1.7.7","1.7.8","1.7.9","1.7.10","1.7.11","1.7.12","1.7.13","1.7.14","1.7.15","1.7.16"],"59.0.3071.115":["1.8.0","1.8.1","1.8.2-beta.1","1.8.2-beta.2","1.8.2-beta.3","1.8.2-beta.4","1.8.2-beta.5","1.8.2","1.8.3","1.8.4","1.8.5","1.8.6","1.8.7","1.8.8"],"61.0.3163.100":["2.0.0-beta.1","2.0.0-beta.2","2.0.0-beta.3","2.0.0-beta.4","2.0.0-beta.5","2.0.0-beta.6","2.0.0-beta.7","2.0.0-beta.8","2.0.0","2.0.1","2.0.2","2.0.3","2.0.4","2.0.5","2.0.6","2.0.7","2.0.8","2.0.9","2.0.10","2.0.11","2.0.12","2.0.13","2.0.14","2.0.15","2.0.16","2.0.17","2.0.18","2.1.0-unsupported.20180809"],"66.0.3359.181":["3.0.0-beta.1","3.0.0-beta.2","3.0.0-beta.3","3.0.0-beta.4","3.0.0-beta.5","3.0.0-beta.6","3.0.0-beta.7","3.0.0-beta.8","3.0.0-beta.9","3.0.0-beta.10","3.0.0-beta.11","3.0.0-beta.12","3.0.0-beta.13","3.0.0","3.0.1","3.0.2","3.0.3","3.0.4","3.0.5","3.0.6","3.0.7","3.0.8","3.0.9","3.0.10","3.0.11","3.0.12","3.0.13","3.0.14","3.0.15","3.0.16","3.1.0-beta.1","3.1.0-beta.2","3.1.0-beta.3","3.1.0-beta.4","3.1.0-beta.5","3.1.0","3.1.1","3.1.2","3.1.3","3.1.4","3.1.5","3.1.6","3.1.7","3.1.8","3.1.9","3.1.10","3.1.11","3.1.12","3.1.13"],"69.0.3497.106":["4.0.0-beta.1","4.0.0-beta.2","4.0.0-beta.3","4.0.0-beta.4","4.0.0-beta.5","4.0.0-beta.6","4.0.0-beta.7","4.0.0-beta.8","4.0.0-beta.9","4.0.0-beta.10","4.0.0-beta.11","4.0.0","4.0.1","4.0.2","4.0.3","4.0.4","4.0.5","4.0.6"],"69.0.3497.128":["4.0.7","4.0.8","4.1.0","4.1.1","4.1.2","4.1.3","4.1.4","4.1.5","4.2.0","4.2.1","4.2.2","4.2.3","4.2.4","4.2.5","4.2.6","4.2.7","4.2.8","4.2.9","4.2.10","4.2.11","4.2.12"],"72.0.3626.52":["5.0.0-beta.1","5.0.0-beta.2"],"73.0.3683.27":["5.0.0-beta.3"],"73.0.3683.54":["5.0.0-beta.4"],"73.0.3683.61":["5.0.0-beta.5"],"73.0.3683.84":["5.0.0-beta.6"],"73.0.3683.94":["5.0.0-beta.7"],"73.0.3683.104":["5.0.0-beta.8"],"73.0.3683.117":["5.0.0-beta.9"],"73.0.3683.119":["5.0.0"],"73.0.3683.121":["5.0.1","5.0.2","5.0.3","5.0.4","5.0.5","5.0.6","5.0.7","5.0.8","5.0.9","5.0.10","5.0.11","5.0.12","5.0.13"],"76.0.3774.1":["6.0.0-beta.1"],"76.0.3783.1":["6.0.0-beta.2","6.0.0-beta.3","6.0.0-beta.4"],"76.0.3805.4":["6.0.0-beta.5"],"76.0.3809.3":["6.0.0-beta.6"],"76.0.3809.22":["6.0.0-beta.7"],"76.0.3809.26":["6.0.0-beta.8","6.0.0-beta.9"],"76.0.3809.37":["6.0.0-beta.10"],"76.0.3809.42":["6.0.0-beta.11"],"76.0.3809.54":["6.0.0-beta.12"],"76.0.3809.60":["6.0.0-beta.13"],"76.0.3809.68":["6.0.0-beta.14"],"76.0.3809.74":["6.0.0-beta.15"],"76.0.3809.88":["6.0.0"],"76.0.3809.102":["6.0.1"],"76.0.3809.110":["6.0.2"],"76.0.3809.126":["6.0.3"],"76.0.3809.131":["6.0.4"],"76.0.3809.136":["6.0.5"],"76.0.3809.138":["6.0.6"],"76.0.3809.139":["6.0.7"],"76.0.3809.146":["6.0.8","6.0.9","6.0.10","6.0.11","6.0.12","6.1.0","6.1.1","6.1.2","6.1.3","6.1.4","6.1.5","6.1.6","6.1.7","6.1.8","6.1.9","6.1.10","6.1.11","6.1.12"],"78.0.3866.0":["7.0.0-beta.1","7.0.0-beta.2","7.0.0-beta.3"],"78.0.3896.6":["7.0.0-beta.4"],"78.0.3905.1":["7.0.0-beta.5","7.0.0-beta.6","7.0.0-beta.7","7.0.0"],"78.0.3904.92":["7.0.1"],"78.0.3904.94":["7.1.0"],"78.0.3904.99":["7.1.1"],"78.0.3904.113":["7.1.2"],"78.0.3904.126":["7.1.3"],"78.0.3904.130":["7.1.4","7.1.5","7.1.6","7.1.7","7.1.8","7.1.9","7.1.10","7.1.11","7.1.12","7.1.13","7.1.14","7.2.0","7.2.1","7.2.2","7.2.3","7.2.4","7.3.0","7.3.1","7.3.2","7.3.3"],"79.0.3931.0":["8.0.0-beta.1","8.0.0-beta.2"],"80.0.3955.0":["8.0.0-beta.3","8.0.0-beta.4"],"80.0.3987.14":["8.0.0-beta.5"],"80.0.3987.51":["8.0.0-beta.6"],"80.0.3987.59":["8.0.0-beta.7"],"80.0.3987.75":["8.0.0-beta.8","8.0.0-beta.9"],"80.0.3987.86":["8.0.0","8.0.1","8.0.2"],"80.0.3987.134":["8.0.3"],"80.0.3987.137":["8.1.0"],"80.0.3987.141":["8.1.1"],"80.0.3987.158":["8.2.0"],"80.0.3987.163":["8.2.1","8.2.2","8.2.3","8.5.3","8.5.4","8.5.5"],"80.0.3987.165":["8.2.4","8.2.5","8.3.0","8.3.1","8.3.2","8.3.3","8.3.4","8.4.0","8.4.1","8.5.0","8.5.1","8.5.2"],"82.0.4048.0":["9.0.0-beta.1","9.0.0-beta.2","9.0.0-beta.3","9.0.0-beta.4","9.0.0-beta.5"],"82.0.4058.2":["9.0.0-beta.6","9.0.0-beta.7","9.0.0-beta.9"],"82.0.4085.10":["9.0.0-beta.10"],"82.0.4085.14":["9.0.0-beta.11","9.0.0-beta.12","9.0.0-beta.13"],"82.0.4085.27":["9.0.0-beta.14"],"83.0.4102.3":["9.0.0-beta.15","9.0.0-beta.16"],"83.0.4103.14":["9.0.0-beta.17"],"83.0.4103.16":["9.0.0-beta.18"],"83.0.4103.24":["9.0.0-beta.19"],"83.0.4103.26":["9.0.0-beta.20","9.0.0-beta.21"],"83.0.4103.34":["9.0.0-beta.22"],"83.0.4103.44":["9.0.0-beta.23"],"83.0.4103.45":["9.0.0-beta.24"],"83.0.4103.64":["9.0.0"],"83.0.4103.94":["9.0.1","9.0.2"],"83.0.4103.100":["9.0.3"],"83.0.4103.104":["9.0.4"],"83.0.4103.119":["9.0.5"],"83.0.4103.122":["9.1.0","9.1.1","9.1.2","9.2.0","9.2.1","9.3.0","9.3.1","9.3.2","9.3.3","9.3.4","9.3.5","9.4.0","9.4.1","9.4.2","9.4.3","9.4.4"],"84.0.4129.0":["10.0.0-beta.1","10.0.0-beta.2"],"85.0.4161.2":["10.0.0-beta.3","10.0.0-beta.4"],"85.0.4181.1":["10.0.0-beta.8","10.0.0-beta.9"],"85.0.4183.19":["10.0.0-beta.10"],"85.0.4183.20":["10.0.0-beta.11"],"85.0.4183.26":["10.0.0-beta.12"],"85.0.4183.39":["10.0.0-beta.13","10.0.0-beta.14","10.0.0-beta.15","10.0.0-beta.17","10.0.0-beta.19","10.0.0-beta.20","10.0.0-beta.21"],"85.0.4183.70":["10.0.0-beta.23"],"85.0.4183.78":["10.0.0-beta.24"],"85.0.4183.80":["10.0.0-beta.25"],"85.0.4183.84":["10.0.0"],"85.0.4183.86":["10.0.1"],"85.0.4183.87":["10.1.0"],"85.0.4183.93":["10.1.1"],"85.0.4183.98":["10.1.2"],"85.0.4183.121":["10.1.3","10.1.4","10.1.5","10.1.6","10.1.7","10.2.0","10.3.0","10.3.1","10.3.2","10.4.0","10.4.1","10.4.2","10.4.3","10.4.4","10.4.5","10.4.6","10.4.7"],"86.0.4234.0":["11.0.0-beta.1","11.0.0-beta.3","11.0.0-beta.4","11.0.0-beta.5","11.0.0-beta.6","11.0.0-beta.7"],"87.0.4251.1":["11.0.0-beta.8","11.0.0-beta.9","11.0.0-beta.11"],"87.0.4280.11":["11.0.0-beta.12","11.0.0-beta.13"],"87.0.4280.27":["11.0.0-beta.16","11.0.0-beta.17","11.0.0-beta.18","11.0.0-beta.19"],"87.0.4280.40":["11.0.0-beta.20"],"87.0.4280.47":["11.0.0-beta.22","11.0.0-beta.23"],"87.0.4280.60":["11.0.0","11.0.1"],"87.0.4280.67":["11.0.2","11.0.3","11.0.4"],"87.0.4280.88":["11.0.5","11.1.0","11.1.1"],"87.0.4280.141":["11.2.0","11.2.1","11.2.2","11.2.3","11.3.0","11.4.0","11.4.1","11.4.2","11.4.3","11.4.4","11.4.5","11.4.6","11.4.7","11.4.8","11.4.9","11.4.10","11.4.11","11.4.12","11.5.0"],"89.0.4328.0":["12.0.0-beta.1","12.0.0-beta.3","12.0.0-beta.4","12.0.0-beta.5","12.0.0-beta.6","12.0.0-beta.7","12.0.0-beta.8","12.0.0-beta.9","12.0.0-beta.10","12.0.0-beta.11","12.0.0-beta.12","12.0.0-beta.14"],"89.0.4348.1":["12.0.0-beta.16","12.0.0-beta.18","12.0.0-beta.19","12.0.0-beta.20"],"89.0.4388.2":["12.0.0-beta.21","12.0.0-beta.22","12.0.0-beta.23","12.0.0-beta.24","12.0.0-beta.25","12.0.0-beta.26"],"89.0.4389.23":["12.0.0-beta.27","12.0.0-beta.28","12.0.0-beta.29"],"89.0.4389.58":["12.0.0-beta.30","12.0.0-beta.31"],"89.0.4389.69":["12.0.0"],"89.0.4389.82":["12.0.1"],"89.0.4389.90":["12.0.2"],"89.0.4389.114":["12.0.3","12.0.4"],"89.0.4389.128":["12.0.5","12.0.6","12.0.7","12.0.8","12.0.9","12.0.10","12.0.11","12.0.12","12.0.13","12.0.14","12.0.15","12.0.16","12.0.17","12.0.18","12.1.0","12.1.1","12.1.2","12.2.0","12.2.1","12.2.2","12.2.3"],"90.0.4402.0":["13.0.0-beta.2","13.0.0-beta.3"],"90.0.4415.0":["13.0.0-beta.4","13.0.0-beta.5","13.0.0-beta.6","13.0.0-beta.7","13.0.0-beta.8","13.0.0-beta.9","13.0.0-beta.10","13.0.0-beta.11","13.0.0-beta.12","13.0.0-beta.13"],"91.0.4448.0":["13.0.0-beta.14","13.0.0-beta.16","13.0.0-beta.17","13.0.0-beta.18","13.0.0-beta.20"],"91.0.4472.33":["13.0.0-beta.21","13.0.0-beta.22","13.0.0-beta.23"],"91.0.4472.38":["13.0.0-beta.24","13.0.0-beta.25","13.0.0-beta.26","13.0.0-beta.27","13.0.0-beta.28"],"91.0.4472.69":["13.0.0","13.0.1"],"91.0.4472.77":["13.1.0","13.1.1","13.1.2"],"91.0.4472.106":["13.1.3","13.1.4"],"91.0.4472.124":["13.1.5","13.1.6","13.1.7"],"91.0.4472.164":["13.1.8","13.1.9","13.2.0","13.2.1","13.2.2","13.2.3","13.3.0","13.4.0","13.5.0","13.5.1","13.5.2","13.6.0","13.6.1","13.6.2","13.6.3","13.6.6","13.6.7","13.6.8","13.6.9"],"92.0.4511.0":["14.0.0-beta.1","14.0.0-beta.2","14.0.0-beta.3"],"93.0.4536.0":["14.0.0-beta.5","14.0.0-beta.6","14.0.0-beta.7","14.0.0-beta.8"],"93.0.4539.0":["14.0.0-beta.9","14.0.0-beta.10"],"93.0.4557.4":["14.0.0-beta.11","14.0.0-beta.12"],"93.0.4566.0":["14.0.0-beta.13","14.0.0-beta.14","14.0.0-beta.15","14.0.0-beta.16","14.0.0-beta.17","15.0.0-alpha.1","15.0.0-alpha.2"],"93.0.4577.15":["14.0.0-beta.18","14.0.0-beta.19","14.0.0-beta.20","14.0.0-beta.21"],"93.0.4577.25":["14.0.0-beta.22","14.0.0-beta.23"],"93.0.4577.51":["14.0.0-beta.24","14.0.0-beta.25"],"93.0.4577.58":["14.0.0"],"93.0.4577.63":["14.0.1"],"93.0.4577.82":["14.0.2","14.1.0","14.1.1","14.2.0","14.2.1","14.2.2","14.2.3","14.2.4","14.2.5","14.2.6","14.2.7","14.2.8","14.2.9"],"94.0.4584.0":["15.0.0-alpha.3","15.0.0-alpha.4","15.0.0-alpha.5","15.0.0-alpha.6"],"94.0.4590.2":["15.0.0-alpha.7","15.0.0-alpha.8","15.0.0-alpha.9"],"94.0.4606.12":["15.0.0-alpha.10"],"94.0.4606.20":["15.0.0-beta.1","15.0.0-beta.2"],"94.0.4606.31":["15.0.0-beta.3","15.0.0-beta.4","15.0.0-beta.5","15.0.0-beta.6","15.0.0-beta.7"],"94.0.4606.51":["15.0.0"],"94.0.4606.61":["15.1.0","15.1.1"],"94.0.4606.71":["15.1.2"],"94.0.4606.81":["15.2.0","15.3.0","15.3.1","15.3.2","15.3.3","15.3.4","15.3.5","15.3.6","15.3.7","15.4.0","15.4.1","15.4.2","15.5.0","15.5.1","15.5.2","15.5.3","15.5.4","15.5.5","15.5.6","15.5.7"],"95.0.4629.0":["16.0.0-alpha.1","16.0.0-alpha.2","16.0.0-alpha.3","16.0.0-alpha.4","16.0.0-alpha.5","16.0.0-alpha.6","16.0.0-alpha.7"],"96.0.4647.0":["16.0.0-alpha.8","16.0.0-alpha.9","16.0.0-beta.1","16.0.0-beta.2","16.0.0-beta.3"],"96.0.4664.18":["16.0.0-beta.4","16.0.0-beta.5"],"96.0.4664.27":["16.0.0-beta.6","16.0.0-beta.7"],"96.0.4664.35":["16.0.0-beta.8","16.0.0-beta.9"],"96.0.4664.45":["16.0.0","16.0.1"],"96.0.4664.55":["16.0.2","16.0.3","16.0.4","16.0.5"],"96.0.4664.110":["16.0.6","16.0.7","16.0.8"],"96.0.4664.174":["16.0.9","16.0.10","16.1.0","16.1.1","16.2.0","16.2.1","16.2.2","16.2.3","16.2.4","16.2.5","16.2.6","16.2.7","16.2.8"],"96.0.4664.4":["17.0.0-alpha.1","17.0.0-alpha.2","17.0.0-alpha.3"],"98.0.4706.0":["17.0.0-alpha.4","17.0.0-alpha.5","17.0.0-alpha.6","17.0.0-beta.1","17.0.0-beta.2"],"98.0.4758.9":["17.0.0-beta.3"],"98.0.4758.11":["17.0.0-beta.4","17.0.0-beta.5","17.0.0-beta.6","17.0.0-beta.7","17.0.0-beta.8","17.0.0-beta.9"],"98.0.4758.74":["17.0.0"],"98.0.4758.82":["17.0.1"],"98.0.4758.102":["17.1.0"],"98.0.4758.109":["17.1.1","17.1.2","17.2.0"],"98.0.4758.141":["17.3.0","17.3.1","17.4.0","17.4.1","17.4.2","17.4.3","17.4.4","17.4.5","17.4.6","17.4.7","17.4.8","17.4.9","17.4.10","17.4.11"],"99.0.4767.0":["18.0.0-alpha.1","18.0.0-alpha.2","18.0.0-alpha.3","18.0.0-alpha.4","18.0.0-alpha.5"],"100.0.4894.0":["18.0.0-beta.1","18.0.0-beta.2","18.0.0-beta.3","18.0.0-beta.4","18.0.0-beta.5","18.0.0-beta.6"],"100.0.4896.56":["18.0.0"],"100.0.4896.60":["18.0.1","18.0.2"],"100.0.4896.75":["18.0.3","18.0.4"],"100.0.4896.127":["18.1.0"],"100.0.4896.143":["18.2.0","18.2.1","18.2.2","18.2.3"],"100.0.4896.160":["18.2.4","18.3.0","18.3.1","18.3.2","18.3.3","18.3.4","18.3.5","18.3.6","18.3.7","18.3.8","18.3.9","18.3.11","18.3.12","18.3.13","18.3.14","18.3.15"],"102.0.4962.3":["19.0.0-alpha.1"],"102.0.4971.0":["19.0.0-alpha.2","19.0.0-alpha.3"],"102.0.4989.0":["19.0.0-alpha.4","19.0.0-alpha.5"],"102.0.4999.0":["19.0.0-beta.1","19.0.0-beta.2","19.0.0-beta.3"],"102.0.5005.27":["19.0.0-beta.4"],"102.0.5005.40":["19.0.0-beta.5","19.0.0-beta.6","19.0.0-beta.7"],"102.0.5005.49":["19.0.0-beta.8"],"102.0.5005.61":["19.0.0","19.0.1"],"102.0.5005.63":["19.0.2","19.0.3","19.0.4"],"102.0.5005.115":["19.0.5","19.0.6"],"102.0.5005.134":["19.0.7"],"102.0.5005.148":["19.0.8"],"102.0.5005.167":["19.0.9","19.0.10","19.0.11","19.0.12","19.0.13","19.0.14","19.0.15","19.0.16","19.0.17","19.1.0","19.1.1","19.1.2","19.1.3","19.1.4","19.1.5","19.1.6","19.1.7","19.1.8","19.1.9"],"103.0.5044.0":["20.0.0-alpha.1"],"104.0.5073.0":["20.0.0-alpha.2","20.0.0-alpha.3","20.0.0-alpha.4","20.0.0-alpha.5","20.0.0-alpha.6","20.0.0-alpha.7","20.0.0-beta.1","20.0.0-beta.2","20.0.0-beta.3","20.0.0-beta.4","20.0.0-beta.5","20.0.0-beta.6","20.0.0-beta.7","20.0.0-beta.8"],"104.0.5112.39":["20.0.0-beta.9"],"104.0.5112.48":["20.0.0-beta.10","20.0.0-beta.11","20.0.0-beta.12"],"104.0.5112.57":["20.0.0-beta.13"],"104.0.5112.65":["20.0.0"],"104.0.5112.81":["20.0.1","20.0.2","20.0.3"],"104.0.5112.102":["20.1.0","20.1.1"],"104.0.5112.114":["20.1.2","20.1.3","20.1.4"],"104.0.5112.124":["20.2.0","20.3.0","20.3.1","20.3.2","20.3.3","20.3.4","20.3.5","20.3.6","20.3.7","20.3.8","20.3.9","20.3.10","20.3.11","20.3.12"],"105.0.5187.0":["21.0.0-alpha.1","21.0.0-alpha.2","21.0.0-alpha.3","21.0.0-alpha.4","21.0.0-alpha.5"],"106.0.5216.0":["21.0.0-alpha.6","21.0.0-beta.1","21.0.0-beta.2","21.0.0-beta.3","21.0.0-beta.4","21.0.0-beta.5"],"106.0.5249.40":["21.0.0-beta.6","21.0.0-beta.7","21.0.0-beta.8"],"106.0.5249.51":["21.0.0"],"106.0.5249.61":["21.0.1"],"106.0.5249.91":["21.1.0"],"106.0.5249.103":["21.1.1"],"106.0.5249.119":["21.2.0"],"106.0.5249.165":["21.2.1"],"106.0.5249.168":["21.2.2","21.2.3"],"106.0.5249.181":["21.3.0","21.3.1"],"106.0.5249.199":["21.3.3","21.3.4","21.3.5","21.4.0","21.4.1","21.4.2","21.4.3","21.4.4"],"107.0.5286.0":["22.0.0-alpha.1"],"108.0.5329.0":["22.0.0-alpha.3","22.0.0-alpha.4","22.0.0-alpha.5","22.0.0-alpha.6"],"108.0.5355.0":["22.0.0-alpha.7"],"108.0.5359.10":["22.0.0-alpha.8","22.0.0-beta.1","22.0.0-beta.2","22.0.0-beta.3"],"108.0.5359.29":["22.0.0-beta.4"],"108.0.5359.40":["22.0.0-beta.5","22.0.0-beta.6"],"108.0.5359.48":["22.0.0-beta.7","22.0.0-beta.8"],"108.0.5359.62":["22.0.0"],"108.0.5359.125":["22.0.1"],"108.0.5359.179":["22.0.2","22.0.3","22.1.0"],"108.0.5359.215":["22.2.0","22.2.1","22.3.0","22.3.1","22.3.2","22.3.3","22.3.4","22.3.5","22.3.6","22.3.7","22.3.8","22.3.9","22.3.10","22.3.11","22.3.12","22.3.13","22.3.14","22.3.15","22.3.16","22.3.17","22.3.18","22.3.20","22.3.21","22.3.22","22.3.23","22.3.24","22.3.25","22.3.26","22.3.27"],"110.0.5415.0":["23.0.0-alpha.1"],"110.0.5451.0":["23.0.0-alpha.2","23.0.0-alpha.3"],"110.0.5478.5":["23.0.0-beta.1","23.0.0-beta.2","23.0.0-beta.3"],"110.0.5481.30":["23.0.0-beta.4"],"110.0.5481.38":["23.0.0-beta.5"],"110.0.5481.52":["23.0.0-beta.6","23.0.0-beta.8"],"110.0.5481.77":["23.0.0"],"110.0.5481.100":["23.1.0"],"110.0.5481.104":["23.1.1"],"110.0.5481.177":["23.1.2"],"110.0.5481.179":["23.1.3"],"110.0.5481.192":["23.1.4","23.2.0"],"110.0.5481.208":["23.2.1","23.2.2","23.2.3","23.2.4","23.3.0","23.3.1","23.3.2","23.3.3","23.3.4","23.3.5","23.3.6","23.3.7","23.3.8","23.3.9","23.3.10","23.3.11","23.3.12","23.3.13"],"111.0.5560.0":["24.0.0-alpha.1","24.0.0-alpha.2","24.0.0-alpha.3","24.0.0-alpha.4","24.0.0-alpha.5","24.0.0-alpha.6","24.0.0-alpha.7"],"111.0.5563.50":["24.0.0-beta.1","24.0.0-beta.2"],"112.0.5615.20":["24.0.0-beta.3","24.0.0-beta.4"],"112.0.5615.29":["24.0.0-beta.5"],"112.0.5615.39":["24.0.0-beta.6","24.0.0-beta.7"],"112.0.5615.49":["24.0.0"],"112.0.5615.50":["24.1.0","24.1.1"],"112.0.5615.87":["24.1.2"],"112.0.5615.165":["24.1.3","24.2.0","24.3.0"],"112.0.5615.183":["24.3.1"],"112.0.5615.204":["24.4.0","24.4.1","24.5.0","24.5.1","24.6.0","24.6.1","24.6.2","24.6.3","24.6.4","24.6.5","24.7.0","24.7.1","24.8.0","24.8.1","24.8.2","24.8.3","24.8.4","24.8.5","24.8.6","24.8.7","24.8.8"],"114.0.5694.0":["25.0.0-alpha.1","25.0.0-alpha.2"],"114.0.5710.0":["25.0.0-alpha.3","25.0.0-alpha.4"],"114.0.5719.0":["25.0.0-alpha.5","25.0.0-alpha.6","25.0.0-beta.1","25.0.0-beta.2","25.0.0-beta.3"],"114.0.5735.16":["25.0.0-beta.4","25.0.0-beta.5","25.0.0-beta.6","25.0.0-beta.7"],"114.0.5735.35":["25.0.0-beta.8"],"114.0.5735.45":["25.0.0-beta.9","25.0.0","25.0.1"],"114.0.5735.106":["25.1.0","25.1.1"],"114.0.5735.134":["25.2.0"],"114.0.5735.199":["25.3.0"],"114.0.5735.243":["25.3.1"],"114.0.5735.248":["25.3.2","25.4.0"],"114.0.5735.289":["25.5.0","25.6.0","25.7.0","25.8.0","25.8.1","25.8.2","25.8.3","25.8.4","25.9.0","25.9.1","25.9.2","25.9.3","25.9.4","25.9.5","25.9.6","25.9.7","25.9.8"],"116.0.5791.0":["26.0.0-alpha.1","26.0.0-alpha.2","26.0.0-alpha.3","26.0.0-alpha.4","26.0.0-alpha.5"],"116.0.5815.0":["26.0.0-alpha.6"],"116.0.5831.0":["26.0.0-alpha.7"],"116.0.5845.0":["26.0.0-alpha.8","26.0.0-beta.1"],"116.0.5845.14":["26.0.0-beta.2","26.0.0-beta.3","26.0.0-beta.4","26.0.0-beta.5","26.0.0-beta.6","26.0.0-beta.7"],"116.0.5845.42":["26.0.0-beta.8","26.0.0-beta.9"],"116.0.5845.49":["26.0.0-beta.10","26.0.0-beta.11"],"116.0.5845.62":["26.0.0-beta.12"],"116.0.5845.82":["26.0.0"],"116.0.5845.97":["26.1.0"],"116.0.5845.179":["26.2.0"],"116.0.5845.188":["26.2.1"],"116.0.5845.190":["26.2.2","26.2.3","26.2.4"],"116.0.5845.228":["26.3.0","26.4.0","26.4.1","26.4.2","26.4.3","26.5.0","26.6.0","26.6.1","26.6.2","26.6.3","26.6.4","26.6.5","26.6.6","26.6.7","26.6.8","26.6.9","26.6.10"],"118.0.5949.0":["27.0.0-alpha.1","27.0.0-alpha.2","27.0.0-alpha.3","27.0.0-alpha.4","27.0.0-alpha.5","27.0.0-alpha.6"],"118.0.5993.5":["27.0.0-beta.1","27.0.0-beta.2","27.0.0-beta.3"],"118.0.5993.11":["27.0.0-beta.4"],"118.0.5993.18":["27.0.0-beta.5","27.0.0-beta.6","27.0.0-beta.7","27.0.0-beta.8","27.0.0-beta.9"],"118.0.5993.54":["27.0.0"],"118.0.5993.89":["27.0.1","27.0.2"],"118.0.5993.120":["27.0.3"],"118.0.5993.129":["27.0.4"],"118.0.5993.144":["27.1.0","27.1.2"],"118.0.5993.159":["27.1.3","27.2.0","27.2.1","27.2.2","27.2.3","27.2.4","27.3.0","27.3.1","27.3.2","27.3.3","27.3.4","27.3.5","27.3.6","27.3.7","27.3.8","27.3.9","27.3.10","27.3.11"],"119.0.6045.0":["28.0.0-alpha.1","28.0.0-alpha.2"],"119.0.6045.21":["28.0.0-alpha.3","28.0.0-alpha.4"],"119.0.6045.33":["28.0.0-alpha.5","28.0.0-alpha.6","28.0.0-alpha.7","28.0.0-beta.1"],"120.0.6099.0":["28.0.0-beta.2"],"120.0.6099.5":["28.0.0-beta.3","28.0.0-beta.4"],"120.0.6099.18":["28.0.0-beta.5","28.0.0-beta.6","28.0.0-beta.7","28.0.0-beta.8","28.0.0-beta.9","28.0.0-beta.10"],"120.0.6099.35":["28.0.0-beta.11"],"120.0.6099.56":["28.0.0"],"120.0.6099.109":["28.1.0","28.1.1"],"120.0.6099.199":["28.1.2","28.1.3"],"120.0.6099.216":["28.1.4"],"120.0.6099.227":["28.2.0"],"120.0.6099.268":["28.2.1"],"120.0.6099.276":["28.2.2"],"120.0.6099.283":["28.2.3"],"120.0.6099.291":["28.2.4","28.2.5","28.2.6","28.2.7","28.2.8","28.2.9","28.2.10","28.3.0","28.3.1","28.3.2","28.3.3"],"121.0.6147.0":["29.0.0-alpha.1","29.0.0-alpha.2","29.0.0-alpha.3"],"121.0.6159.0":["29.0.0-alpha.4","29.0.0-alpha.5","29.0.0-alpha.6","29.0.0-alpha.7"],"122.0.6194.0":["29.0.0-alpha.8"],"122.0.6236.2":["29.0.0-alpha.9","29.0.0-alpha.10","29.0.0-alpha.11","29.0.0-beta.1","29.0.0-beta.2"],"122.0.6261.6":["29.0.0-beta.3","29.0.0-beta.4"],"122.0.6261.18":["29.0.0-beta.5","29.0.0-beta.6","29.0.0-beta.7","29.0.0-beta.8","29.0.0-beta.9","29.0.0-beta.10","29.0.0-beta.11"],"122.0.6261.29":["29.0.0-beta.12"],"122.0.6261.39":["29.0.0"],"122.0.6261.57":["29.0.1"],"122.0.6261.70":["29.1.0"],"122.0.6261.111":["29.1.1"],"122.0.6261.112":["29.1.2","29.1.3"],"122.0.6261.129":["29.1.4"],"122.0.6261.130":["29.1.5"],"122.0.6261.139":["29.1.6"],"122.0.6261.156":["29.2.0","29.3.0","29.3.1","29.3.2","29.3.3","29.4.0","29.4.1","29.4.2","29.4.3","29.4.4","29.4.5","29.4.6"],"123.0.6296.0":["30.0.0-alpha.1"],"123.0.6312.5":["30.0.0-alpha.2"],"124.0.6323.0":["30.0.0-alpha.3","30.0.0-alpha.4"],"124.0.6331.0":["30.0.0-alpha.5","30.0.0-alpha.6"],"124.0.6353.0":["30.0.0-alpha.7"],"124.0.6359.0":["30.0.0-beta.1","30.0.0-beta.2"],"124.0.6367.9":["30.0.0-beta.3","30.0.0-beta.4","30.0.0-beta.5"],"124.0.6367.18":["30.0.0-beta.6"],"124.0.6367.29":["30.0.0-beta.7","30.0.0-beta.8"],"124.0.6367.49":["30.0.0"],"124.0.6367.60":["30.0.1"],"124.0.6367.91":["30.0.2"],"124.0.6367.119":["30.0.3"],"124.0.6367.201":["30.0.4"],"124.0.6367.207":["30.0.5","30.0.6"],"124.0.6367.221":["30.0.7"],"124.0.6367.230":["30.0.8"],"124.0.6367.233":["30.0.9"],"124.0.6367.243":["30.1.0","30.1.1","30.1.2","30.2.0","30.3.0","30.3.1","30.4.0","30.5.0","30.5.1"],"125.0.6412.0":["31.0.0-alpha.1","31.0.0-alpha.2","31.0.0-alpha.3","31.0.0-alpha.4","31.0.0-alpha.5"],"126.0.6445.0":["31.0.0-beta.1","31.0.0-beta.2","31.0.0-beta.3","31.0.0-beta.4","31.0.0-beta.5","31.0.0-beta.6","31.0.0-beta.7","31.0.0-beta.8","31.0.0-beta.9"],"126.0.6478.36":["31.0.0-beta.10","31.0.0","31.0.1"],"126.0.6478.61":["31.0.2"],"126.0.6478.114":["31.1.0"],"126.0.6478.127":["31.2.0","31.2.1"],"126.0.6478.183":["31.3.0"],"126.0.6478.185":["31.3.1"],"126.0.6478.234":["31.4.0","31.5.0","31.6.0","31.7.0","31.7.1","31.7.2","31.7.3","31.7.4","31.7.5","31.7.6","31.7.7"],"127.0.6521.0":["32.0.0-alpha.1","32.0.0-alpha.2","32.0.0-alpha.3","32.0.0-alpha.4","32.0.0-alpha.5"],"128.0.6571.0":["32.0.0-alpha.6","32.0.0-alpha.7"],"128.0.6573.0":["32.0.0-alpha.8","32.0.0-alpha.9","32.0.0-alpha.10","32.0.0-beta.1"],"128.0.6611.0":["32.0.0-beta.2"],"128.0.6613.7":["32.0.0-beta.3"],"128.0.6613.18":["32.0.0-beta.4"],"128.0.6613.27":["32.0.0-beta.5","32.0.0-beta.6","32.0.0-beta.7"],"128.0.6613.36":["32.0.0","32.0.1"],"128.0.6613.84":["32.0.2"],"128.0.6613.120":["32.1.0"],"128.0.6613.137":["32.1.1"],"128.0.6613.162":["32.1.2"],"128.0.6613.178":["32.2.0"],"128.0.6613.186":["32.2.1","32.2.2","32.2.3","32.2.4","32.2.5","32.2.6","32.2.7","32.2.8","32.3.0","32.3.1","32.3.2","32.3.3"],"129.0.6668.0":["33.0.0-alpha.1"],"130.0.6672.0":["33.0.0-alpha.2","33.0.0-alpha.3","33.0.0-alpha.4","33.0.0-alpha.5","33.0.0-alpha.6","33.0.0-beta.1","33.0.0-beta.2","33.0.0-beta.3","33.0.0-beta.4"],"130.0.6723.19":["33.0.0-beta.5","33.0.0-beta.6","33.0.0-beta.7"],"130.0.6723.31":["33.0.0-beta.8","33.0.0-beta.9","33.0.0-beta.10"],"130.0.6723.44":["33.0.0-beta.11","33.0.0"],"130.0.6723.59":["33.0.1","33.0.2"],"130.0.6723.91":["33.1.0"],"130.0.6723.118":["33.2.0"],"130.0.6723.137":["33.2.1"],"130.0.6723.152":["33.3.0"],"130.0.6723.170":["33.3.1"],"130.0.6723.191":["33.3.2","33.4.0","33.4.1","33.4.2","33.4.3","33.4.4","33.4.5","33.4.6","33.4.7","33.4.8","33.4.9","33.4.10","33.4.11"],"131.0.6776.0":["34.0.0-alpha.1"],"132.0.6779.0":["34.0.0-alpha.2"],"132.0.6789.1":["34.0.0-alpha.3","34.0.0-alpha.4","34.0.0-alpha.5","34.0.0-alpha.6","34.0.0-alpha.7"],"132.0.6820.0":["34.0.0-alpha.8"],"132.0.6824.0":["34.0.0-alpha.9","34.0.0-beta.1","34.0.0-beta.2","34.0.0-beta.3"],"132.0.6834.6":["34.0.0-beta.4","34.0.0-beta.5"],"132.0.6834.15":["34.0.0-beta.6","34.0.0-beta.7","34.0.0-beta.8"],"132.0.6834.32":["34.0.0-beta.9","34.0.0-beta.10","34.0.0-beta.11"],"132.0.6834.46":["34.0.0-beta.12","34.0.0-beta.13"],"132.0.6834.57":["34.0.0-beta.14","34.0.0-beta.15","34.0.0-beta.16"],"132.0.6834.83":["34.0.0","34.0.1"],"132.0.6834.159":["34.0.2"],"132.0.6834.194":["34.1.0","34.1.1"],"132.0.6834.196":["34.2.0"],"132.0.6834.210":["34.3.0","34.3.1","34.3.2","34.3.3","34.3.4","34.4.0","34.4.1","34.5.0","34.5.1","34.5.2","34.5.3","34.5.4","34.5.5","34.5.6","34.5.7","34.5.8"],"133.0.6920.0":["35.0.0-alpha.1","35.0.0-alpha.2","35.0.0-alpha.3","35.0.0-alpha.4","35.0.0-alpha.5","35.0.0-beta.1"],"134.0.6968.0":["35.0.0-beta.2","35.0.0-beta.3","35.0.0-beta.4"],"134.0.6989.0":["35.0.0-beta.5"],"134.0.6990.0":["35.0.0-beta.6","35.0.0-beta.7"],"134.0.6998.10":["35.0.0-beta.8","35.0.0-beta.9"],"134.0.6998.23":["35.0.0-beta.10","35.0.0-beta.11","35.0.0-beta.12"],"134.0.6998.44":["35.0.0-beta.13","35.0.0","35.0.1"],"134.0.6998.88":["35.0.2","35.0.3"],"134.0.6998.165":["35.1.0","35.1.1"],"134.0.6998.178":["35.1.2"],"134.0.6998.179":["35.1.3","35.1.4","35.1.5"],"134.0.6998.205":["35.2.0","35.2.1","35.2.2","35.3.0","35.4.0","35.5.0","35.5.1","35.6.0","35.7.0","35.7.1","35.7.2","35.7.4","35.7.5"],"135.0.7049.5":["36.0.0-alpha.1"],"136.0.7062.0":["36.0.0-alpha.2","36.0.0-alpha.3","36.0.0-alpha.4"],"136.0.7067.0":["36.0.0-alpha.5","36.0.0-alpha.6","36.0.0-beta.1","36.0.0-beta.2","36.0.0-beta.3","36.0.0-beta.4"],"136.0.7103.17":["36.0.0-beta.5"],"136.0.7103.25":["36.0.0-beta.6","36.0.0-beta.7"],"136.0.7103.33":["36.0.0-beta.8","36.0.0-beta.9"],"136.0.7103.48":["36.0.0","36.0.1"],"136.0.7103.49":["36.1.0","36.2.0"],"136.0.7103.93":["36.2.1"],"136.0.7103.113":["36.3.0","36.3.1"],"136.0.7103.115":["36.3.2"],"136.0.7103.149":["36.4.0"],"136.0.7103.168":["36.5.0"],"136.0.7103.177":["36.6.0","36.7.0","36.7.1","36.7.3","36.7.4","36.8.0","36.8.1"],"137.0.7151.0":["37.0.0-alpha.1","37.0.0-alpha.2"],"138.0.7156.0":["37.0.0-alpha.3"],"138.0.7165.0":["37.0.0-alpha.4"],"138.0.7177.0":["37.0.0-alpha.5"],"138.0.7178.0":["37.0.0-alpha.6","37.0.0-alpha.7","37.0.0-beta.1","37.0.0-beta.2"],"138.0.7190.0":["37.0.0-beta.3"],"138.0.7204.15":["37.0.0-beta.4","37.0.0-beta.5","37.0.0-beta.6","37.0.0-beta.7"],"138.0.7204.23":["37.0.0-beta.8"],"138.0.7204.35":["37.0.0-beta.9","37.0.0","37.1.0"],"138.0.7204.97":["37.2.0","37.2.1"],"138.0.7204.100":["37.2.2","37.2.3"],"138.0.7204.157":["37.2.4"],"138.0.7204.168":["37.2.5"],"138.0.7204.185":["37.2.6"],"138.0.7204.224":["37.3.0"],"138.0.7204.235":["37.3.1"],"138.0.7204.243":["37.4.0"],"139.0.7219.0":["38.0.0-alpha.1","38.0.0-alpha.2","38.0.0-alpha.3"],"140.0.7261.0":["38.0.0-alpha.4","38.0.0-alpha.5","38.0.0-alpha.6"],"140.0.7281.0":["38.0.0-alpha.7","38.0.0-alpha.8"],"140.0.7301.0":["38.0.0-alpha.9"],"140.0.7309.0":["38.0.0-alpha.10"],"140.0.7312.0":["38.0.0-alpha.11"],"140.0.7314.0":["38.0.0-alpha.12","38.0.0-alpha.13","38.0.0-beta.1"],"140.0.7327.0":["38.0.0-beta.2","38.0.0-beta.3"],"140.0.7339.2":["38.0.0-beta.4","38.0.0-beta.5","38.0.0-beta.6"],"140.0.7339.16":["38.0.0-beta.7"],"140.0.7339.24":["38.0.0-beta.8","38.0.0-beta.9"]} \ No newline at end of file diff --git a/novas/novacore-zephyr/groq-code-cli/node_modules/electron-to-chromium/full-versions.js b/novas/novacore-zephyr/groq-code-cli/node_modules/electron-to-chromium/full-versions.js new file mode 100644 index 0000000000000000000000000000000000000000..623de725c209979bf4275ec43aea86d3e9c954f7 --- /dev/null +++ b/novas/novacore-zephyr/groq-code-cli/node_modules/electron-to-chromium/full-versions.js @@ -0,0 +1,1617 @@ +module.exports = { + "0.20.0": "39.0.2171.65", + "0.20.1": "39.0.2171.65", + "0.20.2": "39.0.2171.65", + "0.20.3": "39.0.2171.65", + "0.20.4": "39.0.2171.65", + "0.20.5": "39.0.2171.65", + "0.20.6": "39.0.2171.65", + "0.20.7": "39.0.2171.65", + "0.20.8": "39.0.2171.65", + "0.21.0": "40.0.2214.91", + "0.21.1": "40.0.2214.91", + "0.21.2": "40.0.2214.91", + "0.21.3": "41.0.2272.76", + "0.22.1": "41.0.2272.76", + "0.22.2": "41.0.2272.76", + "0.22.3": "41.0.2272.76", + "0.23.0": "41.0.2272.76", + "0.24.0": "41.0.2272.76", + "0.25.0": "42.0.2311.107", + "0.25.1": "42.0.2311.107", + "0.25.2": "42.0.2311.107", + "0.25.3": "42.0.2311.107", + "0.26.0": "42.0.2311.107", + "0.26.1": "42.0.2311.107", + "0.27.0": "42.0.2311.107", + "0.27.1": "42.0.2311.107", + "0.27.2": "43.0.2357.65", + "0.27.3": "43.0.2357.65", + "0.28.0": "43.0.2357.65", + "0.28.1": "43.0.2357.65", + "0.28.2": "43.0.2357.65", + "0.28.3": "43.0.2357.65", + "0.29.1": "43.0.2357.65", + "0.29.2": "43.0.2357.65", + "0.30.4": "44.0.2403.125", + "0.31.0": "44.0.2403.125", + "0.31.2": "45.0.2454.85", + "0.32.2": "45.0.2454.85", + "0.32.3": "45.0.2454.85", + "0.33.0": "45.0.2454.85", + "0.33.1": "45.0.2454.85", + "0.33.2": "45.0.2454.85", + "0.33.3": "45.0.2454.85", + "0.33.4": "45.0.2454.85", + "0.33.6": "45.0.2454.85", + "0.33.7": "45.0.2454.85", + "0.33.8": "45.0.2454.85", + "0.33.9": "45.0.2454.85", + "0.34.0": "45.0.2454.85", + "0.34.1": "45.0.2454.85", + "0.34.2": "45.0.2454.85", + "0.34.3": "45.0.2454.85", + "0.34.4": "45.0.2454.85", + "0.35.1": "45.0.2454.85", + "0.35.2": "45.0.2454.85", + "0.35.3": "45.0.2454.85", + "0.35.4": "45.0.2454.85", + "0.35.5": "45.0.2454.85", + "0.36.0": "47.0.2526.73", + "0.36.2": "47.0.2526.73", + "0.36.3": "47.0.2526.73", + "0.36.4": "47.0.2526.73", + "0.36.5": "47.0.2526.110", + "0.36.6": "47.0.2526.110", + "0.36.7": "47.0.2526.110", + "0.36.8": "47.0.2526.110", + "0.36.9": "47.0.2526.110", + "0.36.10": "47.0.2526.110", + "0.36.11": "47.0.2526.110", + "0.36.12": "47.0.2526.110", + "0.37.0": "49.0.2623.75", + "0.37.1": "49.0.2623.75", + "0.37.3": "49.0.2623.75", + "0.37.4": "49.0.2623.75", + "0.37.5": "49.0.2623.75", + "0.37.6": "49.0.2623.75", + "0.37.7": "49.0.2623.75", + "0.37.8": "49.0.2623.75", + "1.0.0": "49.0.2623.75", + "1.0.1": "49.0.2623.75", + "1.0.2": "49.0.2623.75", + "1.1.0": "50.0.2661.102", + "1.1.1": "50.0.2661.102", + "1.1.2": "50.0.2661.102", + "1.1.3": "50.0.2661.102", + "1.2.0": "51.0.2704.63", + "1.2.1": "51.0.2704.63", + "1.2.2": "51.0.2704.84", + "1.2.3": "51.0.2704.84", + "1.2.4": "51.0.2704.103", + "1.2.5": "51.0.2704.103", + "1.2.6": "51.0.2704.106", + "1.2.7": "51.0.2704.106", + "1.2.8": "51.0.2704.106", + "1.3.0": "52.0.2743.82", + "1.3.1": "52.0.2743.82", + "1.3.2": "52.0.2743.82", + "1.3.3": "52.0.2743.82", + "1.3.4": "52.0.2743.82", + "1.3.5": "52.0.2743.82", + "1.3.6": "52.0.2743.82", + "1.3.7": "52.0.2743.82", + "1.3.9": "52.0.2743.82", + "1.3.10": "52.0.2743.82", + "1.3.13": "52.0.2743.82", + "1.3.14": "52.0.2743.82", + "1.3.15": "52.0.2743.82", + "1.4.0": "53.0.2785.113", + "1.4.1": "53.0.2785.113", + "1.4.2": "53.0.2785.113", + "1.4.3": "53.0.2785.113", + "1.4.4": "53.0.2785.113", + "1.4.5": "53.0.2785.113", + "1.4.6": "53.0.2785.143", + "1.4.7": "53.0.2785.143", + "1.4.8": "53.0.2785.143", + "1.4.10": "53.0.2785.143", + "1.4.11": "53.0.2785.143", + "1.4.12": "54.0.2840.51", + "1.4.13": "53.0.2785.143", + "1.4.14": "53.0.2785.143", + "1.4.15": "53.0.2785.143", + "1.4.16": "53.0.2785.143", + "1.5.0": "54.0.2840.101", + "1.5.1": "54.0.2840.101", + "1.6.0": "56.0.2924.87", + "1.6.1": "56.0.2924.87", + "1.6.2": "56.0.2924.87", + "1.6.3": "56.0.2924.87", + "1.6.4": "56.0.2924.87", + "1.6.5": "56.0.2924.87", + "1.6.6": "56.0.2924.87", + "1.6.7": "56.0.2924.87", + "1.6.8": "56.0.2924.87", + "1.6.9": "56.0.2924.87", + "1.6.10": "56.0.2924.87", + "1.6.11": "56.0.2924.87", + "1.6.12": "56.0.2924.87", + "1.6.13": "56.0.2924.87", + "1.6.14": "56.0.2924.87", + "1.6.15": "56.0.2924.87", + "1.6.16": "56.0.2924.87", + "1.6.17": "56.0.2924.87", + "1.6.18": "56.0.2924.87", + "1.7.0": "58.0.3029.110", + "1.7.1": "58.0.3029.110", + "1.7.2": "58.0.3029.110", + "1.7.3": "58.0.3029.110", + "1.7.4": "58.0.3029.110", + "1.7.5": "58.0.3029.110", + "1.7.6": "58.0.3029.110", + "1.7.7": "58.0.3029.110", + "1.7.8": "58.0.3029.110", + "1.7.9": "58.0.3029.110", + "1.7.10": "58.0.3029.110", + "1.7.11": "58.0.3029.110", + "1.7.12": "58.0.3029.110", + "1.7.13": "58.0.3029.110", + "1.7.14": "58.0.3029.110", + "1.7.15": "58.0.3029.110", + "1.7.16": "58.0.3029.110", + "1.8.0": "59.0.3071.115", + "1.8.1": "59.0.3071.115", + "1.8.2-beta.1": "59.0.3071.115", + "1.8.2-beta.2": "59.0.3071.115", + "1.8.2-beta.3": "59.0.3071.115", + "1.8.2-beta.4": "59.0.3071.115", + "1.8.2-beta.5": "59.0.3071.115", + "1.8.2": "59.0.3071.115", + "1.8.3": "59.0.3071.115", + "1.8.4": "59.0.3071.115", + "1.8.5": "59.0.3071.115", + "1.8.6": "59.0.3071.115", + "1.8.7": "59.0.3071.115", + "1.8.8": "59.0.3071.115", + "2.0.0-beta.1": "61.0.3163.100", + "2.0.0-beta.2": "61.0.3163.100", + "2.0.0-beta.3": "61.0.3163.100", + "2.0.0-beta.4": "61.0.3163.100", + "2.0.0-beta.5": "61.0.3163.100", + "2.0.0-beta.6": "61.0.3163.100", + "2.0.0-beta.7": "61.0.3163.100", + "2.0.0-beta.8": "61.0.3163.100", + "2.0.0": "61.0.3163.100", + "2.0.1": "61.0.3163.100", + "2.0.2": "61.0.3163.100", + "2.0.3": "61.0.3163.100", + "2.0.4": "61.0.3163.100", + "2.0.5": "61.0.3163.100", + "2.0.6": "61.0.3163.100", + "2.0.7": "61.0.3163.100", + "2.0.8": "61.0.3163.100", + "2.0.9": "61.0.3163.100", + "2.0.10": "61.0.3163.100", + "2.0.11": "61.0.3163.100", + "2.0.12": "61.0.3163.100", + "2.0.13": "61.0.3163.100", + "2.0.14": "61.0.3163.100", + "2.0.15": "61.0.3163.100", + "2.0.16": "61.0.3163.100", + "2.0.17": "61.0.3163.100", + "2.0.18": "61.0.3163.100", + "2.1.0-unsupported.20180809": "61.0.3163.100", + "3.0.0-beta.1": "66.0.3359.181", + "3.0.0-beta.2": "66.0.3359.181", + "3.0.0-beta.3": "66.0.3359.181", + "3.0.0-beta.4": "66.0.3359.181", + "3.0.0-beta.5": "66.0.3359.181", + "3.0.0-beta.6": "66.0.3359.181", + "3.0.0-beta.7": "66.0.3359.181", + "3.0.0-beta.8": "66.0.3359.181", + "3.0.0-beta.9": "66.0.3359.181", + "3.0.0-beta.10": "66.0.3359.181", + "3.0.0-beta.11": "66.0.3359.181", + "3.0.0-beta.12": "66.0.3359.181", + "3.0.0-beta.13": "66.0.3359.181", + "3.0.0": "66.0.3359.181", + "3.0.1": "66.0.3359.181", + "3.0.2": "66.0.3359.181", + "3.0.3": "66.0.3359.181", + "3.0.4": "66.0.3359.181", + "3.0.5": "66.0.3359.181", + "3.0.6": "66.0.3359.181", + "3.0.7": "66.0.3359.181", + "3.0.8": "66.0.3359.181", + "3.0.9": "66.0.3359.181", + "3.0.10": "66.0.3359.181", + "3.0.11": "66.0.3359.181", + "3.0.12": "66.0.3359.181", + "3.0.13": "66.0.3359.181", + "3.0.14": "66.0.3359.181", + "3.0.15": "66.0.3359.181", + "3.0.16": "66.0.3359.181", + "3.1.0-beta.1": "66.0.3359.181", + "3.1.0-beta.2": "66.0.3359.181", + "3.1.0-beta.3": "66.0.3359.181", + "3.1.0-beta.4": "66.0.3359.181", + "3.1.0-beta.5": "66.0.3359.181", + "3.1.0": "66.0.3359.181", + "3.1.1": "66.0.3359.181", + "3.1.2": "66.0.3359.181", + "3.1.3": "66.0.3359.181", + "3.1.4": "66.0.3359.181", + "3.1.5": "66.0.3359.181", + "3.1.6": "66.0.3359.181", + "3.1.7": "66.0.3359.181", + "3.1.8": "66.0.3359.181", + "3.1.9": "66.0.3359.181", + "3.1.10": "66.0.3359.181", + "3.1.11": "66.0.3359.181", + "3.1.12": "66.0.3359.181", + "3.1.13": "66.0.3359.181", + "4.0.0-beta.1": "69.0.3497.106", + "4.0.0-beta.2": "69.0.3497.106", + "4.0.0-beta.3": "69.0.3497.106", + "4.0.0-beta.4": "69.0.3497.106", + "4.0.0-beta.5": "69.0.3497.106", + "4.0.0-beta.6": "69.0.3497.106", + "4.0.0-beta.7": "69.0.3497.106", + "4.0.0-beta.8": "69.0.3497.106", + "4.0.0-beta.9": "69.0.3497.106", + "4.0.0-beta.10": "69.0.3497.106", + "4.0.0-beta.11": "69.0.3497.106", + "4.0.0": "69.0.3497.106", + "4.0.1": "69.0.3497.106", + "4.0.2": "69.0.3497.106", + "4.0.3": "69.0.3497.106", + "4.0.4": "69.0.3497.106", + "4.0.5": "69.0.3497.106", + "4.0.6": "69.0.3497.106", + "4.0.7": "69.0.3497.128", + "4.0.8": "69.0.3497.128", + "4.1.0": "69.0.3497.128", + "4.1.1": "69.0.3497.128", + "4.1.2": "69.0.3497.128", + "4.1.3": "69.0.3497.128", + "4.1.4": "69.0.3497.128", + "4.1.5": "69.0.3497.128", + "4.2.0": "69.0.3497.128", + "4.2.1": "69.0.3497.128", + "4.2.2": "69.0.3497.128", + "4.2.3": "69.0.3497.128", + "4.2.4": "69.0.3497.128", + "4.2.5": "69.0.3497.128", + "4.2.6": "69.0.3497.128", + "4.2.7": "69.0.3497.128", + "4.2.8": "69.0.3497.128", + "4.2.9": "69.0.3497.128", + "4.2.10": "69.0.3497.128", + "4.2.11": "69.0.3497.128", + "4.2.12": "69.0.3497.128", + "5.0.0-beta.1": "72.0.3626.52", + "5.0.0-beta.2": "72.0.3626.52", + "5.0.0-beta.3": "73.0.3683.27", + "5.0.0-beta.4": "73.0.3683.54", + "5.0.0-beta.5": "73.0.3683.61", + "5.0.0-beta.6": "73.0.3683.84", + "5.0.0-beta.7": "73.0.3683.94", + "5.0.0-beta.8": "73.0.3683.104", + "5.0.0-beta.9": "73.0.3683.117", + "5.0.0": "73.0.3683.119", + "5.0.1": "73.0.3683.121", + "5.0.2": "73.0.3683.121", + "5.0.3": "73.0.3683.121", + "5.0.4": "73.0.3683.121", + "5.0.5": "73.0.3683.121", + "5.0.6": "73.0.3683.121", + "5.0.7": "73.0.3683.121", + "5.0.8": "73.0.3683.121", + "5.0.9": "73.0.3683.121", + "5.0.10": "73.0.3683.121", + "5.0.11": "73.0.3683.121", + "5.0.12": "73.0.3683.121", + "5.0.13": "73.0.3683.121", + "6.0.0-beta.1": "76.0.3774.1", + "6.0.0-beta.2": "76.0.3783.1", + "6.0.0-beta.3": "76.0.3783.1", + "6.0.0-beta.4": "76.0.3783.1", + "6.0.0-beta.5": "76.0.3805.4", + "6.0.0-beta.6": "76.0.3809.3", + "6.0.0-beta.7": "76.0.3809.22", + "6.0.0-beta.8": "76.0.3809.26", + "6.0.0-beta.9": "76.0.3809.26", + "6.0.0-beta.10": "76.0.3809.37", + "6.0.0-beta.11": "76.0.3809.42", + "6.0.0-beta.12": "76.0.3809.54", + "6.0.0-beta.13": "76.0.3809.60", + "6.0.0-beta.14": "76.0.3809.68", + "6.0.0-beta.15": "76.0.3809.74", + "6.0.0": "76.0.3809.88", + "6.0.1": "76.0.3809.102", + "6.0.2": "76.0.3809.110", + "6.0.3": "76.0.3809.126", + "6.0.4": "76.0.3809.131", + "6.0.5": "76.0.3809.136", + "6.0.6": "76.0.3809.138", + "6.0.7": "76.0.3809.139", + "6.0.8": "76.0.3809.146", + "6.0.9": "76.0.3809.146", + "6.0.10": "76.0.3809.146", + "6.0.11": "76.0.3809.146", + "6.0.12": "76.0.3809.146", + "6.1.0": "76.0.3809.146", + "6.1.1": "76.0.3809.146", + "6.1.2": "76.0.3809.146", + "6.1.3": "76.0.3809.146", + "6.1.4": "76.0.3809.146", + "6.1.5": "76.0.3809.146", + "6.1.6": "76.0.3809.146", + "6.1.7": "76.0.3809.146", + "6.1.8": "76.0.3809.146", + "6.1.9": "76.0.3809.146", + "6.1.10": "76.0.3809.146", + "6.1.11": "76.0.3809.146", + "6.1.12": "76.0.3809.146", + "7.0.0-beta.1": "78.0.3866.0", + "7.0.0-beta.2": "78.0.3866.0", + "7.0.0-beta.3": "78.0.3866.0", + "7.0.0-beta.4": "78.0.3896.6", + "7.0.0-beta.5": "78.0.3905.1", + "7.0.0-beta.6": "78.0.3905.1", + "7.0.0-beta.7": "78.0.3905.1", + "7.0.0": "78.0.3905.1", + "7.0.1": "78.0.3904.92", + "7.1.0": "78.0.3904.94", + "7.1.1": "78.0.3904.99", + "7.1.2": "78.0.3904.113", + "7.1.3": "78.0.3904.126", + "7.1.4": "78.0.3904.130", + "7.1.5": "78.0.3904.130", + "7.1.6": "78.0.3904.130", + "7.1.7": "78.0.3904.130", + "7.1.8": "78.0.3904.130", + "7.1.9": "78.0.3904.130", + "7.1.10": "78.0.3904.130", + "7.1.11": "78.0.3904.130", + "7.1.12": "78.0.3904.130", + "7.1.13": "78.0.3904.130", + "7.1.14": "78.0.3904.130", + "7.2.0": "78.0.3904.130", + "7.2.1": "78.0.3904.130", + "7.2.2": "78.0.3904.130", + "7.2.3": "78.0.3904.130", + "7.2.4": "78.0.3904.130", + "7.3.0": "78.0.3904.130", + "7.3.1": "78.0.3904.130", + "7.3.2": "78.0.3904.130", + "7.3.3": "78.0.3904.130", + "8.0.0-beta.1": "79.0.3931.0", + "8.0.0-beta.2": "79.0.3931.0", + "8.0.0-beta.3": "80.0.3955.0", + "8.0.0-beta.4": "80.0.3955.0", + "8.0.0-beta.5": "80.0.3987.14", + "8.0.0-beta.6": "80.0.3987.51", + "8.0.0-beta.7": "80.0.3987.59", + "8.0.0-beta.8": "80.0.3987.75", + "8.0.0-beta.9": "80.0.3987.75", + "8.0.0": "80.0.3987.86", + "8.0.1": "80.0.3987.86", + "8.0.2": "80.0.3987.86", + "8.0.3": "80.0.3987.134", + "8.1.0": "80.0.3987.137", + "8.1.1": "80.0.3987.141", + "8.2.0": "80.0.3987.158", + "8.2.1": "80.0.3987.163", + "8.2.2": "80.0.3987.163", + "8.2.3": "80.0.3987.163", + "8.2.4": "80.0.3987.165", + "8.2.5": "80.0.3987.165", + "8.3.0": "80.0.3987.165", + "8.3.1": "80.0.3987.165", + "8.3.2": "80.0.3987.165", + "8.3.3": "80.0.3987.165", + "8.3.4": "80.0.3987.165", + "8.4.0": "80.0.3987.165", + "8.4.1": "80.0.3987.165", + "8.5.0": "80.0.3987.165", + "8.5.1": "80.0.3987.165", + "8.5.2": "80.0.3987.165", + "8.5.3": "80.0.3987.163", + "8.5.4": "80.0.3987.163", + "8.5.5": "80.0.3987.163", + "9.0.0-beta.1": "82.0.4048.0", + "9.0.0-beta.2": "82.0.4048.0", + "9.0.0-beta.3": "82.0.4048.0", + "9.0.0-beta.4": "82.0.4048.0", + "9.0.0-beta.5": "82.0.4048.0", + "9.0.0-beta.6": "82.0.4058.2", + "9.0.0-beta.7": "82.0.4058.2", + "9.0.0-beta.9": "82.0.4058.2", + "9.0.0-beta.10": "82.0.4085.10", + "9.0.0-beta.11": "82.0.4085.14", + "9.0.0-beta.12": "82.0.4085.14", + "9.0.0-beta.13": "82.0.4085.14", + "9.0.0-beta.14": "82.0.4085.27", + "9.0.0-beta.15": "83.0.4102.3", + "9.0.0-beta.16": "83.0.4102.3", + "9.0.0-beta.17": "83.0.4103.14", + "9.0.0-beta.18": "83.0.4103.16", + "9.0.0-beta.19": "83.0.4103.24", + "9.0.0-beta.20": "83.0.4103.26", + "9.0.0-beta.21": "83.0.4103.26", + "9.0.0-beta.22": "83.0.4103.34", + "9.0.0-beta.23": "83.0.4103.44", + "9.0.0-beta.24": "83.0.4103.45", + "9.0.0": "83.0.4103.64", + "9.0.1": "83.0.4103.94", + "9.0.2": "83.0.4103.94", + "9.0.3": "83.0.4103.100", + "9.0.4": "83.0.4103.104", + "9.0.5": "83.0.4103.119", + "9.1.0": "83.0.4103.122", + "9.1.1": "83.0.4103.122", + "9.1.2": "83.0.4103.122", + "9.2.0": "83.0.4103.122", + "9.2.1": "83.0.4103.122", + "9.3.0": "83.0.4103.122", + "9.3.1": "83.0.4103.122", + "9.3.2": "83.0.4103.122", + "9.3.3": "83.0.4103.122", + "9.3.4": "83.0.4103.122", + "9.3.5": "83.0.4103.122", + "9.4.0": "83.0.4103.122", + "9.4.1": "83.0.4103.122", + "9.4.2": "83.0.4103.122", + "9.4.3": "83.0.4103.122", + "9.4.4": "83.0.4103.122", + "10.0.0-beta.1": "84.0.4129.0", + "10.0.0-beta.2": "84.0.4129.0", + "10.0.0-beta.3": "85.0.4161.2", + "10.0.0-beta.4": "85.0.4161.2", + "10.0.0-beta.8": "85.0.4181.1", + "10.0.0-beta.9": "85.0.4181.1", + "10.0.0-beta.10": "85.0.4183.19", + "10.0.0-beta.11": "85.0.4183.20", + "10.0.0-beta.12": "85.0.4183.26", + "10.0.0-beta.13": "85.0.4183.39", + "10.0.0-beta.14": "85.0.4183.39", + "10.0.0-beta.15": "85.0.4183.39", + "10.0.0-beta.17": "85.0.4183.39", + "10.0.0-beta.19": "85.0.4183.39", + "10.0.0-beta.20": "85.0.4183.39", + "10.0.0-beta.21": "85.0.4183.39", + "10.0.0-beta.23": "85.0.4183.70", + "10.0.0-beta.24": "85.0.4183.78", + "10.0.0-beta.25": "85.0.4183.80", + "10.0.0": "85.0.4183.84", + "10.0.1": "85.0.4183.86", + "10.1.0": "85.0.4183.87", + "10.1.1": "85.0.4183.93", + "10.1.2": "85.0.4183.98", + "10.1.3": "85.0.4183.121", + "10.1.4": "85.0.4183.121", + "10.1.5": "85.0.4183.121", + "10.1.6": "85.0.4183.121", + "10.1.7": "85.0.4183.121", + "10.2.0": "85.0.4183.121", + "10.3.0": "85.0.4183.121", + "10.3.1": "85.0.4183.121", + "10.3.2": "85.0.4183.121", + "10.4.0": "85.0.4183.121", + "10.4.1": "85.0.4183.121", + "10.4.2": "85.0.4183.121", + "10.4.3": "85.0.4183.121", + "10.4.4": "85.0.4183.121", + "10.4.5": "85.0.4183.121", + "10.4.6": "85.0.4183.121", + "10.4.7": "85.0.4183.121", + "11.0.0-beta.1": "86.0.4234.0", + "11.0.0-beta.3": "86.0.4234.0", + "11.0.0-beta.4": "86.0.4234.0", + "11.0.0-beta.5": "86.0.4234.0", + "11.0.0-beta.6": "86.0.4234.0", + "11.0.0-beta.7": "86.0.4234.0", + "11.0.0-beta.8": "87.0.4251.1", + "11.0.0-beta.9": "87.0.4251.1", + "11.0.0-beta.11": "87.0.4251.1", + "11.0.0-beta.12": "87.0.4280.11", + "11.0.0-beta.13": "87.0.4280.11", + "11.0.0-beta.16": "87.0.4280.27", + "11.0.0-beta.17": "87.0.4280.27", + "11.0.0-beta.18": "87.0.4280.27", + "11.0.0-beta.19": "87.0.4280.27", + "11.0.0-beta.20": "87.0.4280.40", + "11.0.0-beta.22": "87.0.4280.47", + "11.0.0-beta.23": "87.0.4280.47", + "11.0.0": "87.0.4280.60", + "11.0.1": "87.0.4280.60", + "11.0.2": "87.0.4280.67", + "11.0.3": "87.0.4280.67", + "11.0.4": "87.0.4280.67", + "11.0.5": "87.0.4280.88", + "11.1.0": "87.0.4280.88", + "11.1.1": "87.0.4280.88", + "11.2.0": "87.0.4280.141", + "11.2.1": "87.0.4280.141", + "11.2.2": "87.0.4280.141", + "11.2.3": "87.0.4280.141", + "11.3.0": "87.0.4280.141", + "11.4.0": "87.0.4280.141", + "11.4.1": "87.0.4280.141", + "11.4.2": "87.0.4280.141", + "11.4.3": "87.0.4280.141", + "11.4.4": "87.0.4280.141", + "11.4.5": "87.0.4280.141", + "11.4.6": "87.0.4280.141", + "11.4.7": "87.0.4280.141", + "11.4.8": "87.0.4280.141", + "11.4.9": "87.0.4280.141", + "11.4.10": "87.0.4280.141", + "11.4.11": "87.0.4280.141", + "11.4.12": "87.0.4280.141", + "11.5.0": "87.0.4280.141", + "12.0.0-beta.1": "89.0.4328.0", + "12.0.0-beta.3": "89.0.4328.0", + "12.0.0-beta.4": "89.0.4328.0", + "12.0.0-beta.5": "89.0.4328.0", + "12.0.0-beta.6": "89.0.4328.0", + "12.0.0-beta.7": "89.0.4328.0", + "12.0.0-beta.8": "89.0.4328.0", + "12.0.0-beta.9": "89.0.4328.0", + "12.0.0-beta.10": "89.0.4328.0", + "12.0.0-beta.11": "89.0.4328.0", + "12.0.0-beta.12": "89.0.4328.0", + "12.0.0-beta.14": "89.0.4328.0", + "12.0.0-beta.16": "89.0.4348.1", + "12.0.0-beta.18": "89.0.4348.1", + "12.0.0-beta.19": "89.0.4348.1", + "12.0.0-beta.20": "89.0.4348.1", + "12.0.0-beta.21": "89.0.4388.2", + "12.0.0-beta.22": "89.0.4388.2", + "12.0.0-beta.23": "89.0.4388.2", + "12.0.0-beta.24": "89.0.4388.2", + "12.0.0-beta.25": "89.0.4388.2", + "12.0.0-beta.26": "89.0.4388.2", + "12.0.0-beta.27": "89.0.4389.23", + "12.0.0-beta.28": "89.0.4389.23", + "12.0.0-beta.29": "89.0.4389.23", + "12.0.0-beta.30": "89.0.4389.58", + "12.0.0-beta.31": "89.0.4389.58", + "12.0.0": "89.0.4389.69", + "12.0.1": "89.0.4389.82", + "12.0.2": "89.0.4389.90", + "12.0.3": "89.0.4389.114", + "12.0.4": "89.0.4389.114", + "12.0.5": "89.0.4389.128", + "12.0.6": "89.0.4389.128", + "12.0.7": "89.0.4389.128", + "12.0.8": "89.0.4389.128", + "12.0.9": "89.0.4389.128", + "12.0.10": "89.0.4389.128", + "12.0.11": "89.0.4389.128", + "12.0.12": "89.0.4389.128", + "12.0.13": "89.0.4389.128", + "12.0.14": "89.0.4389.128", + "12.0.15": "89.0.4389.128", + "12.0.16": "89.0.4389.128", + "12.0.17": "89.0.4389.128", + "12.0.18": "89.0.4389.128", + "12.1.0": "89.0.4389.128", + "12.1.1": "89.0.4389.128", + "12.1.2": "89.0.4389.128", + "12.2.0": "89.0.4389.128", + "12.2.1": "89.0.4389.128", + "12.2.2": "89.0.4389.128", + "12.2.3": "89.0.4389.128", + "13.0.0-beta.2": "90.0.4402.0", + "13.0.0-beta.3": "90.0.4402.0", + "13.0.0-beta.4": "90.0.4415.0", + "13.0.0-beta.5": "90.0.4415.0", + "13.0.0-beta.6": "90.0.4415.0", + "13.0.0-beta.7": "90.0.4415.0", + "13.0.0-beta.8": "90.0.4415.0", + "13.0.0-beta.9": "90.0.4415.0", + "13.0.0-beta.10": "90.0.4415.0", + "13.0.0-beta.11": "90.0.4415.0", + "13.0.0-beta.12": "90.0.4415.0", + "13.0.0-beta.13": "90.0.4415.0", + "13.0.0-beta.14": "91.0.4448.0", + "13.0.0-beta.16": "91.0.4448.0", + "13.0.0-beta.17": "91.0.4448.0", + "13.0.0-beta.18": "91.0.4448.0", + "13.0.0-beta.20": "91.0.4448.0", + "13.0.0-beta.21": "91.0.4472.33", + "13.0.0-beta.22": "91.0.4472.33", + "13.0.0-beta.23": "91.0.4472.33", + "13.0.0-beta.24": "91.0.4472.38", + "13.0.0-beta.25": "91.0.4472.38", + "13.0.0-beta.26": "91.0.4472.38", + "13.0.0-beta.27": "91.0.4472.38", + "13.0.0-beta.28": "91.0.4472.38", + "13.0.0": "91.0.4472.69", + "13.0.1": "91.0.4472.69", + "13.1.0": "91.0.4472.77", + "13.1.1": "91.0.4472.77", + "13.1.2": "91.0.4472.77", + "13.1.3": "91.0.4472.106", + "13.1.4": "91.0.4472.106", + "13.1.5": "91.0.4472.124", + "13.1.6": "91.0.4472.124", + "13.1.7": "91.0.4472.124", + "13.1.8": "91.0.4472.164", + "13.1.9": "91.0.4472.164", + "13.2.0": "91.0.4472.164", + "13.2.1": "91.0.4472.164", + "13.2.2": "91.0.4472.164", + "13.2.3": "91.0.4472.164", + "13.3.0": "91.0.4472.164", + "13.4.0": "91.0.4472.164", + "13.5.0": "91.0.4472.164", + "13.5.1": "91.0.4472.164", + "13.5.2": "91.0.4472.164", + "13.6.0": "91.0.4472.164", + "13.6.1": "91.0.4472.164", + "13.6.2": "91.0.4472.164", + "13.6.3": "91.0.4472.164", + "13.6.6": "91.0.4472.164", + "13.6.7": "91.0.4472.164", + "13.6.8": "91.0.4472.164", + "13.6.9": "91.0.4472.164", + "14.0.0-beta.1": "92.0.4511.0", + "14.0.0-beta.2": "92.0.4511.0", + "14.0.0-beta.3": "92.0.4511.0", + "14.0.0-beta.5": "93.0.4536.0", + "14.0.0-beta.6": "93.0.4536.0", + "14.0.0-beta.7": "93.0.4536.0", + "14.0.0-beta.8": "93.0.4536.0", + "14.0.0-beta.9": "93.0.4539.0", + "14.0.0-beta.10": "93.0.4539.0", + "14.0.0-beta.11": "93.0.4557.4", + "14.0.0-beta.12": "93.0.4557.4", + "14.0.0-beta.13": "93.0.4566.0", + "14.0.0-beta.14": "93.0.4566.0", + "14.0.0-beta.15": "93.0.4566.0", + "14.0.0-beta.16": "93.0.4566.0", + "14.0.0-beta.17": "93.0.4566.0", + "14.0.0-beta.18": "93.0.4577.15", + "14.0.0-beta.19": "93.0.4577.15", + "14.0.0-beta.20": "93.0.4577.15", + "14.0.0-beta.21": "93.0.4577.15", + "14.0.0-beta.22": "93.0.4577.25", + "14.0.0-beta.23": "93.0.4577.25", + "14.0.0-beta.24": "93.0.4577.51", + "14.0.0-beta.25": "93.0.4577.51", + "14.0.0": "93.0.4577.58", + "14.0.1": "93.0.4577.63", + "14.0.2": "93.0.4577.82", + "14.1.0": "93.0.4577.82", + "14.1.1": "93.0.4577.82", + "14.2.0": "93.0.4577.82", + "14.2.1": "93.0.4577.82", + "14.2.2": "93.0.4577.82", + "14.2.3": "93.0.4577.82", + "14.2.4": "93.0.4577.82", + "14.2.5": "93.0.4577.82", + "14.2.6": "93.0.4577.82", + "14.2.7": "93.0.4577.82", + "14.2.8": "93.0.4577.82", + "14.2.9": "93.0.4577.82", + "15.0.0-alpha.1": "93.0.4566.0", + "15.0.0-alpha.2": "93.0.4566.0", + "15.0.0-alpha.3": "94.0.4584.0", + "15.0.0-alpha.4": "94.0.4584.0", + "15.0.0-alpha.5": "94.0.4584.0", + "15.0.0-alpha.6": "94.0.4584.0", + "15.0.0-alpha.7": "94.0.4590.2", + "15.0.0-alpha.8": "94.0.4590.2", + "15.0.0-alpha.9": "94.0.4590.2", + "15.0.0-alpha.10": "94.0.4606.12", + "15.0.0-beta.1": "94.0.4606.20", + "15.0.0-beta.2": "94.0.4606.20", + "15.0.0-beta.3": "94.0.4606.31", + "15.0.0-beta.4": "94.0.4606.31", + "15.0.0-beta.5": "94.0.4606.31", + "15.0.0-beta.6": "94.0.4606.31", + "15.0.0-beta.7": "94.0.4606.31", + "15.0.0": "94.0.4606.51", + "15.1.0": "94.0.4606.61", + "15.1.1": "94.0.4606.61", + "15.1.2": "94.0.4606.71", + "15.2.0": "94.0.4606.81", + "15.3.0": "94.0.4606.81", + "15.3.1": "94.0.4606.81", + "15.3.2": "94.0.4606.81", + "15.3.3": "94.0.4606.81", + "15.3.4": "94.0.4606.81", + "15.3.5": "94.0.4606.81", + "15.3.6": "94.0.4606.81", + "15.3.7": "94.0.4606.81", + "15.4.0": "94.0.4606.81", + "15.4.1": "94.0.4606.81", + "15.4.2": "94.0.4606.81", + "15.5.0": "94.0.4606.81", + "15.5.1": "94.0.4606.81", + "15.5.2": "94.0.4606.81", + "15.5.3": "94.0.4606.81", + "15.5.4": "94.0.4606.81", + "15.5.5": "94.0.4606.81", + "15.5.6": "94.0.4606.81", + "15.5.7": "94.0.4606.81", + "16.0.0-alpha.1": "95.0.4629.0", + "16.0.0-alpha.2": "95.0.4629.0", + "16.0.0-alpha.3": "95.0.4629.0", + "16.0.0-alpha.4": "95.0.4629.0", + "16.0.0-alpha.5": "95.0.4629.0", + "16.0.0-alpha.6": "95.0.4629.0", + "16.0.0-alpha.7": "95.0.4629.0", + "16.0.0-alpha.8": "96.0.4647.0", + "16.0.0-alpha.9": "96.0.4647.0", + "16.0.0-beta.1": "96.0.4647.0", + "16.0.0-beta.2": "96.0.4647.0", + "16.0.0-beta.3": "96.0.4647.0", + "16.0.0-beta.4": "96.0.4664.18", + "16.0.0-beta.5": "96.0.4664.18", + "16.0.0-beta.6": "96.0.4664.27", + "16.0.0-beta.7": "96.0.4664.27", + "16.0.0-beta.8": "96.0.4664.35", + "16.0.0-beta.9": "96.0.4664.35", + "16.0.0": "96.0.4664.45", + "16.0.1": "96.0.4664.45", + "16.0.2": "96.0.4664.55", + "16.0.3": "96.0.4664.55", + "16.0.4": "96.0.4664.55", + "16.0.5": "96.0.4664.55", + "16.0.6": "96.0.4664.110", + "16.0.7": "96.0.4664.110", + "16.0.8": "96.0.4664.110", + "16.0.9": "96.0.4664.174", + "16.0.10": "96.0.4664.174", + "16.1.0": "96.0.4664.174", + "16.1.1": "96.0.4664.174", + "16.2.0": "96.0.4664.174", + "16.2.1": "96.0.4664.174", + "16.2.2": "96.0.4664.174", + "16.2.3": "96.0.4664.174", + "16.2.4": "96.0.4664.174", + "16.2.5": "96.0.4664.174", + "16.2.6": "96.0.4664.174", + "16.2.7": "96.0.4664.174", + "16.2.8": "96.0.4664.174", + "17.0.0-alpha.1": "96.0.4664.4", + "17.0.0-alpha.2": "96.0.4664.4", + "17.0.0-alpha.3": "96.0.4664.4", + "17.0.0-alpha.4": "98.0.4706.0", + "17.0.0-alpha.5": "98.0.4706.0", + "17.0.0-alpha.6": "98.0.4706.0", + "17.0.0-beta.1": "98.0.4706.0", + "17.0.0-beta.2": "98.0.4706.0", + "17.0.0-beta.3": "98.0.4758.9", + "17.0.0-beta.4": "98.0.4758.11", + "17.0.0-beta.5": "98.0.4758.11", + "17.0.0-beta.6": "98.0.4758.11", + "17.0.0-beta.7": "98.0.4758.11", + "17.0.0-beta.8": "98.0.4758.11", + "17.0.0-beta.9": "98.0.4758.11", + "17.0.0": "98.0.4758.74", + "17.0.1": "98.0.4758.82", + "17.1.0": "98.0.4758.102", + "17.1.1": "98.0.4758.109", + "17.1.2": "98.0.4758.109", + "17.2.0": "98.0.4758.109", + "17.3.0": "98.0.4758.141", + "17.3.1": "98.0.4758.141", + "17.4.0": "98.0.4758.141", + "17.4.1": "98.0.4758.141", + "17.4.2": "98.0.4758.141", + "17.4.3": "98.0.4758.141", + "17.4.4": "98.0.4758.141", + "17.4.5": "98.0.4758.141", + "17.4.6": "98.0.4758.141", + "17.4.7": "98.0.4758.141", + "17.4.8": "98.0.4758.141", + "17.4.9": "98.0.4758.141", + "17.4.10": "98.0.4758.141", + "17.4.11": "98.0.4758.141", + "18.0.0-alpha.1": "99.0.4767.0", + "18.0.0-alpha.2": "99.0.4767.0", + "18.0.0-alpha.3": "99.0.4767.0", + "18.0.0-alpha.4": "99.0.4767.0", + "18.0.0-alpha.5": "99.0.4767.0", + "18.0.0-beta.1": "100.0.4894.0", + "18.0.0-beta.2": "100.0.4894.0", + "18.0.0-beta.3": "100.0.4894.0", + "18.0.0-beta.4": "100.0.4894.0", + "18.0.0-beta.5": "100.0.4894.0", + "18.0.0-beta.6": "100.0.4894.0", + "18.0.0": "100.0.4896.56", + "18.0.1": "100.0.4896.60", + "18.0.2": "100.0.4896.60", + "18.0.3": "100.0.4896.75", + "18.0.4": "100.0.4896.75", + "18.1.0": "100.0.4896.127", + "18.2.0": "100.0.4896.143", + "18.2.1": "100.0.4896.143", + "18.2.2": "100.0.4896.143", + "18.2.3": "100.0.4896.143", + "18.2.4": "100.0.4896.160", + "18.3.0": "100.0.4896.160", + "18.3.1": "100.0.4896.160", + "18.3.2": "100.0.4896.160", + "18.3.3": "100.0.4896.160", + "18.3.4": "100.0.4896.160", + "18.3.5": "100.0.4896.160", + "18.3.6": "100.0.4896.160", + "18.3.7": "100.0.4896.160", + "18.3.8": "100.0.4896.160", + "18.3.9": "100.0.4896.160", + "18.3.11": "100.0.4896.160", + "18.3.12": "100.0.4896.160", + "18.3.13": "100.0.4896.160", + "18.3.14": "100.0.4896.160", + "18.3.15": "100.0.4896.160", + "19.0.0-alpha.1": "102.0.4962.3", + "19.0.0-alpha.2": "102.0.4971.0", + "19.0.0-alpha.3": "102.0.4971.0", + "19.0.0-alpha.4": "102.0.4989.0", + "19.0.0-alpha.5": "102.0.4989.0", + "19.0.0-beta.1": "102.0.4999.0", + "19.0.0-beta.2": "102.0.4999.0", + "19.0.0-beta.3": "102.0.4999.0", + "19.0.0-beta.4": "102.0.5005.27", + "19.0.0-beta.5": "102.0.5005.40", + "19.0.0-beta.6": "102.0.5005.40", + "19.0.0-beta.7": "102.0.5005.40", + "19.0.0-beta.8": "102.0.5005.49", + "19.0.0": "102.0.5005.61", + "19.0.1": "102.0.5005.61", + "19.0.2": "102.0.5005.63", + "19.0.3": "102.0.5005.63", + "19.0.4": "102.0.5005.63", + "19.0.5": "102.0.5005.115", + "19.0.6": "102.0.5005.115", + "19.0.7": "102.0.5005.134", + "19.0.8": "102.0.5005.148", + "19.0.9": "102.0.5005.167", + "19.0.10": "102.0.5005.167", + "19.0.11": "102.0.5005.167", + "19.0.12": "102.0.5005.167", + "19.0.13": "102.0.5005.167", + "19.0.14": "102.0.5005.167", + "19.0.15": "102.0.5005.167", + "19.0.16": "102.0.5005.167", + "19.0.17": "102.0.5005.167", + "19.1.0": "102.0.5005.167", + "19.1.1": "102.0.5005.167", + "19.1.2": "102.0.5005.167", + "19.1.3": "102.0.5005.167", + "19.1.4": "102.0.5005.167", + "19.1.5": "102.0.5005.167", + "19.1.6": "102.0.5005.167", + "19.1.7": "102.0.5005.167", + "19.1.8": "102.0.5005.167", + "19.1.9": "102.0.5005.167", + "20.0.0-alpha.1": "103.0.5044.0", + "20.0.0-alpha.2": "104.0.5073.0", + "20.0.0-alpha.3": "104.0.5073.0", + "20.0.0-alpha.4": "104.0.5073.0", + "20.0.0-alpha.5": "104.0.5073.0", + "20.0.0-alpha.6": "104.0.5073.0", + "20.0.0-alpha.7": "104.0.5073.0", + "20.0.0-beta.1": "104.0.5073.0", + "20.0.0-beta.2": "104.0.5073.0", + "20.0.0-beta.3": "104.0.5073.0", + "20.0.0-beta.4": "104.0.5073.0", + "20.0.0-beta.5": "104.0.5073.0", + "20.0.0-beta.6": "104.0.5073.0", + "20.0.0-beta.7": "104.0.5073.0", + "20.0.0-beta.8": "104.0.5073.0", + "20.0.0-beta.9": "104.0.5112.39", + "20.0.0-beta.10": "104.0.5112.48", + "20.0.0-beta.11": "104.0.5112.48", + "20.0.0-beta.12": "104.0.5112.48", + "20.0.0-beta.13": "104.0.5112.57", + "20.0.0": "104.0.5112.65", + "20.0.1": "104.0.5112.81", + "20.0.2": "104.0.5112.81", + "20.0.3": "104.0.5112.81", + "20.1.0": "104.0.5112.102", + "20.1.1": "104.0.5112.102", + "20.1.2": "104.0.5112.114", + "20.1.3": "104.0.5112.114", + "20.1.4": "104.0.5112.114", + "20.2.0": "104.0.5112.124", + "20.3.0": "104.0.5112.124", + "20.3.1": "104.0.5112.124", + "20.3.2": "104.0.5112.124", + "20.3.3": "104.0.5112.124", + "20.3.4": "104.0.5112.124", + "20.3.5": "104.0.5112.124", + "20.3.6": "104.0.5112.124", + "20.3.7": "104.0.5112.124", + "20.3.8": "104.0.5112.124", + "20.3.9": "104.0.5112.124", + "20.3.10": "104.0.5112.124", + "20.3.11": "104.0.5112.124", + "20.3.12": "104.0.5112.124", + "21.0.0-alpha.1": "105.0.5187.0", + "21.0.0-alpha.2": "105.0.5187.0", + "21.0.0-alpha.3": "105.0.5187.0", + "21.0.0-alpha.4": "105.0.5187.0", + "21.0.0-alpha.5": "105.0.5187.0", + "21.0.0-alpha.6": "106.0.5216.0", + "21.0.0-beta.1": "106.0.5216.0", + "21.0.0-beta.2": "106.0.5216.0", + "21.0.0-beta.3": "106.0.5216.0", + "21.0.0-beta.4": "106.0.5216.0", + "21.0.0-beta.5": "106.0.5216.0", + "21.0.0-beta.6": "106.0.5249.40", + "21.0.0-beta.7": "106.0.5249.40", + "21.0.0-beta.8": "106.0.5249.40", + "21.0.0": "106.0.5249.51", + "21.0.1": "106.0.5249.61", + "21.1.0": "106.0.5249.91", + "21.1.1": "106.0.5249.103", + "21.2.0": "106.0.5249.119", + "21.2.1": "106.0.5249.165", + "21.2.2": "106.0.5249.168", + "21.2.3": "106.0.5249.168", + "21.3.0": "106.0.5249.181", + "21.3.1": "106.0.5249.181", + "21.3.3": "106.0.5249.199", + "21.3.4": "106.0.5249.199", + "21.3.5": "106.0.5249.199", + "21.4.0": "106.0.5249.199", + "21.4.1": "106.0.5249.199", + "21.4.2": "106.0.5249.199", + "21.4.3": "106.0.5249.199", + "21.4.4": "106.0.5249.199", + "22.0.0-alpha.1": "107.0.5286.0", + "22.0.0-alpha.3": "108.0.5329.0", + "22.0.0-alpha.4": "108.0.5329.0", + "22.0.0-alpha.5": "108.0.5329.0", + "22.0.0-alpha.6": "108.0.5329.0", + "22.0.0-alpha.7": "108.0.5355.0", + "22.0.0-alpha.8": "108.0.5359.10", + "22.0.0-beta.1": "108.0.5359.10", + "22.0.0-beta.2": "108.0.5359.10", + "22.0.0-beta.3": "108.0.5359.10", + "22.0.0-beta.4": "108.0.5359.29", + "22.0.0-beta.5": "108.0.5359.40", + "22.0.0-beta.6": "108.0.5359.40", + "22.0.0-beta.7": "108.0.5359.48", + "22.0.0-beta.8": "108.0.5359.48", + "22.0.0": "108.0.5359.62", + "22.0.1": "108.0.5359.125", + "22.0.2": "108.0.5359.179", + "22.0.3": "108.0.5359.179", + "22.1.0": "108.0.5359.179", + "22.2.0": "108.0.5359.215", + "22.2.1": "108.0.5359.215", + "22.3.0": "108.0.5359.215", + "22.3.1": "108.0.5359.215", + "22.3.2": "108.0.5359.215", + "22.3.3": "108.0.5359.215", + "22.3.4": "108.0.5359.215", + "22.3.5": "108.0.5359.215", + "22.3.6": "108.0.5359.215", + "22.3.7": "108.0.5359.215", + "22.3.8": "108.0.5359.215", + "22.3.9": "108.0.5359.215", + "22.3.10": "108.0.5359.215", + "22.3.11": "108.0.5359.215", + "22.3.12": "108.0.5359.215", + "22.3.13": "108.0.5359.215", + "22.3.14": "108.0.5359.215", + "22.3.15": "108.0.5359.215", + "22.3.16": "108.0.5359.215", + "22.3.17": "108.0.5359.215", + "22.3.18": "108.0.5359.215", + "22.3.20": "108.0.5359.215", + "22.3.21": "108.0.5359.215", + "22.3.22": "108.0.5359.215", + "22.3.23": "108.0.5359.215", + "22.3.24": "108.0.5359.215", + "22.3.25": "108.0.5359.215", + "22.3.26": "108.0.5359.215", + "22.3.27": "108.0.5359.215", + "23.0.0-alpha.1": "110.0.5415.0", + "23.0.0-alpha.2": "110.0.5451.0", + "23.0.0-alpha.3": "110.0.5451.0", + "23.0.0-beta.1": "110.0.5478.5", + "23.0.0-beta.2": "110.0.5478.5", + "23.0.0-beta.3": "110.0.5478.5", + "23.0.0-beta.4": "110.0.5481.30", + "23.0.0-beta.5": "110.0.5481.38", + "23.0.0-beta.6": "110.0.5481.52", + "23.0.0-beta.8": "110.0.5481.52", + "23.0.0": "110.0.5481.77", + "23.1.0": "110.0.5481.100", + "23.1.1": "110.0.5481.104", + "23.1.2": "110.0.5481.177", + "23.1.3": "110.0.5481.179", + "23.1.4": "110.0.5481.192", + "23.2.0": "110.0.5481.192", + "23.2.1": "110.0.5481.208", + "23.2.2": "110.0.5481.208", + "23.2.3": "110.0.5481.208", + "23.2.4": "110.0.5481.208", + "23.3.0": "110.0.5481.208", + "23.3.1": "110.0.5481.208", + "23.3.2": "110.0.5481.208", + "23.3.3": "110.0.5481.208", + "23.3.4": "110.0.5481.208", + "23.3.5": "110.0.5481.208", + "23.3.6": "110.0.5481.208", + "23.3.7": "110.0.5481.208", + "23.3.8": "110.0.5481.208", + "23.3.9": "110.0.5481.208", + "23.3.10": "110.0.5481.208", + "23.3.11": "110.0.5481.208", + "23.3.12": "110.0.5481.208", + "23.3.13": "110.0.5481.208", + "24.0.0-alpha.1": "111.0.5560.0", + "24.0.0-alpha.2": "111.0.5560.0", + "24.0.0-alpha.3": "111.0.5560.0", + "24.0.0-alpha.4": "111.0.5560.0", + "24.0.0-alpha.5": "111.0.5560.0", + "24.0.0-alpha.6": "111.0.5560.0", + "24.0.0-alpha.7": "111.0.5560.0", + "24.0.0-beta.1": "111.0.5563.50", + "24.0.0-beta.2": "111.0.5563.50", + "24.0.0-beta.3": "112.0.5615.20", + "24.0.0-beta.4": "112.0.5615.20", + "24.0.0-beta.5": "112.0.5615.29", + "24.0.0-beta.6": "112.0.5615.39", + "24.0.0-beta.7": "112.0.5615.39", + "24.0.0": "112.0.5615.49", + "24.1.0": "112.0.5615.50", + "24.1.1": "112.0.5615.50", + "24.1.2": "112.0.5615.87", + "24.1.3": "112.0.5615.165", + "24.2.0": "112.0.5615.165", + "24.3.0": "112.0.5615.165", + "24.3.1": "112.0.5615.183", + "24.4.0": "112.0.5615.204", + "24.4.1": "112.0.5615.204", + "24.5.0": "112.0.5615.204", + "24.5.1": "112.0.5615.204", + "24.6.0": "112.0.5615.204", + "24.6.1": "112.0.5615.204", + "24.6.2": "112.0.5615.204", + "24.6.3": "112.0.5615.204", + "24.6.4": "112.0.5615.204", + "24.6.5": "112.0.5615.204", + "24.7.0": "112.0.5615.204", + "24.7.1": "112.0.5615.204", + "24.8.0": "112.0.5615.204", + "24.8.1": "112.0.5615.204", + "24.8.2": "112.0.5615.204", + "24.8.3": "112.0.5615.204", + "24.8.4": "112.0.5615.204", + "24.8.5": "112.0.5615.204", + "24.8.6": "112.0.5615.204", + "24.8.7": "112.0.5615.204", + "24.8.8": "112.0.5615.204", + "25.0.0-alpha.1": "114.0.5694.0", + "25.0.0-alpha.2": "114.0.5694.0", + "25.0.0-alpha.3": "114.0.5710.0", + "25.0.0-alpha.4": "114.0.5710.0", + "25.0.0-alpha.5": "114.0.5719.0", + "25.0.0-alpha.6": "114.0.5719.0", + "25.0.0-beta.1": "114.0.5719.0", + "25.0.0-beta.2": "114.0.5719.0", + "25.0.0-beta.3": "114.0.5719.0", + "25.0.0-beta.4": "114.0.5735.16", + "25.0.0-beta.5": "114.0.5735.16", + "25.0.0-beta.6": "114.0.5735.16", + "25.0.0-beta.7": "114.0.5735.16", + "25.0.0-beta.8": "114.0.5735.35", + "25.0.0-beta.9": "114.0.5735.45", + "25.0.0": "114.0.5735.45", + "25.0.1": "114.0.5735.45", + "25.1.0": "114.0.5735.106", + "25.1.1": "114.0.5735.106", + "25.2.0": "114.0.5735.134", + "25.3.0": "114.0.5735.199", + "25.3.1": "114.0.5735.243", + "25.3.2": "114.0.5735.248", + "25.4.0": "114.0.5735.248", + "25.5.0": "114.0.5735.289", + "25.6.0": "114.0.5735.289", + "25.7.0": "114.0.5735.289", + "25.8.0": "114.0.5735.289", + "25.8.1": "114.0.5735.289", + "25.8.2": "114.0.5735.289", + "25.8.3": "114.0.5735.289", + "25.8.4": "114.0.5735.289", + "25.9.0": "114.0.5735.289", + "25.9.1": "114.0.5735.289", + "25.9.2": "114.0.5735.289", + "25.9.3": "114.0.5735.289", + "25.9.4": "114.0.5735.289", + "25.9.5": "114.0.5735.289", + "25.9.6": "114.0.5735.289", + "25.9.7": "114.0.5735.289", + "25.9.8": "114.0.5735.289", + "26.0.0-alpha.1": "116.0.5791.0", + "26.0.0-alpha.2": "116.0.5791.0", + "26.0.0-alpha.3": "116.0.5791.0", + "26.0.0-alpha.4": "116.0.5791.0", + "26.0.0-alpha.5": "116.0.5791.0", + "26.0.0-alpha.6": "116.0.5815.0", + "26.0.0-alpha.7": "116.0.5831.0", + "26.0.0-alpha.8": "116.0.5845.0", + "26.0.0-beta.1": "116.0.5845.0", + "26.0.0-beta.2": "116.0.5845.14", + "26.0.0-beta.3": "116.0.5845.14", + "26.0.0-beta.4": "116.0.5845.14", + "26.0.0-beta.5": "116.0.5845.14", + "26.0.0-beta.6": "116.0.5845.14", + "26.0.0-beta.7": "116.0.5845.14", + "26.0.0-beta.8": "116.0.5845.42", + "26.0.0-beta.9": "116.0.5845.42", + "26.0.0-beta.10": "116.0.5845.49", + "26.0.0-beta.11": "116.0.5845.49", + "26.0.0-beta.12": "116.0.5845.62", + "26.0.0": "116.0.5845.82", + "26.1.0": "116.0.5845.97", + "26.2.0": "116.0.5845.179", + "26.2.1": "116.0.5845.188", + "26.2.2": "116.0.5845.190", + "26.2.3": "116.0.5845.190", + "26.2.4": "116.0.5845.190", + "26.3.0": "116.0.5845.228", + "26.4.0": "116.0.5845.228", + "26.4.1": "116.0.5845.228", + "26.4.2": "116.0.5845.228", + "26.4.3": "116.0.5845.228", + "26.5.0": "116.0.5845.228", + "26.6.0": "116.0.5845.228", + "26.6.1": "116.0.5845.228", + "26.6.2": "116.0.5845.228", + "26.6.3": "116.0.5845.228", + "26.6.4": "116.0.5845.228", + "26.6.5": "116.0.5845.228", + "26.6.6": "116.0.5845.228", + "26.6.7": "116.0.5845.228", + "26.6.8": "116.0.5845.228", + "26.6.9": "116.0.5845.228", + "26.6.10": "116.0.5845.228", + "27.0.0-alpha.1": "118.0.5949.0", + "27.0.0-alpha.2": "118.0.5949.0", + "27.0.0-alpha.3": "118.0.5949.0", + "27.0.0-alpha.4": "118.0.5949.0", + "27.0.0-alpha.5": "118.0.5949.0", + "27.0.0-alpha.6": "118.0.5949.0", + "27.0.0-beta.1": "118.0.5993.5", + "27.0.0-beta.2": "118.0.5993.5", + "27.0.0-beta.3": "118.0.5993.5", + "27.0.0-beta.4": "118.0.5993.11", + "27.0.0-beta.5": "118.0.5993.18", + "27.0.0-beta.6": "118.0.5993.18", + "27.0.0-beta.7": "118.0.5993.18", + "27.0.0-beta.8": "118.0.5993.18", + "27.0.0-beta.9": "118.0.5993.18", + "27.0.0": "118.0.5993.54", + "27.0.1": "118.0.5993.89", + "27.0.2": "118.0.5993.89", + "27.0.3": "118.0.5993.120", + "27.0.4": "118.0.5993.129", + "27.1.0": "118.0.5993.144", + "27.1.2": "118.0.5993.144", + "27.1.3": "118.0.5993.159", + "27.2.0": "118.0.5993.159", + "27.2.1": "118.0.5993.159", + "27.2.2": "118.0.5993.159", + "27.2.3": "118.0.5993.159", + "27.2.4": "118.0.5993.159", + "27.3.0": "118.0.5993.159", + "27.3.1": "118.0.5993.159", + "27.3.2": "118.0.5993.159", + "27.3.3": "118.0.5993.159", + "27.3.4": "118.0.5993.159", + "27.3.5": "118.0.5993.159", + "27.3.6": "118.0.5993.159", + "27.3.7": "118.0.5993.159", + "27.3.8": "118.0.5993.159", + "27.3.9": "118.0.5993.159", + "27.3.10": "118.0.5993.159", + "27.3.11": "118.0.5993.159", + "28.0.0-alpha.1": "119.0.6045.0", + "28.0.0-alpha.2": "119.0.6045.0", + "28.0.0-alpha.3": "119.0.6045.21", + "28.0.0-alpha.4": "119.0.6045.21", + "28.0.0-alpha.5": "119.0.6045.33", + "28.0.0-alpha.6": "119.0.6045.33", + "28.0.0-alpha.7": "119.0.6045.33", + "28.0.0-beta.1": "119.0.6045.33", + "28.0.0-beta.2": "120.0.6099.0", + "28.0.0-beta.3": "120.0.6099.5", + "28.0.0-beta.4": "120.0.6099.5", + "28.0.0-beta.5": "120.0.6099.18", + "28.0.0-beta.6": "120.0.6099.18", + "28.0.0-beta.7": "120.0.6099.18", + "28.0.0-beta.8": "120.0.6099.18", + "28.0.0-beta.9": "120.0.6099.18", + "28.0.0-beta.10": "120.0.6099.18", + "28.0.0-beta.11": "120.0.6099.35", + "28.0.0": "120.0.6099.56", + "28.1.0": "120.0.6099.109", + "28.1.1": "120.0.6099.109", + "28.1.2": "120.0.6099.199", + "28.1.3": "120.0.6099.199", + "28.1.4": "120.0.6099.216", + "28.2.0": "120.0.6099.227", + "28.2.1": "120.0.6099.268", + "28.2.2": "120.0.6099.276", + "28.2.3": "120.0.6099.283", + "28.2.4": "120.0.6099.291", + "28.2.5": "120.0.6099.291", + "28.2.6": "120.0.6099.291", + "28.2.7": "120.0.6099.291", + "28.2.8": "120.0.6099.291", + "28.2.9": "120.0.6099.291", + "28.2.10": "120.0.6099.291", + "28.3.0": "120.0.6099.291", + "28.3.1": "120.0.6099.291", + "28.3.2": "120.0.6099.291", + "28.3.3": "120.0.6099.291", + "29.0.0-alpha.1": "121.0.6147.0", + "29.0.0-alpha.2": "121.0.6147.0", + "29.0.0-alpha.3": "121.0.6147.0", + "29.0.0-alpha.4": "121.0.6159.0", + "29.0.0-alpha.5": "121.0.6159.0", + "29.0.0-alpha.6": "121.0.6159.0", + "29.0.0-alpha.7": "121.0.6159.0", + "29.0.0-alpha.8": "122.0.6194.0", + "29.0.0-alpha.9": "122.0.6236.2", + "29.0.0-alpha.10": "122.0.6236.2", + "29.0.0-alpha.11": "122.0.6236.2", + "29.0.0-beta.1": "122.0.6236.2", + "29.0.0-beta.2": "122.0.6236.2", + "29.0.0-beta.3": "122.0.6261.6", + "29.0.0-beta.4": "122.0.6261.6", + "29.0.0-beta.5": "122.0.6261.18", + "29.0.0-beta.6": "122.0.6261.18", + "29.0.0-beta.7": "122.0.6261.18", + "29.0.0-beta.8": "122.0.6261.18", + "29.0.0-beta.9": "122.0.6261.18", + "29.0.0-beta.10": "122.0.6261.18", + "29.0.0-beta.11": "122.0.6261.18", + "29.0.0-beta.12": "122.0.6261.29", + "29.0.0": "122.0.6261.39", + "29.0.1": "122.0.6261.57", + "29.1.0": "122.0.6261.70", + "29.1.1": "122.0.6261.111", + "29.1.2": "122.0.6261.112", + "29.1.3": "122.0.6261.112", + "29.1.4": "122.0.6261.129", + "29.1.5": "122.0.6261.130", + "29.1.6": "122.0.6261.139", + "29.2.0": "122.0.6261.156", + "29.3.0": "122.0.6261.156", + "29.3.1": "122.0.6261.156", + "29.3.2": "122.0.6261.156", + "29.3.3": "122.0.6261.156", + "29.4.0": "122.0.6261.156", + "29.4.1": "122.0.6261.156", + "29.4.2": "122.0.6261.156", + "29.4.3": "122.0.6261.156", + "29.4.4": "122.0.6261.156", + "29.4.5": "122.0.6261.156", + "29.4.6": "122.0.6261.156", + "30.0.0-alpha.1": "123.0.6296.0", + "30.0.0-alpha.2": "123.0.6312.5", + "30.0.0-alpha.3": "124.0.6323.0", + "30.0.0-alpha.4": "124.0.6323.0", + "30.0.0-alpha.5": "124.0.6331.0", + "30.0.0-alpha.6": "124.0.6331.0", + "30.0.0-alpha.7": "124.0.6353.0", + "30.0.0-beta.1": "124.0.6359.0", + "30.0.0-beta.2": "124.0.6359.0", + "30.0.0-beta.3": "124.0.6367.9", + "30.0.0-beta.4": "124.0.6367.9", + "30.0.0-beta.5": "124.0.6367.9", + "30.0.0-beta.6": "124.0.6367.18", + "30.0.0-beta.7": "124.0.6367.29", + "30.0.0-beta.8": "124.0.6367.29", + "30.0.0": "124.0.6367.49", + "30.0.1": "124.0.6367.60", + "30.0.2": "124.0.6367.91", + "30.0.3": "124.0.6367.119", + "30.0.4": "124.0.6367.201", + "30.0.5": "124.0.6367.207", + "30.0.6": "124.0.6367.207", + "30.0.7": "124.0.6367.221", + "30.0.8": "124.0.6367.230", + "30.0.9": "124.0.6367.233", + "30.1.0": "124.0.6367.243", + "30.1.1": "124.0.6367.243", + "30.1.2": "124.0.6367.243", + "30.2.0": "124.0.6367.243", + "30.3.0": "124.0.6367.243", + "30.3.1": "124.0.6367.243", + "30.4.0": "124.0.6367.243", + "30.5.0": "124.0.6367.243", + "30.5.1": "124.0.6367.243", + "31.0.0-alpha.1": "125.0.6412.0", + "31.0.0-alpha.2": "125.0.6412.0", + "31.0.0-alpha.3": "125.0.6412.0", + "31.0.0-alpha.4": "125.0.6412.0", + "31.0.0-alpha.5": "125.0.6412.0", + "31.0.0-beta.1": "126.0.6445.0", + "31.0.0-beta.2": "126.0.6445.0", + "31.0.0-beta.3": "126.0.6445.0", + "31.0.0-beta.4": "126.0.6445.0", + "31.0.0-beta.5": "126.0.6445.0", + "31.0.0-beta.6": "126.0.6445.0", + "31.0.0-beta.7": "126.0.6445.0", + "31.0.0-beta.8": "126.0.6445.0", + "31.0.0-beta.9": "126.0.6445.0", + "31.0.0-beta.10": "126.0.6478.36", + "31.0.0": "126.0.6478.36", + "31.0.1": "126.0.6478.36", + "31.0.2": "126.0.6478.61", + "31.1.0": "126.0.6478.114", + "31.2.0": "126.0.6478.127", + "31.2.1": "126.0.6478.127", + "31.3.0": "126.0.6478.183", + "31.3.1": "126.0.6478.185", + "31.4.0": "126.0.6478.234", + "31.5.0": "126.0.6478.234", + "31.6.0": "126.0.6478.234", + "31.7.0": "126.0.6478.234", + "31.7.1": "126.0.6478.234", + "31.7.2": "126.0.6478.234", + "31.7.3": "126.0.6478.234", + "31.7.4": "126.0.6478.234", + "31.7.5": "126.0.6478.234", + "31.7.6": "126.0.6478.234", + "31.7.7": "126.0.6478.234", + "32.0.0-alpha.1": "127.0.6521.0", + "32.0.0-alpha.2": "127.0.6521.0", + "32.0.0-alpha.3": "127.0.6521.0", + "32.0.0-alpha.4": "127.0.6521.0", + "32.0.0-alpha.5": "127.0.6521.0", + "32.0.0-alpha.6": "128.0.6571.0", + "32.0.0-alpha.7": "128.0.6571.0", + "32.0.0-alpha.8": "128.0.6573.0", + "32.0.0-alpha.9": "128.0.6573.0", + "32.0.0-alpha.10": "128.0.6573.0", + "32.0.0-beta.1": "128.0.6573.0", + "32.0.0-beta.2": "128.0.6611.0", + "32.0.0-beta.3": "128.0.6613.7", + "32.0.0-beta.4": "128.0.6613.18", + "32.0.0-beta.5": "128.0.6613.27", + "32.0.0-beta.6": "128.0.6613.27", + "32.0.0-beta.7": "128.0.6613.27", + "32.0.0": "128.0.6613.36", + "32.0.1": "128.0.6613.36", + "32.0.2": "128.0.6613.84", + "32.1.0": "128.0.6613.120", + "32.1.1": "128.0.6613.137", + "32.1.2": "128.0.6613.162", + "32.2.0": "128.0.6613.178", + "32.2.1": "128.0.6613.186", + "32.2.2": "128.0.6613.186", + "32.2.3": "128.0.6613.186", + "32.2.4": "128.0.6613.186", + "32.2.5": "128.0.6613.186", + "32.2.6": "128.0.6613.186", + "32.2.7": "128.0.6613.186", + "32.2.8": "128.0.6613.186", + "32.3.0": "128.0.6613.186", + "32.3.1": "128.0.6613.186", + "32.3.2": "128.0.6613.186", + "32.3.3": "128.0.6613.186", + "33.0.0-alpha.1": "129.0.6668.0", + "33.0.0-alpha.2": "130.0.6672.0", + "33.0.0-alpha.3": "130.0.6672.0", + "33.0.0-alpha.4": "130.0.6672.0", + "33.0.0-alpha.5": "130.0.6672.0", + "33.0.0-alpha.6": "130.0.6672.0", + "33.0.0-beta.1": "130.0.6672.0", + "33.0.0-beta.2": "130.0.6672.0", + "33.0.0-beta.3": "130.0.6672.0", + "33.0.0-beta.4": "130.0.6672.0", + "33.0.0-beta.5": "130.0.6723.19", + "33.0.0-beta.6": "130.0.6723.19", + "33.0.0-beta.7": "130.0.6723.19", + "33.0.0-beta.8": "130.0.6723.31", + "33.0.0-beta.9": "130.0.6723.31", + "33.0.0-beta.10": "130.0.6723.31", + "33.0.0-beta.11": "130.0.6723.44", + "33.0.0": "130.0.6723.44", + "33.0.1": "130.0.6723.59", + "33.0.2": "130.0.6723.59", + "33.1.0": "130.0.6723.91", + "33.2.0": "130.0.6723.118", + "33.2.1": "130.0.6723.137", + "33.3.0": "130.0.6723.152", + "33.3.1": "130.0.6723.170", + "33.3.2": "130.0.6723.191", + "33.4.0": "130.0.6723.191", + "33.4.1": "130.0.6723.191", + "33.4.2": "130.0.6723.191", + "33.4.3": "130.0.6723.191", + "33.4.4": "130.0.6723.191", + "33.4.5": "130.0.6723.191", + "33.4.6": "130.0.6723.191", + "33.4.7": "130.0.6723.191", + "33.4.8": "130.0.6723.191", + "33.4.9": "130.0.6723.191", + "33.4.10": "130.0.6723.191", + "33.4.11": "130.0.6723.191", + "34.0.0-alpha.1": "131.0.6776.0", + "34.0.0-alpha.2": "132.0.6779.0", + "34.0.0-alpha.3": "132.0.6789.1", + "34.0.0-alpha.4": "132.0.6789.1", + "34.0.0-alpha.5": "132.0.6789.1", + "34.0.0-alpha.6": "132.0.6789.1", + "34.0.0-alpha.7": "132.0.6789.1", + "34.0.0-alpha.8": "132.0.6820.0", + "34.0.0-alpha.9": "132.0.6824.0", + "34.0.0-beta.1": "132.0.6824.0", + "34.0.0-beta.2": "132.0.6824.0", + "34.0.0-beta.3": "132.0.6824.0", + "34.0.0-beta.4": "132.0.6834.6", + "34.0.0-beta.5": "132.0.6834.6", + "34.0.0-beta.6": "132.0.6834.15", + "34.0.0-beta.7": "132.0.6834.15", + "34.0.0-beta.8": "132.0.6834.15", + "34.0.0-beta.9": "132.0.6834.32", + "34.0.0-beta.10": "132.0.6834.32", + "34.0.0-beta.11": "132.0.6834.32", + "34.0.0-beta.12": "132.0.6834.46", + "34.0.0-beta.13": "132.0.6834.46", + "34.0.0-beta.14": "132.0.6834.57", + "34.0.0-beta.15": "132.0.6834.57", + "34.0.0-beta.16": "132.0.6834.57", + "34.0.0": "132.0.6834.83", + "34.0.1": "132.0.6834.83", + "34.0.2": "132.0.6834.159", + "34.1.0": "132.0.6834.194", + "34.1.1": "132.0.6834.194", + "34.2.0": "132.0.6834.196", + "34.3.0": "132.0.6834.210", + "34.3.1": "132.0.6834.210", + "34.3.2": "132.0.6834.210", + "34.3.3": "132.0.6834.210", + "34.3.4": "132.0.6834.210", + "34.4.0": "132.0.6834.210", + "34.4.1": "132.0.6834.210", + "34.5.0": "132.0.6834.210", + "34.5.1": "132.0.6834.210", + "34.5.2": "132.0.6834.210", + "34.5.3": "132.0.6834.210", + "34.5.4": "132.0.6834.210", + "34.5.5": "132.0.6834.210", + "34.5.6": "132.0.6834.210", + "34.5.7": "132.0.6834.210", + "34.5.8": "132.0.6834.210", + "35.0.0-alpha.1": "133.0.6920.0", + "35.0.0-alpha.2": "133.0.6920.0", + "35.0.0-alpha.3": "133.0.6920.0", + "35.0.0-alpha.4": "133.0.6920.0", + "35.0.0-alpha.5": "133.0.6920.0", + "35.0.0-beta.1": "133.0.6920.0", + "35.0.0-beta.2": "134.0.6968.0", + "35.0.0-beta.3": "134.0.6968.0", + "35.0.0-beta.4": "134.0.6968.0", + "35.0.0-beta.5": "134.0.6989.0", + "35.0.0-beta.6": "134.0.6990.0", + "35.0.0-beta.7": "134.0.6990.0", + "35.0.0-beta.8": "134.0.6998.10", + "35.0.0-beta.9": "134.0.6998.10", + "35.0.0-beta.10": "134.0.6998.23", + "35.0.0-beta.11": "134.0.6998.23", + "35.0.0-beta.12": "134.0.6998.23", + "35.0.0-beta.13": "134.0.6998.44", + "35.0.0": "134.0.6998.44", + "35.0.1": "134.0.6998.44", + "35.0.2": "134.0.6998.88", + "35.0.3": "134.0.6998.88", + "35.1.0": "134.0.6998.165", + "35.1.1": "134.0.6998.165", + "35.1.2": "134.0.6998.178", + "35.1.3": "134.0.6998.179", + "35.1.4": "134.0.6998.179", + "35.1.5": "134.0.6998.179", + "35.2.0": "134.0.6998.205", + "35.2.1": "134.0.6998.205", + "35.2.2": "134.0.6998.205", + "35.3.0": "134.0.6998.205", + "35.4.0": "134.0.6998.205", + "35.5.0": "134.0.6998.205", + "35.5.1": "134.0.6998.205", + "35.6.0": "134.0.6998.205", + "35.7.0": "134.0.6998.205", + "35.7.1": "134.0.6998.205", + "35.7.2": "134.0.6998.205", + "35.7.4": "134.0.6998.205", + "35.7.5": "134.0.6998.205", + "36.0.0-alpha.1": "135.0.7049.5", + "36.0.0-alpha.2": "136.0.7062.0", + "36.0.0-alpha.3": "136.0.7062.0", + "36.0.0-alpha.4": "136.0.7062.0", + "36.0.0-alpha.5": "136.0.7067.0", + "36.0.0-alpha.6": "136.0.7067.0", + "36.0.0-beta.1": "136.0.7067.0", + "36.0.0-beta.2": "136.0.7067.0", + "36.0.0-beta.3": "136.0.7067.0", + "36.0.0-beta.4": "136.0.7067.0", + "36.0.0-beta.5": "136.0.7103.17", + "36.0.0-beta.6": "136.0.7103.25", + "36.0.0-beta.7": "136.0.7103.25", + "36.0.0-beta.8": "136.0.7103.33", + "36.0.0-beta.9": "136.0.7103.33", + "36.0.0": "136.0.7103.48", + "36.0.1": "136.0.7103.48", + "36.1.0": "136.0.7103.49", + "36.2.0": "136.0.7103.49", + "36.2.1": "136.0.7103.93", + "36.3.0": "136.0.7103.113", + "36.3.1": "136.0.7103.113", + "36.3.2": "136.0.7103.115", + "36.4.0": "136.0.7103.149", + "36.5.0": "136.0.7103.168", + "36.6.0": "136.0.7103.177", + "36.7.0": "136.0.7103.177", + "36.7.1": "136.0.7103.177", + "36.7.3": "136.0.7103.177", + "36.7.4": "136.0.7103.177", + "36.8.0": "136.0.7103.177", + "36.8.1": "136.0.7103.177", + "37.0.0-alpha.1": "137.0.7151.0", + "37.0.0-alpha.2": "137.0.7151.0", + "37.0.0-alpha.3": "138.0.7156.0", + "37.0.0-alpha.4": "138.0.7165.0", + "37.0.0-alpha.5": "138.0.7177.0", + "37.0.0-alpha.6": "138.0.7178.0", + "37.0.0-alpha.7": "138.0.7178.0", + "37.0.0-beta.1": "138.0.7178.0", + "37.0.0-beta.2": "138.0.7178.0", + "37.0.0-beta.3": "138.0.7190.0", + "37.0.0-beta.4": "138.0.7204.15", + "37.0.0-beta.5": "138.0.7204.15", + "37.0.0-beta.6": "138.0.7204.15", + "37.0.0-beta.7": "138.0.7204.15", + "37.0.0-beta.8": "138.0.7204.23", + "37.0.0-beta.9": "138.0.7204.35", + "37.0.0": "138.0.7204.35", + "37.1.0": "138.0.7204.35", + "37.2.0": "138.0.7204.97", + "37.2.1": "138.0.7204.97", + "37.2.2": "138.0.7204.100", + "37.2.3": "138.0.7204.100", + "37.2.4": "138.0.7204.157", + "37.2.5": "138.0.7204.168", + "37.2.6": "138.0.7204.185", + "37.3.0": "138.0.7204.224", + "37.3.1": "138.0.7204.235", + "37.4.0": "138.0.7204.243", + "38.0.0-alpha.1": "139.0.7219.0", + "38.0.0-alpha.2": "139.0.7219.0", + "38.0.0-alpha.3": "139.0.7219.0", + "38.0.0-alpha.4": "140.0.7261.0", + "38.0.0-alpha.5": "140.0.7261.0", + "38.0.0-alpha.6": "140.0.7261.0", + "38.0.0-alpha.7": "140.0.7281.0", + "38.0.0-alpha.8": "140.0.7281.0", + "38.0.0-alpha.9": "140.0.7301.0", + "38.0.0-alpha.10": "140.0.7309.0", + "38.0.0-alpha.11": "140.0.7312.0", + "38.0.0-alpha.12": "140.0.7314.0", + "38.0.0-alpha.13": "140.0.7314.0", + "38.0.0-beta.1": "140.0.7314.0", + "38.0.0-beta.2": "140.0.7327.0", + "38.0.0-beta.3": "140.0.7327.0", + "38.0.0-beta.4": "140.0.7339.2", + "38.0.0-beta.5": "140.0.7339.2", + "38.0.0-beta.6": "140.0.7339.2", + "38.0.0-beta.7": "140.0.7339.16", + "38.0.0-beta.8": "140.0.7339.24", + "38.0.0-beta.9": "140.0.7339.24" +}; \ No newline at end of file diff --git a/novas/novacore-zephyr/groq-code-cli/node_modules/electron-to-chromium/full-versions.json b/novas/novacore-zephyr/groq-code-cli/node_modules/electron-to-chromium/full-versions.json new file mode 100644 index 0000000000000000000000000000000000000000..afafa0e4360503a9a69728825d1bc5b98d810bf6 --- /dev/null +++ b/novas/novacore-zephyr/groq-code-cli/node_modules/electron-to-chromium/full-versions.json @@ -0,0 +1 @@ +{"0.20.0":"39.0.2171.65","0.20.1":"39.0.2171.65","0.20.2":"39.0.2171.65","0.20.3":"39.0.2171.65","0.20.4":"39.0.2171.65","0.20.5":"39.0.2171.65","0.20.6":"39.0.2171.65","0.20.7":"39.0.2171.65","0.20.8":"39.0.2171.65","0.21.0":"40.0.2214.91","0.21.1":"40.0.2214.91","0.21.2":"40.0.2214.91","0.21.3":"41.0.2272.76","0.22.1":"41.0.2272.76","0.22.2":"41.0.2272.76","0.22.3":"41.0.2272.76","0.23.0":"41.0.2272.76","0.24.0":"41.0.2272.76","0.25.0":"42.0.2311.107","0.25.1":"42.0.2311.107","0.25.2":"42.0.2311.107","0.25.3":"42.0.2311.107","0.26.0":"42.0.2311.107","0.26.1":"42.0.2311.107","0.27.0":"42.0.2311.107","0.27.1":"42.0.2311.107","0.27.2":"43.0.2357.65","0.27.3":"43.0.2357.65","0.28.0":"43.0.2357.65","0.28.1":"43.0.2357.65","0.28.2":"43.0.2357.65","0.28.3":"43.0.2357.65","0.29.1":"43.0.2357.65","0.29.2":"43.0.2357.65","0.30.4":"44.0.2403.125","0.31.0":"44.0.2403.125","0.31.2":"45.0.2454.85","0.32.2":"45.0.2454.85","0.32.3":"45.0.2454.85","0.33.0":"45.0.2454.85","0.33.1":"45.0.2454.85","0.33.2":"45.0.2454.85","0.33.3":"45.0.2454.85","0.33.4":"45.0.2454.85","0.33.6":"45.0.2454.85","0.33.7":"45.0.2454.85","0.33.8":"45.0.2454.85","0.33.9":"45.0.2454.85","0.34.0":"45.0.2454.85","0.34.1":"45.0.2454.85","0.34.2":"45.0.2454.85","0.34.3":"45.0.2454.85","0.34.4":"45.0.2454.85","0.35.1":"45.0.2454.85","0.35.2":"45.0.2454.85","0.35.3":"45.0.2454.85","0.35.4":"45.0.2454.85","0.35.5":"45.0.2454.85","0.36.0":"47.0.2526.73","0.36.2":"47.0.2526.73","0.36.3":"47.0.2526.73","0.36.4":"47.0.2526.73","0.36.5":"47.0.2526.110","0.36.6":"47.0.2526.110","0.36.7":"47.0.2526.110","0.36.8":"47.0.2526.110","0.36.9":"47.0.2526.110","0.36.10":"47.0.2526.110","0.36.11":"47.0.2526.110","0.36.12":"47.0.2526.110","0.37.0":"49.0.2623.75","0.37.1":"49.0.2623.75","0.37.3":"49.0.2623.75","0.37.4":"49.0.2623.75","0.37.5":"49.0.2623.75","0.37.6":"49.0.2623.75","0.37.7":"49.0.2623.75","0.37.8":"49.0.2623.75","1.0.0":"49.0.2623.75","1.0.1":"49.0.2623.75","1.0.2":"49.0.2623.75","1.1.0":"50.0.2661.102","1.1.1":"50.0.2661.102","1.1.2":"50.0.2661.102","1.1.3":"50.0.2661.102","1.2.0":"51.0.2704.63","1.2.1":"51.0.2704.63","1.2.2":"51.0.2704.84","1.2.3":"51.0.2704.84","1.2.4":"51.0.2704.103","1.2.5":"51.0.2704.103","1.2.6":"51.0.2704.106","1.2.7":"51.0.2704.106","1.2.8":"51.0.2704.106","1.3.0":"52.0.2743.82","1.3.1":"52.0.2743.82","1.3.2":"52.0.2743.82","1.3.3":"52.0.2743.82","1.3.4":"52.0.2743.82","1.3.5":"52.0.2743.82","1.3.6":"52.0.2743.82","1.3.7":"52.0.2743.82","1.3.9":"52.0.2743.82","1.3.10":"52.0.2743.82","1.3.13":"52.0.2743.82","1.3.14":"52.0.2743.82","1.3.15":"52.0.2743.82","1.4.0":"53.0.2785.113","1.4.1":"53.0.2785.113","1.4.2":"53.0.2785.113","1.4.3":"53.0.2785.113","1.4.4":"53.0.2785.113","1.4.5":"53.0.2785.113","1.4.6":"53.0.2785.143","1.4.7":"53.0.2785.143","1.4.8":"53.0.2785.143","1.4.10":"53.0.2785.143","1.4.11":"53.0.2785.143","1.4.12":"54.0.2840.51","1.4.13":"53.0.2785.143","1.4.14":"53.0.2785.143","1.4.15":"53.0.2785.143","1.4.16":"53.0.2785.143","1.5.0":"54.0.2840.101","1.5.1":"54.0.2840.101","1.6.0":"56.0.2924.87","1.6.1":"56.0.2924.87","1.6.2":"56.0.2924.87","1.6.3":"56.0.2924.87","1.6.4":"56.0.2924.87","1.6.5":"56.0.2924.87","1.6.6":"56.0.2924.87","1.6.7":"56.0.2924.87","1.6.8":"56.0.2924.87","1.6.9":"56.0.2924.87","1.6.10":"56.0.2924.87","1.6.11":"56.0.2924.87","1.6.12":"56.0.2924.87","1.6.13":"56.0.2924.87","1.6.14":"56.0.2924.87","1.6.15":"56.0.2924.87","1.6.16":"56.0.2924.87","1.6.17":"56.0.2924.87","1.6.18":"56.0.2924.87","1.7.0":"58.0.3029.110","1.7.1":"58.0.3029.110","1.7.2":"58.0.3029.110","1.7.3":"58.0.3029.110","1.7.4":"58.0.3029.110","1.7.5":"58.0.3029.110","1.7.6":"58.0.3029.110","1.7.7":"58.0.3029.110","1.7.8":"58.0.3029.110","1.7.9":"58.0.3029.110","1.7.10":"58.0.3029.110","1.7.11":"58.0.3029.110","1.7.12":"58.0.3029.110","1.7.13":"58.0.3029.110","1.7.14":"58.0.3029.110","1.7.15":"58.0.3029.110","1.7.16":"58.0.3029.110","1.8.0":"59.0.3071.115","1.8.1":"59.0.3071.115","1.8.2-beta.1":"59.0.3071.115","1.8.2-beta.2":"59.0.3071.115","1.8.2-beta.3":"59.0.3071.115","1.8.2-beta.4":"59.0.3071.115","1.8.2-beta.5":"59.0.3071.115","1.8.2":"59.0.3071.115","1.8.3":"59.0.3071.115","1.8.4":"59.0.3071.115","1.8.5":"59.0.3071.115","1.8.6":"59.0.3071.115","1.8.7":"59.0.3071.115","1.8.8":"59.0.3071.115","2.0.0-beta.1":"61.0.3163.100","2.0.0-beta.2":"61.0.3163.100","2.0.0-beta.3":"61.0.3163.100","2.0.0-beta.4":"61.0.3163.100","2.0.0-beta.5":"61.0.3163.100","2.0.0-beta.6":"61.0.3163.100","2.0.0-beta.7":"61.0.3163.100","2.0.0-beta.8":"61.0.3163.100","2.0.0":"61.0.3163.100","2.0.1":"61.0.3163.100","2.0.2":"61.0.3163.100","2.0.3":"61.0.3163.100","2.0.4":"61.0.3163.100","2.0.5":"61.0.3163.100","2.0.6":"61.0.3163.100","2.0.7":"61.0.3163.100","2.0.8":"61.0.3163.100","2.0.9":"61.0.3163.100","2.0.10":"61.0.3163.100","2.0.11":"61.0.3163.100","2.0.12":"61.0.3163.100","2.0.13":"61.0.3163.100","2.0.14":"61.0.3163.100","2.0.15":"61.0.3163.100","2.0.16":"61.0.3163.100","2.0.17":"61.0.3163.100","2.0.18":"61.0.3163.100","2.1.0-unsupported.20180809":"61.0.3163.100","3.0.0-beta.1":"66.0.3359.181","3.0.0-beta.2":"66.0.3359.181","3.0.0-beta.3":"66.0.3359.181","3.0.0-beta.4":"66.0.3359.181","3.0.0-beta.5":"66.0.3359.181","3.0.0-beta.6":"66.0.3359.181","3.0.0-beta.7":"66.0.3359.181","3.0.0-beta.8":"66.0.3359.181","3.0.0-beta.9":"66.0.3359.181","3.0.0-beta.10":"66.0.3359.181","3.0.0-beta.11":"66.0.3359.181","3.0.0-beta.12":"66.0.3359.181","3.0.0-beta.13":"66.0.3359.181","3.0.0":"66.0.3359.181","3.0.1":"66.0.3359.181","3.0.2":"66.0.3359.181","3.0.3":"66.0.3359.181","3.0.4":"66.0.3359.181","3.0.5":"66.0.3359.181","3.0.6":"66.0.3359.181","3.0.7":"66.0.3359.181","3.0.8":"66.0.3359.181","3.0.9":"66.0.3359.181","3.0.10":"66.0.3359.181","3.0.11":"66.0.3359.181","3.0.12":"66.0.3359.181","3.0.13":"66.0.3359.181","3.0.14":"66.0.3359.181","3.0.15":"66.0.3359.181","3.0.16":"66.0.3359.181","3.1.0-beta.1":"66.0.3359.181","3.1.0-beta.2":"66.0.3359.181","3.1.0-beta.3":"66.0.3359.181","3.1.0-beta.4":"66.0.3359.181","3.1.0-beta.5":"66.0.3359.181","3.1.0":"66.0.3359.181","3.1.1":"66.0.3359.181","3.1.2":"66.0.3359.181","3.1.3":"66.0.3359.181","3.1.4":"66.0.3359.181","3.1.5":"66.0.3359.181","3.1.6":"66.0.3359.181","3.1.7":"66.0.3359.181","3.1.8":"66.0.3359.181","3.1.9":"66.0.3359.181","3.1.10":"66.0.3359.181","3.1.11":"66.0.3359.181","3.1.12":"66.0.3359.181","3.1.13":"66.0.3359.181","4.0.0-beta.1":"69.0.3497.106","4.0.0-beta.2":"69.0.3497.106","4.0.0-beta.3":"69.0.3497.106","4.0.0-beta.4":"69.0.3497.106","4.0.0-beta.5":"69.0.3497.106","4.0.0-beta.6":"69.0.3497.106","4.0.0-beta.7":"69.0.3497.106","4.0.0-beta.8":"69.0.3497.106","4.0.0-beta.9":"69.0.3497.106","4.0.0-beta.10":"69.0.3497.106","4.0.0-beta.11":"69.0.3497.106","4.0.0":"69.0.3497.106","4.0.1":"69.0.3497.106","4.0.2":"69.0.3497.106","4.0.3":"69.0.3497.106","4.0.4":"69.0.3497.106","4.0.5":"69.0.3497.106","4.0.6":"69.0.3497.106","4.0.7":"69.0.3497.128","4.0.8":"69.0.3497.128","4.1.0":"69.0.3497.128","4.1.1":"69.0.3497.128","4.1.2":"69.0.3497.128","4.1.3":"69.0.3497.128","4.1.4":"69.0.3497.128","4.1.5":"69.0.3497.128","4.2.0":"69.0.3497.128","4.2.1":"69.0.3497.128","4.2.2":"69.0.3497.128","4.2.3":"69.0.3497.128","4.2.4":"69.0.3497.128","4.2.5":"69.0.3497.128","4.2.6":"69.0.3497.128","4.2.7":"69.0.3497.128","4.2.8":"69.0.3497.128","4.2.9":"69.0.3497.128","4.2.10":"69.0.3497.128","4.2.11":"69.0.3497.128","4.2.12":"69.0.3497.128","5.0.0-beta.1":"72.0.3626.52","5.0.0-beta.2":"72.0.3626.52","5.0.0-beta.3":"73.0.3683.27","5.0.0-beta.4":"73.0.3683.54","5.0.0-beta.5":"73.0.3683.61","5.0.0-beta.6":"73.0.3683.84","5.0.0-beta.7":"73.0.3683.94","5.0.0-beta.8":"73.0.3683.104","5.0.0-beta.9":"73.0.3683.117","5.0.0":"73.0.3683.119","5.0.1":"73.0.3683.121","5.0.2":"73.0.3683.121","5.0.3":"73.0.3683.121","5.0.4":"73.0.3683.121","5.0.5":"73.0.3683.121","5.0.6":"73.0.3683.121","5.0.7":"73.0.3683.121","5.0.8":"73.0.3683.121","5.0.9":"73.0.3683.121","5.0.10":"73.0.3683.121","5.0.11":"73.0.3683.121","5.0.12":"73.0.3683.121","5.0.13":"73.0.3683.121","6.0.0-beta.1":"76.0.3774.1","6.0.0-beta.2":"76.0.3783.1","6.0.0-beta.3":"76.0.3783.1","6.0.0-beta.4":"76.0.3783.1","6.0.0-beta.5":"76.0.3805.4","6.0.0-beta.6":"76.0.3809.3","6.0.0-beta.7":"76.0.3809.22","6.0.0-beta.8":"76.0.3809.26","6.0.0-beta.9":"76.0.3809.26","6.0.0-beta.10":"76.0.3809.37","6.0.0-beta.11":"76.0.3809.42","6.0.0-beta.12":"76.0.3809.54","6.0.0-beta.13":"76.0.3809.60","6.0.0-beta.14":"76.0.3809.68","6.0.0-beta.15":"76.0.3809.74","6.0.0":"76.0.3809.88","6.0.1":"76.0.3809.102","6.0.2":"76.0.3809.110","6.0.3":"76.0.3809.126","6.0.4":"76.0.3809.131","6.0.5":"76.0.3809.136","6.0.6":"76.0.3809.138","6.0.7":"76.0.3809.139","6.0.8":"76.0.3809.146","6.0.9":"76.0.3809.146","6.0.10":"76.0.3809.146","6.0.11":"76.0.3809.146","6.0.12":"76.0.3809.146","6.1.0":"76.0.3809.146","6.1.1":"76.0.3809.146","6.1.2":"76.0.3809.146","6.1.3":"76.0.3809.146","6.1.4":"76.0.3809.146","6.1.5":"76.0.3809.146","6.1.6":"76.0.3809.146","6.1.7":"76.0.3809.146","6.1.8":"76.0.3809.146","6.1.9":"76.0.3809.146","6.1.10":"76.0.3809.146","6.1.11":"76.0.3809.146","6.1.12":"76.0.3809.146","7.0.0-beta.1":"78.0.3866.0","7.0.0-beta.2":"78.0.3866.0","7.0.0-beta.3":"78.0.3866.0","7.0.0-beta.4":"78.0.3896.6","7.0.0-beta.5":"78.0.3905.1","7.0.0-beta.6":"78.0.3905.1","7.0.0-beta.7":"78.0.3905.1","7.0.0":"78.0.3905.1","7.0.1":"78.0.3904.92","7.1.0":"78.0.3904.94","7.1.1":"78.0.3904.99","7.1.2":"78.0.3904.113","7.1.3":"78.0.3904.126","7.1.4":"78.0.3904.130","7.1.5":"78.0.3904.130","7.1.6":"78.0.3904.130","7.1.7":"78.0.3904.130","7.1.8":"78.0.3904.130","7.1.9":"78.0.3904.130","7.1.10":"78.0.3904.130","7.1.11":"78.0.3904.130","7.1.12":"78.0.3904.130","7.1.13":"78.0.3904.130","7.1.14":"78.0.3904.130","7.2.0":"78.0.3904.130","7.2.1":"78.0.3904.130","7.2.2":"78.0.3904.130","7.2.3":"78.0.3904.130","7.2.4":"78.0.3904.130","7.3.0":"78.0.3904.130","7.3.1":"78.0.3904.130","7.3.2":"78.0.3904.130","7.3.3":"78.0.3904.130","8.0.0-beta.1":"79.0.3931.0","8.0.0-beta.2":"79.0.3931.0","8.0.0-beta.3":"80.0.3955.0","8.0.0-beta.4":"80.0.3955.0","8.0.0-beta.5":"80.0.3987.14","8.0.0-beta.6":"80.0.3987.51","8.0.0-beta.7":"80.0.3987.59","8.0.0-beta.8":"80.0.3987.75","8.0.0-beta.9":"80.0.3987.75","8.0.0":"80.0.3987.86","8.0.1":"80.0.3987.86","8.0.2":"80.0.3987.86","8.0.3":"80.0.3987.134","8.1.0":"80.0.3987.137","8.1.1":"80.0.3987.141","8.2.0":"80.0.3987.158","8.2.1":"80.0.3987.163","8.2.2":"80.0.3987.163","8.2.3":"80.0.3987.163","8.2.4":"80.0.3987.165","8.2.5":"80.0.3987.165","8.3.0":"80.0.3987.165","8.3.1":"80.0.3987.165","8.3.2":"80.0.3987.165","8.3.3":"80.0.3987.165","8.3.4":"80.0.3987.165","8.4.0":"80.0.3987.165","8.4.1":"80.0.3987.165","8.5.0":"80.0.3987.165","8.5.1":"80.0.3987.165","8.5.2":"80.0.3987.165","8.5.3":"80.0.3987.163","8.5.4":"80.0.3987.163","8.5.5":"80.0.3987.163","9.0.0-beta.1":"82.0.4048.0","9.0.0-beta.2":"82.0.4048.0","9.0.0-beta.3":"82.0.4048.0","9.0.0-beta.4":"82.0.4048.0","9.0.0-beta.5":"82.0.4048.0","9.0.0-beta.6":"82.0.4058.2","9.0.0-beta.7":"82.0.4058.2","9.0.0-beta.9":"82.0.4058.2","9.0.0-beta.10":"82.0.4085.10","9.0.0-beta.11":"82.0.4085.14","9.0.0-beta.12":"82.0.4085.14","9.0.0-beta.13":"82.0.4085.14","9.0.0-beta.14":"82.0.4085.27","9.0.0-beta.15":"83.0.4102.3","9.0.0-beta.16":"83.0.4102.3","9.0.0-beta.17":"83.0.4103.14","9.0.0-beta.18":"83.0.4103.16","9.0.0-beta.19":"83.0.4103.24","9.0.0-beta.20":"83.0.4103.26","9.0.0-beta.21":"83.0.4103.26","9.0.0-beta.22":"83.0.4103.34","9.0.0-beta.23":"83.0.4103.44","9.0.0-beta.24":"83.0.4103.45","9.0.0":"83.0.4103.64","9.0.1":"83.0.4103.94","9.0.2":"83.0.4103.94","9.0.3":"83.0.4103.100","9.0.4":"83.0.4103.104","9.0.5":"83.0.4103.119","9.1.0":"83.0.4103.122","9.1.1":"83.0.4103.122","9.1.2":"83.0.4103.122","9.2.0":"83.0.4103.122","9.2.1":"83.0.4103.122","9.3.0":"83.0.4103.122","9.3.1":"83.0.4103.122","9.3.2":"83.0.4103.122","9.3.3":"83.0.4103.122","9.3.4":"83.0.4103.122","9.3.5":"83.0.4103.122","9.4.0":"83.0.4103.122","9.4.1":"83.0.4103.122","9.4.2":"83.0.4103.122","9.4.3":"83.0.4103.122","9.4.4":"83.0.4103.122","10.0.0-beta.1":"84.0.4129.0","10.0.0-beta.2":"84.0.4129.0","10.0.0-beta.3":"85.0.4161.2","10.0.0-beta.4":"85.0.4161.2","10.0.0-beta.8":"85.0.4181.1","10.0.0-beta.9":"85.0.4181.1","10.0.0-beta.10":"85.0.4183.19","10.0.0-beta.11":"85.0.4183.20","10.0.0-beta.12":"85.0.4183.26","10.0.0-beta.13":"85.0.4183.39","10.0.0-beta.14":"85.0.4183.39","10.0.0-beta.15":"85.0.4183.39","10.0.0-beta.17":"85.0.4183.39","10.0.0-beta.19":"85.0.4183.39","10.0.0-beta.20":"85.0.4183.39","10.0.0-beta.21":"85.0.4183.39","10.0.0-beta.23":"85.0.4183.70","10.0.0-beta.24":"85.0.4183.78","10.0.0-beta.25":"85.0.4183.80","10.0.0":"85.0.4183.84","10.0.1":"85.0.4183.86","10.1.0":"85.0.4183.87","10.1.1":"85.0.4183.93","10.1.2":"85.0.4183.98","10.1.3":"85.0.4183.121","10.1.4":"85.0.4183.121","10.1.5":"85.0.4183.121","10.1.6":"85.0.4183.121","10.1.7":"85.0.4183.121","10.2.0":"85.0.4183.121","10.3.0":"85.0.4183.121","10.3.1":"85.0.4183.121","10.3.2":"85.0.4183.121","10.4.0":"85.0.4183.121","10.4.1":"85.0.4183.121","10.4.2":"85.0.4183.121","10.4.3":"85.0.4183.121","10.4.4":"85.0.4183.121","10.4.5":"85.0.4183.121","10.4.6":"85.0.4183.121","10.4.7":"85.0.4183.121","11.0.0-beta.1":"86.0.4234.0","11.0.0-beta.3":"86.0.4234.0","11.0.0-beta.4":"86.0.4234.0","11.0.0-beta.5":"86.0.4234.0","11.0.0-beta.6":"86.0.4234.0","11.0.0-beta.7":"86.0.4234.0","11.0.0-beta.8":"87.0.4251.1","11.0.0-beta.9":"87.0.4251.1","11.0.0-beta.11":"87.0.4251.1","11.0.0-beta.12":"87.0.4280.11","11.0.0-beta.13":"87.0.4280.11","11.0.0-beta.16":"87.0.4280.27","11.0.0-beta.17":"87.0.4280.27","11.0.0-beta.18":"87.0.4280.27","11.0.0-beta.19":"87.0.4280.27","11.0.0-beta.20":"87.0.4280.40","11.0.0-beta.22":"87.0.4280.47","11.0.0-beta.23":"87.0.4280.47","11.0.0":"87.0.4280.60","11.0.1":"87.0.4280.60","11.0.2":"87.0.4280.67","11.0.3":"87.0.4280.67","11.0.4":"87.0.4280.67","11.0.5":"87.0.4280.88","11.1.0":"87.0.4280.88","11.1.1":"87.0.4280.88","11.2.0":"87.0.4280.141","11.2.1":"87.0.4280.141","11.2.2":"87.0.4280.141","11.2.3":"87.0.4280.141","11.3.0":"87.0.4280.141","11.4.0":"87.0.4280.141","11.4.1":"87.0.4280.141","11.4.2":"87.0.4280.141","11.4.3":"87.0.4280.141","11.4.4":"87.0.4280.141","11.4.5":"87.0.4280.141","11.4.6":"87.0.4280.141","11.4.7":"87.0.4280.141","11.4.8":"87.0.4280.141","11.4.9":"87.0.4280.141","11.4.10":"87.0.4280.141","11.4.11":"87.0.4280.141","11.4.12":"87.0.4280.141","11.5.0":"87.0.4280.141","12.0.0-beta.1":"89.0.4328.0","12.0.0-beta.3":"89.0.4328.0","12.0.0-beta.4":"89.0.4328.0","12.0.0-beta.5":"89.0.4328.0","12.0.0-beta.6":"89.0.4328.0","12.0.0-beta.7":"89.0.4328.0","12.0.0-beta.8":"89.0.4328.0","12.0.0-beta.9":"89.0.4328.0","12.0.0-beta.10":"89.0.4328.0","12.0.0-beta.11":"89.0.4328.0","12.0.0-beta.12":"89.0.4328.0","12.0.0-beta.14":"89.0.4328.0","12.0.0-beta.16":"89.0.4348.1","12.0.0-beta.18":"89.0.4348.1","12.0.0-beta.19":"89.0.4348.1","12.0.0-beta.20":"89.0.4348.1","12.0.0-beta.21":"89.0.4388.2","12.0.0-beta.22":"89.0.4388.2","12.0.0-beta.23":"89.0.4388.2","12.0.0-beta.24":"89.0.4388.2","12.0.0-beta.25":"89.0.4388.2","12.0.0-beta.26":"89.0.4388.2","12.0.0-beta.27":"89.0.4389.23","12.0.0-beta.28":"89.0.4389.23","12.0.0-beta.29":"89.0.4389.23","12.0.0-beta.30":"89.0.4389.58","12.0.0-beta.31":"89.0.4389.58","12.0.0":"89.0.4389.69","12.0.1":"89.0.4389.82","12.0.2":"89.0.4389.90","12.0.3":"89.0.4389.114","12.0.4":"89.0.4389.114","12.0.5":"89.0.4389.128","12.0.6":"89.0.4389.128","12.0.7":"89.0.4389.128","12.0.8":"89.0.4389.128","12.0.9":"89.0.4389.128","12.0.10":"89.0.4389.128","12.0.11":"89.0.4389.128","12.0.12":"89.0.4389.128","12.0.13":"89.0.4389.128","12.0.14":"89.0.4389.128","12.0.15":"89.0.4389.128","12.0.16":"89.0.4389.128","12.0.17":"89.0.4389.128","12.0.18":"89.0.4389.128","12.1.0":"89.0.4389.128","12.1.1":"89.0.4389.128","12.1.2":"89.0.4389.128","12.2.0":"89.0.4389.128","12.2.1":"89.0.4389.128","12.2.2":"89.0.4389.128","12.2.3":"89.0.4389.128","13.0.0-beta.2":"90.0.4402.0","13.0.0-beta.3":"90.0.4402.0","13.0.0-beta.4":"90.0.4415.0","13.0.0-beta.5":"90.0.4415.0","13.0.0-beta.6":"90.0.4415.0","13.0.0-beta.7":"90.0.4415.0","13.0.0-beta.8":"90.0.4415.0","13.0.0-beta.9":"90.0.4415.0","13.0.0-beta.10":"90.0.4415.0","13.0.0-beta.11":"90.0.4415.0","13.0.0-beta.12":"90.0.4415.0","13.0.0-beta.13":"90.0.4415.0","13.0.0-beta.14":"91.0.4448.0","13.0.0-beta.16":"91.0.4448.0","13.0.0-beta.17":"91.0.4448.0","13.0.0-beta.18":"91.0.4448.0","13.0.0-beta.20":"91.0.4448.0","13.0.0-beta.21":"91.0.4472.33","13.0.0-beta.22":"91.0.4472.33","13.0.0-beta.23":"91.0.4472.33","13.0.0-beta.24":"91.0.4472.38","13.0.0-beta.25":"91.0.4472.38","13.0.0-beta.26":"91.0.4472.38","13.0.0-beta.27":"91.0.4472.38","13.0.0-beta.28":"91.0.4472.38","13.0.0":"91.0.4472.69","13.0.1":"91.0.4472.69","13.1.0":"91.0.4472.77","13.1.1":"91.0.4472.77","13.1.2":"91.0.4472.77","13.1.3":"91.0.4472.106","13.1.4":"91.0.4472.106","13.1.5":"91.0.4472.124","13.1.6":"91.0.4472.124","13.1.7":"91.0.4472.124","13.1.8":"91.0.4472.164","13.1.9":"91.0.4472.164","13.2.0":"91.0.4472.164","13.2.1":"91.0.4472.164","13.2.2":"91.0.4472.164","13.2.3":"91.0.4472.164","13.3.0":"91.0.4472.164","13.4.0":"91.0.4472.164","13.5.0":"91.0.4472.164","13.5.1":"91.0.4472.164","13.5.2":"91.0.4472.164","13.6.0":"91.0.4472.164","13.6.1":"91.0.4472.164","13.6.2":"91.0.4472.164","13.6.3":"91.0.4472.164","13.6.6":"91.0.4472.164","13.6.7":"91.0.4472.164","13.6.8":"91.0.4472.164","13.6.9":"91.0.4472.164","14.0.0-beta.1":"92.0.4511.0","14.0.0-beta.2":"92.0.4511.0","14.0.0-beta.3":"92.0.4511.0","14.0.0-beta.5":"93.0.4536.0","14.0.0-beta.6":"93.0.4536.0","14.0.0-beta.7":"93.0.4536.0","14.0.0-beta.8":"93.0.4536.0","14.0.0-beta.9":"93.0.4539.0","14.0.0-beta.10":"93.0.4539.0","14.0.0-beta.11":"93.0.4557.4","14.0.0-beta.12":"93.0.4557.4","14.0.0-beta.13":"93.0.4566.0","14.0.0-beta.14":"93.0.4566.0","14.0.0-beta.15":"93.0.4566.0","14.0.0-beta.16":"93.0.4566.0","14.0.0-beta.17":"93.0.4566.0","14.0.0-beta.18":"93.0.4577.15","14.0.0-beta.19":"93.0.4577.15","14.0.0-beta.20":"93.0.4577.15","14.0.0-beta.21":"93.0.4577.15","14.0.0-beta.22":"93.0.4577.25","14.0.0-beta.23":"93.0.4577.25","14.0.0-beta.24":"93.0.4577.51","14.0.0-beta.25":"93.0.4577.51","14.0.0":"93.0.4577.58","14.0.1":"93.0.4577.63","14.0.2":"93.0.4577.82","14.1.0":"93.0.4577.82","14.1.1":"93.0.4577.82","14.2.0":"93.0.4577.82","14.2.1":"93.0.4577.82","14.2.2":"93.0.4577.82","14.2.3":"93.0.4577.82","14.2.4":"93.0.4577.82","14.2.5":"93.0.4577.82","14.2.6":"93.0.4577.82","14.2.7":"93.0.4577.82","14.2.8":"93.0.4577.82","14.2.9":"93.0.4577.82","15.0.0-alpha.1":"93.0.4566.0","15.0.0-alpha.2":"93.0.4566.0","15.0.0-alpha.3":"94.0.4584.0","15.0.0-alpha.4":"94.0.4584.0","15.0.0-alpha.5":"94.0.4584.0","15.0.0-alpha.6":"94.0.4584.0","15.0.0-alpha.7":"94.0.4590.2","15.0.0-alpha.8":"94.0.4590.2","15.0.0-alpha.9":"94.0.4590.2","15.0.0-alpha.10":"94.0.4606.12","15.0.0-beta.1":"94.0.4606.20","15.0.0-beta.2":"94.0.4606.20","15.0.0-beta.3":"94.0.4606.31","15.0.0-beta.4":"94.0.4606.31","15.0.0-beta.5":"94.0.4606.31","15.0.0-beta.6":"94.0.4606.31","15.0.0-beta.7":"94.0.4606.31","15.0.0":"94.0.4606.51","15.1.0":"94.0.4606.61","15.1.1":"94.0.4606.61","15.1.2":"94.0.4606.71","15.2.0":"94.0.4606.81","15.3.0":"94.0.4606.81","15.3.1":"94.0.4606.81","15.3.2":"94.0.4606.81","15.3.3":"94.0.4606.81","15.3.4":"94.0.4606.81","15.3.5":"94.0.4606.81","15.3.6":"94.0.4606.81","15.3.7":"94.0.4606.81","15.4.0":"94.0.4606.81","15.4.1":"94.0.4606.81","15.4.2":"94.0.4606.81","15.5.0":"94.0.4606.81","15.5.1":"94.0.4606.81","15.5.2":"94.0.4606.81","15.5.3":"94.0.4606.81","15.5.4":"94.0.4606.81","15.5.5":"94.0.4606.81","15.5.6":"94.0.4606.81","15.5.7":"94.0.4606.81","16.0.0-alpha.1":"95.0.4629.0","16.0.0-alpha.2":"95.0.4629.0","16.0.0-alpha.3":"95.0.4629.0","16.0.0-alpha.4":"95.0.4629.0","16.0.0-alpha.5":"95.0.4629.0","16.0.0-alpha.6":"95.0.4629.0","16.0.0-alpha.7":"95.0.4629.0","16.0.0-alpha.8":"96.0.4647.0","16.0.0-alpha.9":"96.0.4647.0","16.0.0-beta.1":"96.0.4647.0","16.0.0-beta.2":"96.0.4647.0","16.0.0-beta.3":"96.0.4647.0","16.0.0-beta.4":"96.0.4664.18","16.0.0-beta.5":"96.0.4664.18","16.0.0-beta.6":"96.0.4664.27","16.0.0-beta.7":"96.0.4664.27","16.0.0-beta.8":"96.0.4664.35","16.0.0-beta.9":"96.0.4664.35","16.0.0":"96.0.4664.45","16.0.1":"96.0.4664.45","16.0.2":"96.0.4664.55","16.0.3":"96.0.4664.55","16.0.4":"96.0.4664.55","16.0.5":"96.0.4664.55","16.0.6":"96.0.4664.110","16.0.7":"96.0.4664.110","16.0.8":"96.0.4664.110","16.0.9":"96.0.4664.174","16.0.10":"96.0.4664.174","16.1.0":"96.0.4664.174","16.1.1":"96.0.4664.174","16.2.0":"96.0.4664.174","16.2.1":"96.0.4664.174","16.2.2":"96.0.4664.174","16.2.3":"96.0.4664.174","16.2.4":"96.0.4664.174","16.2.5":"96.0.4664.174","16.2.6":"96.0.4664.174","16.2.7":"96.0.4664.174","16.2.8":"96.0.4664.174","17.0.0-alpha.1":"96.0.4664.4","17.0.0-alpha.2":"96.0.4664.4","17.0.0-alpha.3":"96.0.4664.4","17.0.0-alpha.4":"98.0.4706.0","17.0.0-alpha.5":"98.0.4706.0","17.0.0-alpha.6":"98.0.4706.0","17.0.0-beta.1":"98.0.4706.0","17.0.0-beta.2":"98.0.4706.0","17.0.0-beta.3":"98.0.4758.9","17.0.0-beta.4":"98.0.4758.11","17.0.0-beta.5":"98.0.4758.11","17.0.0-beta.6":"98.0.4758.11","17.0.0-beta.7":"98.0.4758.11","17.0.0-beta.8":"98.0.4758.11","17.0.0-beta.9":"98.0.4758.11","17.0.0":"98.0.4758.74","17.0.1":"98.0.4758.82","17.1.0":"98.0.4758.102","17.1.1":"98.0.4758.109","17.1.2":"98.0.4758.109","17.2.0":"98.0.4758.109","17.3.0":"98.0.4758.141","17.3.1":"98.0.4758.141","17.4.0":"98.0.4758.141","17.4.1":"98.0.4758.141","17.4.2":"98.0.4758.141","17.4.3":"98.0.4758.141","17.4.4":"98.0.4758.141","17.4.5":"98.0.4758.141","17.4.6":"98.0.4758.141","17.4.7":"98.0.4758.141","17.4.8":"98.0.4758.141","17.4.9":"98.0.4758.141","17.4.10":"98.0.4758.141","17.4.11":"98.0.4758.141","18.0.0-alpha.1":"99.0.4767.0","18.0.0-alpha.2":"99.0.4767.0","18.0.0-alpha.3":"99.0.4767.0","18.0.0-alpha.4":"99.0.4767.0","18.0.0-alpha.5":"99.0.4767.0","18.0.0-beta.1":"100.0.4894.0","18.0.0-beta.2":"100.0.4894.0","18.0.0-beta.3":"100.0.4894.0","18.0.0-beta.4":"100.0.4894.0","18.0.0-beta.5":"100.0.4894.0","18.0.0-beta.6":"100.0.4894.0","18.0.0":"100.0.4896.56","18.0.1":"100.0.4896.60","18.0.2":"100.0.4896.60","18.0.3":"100.0.4896.75","18.0.4":"100.0.4896.75","18.1.0":"100.0.4896.127","18.2.0":"100.0.4896.143","18.2.1":"100.0.4896.143","18.2.2":"100.0.4896.143","18.2.3":"100.0.4896.143","18.2.4":"100.0.4896.160","18.3.0":"100.0.4896.160","18.3.1":"100.0.4896.160","18.3.2":"100.0.4896.160","18.3.3":"100.0.4896.160","18.3.4":"100.0.4896.160","18.3.5":"100.0.4896.160","18.3.6":"100.0.4896.160","18.3.7":"100.0.4896.160","18.3.8":"100.0.4896.160","18.3.9":"100.0.4896.160","18.3.11":"100.0.4896.160","18.3.12":"100.0.4896.160","18.3.13":"100.0.4896.160","18.3.14":"100.0.4896.160","18.3.15":"100.0.4896.160","19.0.0-alpha.1":"102.0.4962.3","19.0.0-alpha.2":"102.0.4971.0","19.0.0-alpha.3":"102.0.4971.0","19.0.0-alpha.4":"102.0.4989.0","19.0.0-alpha.5":"102.0.4989.0","19.0.0-beta.1":"102.0.4999.0","19.0.0-beta.2":"102.0.4999.0","19.0.0-beta.3":"102.0.4999.0","19.0.0-beta.4":"102.0.5005.27","19.0.0-beta.5":"102.0.5005.40","19.0.0-beta.6":"102.0.5005.40","19.0.0-beta.7":"102.0.5005.40","19.0.0-beta.8":"102.0.5005.49","19.0.0":"102.0.5005.61","19.0.1":"102.0.5005.61","19.0.2":"102.0.5005.63","19.0.3":"102.0.5005.63","19.0.4":"102.0.5005.63","19.0.5":"102.0.5005.115","19.0.6":"102.0.5005.115","19.0.7":"102.0.5005.134","19.0.8":"102.0.5005.148","19.0.9":"102.0.5005.167","19.0.10":"102.0.5005.167","19.0.11":"102.0.5005.167","19.0.12":"102.0.5005.167","19.0.13":"102.0.5005.167","19.0.14":"102.0.5005.167","19.0.15":"102.0.5005.167","19.0.16":"102.0.5005.167","19.0.17":"102.0.5005.167","19.1.0":"102.0.5005.167","19.1.1":"102.0.5005.167","19.1.2":"102.0.5005.167","19.1.3":"102.0.5005.167","19.1.4":"102.0.5005.167","19.1.5":"102.0.5005.167","19.1.6":"102.0.5005.167","19.1.7":"102.0.5005.167","19.1.8":"102.0.5005.167","19.1.9":"102.0.5005.167","20.0.0-alpha.1":"103.0.5044.0","20.0.0-alpha.2":"104.0.5073.0","20.0.0-alpha.3":"104.0.5073.0","20.0.0-alpha.4":"104.0.5073.0","20.0.0-alpha.5":"104.0.5073.0","20.0.0-alpha.6":"104.0.5073.0","20.0.0-alpha.7":"104.0.5073.0","20.0.0-beta.1":"104.0.5073.0","20.0.0-beta.2":"104.0.5073.0","20.0.0-beta.3":"104.0.5073.0","20.0.0-beta.4":"104.0.5073.0","20.0.0-beta.5":"104.0.5073.0","20.0.0-beta.6":"104.0.5073.0","20.0.0-beta.7":"104.0.5073.0","20.0.0-beta.8":"104.0.5073.0","20.0.0-beta.9":"104.0.5112.39","20.0.0-beta.10":"104.0.5112.48","20.0.0-beta.11":"104.0.5112.48","20.0.0-beta.12":"104.0.5112.48","20.0.0-beta.13":"104.0.5112.57","20.0.0":"104.0.5112.65","20.0.1":"104.0.5112.81","20.0.2":"104.0.5112.81","20.0.3":"104.0.5112.81","20.1.0":"104.0.5112.102","20.1.1":"104.0.5112.102","20.1.2":"104.0.5112.114","20.1.3":"104.0.5112.114","20.1.4":"104.0.5112.114","20.2.0":"104.0.5112.124","20.3.0":"104.0.5112.124","20.3.1":"104.0.5112.124","20.3.2":"104.0.5112.124","20.3.3":"104.0.5112.124","20.3.4":"104.0.5112.124","20.3.5":"104.0.5112.124","20.3.6":"104.0.5112.124","20.3.7":"104.0.5112.124","20.3.8":"104.0.5112.124","20.3.9":"104.0.5112.124","20.3.10":"104.0.5112.124","20.3.11":"104.0.5112.124","20.3.12":"104.0.5112.124","21.0.0-alpha.1":"105.0.5187.0","21.0.0-alpha.2":"105.0.5187.0","21.0.0-alpha.3":"105.0.5187.0","21.0.0-alpha.4":"105.0.5187.0","21.0.0-alpha.5":"105.0.5187.0","21.0.0-alpha.6":"106.0.5216.0","21.0.0-beta.1":"106.0.5216.0","21.0.0-beta.2":"106.0.5216.0","21.0.0-beta.3":"106.0.5216.0","21.0.0-beta.4":"106.0.5216.0","21.0.0-beta.5":"106.0.5216.0","21.0.0-beta.6":"106.0.5249.40","21.0.0-beta.7":"106.0.5249.40","21.0.0-beta.8":"106.0.5249.40","21.0.0":"106.0.5249.51","21.0.1":"106.0.5249.61","21.1.0":"106.0.5249.91","21.1.1":"106.0.5249.103","21.2.0":"106.0.5249.119","21.2.1":"106.0.5249.165","21.2.2":"106.0.5249.168","21.2.3":"106.0.5249.168","21.3.0":"106.0.5249.181","21.3.1":"106.0.5249.181","21.3.3":"106.0.5249.199","21.3.4":"106.0.5249.199","21.3.5":"106.0.5249.199","21.4.0":"106.0.5249.199","21.4.1":"106.0.5249.199","21.4.2":"106.0.5249.199","21.4.3":"106.0.5249.199","21.4.4":"106.0.5249.199","22.0.0-alpha.1":"107.0.5286.0","22.0.0-alpha.3":"108.0.5329.0","22.0.0-alpha.4":"108.0.5329.0","22.0.0-alpha.5":"108.0.5329.0","22.0.0-alpha.6":"108.0.5329.0","22.0.0-alpha.7":"108.0.5355.0","22.0.0-alpha.8":"108.0.5359.10","22.0.0-beta.1":"108.0.5359.10","22.0.0-beta.2":"108.0.5359.10","22.0.0-beta.3":"108.0.5359.10","22.0.0-beta.4":"108.0.5359.29","22.0.0-beta.5":"108.0.5359.40","22.0.0-beta.6":"108.0.5359.40","22.0.0-beta.7":"108.0.5359.48","22.0.0-beta.8":"108.0.5359.48","22.0.0":"108.0.5359.62","22.0.1":"108.0.5359.125","22.0.2":"108.0.5359.179","22.0.3":"108.0.5359.179","22.1.0":"108.0.5359.179","22.2.0":"108.0.5359.215","22.2.1":"108.0.5359.215","22.3.0":"108.0.5359.215","22.3.1":"108.0.5359.215","22.3.2":"108.0.5359.215","22.3.3":"108.0.5359.215","22.3.4":"108.0.5359.215","22.3.5":"108.0.5359.215","22.3.6":"108.0.5359.215","22.3.7":"108.0.5359.215","22.3.8":"108.0.5359.215","22.3.9":"108.0.5359.215","22.3.10":"108.0.5359.215","22.3.11":"108.0.5359.215","22.3.12":"108.0.5359.215","22.3.13":"108.0.5359.215","22.3.14":"108.0.5359.215","22.3.15":"108.0.5359.215","22.3.16":"108.0.5359.215","22.3.17":"108.0.5359.215","22.3.18":"108.0.5359.215","22.3.20":"108.0.5359.215","22.3.21":"108.0.5359.215","22.3.22":"108.0.5359.215","22.3.23":"108.0.5359.215","22.3.24":"108.0.5359.215","22.3.25":"108.0.5359.215","22.3.26":"108.0.5359.215","22.3.27":"108.0.5359.215","23.0.0-alpha.1":"110.0.5415.0","23.0.0-alpha.2":"110.0.5451.0","23.0.0-alpha.3":"110.0.5451.0","23.0.0-beta.1":"110.0.5478.5","23.0.0-beta.2":"110.0.5478.5","23.0.0-beta.3":"110.0.5478.5","23.0.0-beta.4":"110.0.5481.30","23.0.0-beta.5":"110.0.5481.38","23.0.0-beta.6":"110.0.5481.52","23.0.0-beta.8":"110.0.5481.52","23.0.0":"110.0.5481.77","23.1.0":"110.0.5481.100","23.1.1":"110.0.5481.104","23.1.2":"110.0.5481.177","23.1.3":"110.0.5481.179","23.1.4":"110.0.5481.192","23.2.0":"110.0.5481.192","23.2.1":"110.0.5481.208","23.2.2":"110.0.5481.208","23.2.3":"110.0.5481.208","23.2.4":"110.0.5481.208","23.3.0":"110.0.5481.208","23.3.1":"110.0.5481.208","23.3.2":"110.0.5481.208","23.3.3":"110.0.5481.208","23.3.4":"110.0.5481.208","23.3.5":"110.0.5481.208","23.3.6":"110.0.5481.208","23.3.7":"110.0.5481.208","23.3.8":"110.0.5481.208","23.3.9":"110.0.5481.208","23.3.10":"110.0.5481.208","23.3.11":"110.0.5481.208","23.3.12":"110.0.5481.208","23.3.13":"110.0.5481.208","24.0.0-alpha.1":"111.0.5560.0","24.0.0-alpha.2":"111.0.5560.0","24.0.0-alpha.3":"111.0.5560.0","24.0.0-alpha.4":"111.0.5560.0","24.0.0-alpha.5":"111.0.5560.0","24.0.0-alpha.6":"111.0.5560.0","24.0.0-alpha.7":"111.0.5560.0","24.0.0-beta.1":"111.0.5563.50","24.0.0-beta.2":"111.0.5563.50","24.0.0-beta.3":"112.0.5615.20","24.0.0-beta.4":"112.0.5615.20","24.0.0-beta.5":"112.0.5615.29","24.0.0-beta.6":"112.0.5615.39","24.0.0-beta.7":"112.0.5615.39","24.0.0":"112.0.5615.49","24.1.0":"112.0.5615.50","24.1.1":"112.0.5615.50","24.1.2":"112.0.5615.87","24.1.3":"112.0.5615.165","24.2.0":"112.0.5615.165","24.3.0":"112.0.5615.165","24.3.1":"112.0.5615.183","24.4.0":"112.0.5615.204","24.4.1":"112.0.5615.204","24.5.0":"112.0.5615.204","24.5.1":"112.0.5615.204","24.6.0":"112.0.5615.204","24.6.1":"112.0.5615.204","24.6.2":"112.0.5615.204","24.6.3":"112.0.5615.204","24.6.4":"112.0.5615.204","24.6.5":"112.0.5615.204","24.7.0":"112.0.5615.204","24.7.1":"112.0.5615.204","24.8.0":"112.0.5615.204","24.8.1":"112.0.5615.204","24.8.2":"112.0.5615.204","24.8.3":"112.0.5615.204","24.8.4":"112.0.5615.204","24.8.5":"112.0.5615.204","24.8.6":"112.0.5615.204","24.8.7":"112.0.5615.204","24.8.8":"112.0.5615.204","25.0.0-alpha.1":"114.0.5694.0","25.0.0-alpha.2":"114.0.5694.0","25.0.0-alpha.3":"114.0.5710.0","25.0.0-alpha.4":"114.0.5710.0","25.0.0-alpha.5":"114.0.5719.0","25.0.0-alpha.6":"114.0.5719.0","25.0.0-beta.1":"114.0.5719.0","25.0.0-beta.2":"114.0.5719.0","25.0.0-beta.3":"114.0.5719.0","25.0.0-beta.4":"114.0.5735.16","25.0.0-beta.5":"114.0.5735.16","25.0.0-beta.6":"114.0.5735.16","25.0.0-beta.7":"114.0.5735.16","25.0.0-beta.8":"114.0.5735.35","25.0.0-beta.9":"114.0.5735.45","25.0.0":"114.0.5735.45","25.0.1":"114.0.5735.45","25.1.0":"114.0.5735.106","25.1.1":"114.0.5735.106","25.2.0":"114.0.5735.134","25.3.0":"114.0.5735.199","25.3.1":"114.0.5735.243","25.3.2":"114.0.5735.248","25.4.0":"114.0.5735.248","25.5.0":"114.0.5735.289","25.6.0":"114.0.5735.289","25.7.0":"114.0.5735.289","25.8.0":"114.0.5735.289","25.8.1":"114.0.5735.289","25.8.2":"114.0.5735.289","25.8.3":"114.0.5735.289","25.8.4":"114.0.5735.289","25.9.0":"114.0.5735.289","25.9.1":"114.0.5735.289","25.9.2":"114.0.5735.289","25.9.3":"114.0.5735.289","25.9.4":"114.0.5735.289","25.9.5":"114.0.5735.289","25.9.6":"114.0.5735.289","25.9.7":"114.0.5735.289","25.9.8":"114.0.5735.289","26.0.0-alpha.1":"116.0.5791.0","26.0.0-alpha.2":"116.0.5791.0","26.0.0-alpha.3":"116.0.5791.0","26.0.0-alpha.4":"116.0.5791.0","26.0.0-alpha.5":"116.0.5791.0","26.0.0-alpha.6":"116.0.5815.0","26.0.0-alpha.7":"116.0.5831.0","26.0.0-alpha.8":"116.0.5845.0","26.0.0-beta.1":"116.0.5845.0","26.0.0-beta.2":"116.0.5845.14","26.0.0-beta.3":"116.0.5845.14","26.0.0-beta.4":"116.0.5845.14","26.0.0-beta.5":"116.0.5845.14","26.0.0-beta.6":"116.0.5845.14","26.0.0-beta.7":"116.0.5845.14","26.0.0-beta.8":"116.0.5845.42","26.0.0-beta.9":"116.0.5845.42","26.0.0-beta.10":"116.0.5845.49","26.0.0-beta.11":"116.0.5845.49","26.0.0-beta.12":"116.0.5845.62","26.0.0":"116.0.5845.82","26.1.0":"116.0.5845.97","26.2.0":"116.0.5845.179","26.2.1":"116.0.5845.188","26.2.2":"116.0.5845.190","26.2.3":"116.0.5845.190","26.2.4":"116.0.5845.190","26.3.0":"116.0.5845.228","26.4.0":"116.0.5845.228","26.4.1":"116.0.5845.228","26.4.2":"116.0.5845.228","26.4.3":"116.0.5845.228","26.5.0":"116.0.5845.228","26.6.0":"116.0.5845.228","26.6.1":"116.0.5845.228","26.6.2":"116.0.5845.228","26.6.3":"116.0.5845.228","26.6.4":"116.0.5845.228","26.6.5":"116.0.5845.228","26.6.6":"116.0.5845.228","26.6.7":"116.0.5845.228","26.6.8":"116.0.5845.228","26.6.9":"116.0.5845.228","26.6.10":"116.0.5845.228","27.0.0-alpha.1":"118.0.5949.0","27.0.0-alpha.2":"118.0.5949.0","27.0.0-alpha.3":"118.0.5949.0","27.0.0-alpha.4":"118.0.5949.0","27.0.0-alpha.5":"118.0.5949.0","27.0.0-alpha.6":"118.0.5949.0","27.0.0-beta.1":"118.0.5993.5","27.0.0-beta.2":"118.0.5993.5","27.0.0-beta.3":"118.0.5993.5","27.0.0-beta.4":"118.0.5993.11","27.0.0-beta.5":"118.0.5993.18","27.0.0-beta.6":"118.0.5993.18","27.0.0-beta.7":"118.0.5993.18","27.0.0-beta.8":"118.0.5993.18","27.0.0-beta.9":"118.0.5993.18","27.0.0":"118.0.5993.54","27.0.1":"118.0.5993.89","27.0.2":"118.0.5993.89","27.0.3":"118.0.5993.120","27.0.4":"118.0.5993.129","27.1.0":"118.0.5993.144","27.1.2":"118.0.5993.144","27.1.3":"118.0.5993.159","27.2.0":"118.0.5993.159","27.2.1":"118.0.5993.159","27.2.2":"118.0.5993.159","27.2.3":"118.0.5993.159","27.2.4":"118.0.5993.159","27.3.0":"118.0.5993.159","27.3.1":"118.0.5993.159","27.3.2":"118.0.5993.159","27.3.3":"118.0.5993.159","27.3.4":"118.0.5993.159","27.3.5":"118.0.5993.159","27.3.6":"118.0.5993.159","27.3.7":"118.0.5993.159","27.3.8":"118.0.5993.159","27.3.9":"118.0.5993.159","27.3.10":"118.0.5993.159","27.3.11":"118.0.5993.159","28.0.0-alpha.1":"119.0.6045.0","28.0.0-alpha.2":"119.0.6045.0","28.0.0-alpha.3":"119.0.6045.21","28.0.0-alpha.4":"119.0.6045.21","28.0.0-alpha.5":"119.0.6045.33","28.0.0-alpha.6":"119.0.6045.33","28.0.0-alpha.7":"119.0.6045.33","28.0.0-beta.1":"119.0.6045.33","28.0.0-beta.2":"120.0.6099.0","28.0.0-beta.3":"120.0.6099.5","28.0.0-beta.4":"120.0.6099.5","28.0.0-beta.5":"120.0.6099.18","28.0.0-beta.6":"120.0.6099.18","28.0.0-beta.7":"120.0.6099.18","28.0.0-beta.8":"120.0.6099.18","28.0.0-beta.9":"120.0.6099.18","28.0.0-beta.10":"120.0.6099.18","28.0.0-beta.11":"120.0.6099.35","28.0.0":"120.0.6099.56","28.1.0":"120.0.6099.109","28.1.1":"120.0.6099.109","28.1.2":"120.0.6099.199","28.1.3":"120.0.6099.199","28.1.4":"120.0.6099.216","28.2.0":"120.0.6099.227","28.2.1":"120.0.6099.268","28.2.2":"120.0.6099.276","28.2.3":"120.0.6099.283","28.2.4":"120.0.6099.291","28.2.5":"120.0.6099.291","28.2.6":"120.0.6099.291","28.2.7":"120.0.6099.291","28.2.8":"120.0.6099.291","28.2.9":"120.0.6099.291","28.2.10":"120.0.6099.291","28.3.0":"120.0.6099.291","28.3.1":"120.0.6099.291","28.3.2":"120.0.6099.291","28.3.3":"120.0.6099.291","29.0.0-alpha.1":"121.0.6147.0","29.0.0-alpha.2":"121.0.6147.0","29.0.0-alpha.3":"121.0.6147.0","29.0.0-alpha.4":"121.0.6159.0","29.0.0-alpha.5":"121.0.6159.0","29.0.0-alpha.6":"121.0.6159.0","29.0.0-alpha.7":"121.0.6159.0","29.0.0-alpha.8":"122.0.6194.0","29.0.0-alpha.9":"122.0.6236.2","29.0.0-alpha.10":"122.0.6236.2","29.0.0-alpha.11":"122.0.6236.2","29.0.0-beta.1":"122.0.6236.2","29.0.0-beta.2":"122.0.6236.2","29.0.0-beta.3":"122.0.6261.6","29.0.0-beta.4":"122.0.6261.6","29.0.0-beta.5":"122.0.6261.18","29.0.0-beta.6":"122.0.6261.18","29.0.0-beta.7":"122.0.6261.18","29.0.0-beta.8":"122.0.6261.18","29.0.0-beta.9":"122.0.6261.18","29.0.0-beta.10":"122.0.6261.18","29.0.0-beta.11":"122.0.6261.18","29.0.0-beta.12":"122.0.6261.29","29.0.0":"122.0.6261.39","29.0.1":"122.0.6261.57","29.1.0":"122.0.6261.70","29.1.1":"122.0.6261.111","29.1.2":"122.0.6261.112","29.1.3":"122.0.6261.112","29.1.4":"122.0.6261.129","29.1.5":"122.0.6261.130","29.1.6":"122.0.6261.139","29.2.0":"122.0.6261.156","29.3.0":"122.0.6261.156","29.3.1":"122.0.6261.156","29.3.2":"122.0.6261.156","29.3.3":"122.0.6261.156","29.4.0":"122.0.6261.156","29.4.1":"122.0.6261.156","29.4.2":"122.0.6261.156","29.4.3":"122.0.6261.156","29.4.4":"122.0.6261.156","29.4.5":"122.0.6261.156","29.4.6":"122.0.6261.156","30.0.0-alpha.1":"123.0.6296.0","30.0.0-alpha.2":"123.0.6312.5","30.0.0-alpha.3":"124.0.6323.0","30.0.0-alpha.4":"124.0.6323.0","30.0.0-alpha.5":"124.0.6331.0","30.0.0-alpha.6":"124.0.6331.0","30.0.0-alpha.7":"124.0.6353.0","30.0.0-beta.1":"124.0.6359.0","30.0.0-beta.2":"124.0.6359.0","30.0.0-beta.3":"124.0.6367.9","30.0.0-beta.4":"124.0.6367.9","30.0.0-beta.5":"124.0.6367.9","30.0.0-beta.6":"124.0.6367.18","30.0.0-beta.7":"124.0.6367.29","30.0.0-beta.8":"124.0.6367.29","30.0.0":"124.0.6367.49","30.0.1":"124.0.6367.60","30.0.2":"124.0.6367.91","30.0.3":"124.0.6367.119","30.0.4":"124.0.6367.201","30.0.5":"124.0.6367.207","30.0.6":"124.0.6367.207","30.0.7":"124.0.6367.221","30.0.8":"124.0.6367.230","30.0.9":"124.0.6367.233","30.1.0":"124.0.6367.243","30.1.1":"124.0.6367.243","30.1.2":"124.0.6367.243","30.2.0":"124.0.6367.243","30.3.0":"124.0.6367.243","30.3.1":"124.0.6367.243","30.4.0":"124.0.6367.243","30.5.0":"124.0.6367.243","30.5.1":"124.0.6367.243","31.0.0-alpha.1":"125.0.6412.0","31.0.0-alpha.2":"125.0.6412.0","31.0.0-alpha.3":"125.0.6412.0","31.0.0-alpha.4":"125.0.6412.0","31.0.0-alpha.5":"125.0.6412.0","31.0.0-beta.1":"126.0.6445.0","31.0.0-beta.2":"126.0.6445.0","31.0.0-beta.3":"126.0.6445.0","31.0.0-beta.4":"126.0.6445.0","31.0.0-beta.5":"126.0.6445.0","31.0.0-beta.6":"126.0.6445.0","31.0.0-beta.7":"126.0.6445.0","31.0.0-beta.8":"126.0.6445.0","31.0.0-beta.9":"126.0.6445.0","31.0.0-beta.10":"126.0.6478.36","31.0.0":"126.0.6478.36","31.0.1":"126.0.6478.36","31.0.2":"126.0.6478.61","31.1.0":"126.0.6478.114","31.2.0":"126.0.6478.127","31.2.1":"126.0.6478.127","31.3.0":"126.0.6478.183","31.3.1":"126.0.6478.185","31.4.0":"126.0.6478.234","31.5.0":"126.0.6478.234","31.6.0":"126.0.6478.234","31.7.0":"126.0.6478.234","31.7.1":"126.0.6478.234","31.7.2":"126.0.6478.234","31.7.3":"126.0.6478.234","31.7.4":"126.0.6478.234","31.7.5":"126.0.6478.234","31.7.6":"126.0.6478.234","31.7.7":"126.0.6478.234","32.0.0-alpha.1":"127.0.6521.0","32.0.0-alpha.2":"127.0.6521.0","32.0.0-alpha.3":"127.0.6521.0","32.0.0-alpha.4":"127.0.6521.0","32.0.0-alpha.5":"127.0.6521.0","32.0.0-alpha.6":"128.0.6571.0","32.0.0-alpha.7":"128.0.6571.0","32.0.0-alpha.8":"128.0.6573.0","32.0.0-alpha.9":"128.0.6573.0","32.0.0-alpha.10":"128.0.6573.0","32.0.0-beta.1":"128.0.6573.0","32.0.0-beta.2":"128.0.6611.0","32.0.0-beta.3":"128.0.6613.7","32.0.0-beta.4":"128.0.6613.18","32.0.0-beta.5":"128.0.6613.27","32.0.0-beta.6":"128.0.6613.27","32.0.0-beta.7":"128.0.6613.27","32.0.0":"128.0.6613.36","32.0.1":"128.0.6613.36","32.0.2":"128.0.6613.84","32.1.0":"128.0.6613.120","32.1.1":"128.0.6613.137","32.1.2":"128.0.6613.162","32.2.0":"128.0.6613.178","32.2.1":"128.0.6613.186","32.2.2":"128.0.6613.186","32.2.3":"128.0.6613.186","32.2.4":"128.0.6613.186","32.2.5":"128.0.6613.186","32.2.6":"128.0.6613.186","32.2.7":"128.0.6613.186","32.2.8":"128.0.6613.186","32.3.0":"128.0.6613.186","32.3.1":"128.0.6613.186","32.3.2":"128.0.6613.186","32.3.3":"128.0.6613.186","33.0.0-alpha.1":"129.0.6668.0","33.0.0-alpha.2":"130.0.6672.0","33.0.0-alpha.3":"130.0.6672.0","33.0.0-alpha.4":"130.0.6672.0","33.0.0-alpha.5":"130.0.6672.0","33.0.0-alpha.6":"130.0.6672.0","33.0.0-beta.1":"130.0.6672.0","33.0.0-beta.2":"130.0.6672.0","33.0.0-beta.3":"130.0.6672.0","33.0.0-beta.4":"130.0.6672.0","33.0.0-beta.5":"130.0.6723.19","33.0.0-beta.6":"130.0.6723.19","33.0.0-beta.7":"130.0.6723.19","33.0.0-beta.8":"130.0.6723.31","33.0.0-beta.9":"130.0.6723.31","33.0.0-beta.10":"130.0.6723.31","33.0.0-beta.11":"130.0.6723.44","33.0.0":"130.0.6723.44","33.0.1":"130.0.6723.59","33.0.2":"130.0.6723.59","33.1.0":"130.0.6723.91","33.2.0":"130.0.6723.118","33.2.1":"130.0.6723.137","33.3.0":"130.0.6723.152","33.3.1":"130.0.6723.170","33.3.2":"130.0.6723.191","33.4.0":"130.0.6723.191","33.4.1":"130.0.6723.191","33.4.2":"130.0.6723.191","33.4.3":"130.0.6723.191","33.4.4":"130.0.6723.191","33.4.5":"130.0.6723.191","33.4.6":"130.0.6723.191","33.4.7":"130.0.6723.191","33.4.8":"130.0.6723.191","33.4.9":"130.0.6723.191","33.4.10":"130.0.6723.191","33.4.11":"130.0.6723.191","34.0.0-alpha.1":"131.0.6776.0","34.0.0-alpha.2":"132.0.6779.0","34.0.0-alpha.3":"132.0.6789.1","34.0.0-alpha.4":"132.0.6789.1","34.0.0-alpha.5":"132.0.6789.1","34.0.0-alpha.6":"132.0.6789.1","34.0.0-alpha.7":"132.0.6789.1","34.0.0-alpha.8":"132.0.6820.0","34.0.0-alpha.9":"132.0.6824.0","34.0.0-beta.1":"132.0.6824.0","34.0.0-beta.2":"132.0.6824.0","34.0.0-beta.3":"132.0.6824.0","34.0.0-beta.4":"132.0.6834.6","34.0.0-beta.5":"132.0.6834.6","34.0.0-beta.6":"132.0.6834.15","34.0.0-beta.7":"132.0.6834.15","34.0.0-beta.8":"132.0.6834.15","34.0.0-beta.9":"132.0.6834.32","34.0.0-beta.10":"132.0.6834.32","34.0.0-beta.11":"132.0.6834.32","34.0.0-beta.12":"132.0.6834.46","34.0.0-beta.13":"132.0.6834.46","34.0.0-beta.14":"132.0.6834.57","34.0.0-beta.15":"132.0.6834.57","34.0.0-beta.16":"132.0.6834.57","34.0.0":"132.0.6834.83","34.0.1":"132.0.6834.83","34.0.2":"132.0.6834.159","34.1.0":"132.0.6834.194","34.1.1":"132.0.6834.194","34.2.0":"132.0.6834.196","34.3.0":"132.0.6834.210","34.3.1":"132.0.6834.210","34.3.2":"132.0.6834.210","34.3.3":"132.0.6834.210","34.3.4":"132.0.6834.210","34.4.0":"132.0.6834.210","34.4.1":"132.0.6834.210","34.5.0":"132.0.6834.210","34.5.1":"132.0.6834.210","34.5.2":"132.0.6834.210","34.5.3":"132.0.6834.210","34.5.4":"132.0.6834.210","34.5.5":"132.0.6834.210","34.5.6":"132.0.6834.210","34.5.7":"132.0.6834.210","34.5.8":"132.0.6834.210","35.0.0-alpha.1":"133.0.6920.0","35.0.0-alpha.2":"133.0.6920.0","35.0.0-alpha.3":"133.0.6920.0","35.0.0-alpha.4":"133.0.6920.0","35.0.0-alpha.5":"133.0.6920.0","35.0.0-beta.1":"133.0.6920.0","35.0.0-beta.2":"134.0.6968.0","35.0.0-beta.3":"134.0.6968.0","35.0.0-beta.4":"134.0.6968.0","35.0.0-beta.5":"134.0.6989.0","35.0.0-beta.6":"134.0.6990.0","35.0.0-beta.7":"134.0.6990.0","35.0.0-beta.8":"134.0.6998.10","35.0.0-beta.9":"134.0.6998.10","35.0.0-beta.10":"134.0.6998.23","35.0.0-beta.11":"134.0.6998.23","35.0.0-beta.12":"134.0.6998.23","35.0.0-beta.13":"134.0.6998.44","35.0.0":"134.0.6998.44","35.0.1":"134.0.6998.44","35.0.2":"134.0.6998.88","35.0.3":"134.0.6998.88","35.1.0":"134.0.6998.165","35.1.1":"134.0.6998.165","35.1.2":"134.0.6998.178","35.1.3":"134.0.6998.179","35.1.4":"134.0.6998.179","35.1.5":"134.0.6998.179","35.2.0":"134.0.6998.205","35.2.1":"134.0.6998.205","35.2.2":"134.0.6998.205","35.3.0":"134.0.6998.205","35.4.0":"134.0.6998.205","35.5.0":"134.0.6998.205","35.5.1":"134.0.6998.205","35.6.0":"134.0.6998.205","35.7.0":"134.0.6998.205","35.7.1":"134.0.6998.205","35.7.2":"134.0.6998.205","35.7.4":"134.0.6998.205","35.7.5":"134.0.6998.205","36.0.0-alpha.1":"135.0.7049.5","36.0.0-alpha.2":"136.0.7062.0","36.0.0-alpha.3":"136.0.7062.0","36.0.0-alpha.4":"136.0.7062.0","36.0.0-alpha.5":"136.0.7067.0","36.0.0-alpha.6":"136.0.7067.0","36.0.0-beta.1":"136.0.7067.0","36.0.0-beta.2":"136.0.7067.0","36.0.0-beta.3":"136.0.7067.0","36.0.0-beta.4":"136.0.7067.0","36.0.0-beta.5":"136.0.7103.17","36.0.0-beta.6":"136.0.7103.25","36.0.0-beta.7":"136.0.7103.25","36.0.0-beta.8":"136.0.7103.33","36.0.0-beta.9":"136.0.7103.33","36.0.0":"136.0.7103.48","36.0.1":"136.0.7103.48","36.1.0":"136.0.7103.49","36.2.0":"136.0.7103.49","36.2.1":"136.0.7103.93","36.3.0":"136.0.7103.113","36.3.1":"136.0.7103.113","36.3.2":"136.0.7103.115","36.4.0":"136.0.7103.149","36.5.0":"136.0.7103.168","36.6.0":"136.0.7103.177","36.7.0":"136.0.7103.177","36.7.1":"136.0.7103.177","36.7.3":"136.0.7103.177","36.7.4":"136.0.7103.177","36.8.0":"136.0.7103.177","36.8.1":"136.0.7103.177","37.0.0-alpha.1":"137.0.7151.0","37.0.0-alpha.2":"137.0.7151.0","37.0.0-alpha.3":"138.0.7156.0","37.0.0-alpha.4":"138.0.7165.0","37.0.0-alpha.5":"138.0.7177.0","37.0.0-alpha.6":"138.0.7178.0","37.0.0-alpha.7":"138.0.7178.0","37.0.0-beta.1":"138.0.7178.0","37.0.0-beta.2":"138.0.7178.0","37.0.0-beta.3":"138.0.7190.0","37.0.0-beta.4":"138.0.7204.15","37.0.0-beta.5":"138.0.7204.15","37.0.0-beta.6":"138.0.7204.15","37.0.0-beta.7":"138.0.7204.15","37.0.0-beta.8":"138.0.7204.23","37.0.0-beta.9":"138.0.7204.35","37.0.0":"138.0.7204.35","37.1.0":"138.0.7204.35","37.2.0":"138.0.7204.97","37.2.1":"138.0.7204.97","37.2.2":"138.0.7204.100","37.2.3":"138.0.7204.100","37.2.4":"138.0.7204.157","37.2.5":"138.0.7204.168","37.2.6":"138.0.7204.185","37.3.0":"138.0.7204.224","37.3.1":"138.0.7204.235","37.4.0":"138.0.7204.243","38.0.0-alpha.1":"139.0.7219.0","38.0.0-alpha.2":"139.0.7219.0","38.0.0-alpha.3":"139.0.7219.0","38.0.0-alpha.4":"140.0.7261.0","38.0.0-alpha.5":"140.0.7261.0","38.0.0-alpha.6":"140.0.7261.0","38.0.0-alpha.7":"140.0.7281.0","38.0.0-alpha.8":"140.0.7281.0","38.0.0-alpha.9":"140.0.7301.0","38.0.0-alpha.10":"140.0.7309.0","38.0.0-alpha.11":"140.0.7312.0","38.0.0-alpha.12":"140.0.7314.0","38.0.0-alpha.13":"140.0.7314.0","38.0.0-beta.1":"140.0.7314.0","38.0.0-beta.2":"140.0.7327.0","38.0.0-beta.3":"140.0.7327.0","38.0.0-beta.4":"140.0.7339.2","38.0.0-beta.5":"140.0.7339.2","38.0.0-beta.6":"140.0.7339.2","38.0.0-beta.7":"140.0.7339.16","38.0.0-beta.8":"140.0.7339.24","38.0.0-beta.9":"140.0.7339.24"} \ No newline at end of file diff --git a/novas/novacore-zephyr/groq-code-cli/node_modules/electron-to-chromium/index.js b/novas/novacore-zephyr/groq-code-cli/node_modules/electron-to-chromium/index.js new file mode 100644 index 0000000000000000000000000000000000000000..1818281fab50434ab48c203906894558b4a66eab --- /dev/null +++ b/novas/novacore-zephyr/groq-code-cli/node_modules/electron-to-chromium/index.js @@ -0,0 +1,36 @@ +var versions = require('./versions'); +var fullVersions = require('./full-versions'); +var chromiumVersions = require('./chromium-versions'); +var fullChromiumVersions = require('./full-chromium-versions'); + +var electronToChromium = function (query) { + var number = getQueryString(query); + return number.split('.').length > 2 ? fullVersions[number] : versions[number] || undefined; +}; + +var chromiumToElectron = function (query) { + var number = getQueryString(query); + return number.split('.').length > 2 ? fullChromiumVersions[number] : chromiumVersions[number] || undefined; +}; + +var electronToBrowserList = function (query) { + var number = getQueryString(query); + return versions[number] ? "Chrome >= " + versions[number] : undefined; +}; + +var getQueryString = function (query) { + var number = query; + if (query === 1) { number = "1.0" } + if (typeof query === 'number') { number += ''; } + return number; +}; + +module.exports = { + versions: versions, + fullVersions: fullVersions, + chromiumVersions: chromiumVersions, + fullChromiumVersions: fullChromiumVersions, + electronToChromium: electronToChromium, + electronToBrowserList: electronToBrowserList, + chromiumToElectron: chromiumToElectron +}; diff --git a/novas/novacore-zephyr/groq-code-cli/node_modules/electron-to-chromium/package.json b/novas/novacore-zephyr/groq-code-cli/node_modules/electron-to-chromium/package.json new file mode 100644 index 0000000000000000000000000000000000000000..d66299277bbfa568901653a593ac596bc9541950 --- /dev/null +++ b/novas/novacore-zephyr/groq-code-cli/node_modules/electron-to-chromium/package.json @@ -0,0 +1,44 @@ +{ + "name": "electron-to-chromium", + "version": "1.5.211", + "description": "Provides a list of electron-to-chromium version mappings", + "main": "index.js", + "files": [ + "versions.js", + "full-versions.js", + "chromium-versions.js", + "full-chromium-versions.js", + "versions.json", + "full-versions.json", + "chromium-versions.json", + "full-chromium-versions.json", + "LICENSE" + ], + "scripts": { + "build": "node build.mjs", + "update": "node automated-update.js", + "test": "nyc ava --verbose", + "report": "nyc report --reporter=text-lcov > coverage.lcov && codecov" + }, + "repository": { + "type": "git", + "url": "https://github.com/kilian/electron-to-chromium/" + }, + "keywords": [ + "electron", + "chrome", + "chromium", + "browserslist", + "browserlist" + ], + "author": "Kilian Valkhof", + "license": "ISC", + "devDependencies": { + "ava": "^5.1.1", + "codecov": "^3.8.2", + "compare-versions": "^6.0.0-rc.1", + "node-fetch": "^3.3.0", + "nyc": "^15.1.0", + "shelljs": "^0.8.5" + } +} diff --git a/novas/novacore-zephyr/groq-code-cli/node_modules/electron-to-chromium/versions.js b/novas/novacore-zephyr/groq-code-cli/node_modules/electron-to-chromium/versions.js new file mode 100644 index 0000000000000000000000000000000000000000..143ed234624ce440df83550d8f0adf46a33615da --- /dev/null +++ b/novas/novacore-zephyr/groq-code-cli/node_modules/electron-to-chromium/versions.js @@ -0,0 +1,206 @@ +module.exports = { + "0.20": "39", + "0.21": "41", + "0.22": "41", + "0.23": "41", + "0.24": "41", + "0.25": "42", + "0.26": "42", + "0.27": "43", + "0.28": "43", + "0.29": "43", + "0.30": "44", + "0.31": "45", + "0.32": "45", + "0.33": "45", + "0.34": "45", + "0.35": "45", + "0.36": "47", + "0.37": "49", + "1.0": "49", + "1.1": "50", + "1.2": "51", + "1.3": "52", + "1.4": "53", + "1.5": "54", + "1.6": "56", + "1.7": "58", + "1.8": "59", + "2.0": "61", + "2.1": "61", + "3.0": "66", + "3.1": "66", + "4.0": "69", + "4.1": "69", + "4.2": "69", + "5.0": "73", + "6.0": "76", + "6.1": "76", + "7.0": "78", + "7.1": "78", + "7.2": "78", + "7.3": "78", + "8.0": "80", + "8.1": "80", + "8.2": "80", + "8.3": "80", + "8.4": "80", + "8.5": "80", + "9.0": "83", + "9.1": "83", + "9.2": "83", + "9.3": "83", + "9.4": "83", + "10.0": "85", + "10.1": "85", + "10.2": "85", + "10.3": "85", + "10.4": "85", + "11.0": "87", + "11.1": "87", + "11.2": "87", + "11.3": "87", + "11.4": "87", + "11.5": "87", + "12.0": "89", + "12.1": "89", + "12.2": "89", + "13.0": "91", + "13.1": "91", + "13.2": "91", + "13.3": "91", + "13.4": "91", + "13.5": "91", + "13.6": "91", + "14.0": "93", + "14.1": "93", + "14.2": "93", + "15.0": "94", + "15.1": "94", + "15.2": "94", + "15.3": "94", + "15.4": "94", + "15.5": "94", + "16.0": "96", + "16.1": "96", + "16.2": "96", + "17.0": "98", + "17.1": "98", + "17.2": "98", + "17.3": "98", + "17.4": "98", + "18.0": "100", + "18.1": "100", + "18.2": "100", + "18.3": "100", + "19.0": "102", + "19.1": "102", + "20.0": "104", + "20.1": "104", + "20.2": "104", + "20.3": "104", + "21.0": "106", + "21.1": "106", + "21.2": "106", + "21.3": "106", + "21.4": "106", + "22.0": "108", + "22.1": "108", + "22.2": "108", + "22.3": "108", + "23.0": "110", + "23.1": "110", + "23.2": "110", + "23.3": "110", + "24.0": "112", + "24.1": "112", + "24.2": "112", + "24.3": "112", + "24.4": "112", + "24.5": "112", + "24.6": "112", + "24.7": "112", + "24.8": "112", + "25.0": "114", + "25.1": "114", + "25.2": "114", + "25.3": "114", + "25.4": "114", + "25.5": "114", + "25.6": "114", + "25.7": "114", + "25.8": "114", + "25.9": "114", + "26.0": "116", + "26.1": "116", + "26.2": "116", + "26.3": "116", + "26.4": "116", + "26.5": "116", + "26.6": "116", + "27.0": "118", + "27.1": "118", + "27.2": "118", + "27.3": "118", + "28.0": "120", + "28.1": "120", + "28.2": "120", + "28.3": "120", + "29.0": "122", + "29.1": "122", + "29.2": "122", + "29.3": "122", + "29.4": "122", + "30.0": "124", + "30.1": "124", + "30.2": "124", + "30.3": "124", + "30.4": "124", + "30.5": "124", + "31.0": "126", + "31.1": "126", + "31.2": "126", + "31.3": "126", + "31.4": "126", + "31.5": "126", + "31.6": "126", + "31.7": "126", + "32.0": "128", + "32.1": "128", + "32.2": "128", + "32.3": "128", + "33.0": "130", + "33.1": "130", + "33.2": "130", + "33.3": "130", + "33.4": "130", + "34.0": "132", + "34.1": "132", + "34.2": "132", + "34.3": "132", + "34.4": "132", + "34.5": "132", + "35.0": "134", + "35.1": "134", + "35.2": "134", + "35.3": "134", + "35.4": "134", + "35.5": "134", + "35.6": "134", + "35.7": "134", + "36.0": "136", + "36.1": "136", + "36.2": "136", + "36.3": "136", + "36.4": "136", + "36.5": "136", + "36.6": "136", + "36.7": "136", + "36.8": "136", + "37.0": "138", + "37.1": "138", + "37.2": "138", + "37.3": "138", + "37.4": "138", + "38.0": "140" +}; \ No newline at end of file diff --git a/novas/novacore-zephyr/groq-code-cli/node_modules/electron-to-chromium/versions.json b/novas/novacore-zephyr/groq-code-cli/node_modules/electron-to-chromium/versions.json new file mode 100644 index 0000000000000000000000000000000000000000..fb019e29517f1b758074ec7a8403ca36e69d7a66 --- /dev/null +++ b/novas/novacore-zephyr/groq-code-cli/node_modules/electron-to-chromium/versions.json @@ -0,0 +1 @@ +{"0.20":"39","0.21":"41","0.22":"41","0.23":"41","0.24":"41","0.25":"42","0.26":"42","0.27":"43","0.28":"43","0.29":"43","0.30":"44","0.31":"45","0.32":"45","0.33":"45","0.34":"45","0.35":"45","0.36":"47","0.37":"49","1.0":"49","1.1":"50","1.2":"51","1.3":"52","1.4":"53","1.5":"54","1.6":"56","1.7":"58","1.8":"59","2.0":"61","2.1":"61","3.0":"66","3.1":"66","4.0":"69","4.1":"69","4.2":"69","5.0":"73","6.0":"76","6.1":"76","7.0":"78","7.1":"78","7.2":"78","7.3":"78","8.0":"80","8.1":"80","8.2":"80","8.3":"80","8.4":"80","8.5":"80","9.0":"83","9.1":"83","9.2":"83","9.3":"83","9.4":"83","10.0":"85","10.1":"85","10.2":"85","10.3":"85","10.4":"85","11.0":"87","11.1":"87","11.2":"87","11.3":"87","11.4":"87","11.5":"87","12.0":"89","12.1":"89","12.2":"89","13.0":"91","13.1":"91","13.2":"91","13.3":"91","13.4":"91","13.5":"91","13.6":"91","14.0":"93","14.1":"93","14.2":"93","15.0":"94","15.1":"94","15.2":"94","15.3":"94","15.4":"94","15.5":"94","16.0":"96","16.1":"96","16.2":"96","17.0":"98","17.1":"98","17.2":"98","17.3":"98","17.4":"98","18.0":"100","18.1":"100","18.2":"100","18.3":"100","19.0":"102","19.1":"102","20.0":"104","20.1":"104","20.2":"104","20.3":"104","21.0":"106","21.1":"106","21.2":"106","21.3":"106","21.4":"106","22.0":"108","22.1":"108","22.2":"108","22.3":"108","23.0":"110","23.1":"110","23.2":"110","23.3":"110","24.0":"112","24.1":"112","24.2":"112","24.3":"112","24.4":"112","24.5":"112","24.6":"112","24.7":"112","24.8":"112","25.0":"114","25.1":"114","25.2":"114","25.3":"114","25.4":"114","25.5":"114","25.6":"114","25.7":"114","25.8":"114","25.9":"114","26.0":"116","26.1":"116","26.2":"116","26.3":"116","26.4":"116","26.5":"116","26.6":"116","27.0":"118","27.1":"118","27.2":"118","27.3":"118","28.0":"120","28.1":"120","28.2":"120","28.3":"120","29.0":"122","29.1":"122","29.2":"122","29.3":"122","29.4":"122","30.0":"124","30.1":"124","30.2":"124","30.3":"124","30.4":"124","30.5":"124","31.0":"126","31.1":"126","31.2":"126","31.3":"126","31.4":"126","31.5":"126","31.6":"126","31.7":"126","32.0":"128","32.1":"128","32.2":"128","32.3":"128","33.0":"130","33.1":"130","33.2":"130","33.3":"130","33.4":"130","34.0":"132","34.1":"132","34.2":"132","34.3":"132","34.4":"132","34.5":"132","35.0":"134","35.1":"134","35.2":"134","35.3":"134","35.4":"134","35.5":"134","35.6":"134","35.7":"134","36.0":"136","36.1":"136","36.2":"136","36.3":"136","36.4":"136","36.5":"136","36.6":"136","36.7":"136","36.8":"136","37.0":"138","37.1":"138","37.2":"138","37.3":"138","37.4":"138","38.0":"140"} \ No newline at end of file diff --git a/novas/novacore-zephyr/groq-code-cli/node_modules/get-set-props/get-set-props.json b/novas/novacore-zephyr/groq-code-cli/node_modules/get-set-props/get-set-props.json new file mode 100644 index 0000000000000000000000000000000000000000..86145e2fddaaefb4c70edf024ae22981d42e6f23 --- /dev/null +++ b/novas/novacore-zephyr/groq-code-cli/node_modules/get-set-props/get-set-props.json @@ -0,0 +1,46 @@ +{ + "Array": [ + "length" + ], + "ArrayBuffer": [], + "Boolean": [], + "DataView": [], + "Date": [], + "Error": [ + "stack" + ], + "Float32Array": [], + "Float64Array": [], + "Function": [ + "arguments", + "caller", + "length", + "name", + "prototype" + ], + "Int16Array": [], + "Int32Array": [], + "Int8Array": [], + "Map": [], + "Number": [], + "Object": [], + "Promise": [], + "RegExp": [ + "global", + "ignoreCase", + "lastIndex", + "multiline", + "source" + ], + "Set": [], + "String": [ + "length" + ], + "Symbol": [], + "Uint16Array": [], + "Uint32Array": [], + "Uint8Array": [], + "Uint8ClampedArray": [], + "WeakMap": [], + "WeakSet": [] +} \ No newline at end of file diff --git a/novas/novacore-zephyr/groq-code-cli/node_modules/get-set-props/license b/novas/novacore-zephyr/groq-code-cli/node_modules/get-set-props/license new file mode 100644 index 0000000000000000000000000000000000000000..b3d742d95cfb5d45616f2f017c3e008086200ded --- /dev/null +++ b/novas/novacore-zephyr/groq-code-cli/node_modules/get-set-props/license @@ -0,0 +1,21 @@ +The MIT License (MIT) + +Copyright (c) Sindre Sorhus (sindresorhus.com), Dustin Specker (github.com/dustinspecker) + +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. diff --git a/novas/novacore-zephyr/groq-code-cli/node_modules/get-set-props/package.json b/novas/novacore-zephyr/groq-code-cli/node_modules/get-set-props/package.json new file mode 100644 index 0000000000000000000000000000000000000000..2a17f07621fa52c39c4cb6c613ca063f540ea0d1 --- /dev/null +++ b/novas/novacore-zephyr/groq-code-cli/node_modules/get-set-props/package.json @@ -0,0 +1,45 @@ +{ + "name": "get-set-props", + "version": "0.1.0", + "description": "List of getter/setter properties for JavaScript types", + "license": "MIT", + "repository": "dustinspecker/get-set-props", + "author": { + "name": "Dustin Specker", + "email": "DustinSpecker@DustinSpecker.com", + "url": "github.com/dustinspecker" + }, + "engines": { + "node": ">=0.10.0" + }, + "scripts": { + "test": "xo && node test.js", + "generate": "node generate.js" + }, + "main": "get-set-props.json", + "files": [ + "get-set-props.json" + ], + "keywords": [ + "js", + "javascript", + "ecmascript", + "builtin", + "types", + "type", + "data", + "getter", + "setter", + "props", + "properties", + "property", + "list", + "array", + "json" + ], + "devDependencies": { + "ava": "0.0.4", + "js-types": "^1.0.0", + "xo": "*" + } +} diff --git a/novas/novacore-zephyr/groq-code-cli/node_modules/get-set-props/readme.md b/novas/novacore-zephyr/groq-code-cli/node_modules/get-set-props/readme.md new file mode 100644 index 0000000000000000000000000000000000000000..1ffe4ca53252dab5fd4156d0e3cba388bc13d1af --- /dev/null +++ b/novas/novacore-zephyr/groq-code-cli/node_modules/get-set-props/readme.md @@ -0,0 +1,51 @@ +# get-set-props [![Build Status](https://travis-ci.org/dustinspecker/get-set-props.svg?branch=master)](https://travis-ci.org/dustinspecker/get-set-props) + +> List of getter/setter properties for [JavaScript types](https://github.com/sindresorhus/js-types) + +It's just a [JSON file](get-set-props.json) and can be used wherever. + +**Forked from [Sindre Sorhus](http://sindresorhus.com)' [proto-props](https://github.com/sindresorhus/proto-props)** + + +## Install + +``` +$ npm install --save get-set-props +``` + + +## Usage + +```js +var getSetProps = require('get-set-props'); + +console.log(getSetProps); +/* +{ + Array: [ + 'length', + ], + ArrayBuffer: [ + ], + ... + Error: [ + 'stack' + ], + ... +} +*/ +``` + + +## Dev + +The JSON file is generated by running: + +``` +$ npm run generate +``` + + +## License + +MIT © [Dustin Specker](https://github.com/dustinspecker) diff --git a/novas/novacore-zephyr/groq-code-cli/node_modules/globals/globals.json b/novas/novacore-zephyr/groq-code-cli/node_modules/globals/globals.json new file mode 100644 index 0000000000000000000000000000000000000000..44b632f57cc5f8d4267e1182587217fd09e84ec7 --- /dev/null +++ b/novas/novacore-zephyr/groq-code-cli/node_modules/globals/globals.json @@ -0,0 +1,1998 @@ +{ + "builtin": { + "AggregateError": false, + "Array": false, + "ArrayBuffer": false, + "Atomics": false, + "BigInt": false, + "BigInt64Array": false, + "BigUint64Array": false, + "Boolean": false, + "constructor": false, + "DataView": false, + "Date": false, + "decodeURI": false, + "decodeURIComponent": false, + "encodeURI": false, + "encodeURIComponent": false, + "Error": false, + "escape": false, + "eval": false, + "EvalError": false, + "FinalizationRegistry": false, + "Float32Array": false, + "Float64Array": false, + "Function": false, + "globalThis": false, + "hasOwnProperty": false, + "Infinity": false, + "Int16Array": false, + "Int32Array": false, + "Int8Array": false, + "isFinite": false, + "isNaN": false, + "isPrototypeOf": false, + "JSON": false, + "Map": false, + "Math": false, + "NaN": false, + "Number": false, + "Object": false, + "parseFloat": false, + "parseInt": false, + "Promise": false, + "propertyIsEnumerable": false, + "Proxy": false, + "RangeError": false, + "ReferenceError": false, + "Reflect": false, + "RegExp": false, + "Set": false, + "SharedArrayBuffer": false, + "String": false, + "Symbol": false, + "SyntaxError": false, + "toLocaleString": false, + "toString": false, + "TypeError": false, + "Uint16Array": false, + "Uint32Array": false, + "Uint8Array": false, + "Uint8ClampedArray": false, + "undefined": false, + "unescape": false, + "URIError": false, + "valueOf": false, + "WeakMap": false, + "WeakRef": false, + "WeakSet": false + }, + "es5": { + "Array": false, + "Boolean": false, + "constructor": false, + "Date": false, + "decodeURI": false, + "decodeURIComponent": false, + "encodeURI": false, + "encodeURIComponent": false, + "Error": false, + "escape": false, + "eval": false, + "EvalError": false, + "Function": false, + "hasOwnProperty": false, + "Infinity": false, + "isFinite": false, + "isNaN": false, + "isPrototypeOf": false, + "JSON": false, + "Math": false, + "NaN": false, + "Number": false, + "Object": false, + "parseFloat": false, + "parseInt": false, + "propertyIsEnumerable": false, + "RangeError": false, + "ReferenceError": false, + "RegExp": false, + "String": false, + "SyntaxError": false, + "toLocaleString": false, + "toString": false, + "TypeError": false, + "undefined": false, + "unescape": false, + "URIError": false, + "valueOf": false + }, + "es2015": { + "Array": false, + "ArrayBuffer": false, + "Boolean": false, + "constructor": false, + "DataView": false, + "Date": false, + "decodeURI": false, + "decodeURIComponent": false, + "encodeURI": false, + "encodeURIComponent": false, + "Error": false, + "escape": false, + "eval": false, + "EvalError": false, + "Float32Array": false, + "Float64Array": false, + "Function": false, + "hasOwnProperty": false, + "Infinity": false, + "Int16Array": false, + "Int32Array": false, + "Int8Array": false, + "isFinite": false, + "isNaN": false, + "isPrototypeOf": false, + "JSON": false, + "Map": false, + "Math": false, + "NaN": false, + "Number": false, + "Object": false, + "parseFloat": false, + "parseInt": false, + "Promise": false, + "propertyIsEnumerable": false, + "Proxy": false, + "RangeError": false, + "ReferenceError": false, + "Reflect": false, + "RegExp": false, + "Set": false, + "String": false, + "Symbol": false, + "SyntaxError": false, + "toLocaleString": false, + "toString": false, + "TypeError": false, + "Uint16Array": false, + "Uint32Array": false, + "Uint8Array": false, + "Uint8ClampedArray": false, + "undefined": false, + "unescape": false, + "URIError": false, + "valueOf": false, + "WeakMap": false, + "WeakSet": false + }, + "es2017": { + "Array": false, + "ArrayBuffer": false, + "Atomics": false, + "Boolean": false, + "constructor": false, + "DataView": false, + "Date": false, + "decodeURI": false, + "decodeURIComponent": false, + "encodeURI": false, + "encodeURIComponent": false, + "Error": false, + "escape": false, + "eval": false, + "EvalError": false, + "Float32Array": false, + "Float64Array": false, + "Function": false, + "hasOwnProperty": false, + "Infinity": false, + "Int16Array": false, + "Int32Array": false, + "Int8Array": false, + "isFinite": false, + "isNaN": false, + "isPrototypeOf": false, + "JSON": false, + "Map": false, + "Math": false, + "NaN": false, + "Number": false, + "Object": false, + "parseFloat": false, + "parseInt": false, + "Promise": false, + "propertyIsEnumerable": false, + "Proxy": false, + "RangeError": false, + "ReferenceError": false, + "Reflect": false, + "RegExp": false, + "Set": false, + "SharedArrayBuffer": false, + "String": false, + "Symbol": false, + "SyntaxError": false, + "toLocaleString": false, + "toString": false, + "TypeError": false, + "Uint16Array": false, + "Uint32Array": false, + "Uint8Array": false, + "Uint8ClampedArray": false, + "undefined": false, + "unescape": false, + "URIError": false, + "valueOf": false, + "WeakMap": false, + "WeakSet": false + }, + "es2020": { + "Array": false, + "ArrayBuffer": false, + "Atomics": false, + "BigInt": false, + "BigInt64Array": false, + "BigUint64Array": false, + "Boolean": false, + "constructor": false, + "DataView": false, + "Date": false, + "decodeURI": false, + "decodeURIComponent": false, + "encodeURI": false, + "encodeURIComponent": false, + "Error": false, + "escape": false, + "eval": false, + "EvalError": false, + "Float32Array": false, + "Float64Array": false, + "Function": false, + "globalThis": false, + "hasOwnProperty": false, + "Infinity": false, + "Int16Array": false, + "Int32Array": false, + "Int8Array": false, + "isFinite": false, + "isNaN": false, + "isPrototypeOf": false, + "JSON": false, + "Map": false, + "Math": false, + "NaN": false, + "Number": false, + "Object": false, + "parseFloat": false, + "parseInt": false, + "Promise": false, + "propertyIsEnumerable": false, + "Proxy": false, + "RangeError": false, + "ReferenceError": false, + "Reflect": false, + "RegExp": false, + "Set": false, + "SharedArrayBuffer": false, + "String": false, + "Symbol": false, + "SyntaxError": false, + "toLocaleString": false, + "toString": false, + "TypeError": false, + "Uint16Array": false, + "Uint32Array": false, + "Uint8Array": false, + "Uint8ClampedArray": false, + "undefined": false, + "unescape": false, + "URIError": false, + "valueOf": false, + "WeakMap": false, + "WeakSet": false + }, + "es2021": { + "AggregateError": false, + "Array": false, + "ArrayBuffer": false, + "Atomics": false, + "BigInt": false, + "BigInt64Array": false, + "BigUint64Array": false, + "Boolean": false, + "constructor": false, + "DataView": false, + "Date": false, + "decodeURI": false, + "decodeURIComponent": false, + "encodeURI": false, + "encodeURIComponent": false, + "Error": false, + "escape": false, + "eval": false, + "EvalError": false, + "FinalizationRegistry": false, + "Float32Array": false, + "Float64Array": false, + "Function": false, + "globalThis": false, + "hasOwnProperty": false, + "Infinity": false, + "Int16Array": false, + "Int32Array": false, + "Int8Array": false, + "isFinite": false, + "isNaN": false, + "isPrototypeOf": false, + "JSON": false, + "Map": false, + "Math": false, + "NaN": false, + "Number": false, + "Object": false, + "parseFloat": false, + "parseInt": false, + "Promise": false, + "propertyIsEnumerable": false, + "Proxy": false, + "RangeError": false, + "ReferenceError": false, + "Reflect": false, + "RegExp": false, + "Set": false, + "SharedArrayBuffer": false, + "String": false, + "Symbol": false, + "SyntaxError": false, + "toLocaleString": false, + "toString": false, + "TypeError": false, + "Uint16Array": false, + "Uint32Array": false, + "Uint8Array": false, + "Uint8ClampedArray": false, + "undefined": false, + "unescape": false, + "URIError": false, + "valueOf": false, + "WeakMap": false, + "WeakRef": false, + "WeakSet": false + }, + "browser": { + "AbortController": false, + "AbortSignal": false, + "addEventListener": false, + "alert": false, + "AnalyserNode": false, + "Animation": false, + "AnimationEffectReadOnly": false, + "AnimationEffectTiming": false, + "AnimationEffectTimingReadOnly": false, + "AnimationEvent": false, + "AnimationPlaybackEvent": false, + "AnimationTimeline": false, + "applicationCache": false, + "ApplicationCache": false, + "ApplicationCacheErrorEvent": false, + "atob": false, + "Attr": false, + "Audio": false, + "AudioBuffer": false, + "AudioBufferSourceNode": false, + "AudioContext": false, + "AudioDestinationNode": false, + "AudioListener": false, + "AudioNode": false, + "AudioParam": false, + "AudioProcessingEvent": false, + "AudioScheduledSourceNode": false, + "AudioWorkletGlobalScope": false, + "AudioWorkletNode": false, + "AudioWorkletProcessor": false, + "BarProp": false, + "BaseAudioContext": false, + "BatteryManager": false, + "BeforeUnloadEvent": false, + "BiquadFilterNode": false, + "Blob": false, + "BlobEvent": false, + "blur": false, + "BroadcastChannel": false, + "btoa": false, + "BudgetService": false, + "ByteLengthQueuingStrategy": false, + "Cache": false, + "caches": false, + "CacheStorage": false, + "cancelAnimationFrame": false, + "cancelIdleCallback": false, + "CanvasCaptureMediaStreamTrack": false, + "CanvasGradient": false, + "CanvasPattern": false, + "CanvasRenderingContext2D": false, + "ChannelMergerNode": false, + "ChannelSplitterNode": false, + "CharacterData": false, + "clearInterval": false, + "clearTimeout": false, + "clientInformation": false, + "ClipboardEvent": false, + "ClipboardItem": false, + "close": false, + "closed": false, + "CloseEvent": false, + "Comment": false, + "CompositionEvent": false, + "CompressionStream": false, + "confirm": false, + "console": false, + "ConstantSourceNode": false, + "ConvolverNode": false, + "CountQueuingStrategy": false, + "createImageBitmap": false, + "Credential": false, + "CredentialsContainer": false, + "crypto": false, + "Crypto": false, + "CryptoKey": false, + "CSS": false, + "CSSConditionRule": false, + "CSSFontFaceRule": false, + "CSSGroupingRule": false, + "CSSImportRule": false, + "CSSKeyframeRule": false, + "CSSKeyframesRule": false, + "CSSMatrixComponent": false, + "CSSMediaRule": false, + "CSSNamespaceRule": false, + "CSSPageRule": false, + "CSSPerspective": false, + "CSSRotate": false, + "CSSRule": false, + "CSSRuleList": false, + "CSSScale": false, + "CSSSkew": false, + "CSSSkewX": false, + "CSSSkewY": false, + "CSSStyleDeclaration": false, + "CSSStyleRule": false, + "CSSStyleSheet": false, + "CSSSupportsRule": false, + "CSSTransformValue": false, + "CSSTranslate": false, + "CustomElementRegistry": false, + "customElements": false, + "CustomEvent": false, + "DataTransfer": false, + "DataTransferItem": false, + "DataTransferItemList": false, + "DecompressionStream": false, + "defaultstatus": false, + "defaultStatus": false, + "DelayNode": false, + "DeviceMotionEvent": false, + "DeviceOrientationEvent": false, + "devicePixelRatio": false, + "dispatchEvent": false, + "document": false, + "Document": false, + "DocumentFragment": false, + "DocumentType": false, + "DOMError": false, + "DOMException": false, + "DOMImplementation": false, + "DOMMatrix": false, + "DOMMatrixReadOnly": false, + "DOMParser": false, + "DOMPoint": false, + "DOMPointReadOnly": false, + "DOMQuad": false, + "DOMRect": false, + "DOMRectList": false, + "DOMRectReadOnly": false, + "DOMStringList": false, + "DOMStringMap": false, + "DOMTokenList": false, + "DragEvent": false, + "DynamicsCompressorNode": false, + "Element": false, + "ErrorEvent": false, + "event": false, + "Event": false, + "EventSource": false, + "EventTarget": false, + "external": false, + "fetch": false, + "File": false, + "FileList": false, + "FileReader": false, + "find": false, + "focus": false, + "FocusEvent": false, + "FontFace": false, + "FontFaceSetLoadEvent": false, + "FormData": false, + "FormDataEvent": false, + "frameElement": false, + "frames": false, + "GainNode": false, + "Gamepad": false, + "GamepadButton": false, + "GamepadEvent": false, + "getComputedStyle": false, + "getSelection": false, + "HashChangeEvent": false, + "Headers": false, + "history": false, + "History": false, + "HTMLAllCollection": false, + "HTMLAnchorElement": false, + "HTMLAreaElement": false, + "HTMLAudioElement": false, + "HTMLBaseElement": false, + "HTMLBodyElement": false, + "HTMLBRElement": false, + "HTMLButtonElement": false, + "HTMLCanvasElement": false, + "HTMLCollection": false, + "HTMLContentElement": false, + "HTMLDataElement": false, + "HTMLDataListElement": false, + "HTMLDetailsElement": false, + "HTMLDialogElement": false, + "HTMLDirectoryElement": false, + "HTMLDivElement": false, + "HTMLDListElement": false, + "HTMLDocument": false, + "HTMLElement": false, + "HTMLEmbedElement": false, + "HTMLFieldSetElement": false, + "HTMLFontElement": false, + "HTMLFormControlsCollection": false, + "HTMLFormElement": false, + "HTMLFrameElement": false, + "HTMLFrameSetElement": false, + "HTMLHeadElement": false, + "HTMLHeadingElement": false, + "HTMLHRElement": false, + "HTMLHtmlElement": false, + "HTMLIFrameElement": false, + "HTMLImageElement": false, + "HTMLInputElement": false, + "HTMLLabelElement": false, + "HTMLLegendElement": false, + "HTMLLIElement": false, + "HTMLLinkElement": false, + "HTMLMapElement": false, + "HTMLMarqueeElement": false, + "HTMLMediaElement": false, + "HTMLMenuElement": false, + "HTMLMetaElement": false, + "HTMLMeterElement": false, + "HTMLModElement": false, + "HTMLObjectElement": false, + "HTMLOListElement": false, + "HTMLOptGroupElement": false, + "HTMLOptionElement": false, + "HTMLOptionsCollection": false, + "HTMLOutputElement": false, + "HTMLParagraphElement": false, + "HTMLParamElement": false, + "HTMLPictureElement": false, + "HTMLPreElement": false, + "HTMLProgressElement": false, + "HTMLQuoteElement": false, + "HTMLScriptElement": false, + "HTMLSelectElement": false, + "HTMLShadowElement": false, + "HTMLSlotElement": false, + "HTMLSourceElement": false, + "HTMLSpanElement": false, + "HTMLStyleElement": false, + "HTMLTableCaptionElement": false, + "HTMLTableCellElement": false, + "HTMLTableColElement": false, + "HTMLTableElement": false, + "HTMLTableRowElement": false, + "HTMLTableSectionElement": false, + "HTMLTemplateElement": false, + "HTMLTextAreaElement": false, + "HTMLTimeElement": false, + "HTMLTitleElement": false, + "HTMLTrackElement": false, + "HTMLUListElement": false, + "HTMLUnknownElement": false, + "HTMLVideoElement": false, + "IDBCursor": false, + "IDBCursorWithValue": false, + "IDBDatabase": false, + "IDBFactory": false, + "IDBIndex": false, + "IDBKeyRange": false, + "IDBObjectStore": false, + "IDBOpenDBRequest": false, + "IDBRequest": false, + "IDBTransaction": false, + "IDBVersionChangeEvent": false, + "IdleDeadline": false, + "IIRFilterNode": false, + "Image": false, + "ImageBitmap": false, + "ImageBitmapRenderingContext": false, + "ImageCapture": false, + "ImageData": false, + "indexedDB": false, + "innerHeight": false, + "innerWidth": false, + "InputEvent": false, + "IntersectionObserver": false, + "IntersectionObserverEntry": false, + "Intl": false, + "isSecureContext": false, + "KeyboardEvent": false, + "KeyframeEffect": false, + "KeyframeEffectReadOnly": false, + "length": false, + "localStorage": false, + "location": true, + "Location": false, + "locationbar": false, + "matchMedia": false, + "MediaDeviceInfo": false, + "MediaDevices": false, + "MediaElementAudioSourceNode": false, + "MediaEncryptedEvent": false, + "MediaError": false, + "MediaKeyMessageEvent": false, + "MediaKeySession": false, + "MediaKeyStatusMap": false, + "MediaKeySystemAccess": false, + "MediaList": false, + "MediaMetadata": false, + "MediaQueryList": false, + "MediaQueryListEvent": false, + "MediaRecorder": false, + "MediaSettingsRange": false, + "MediaSource": false, + "MediaStream": false, + "MediaStreamAudioDestinationNode": false, + "MediaStreamAudioSourceNode": false, + "MediaStreamConstraints": false, + "MediaStreamEvent": false, + "MediaStreamTrack": false, + "MediaStreamTrackEvent": false, + "menubar": false, + "MessageChannel": false, + "MessageEvent": false, + "MessagePort": false, + "MIDIAccess": false, + "MIDIConnectionEvent": false, + "MIDIInput": false, + "MIDIInputMap": false, + "MIDIMessageEvent": false, + "MIDIOutput": false, + "MIDIOutputMap": false, + "MIDIPort": false, + "MimeType": false, + "MimeTypeArray": false, + "MouseEvent": false, + "moveBy": false, + "moveTo": false, + "MutationEvent": false, + "MutationObserver": false, + "MutationRecord": false, + "name": false, + "NamedNodeMap": false, + "NavigationPreloadManager": false, + "navigator": false, + "Navigator": false, + "NavigatorUAData": false, + "NetworkInformation": false, + "Node": false, + "NodeFilter": false, + "NodeIterator": false, + "NodeList": false, + "Notification": false, + "OfflineAudioCompletionEvent": false, + "OfflineAudioContext": false, + "offscreenBuffering": false, + "OffscreenCanvas": true, + "OffscreenCanvasRenderingContext2D": false, + "onabort": true, + "onafterprint": true, + "onanimationend": true, + "onanimationiteration": true, + "onanimationstart": true, + "onappinstalled": true, + "onauxclick": true, + "onbeforeinstallprompt": true, + "onbeforeprint": true, + "onbeforeunload": true, + "onblur": true, + "oncancel": true, + "oncanplay": true, + "oncanplaythrough": true, + "onchange": true, + "onclick": true, + "onclose": true, + "oncontextmenu": true, + "oncuechange": true, + "ondblclick": true, + "ondevicemotion": true, + "ondeviceorientation": true, + "ondeviceorientationabsolute": true, + "ondrag": true, + "ondragend": true, + "ondragenter": true, + "ondragleave": true, + "ondragover": true, + "ondragstart": true, + "ondrop": true, + "ondurationchange": true, + "onemptied": true, + "onended": true, + "onerror": true, + "onfocus": true, + "ongotpointercapture": true, + "onhashchange": true, + "oninput": true, + "oninvalid": true, + "onkeydown": true, + "onkeypress": true, + "onkeyup": true, + "onlanguagechange": true, + "onload": true, + "onloadeddata": true, + "onloadedmetadata": true, + "onloadstart": true, + "onlostpointercapture": true, + "onmessage": true, + "onmessageerror": true, + "onmousedown": true, + "onmouseenter": true, + "onmouseleave": true, + "onmousemove": true, + "onmouseout": true, + "onmouseover": true, + "onmouseup": true, + "onmousewheel": true, + "onoffline": true, + "ononline": true, + "onpagehide": true, + "onpageshow": true, + "onpause": true, + "onplay": true, + "onplaying": true, + "onpointercancel": true, + "onpointerdown": true, + "onpointerenter": true, + "onpointerleave": true, + "onpointermove": true, + "onpointerout": true, + "onpointerover": true, + "onpointerup": true, + "onpopstate": true, + "onprogress": true, + "onratechange": true, + "onrejectionhandled": true, + "onreset": true, + "onresize": true, + "onscroll": true, + "onsearch": true, + "onseeked": true, + "onseeking": true, + "onselect": true, + "onstalled": true, + "onstorage": true, + "onsubmit": true, + "onsuspend": true, + "ontimeupdate": true, + "ontoggle": true, + "ontransitionend": true, + "onunhandledrejection": true, + "onunload": true, + "onvolumechange": true, + "onwaiting": true, + "onwheel": true, + "open": false, + "openDatabase": false, + "opener": false, + "Option": false, + "origin": false, + "OscillatorNode": false, + "outerHeight": false, + "outerWidth": false, + "OverconstrainedError": false, + "PageTransitionEvent": false, + "pageXOffset": false, + "pageYOffset": false, + "PannerNode": false, + "parent": false, + "Path2D": false, + "PaymentAddress": false, + "PaymentRequest": false, + "PaymentRequestUpdateEvent": false, + "PaymentResponse": false, + "performance": false, + "Performance": false, + "PerformanceEntry": false, + "PerformanceLongTaskTiming": false, + "PerformanceMark": false, + "PerformanceMeasure": false, + "PerformanceNavigation": false, + "PerformanceNavigationTiming": false, + "PerformanceObserver": false, + "PerformanceObserverEntryList": false, + "PerformancePaintTiming": false, + "PerformanceResourceTiming": false, + "PerformanceTiming": false, + "PeriodicWave": false, + "Permissions": false, + "PermissionStatus": false, + "personalbar": false, + "PhotoCapabilities": false, + "Plugin": false, + "PluginArray": false, + "PointerEvent": false, + "PopStateEvent": false, + "postMessage": false, + "Presentation": false, + "PresentationAvailability": false, + "PresentationConnection": false, + "PresentationConnectionAvailableEvent": false, + "PresentationConnectionCloseEvent": false, + "PresentationConnectionList": false, + "PresentationReceiver": false, + "PresentationRequest": false, + "print": false, + "ProcessingInstruction": false, + "ProgressEvent": false, + "PromiseRejectionEvent": false, + "prompt": false, + "PushManager": false, + "PushSubscription": false, + "PushSubscriptionOptions": false, + "queueMicrotask": false, + "RadioNodeList": false, + "Range": false, + "ReadableByteStreamController": false, + "ReadableStream": false, + "ReadableStreamBYOBReader": false, + "ReadableStreamBYOBRequest": false, + "ReadableStreamDefaultController": false, + "ReadableStreamDefaultReader": false, + "registerProcessor": false, + "RemotePlayback": false, + "removeEventListener": false, + "reportError": false, + "Request": false, + "requestAnimationFrame": false, + "requestIdleCallback": false, + "resizeBy": false, + "ResizeObserver": false, + "ResizeObserverEntry": false, + "resizeTo": false, + "Response": false, + "RTCCertificate": false, + "RTCDataChannel": false, + "RTCDataChannelEvent": false, + "RTCDtlsTransport": false, + "RTCIceCandidate": false, + "RTCIceGatherer": false, + "RTCIceTransport": false, + "RTCPeerConnection": false, + "RTCPeerConnectionIceEvent": false, + "RTCRtpContributingSource": false, + "RTCRtpReceiver": false, + "RTCRtpSender": false, + "RTCSctpTransport": false, + "RTCSessionDescription": false, + "RTCStatsReport": false, + "RTCTrackEvent": false, + "screen": false, + "Screen": false, + "screenLeft": false, + "ScreenOrientation": false, + "screenTop": false, + "screenX": false, + "screenY": false, + "ScriptProcessorNode": false, + "scroll": false, + "scrollbars": false, + "scrollBy": false, + "scrollTo": false, + "scrollX": false, + "scrollY": false, + "SecurityPolicyViolationEvent": false, + "Selection": false, + "self": false, + "ServiceWorker": false, + "ServiceWorkerContainer": false, + "ServiceWorkerRegistration": false, + "sessionStorage": false, + "setInterval": false, + "setTimeout": false, + "ShadowRoot": false, + "SharedWorker": false, + "SourceBuffer": false, + "SourceBufferList": false, + "speechSynthesis": false, + "SpeechSynthesisEvent": false, + "SpeechSynthesisUtterance": false, + "StaticRange": false, + "status": false, + "statusbar": false, + "StereoPannerNode": false, + "stop": false, + "Storage": false, + "StorageEvent": false, + "StorageManager": false, + "structuredClone": false, + "styleMedia": false, + "StyleSheet": false, + "StyleSheetList": false, + "SubmitEvent": false, + "SubtleCrypto": false, + "SVGAElement": false, + "SVGAngle": false, + "SVGAnimatedAngle": false, + "SVGAnimatedBoolean": false, + "SVGAnimatedEnumeration": false, + "SVGAnimatedInteger": false, + "SVGAnimatedLength": false, + "SVGAnimatedLengthList": false, + "SVGAnimatedNumber": false, + "SVGAnimatedNumberList": false, + "SVGAnimatedPreserveAspectRatio": false, + "SVGAnimatedRect": false, + "SVGAnimatedString": false, + "SVGAnimatedTransformList": false, + "SVGAnimateElement": false, + "SVGAnimateMotionElement": false, + "SVGAnimateTransformElement": false, + "SVGAnimationElement": false, + "SVGCircleElement": false, + "SVGClipPathElement": false, + "SVGComponentTransferFunctionElement": false, + "SVGDefsElement": false, + "SVGDescElement": false, + "SVGDiscardElement": false, + "SVGElement": false, + "SVGEllipseElement": false, + "SVGFEBlendElement": false, + "SVGFEColorMatrixElement": false, + "SVGFEComponentTransferElement": false, + "SVGFECompositeElement": false, + "SVGFEConvolveMatrixElement": false, + "SVGFEDiffuseLightingElement": false, + "SVGFEDisplacementMapElement": false, + "SVGFEDistantLightElement": false, + "SVGFEDropShadowElement": false, + "SVGFEFloodElement": false, + "SVGFEFuncAElement": false, + "SVGFEFuncBElement": false, + "SVGFEFuncGElement": false, + "SVGFEFuncRElement": false, + "SVGFEGaussianBlurElement": false, + "SVGFEImageElement": false, + "SVGFEMergeElement": false, + "SVGFEMergeNodeElement": false, + "SVGFEMorphologyElement": false, + "SVGFEOffsetElement": false, + "SVGFEPointLightElement": false, + "SVGFESpecularLightingElement": false, + "SVGFESpotLightElement": false, + "SVGFETileElement": false, + "SVGFETurbulenceElement": false, + "SVGFilterElement": false, + "SVGForeignObjectElement": false, + "SVGGElement": false, + "SVGGeometryElement": false, + "SVGGradientElement": false, + "SVGGraphicsElement": false, + "SVGImageElement": false, + "SVGLength": false, + "SVGLengthList": false, + "SVGLinearGradientElement": false, + "SVGLineElement": false, + "SVGMarkerElement": false, + "SVGMaskElement": false, + "SVGMatrix": false, + "SVGMetadataElement": false, + "SVGMPathElement": false, + "SVGNumber": false, + "SVGNumberList": false, + "SVGPathElement": false, + "SVGPatternElement": false, + "SVGPoint": false, + "SVGPointList": false, + "SVGPolygonElement": false, + "SVGPolylineElement": false, + "SVGPreserveAspectRatio": false, + "SVGRadialGradientElement": false, + "SVGRect": false, + "SVGRectElement": false, + "SVGScriptElement": false, + "SVGSetElement": false, + "SVGStopElement": false, + "SVGStringList": false, + "SVGStyleElement": false, + "SVGSVGElement": false, + "SVGSwitchElement": false, + "SVGSymbolElement": false, + "SVGTextContentElement": false, + "SVGTextElement": false, + "SVGTextPathElement": false, + "SVGTextPositioningElement": false, + "SVGTitleElement": false, + "SVGTransform": false, + "SVGTransformList": false, + "SVGTSpanElement": false, + "SVGUnitTypes": false, + "SVGUseElement": false, + "SVGViewElement": false, + "TaskAttributionTiming": false, + "Text": false, + "TextDecoder": false, + "TextDecoderStream": false, + "TextEncoder": false, + "TextEncoderStream": false, + "TextEvent": false, + "TextMetrics": false, + "TextTrack": false, + "TextTrackCue": false, + "TextTrackCueList": false, + "TextTrackList": false, + "TimeRanges": false, + "ToggleEvent": false, + "toolbar": false, + "top": false, + "Touch": false, + "TouchEvent": false, + "TouchList": false, + "TrackEvent": false, + "TransformStream": false, + "TransformStreamDefaultController": false, + "TransitionEvent": false, + "TreeWalker": false, + "UIEvent": false, + "URL": false, + "URLSearchParams": false, + "ValidityState": false, + "visualViewport": false, + "VisualViewport": false, + "VTTCue": false, + "WaveShaperNode": false, + "WebAssembly": false, + "WebGL2RenderingContext": false, + "WebGLActiveInfo": false, + "WebGLBuffer": false, + "WebGLContextEvent": false, + "WebGLFramebuffer": false, + "WebGLProgram": false, + "WebGLQuery": false, + "WebGLRenderbuffer": false, + "WebGLRenderingContext": false, + "WebGLSampler": false, + "WebGLShader": false, + "WebGLShaderPrecisionFormat": false, + "WebGLSync": false, + "WebGLTexture": false, + "WebGLTransformFeedback": false, + "WebGLUniformLocation": false, + "WebGLVertexArrayObject": false, + "WebSocket": false, + "WheelEvent": false, + "window": false, + "Window": false, + "Worker": false, + "WritableStream": false, + "WritableStreamDefaultController": false, + "WritableStreamDefaultWriter": false, + "XMLDocument": false, + "XMLHttpRequest": false, + "XMLHttpRequestEventTarget": false, + "XMLHttpRequestUpload": false, + "XMLSerializer": false, + "XPathEvaluator": false, + "XPathExpression": false, + "XPathResult": false, + "XRAnchor": false, + "XRBoundedReferenceSpace": false, + "XRCPUDepthInformation": false, + "XRDepthInformation": false, + "XRFrame": false, + "XRInputSource": false, + "XRInputSourceArray": false, + "XRInputSourceEvent": false, + "XRInputSourcesChangeEvent": false, + "XRPose": false, + "XRReferenceSpace": false, + "XRReferenceSpaceEvent": false, + "XRRenderState": false, + "XRRigidTransform": false, + "XRSession": false, + "XRSessionEvent": false, + "XRSpace": false, + "XRSystem": false, + "XRView": false, + "XRViewerPose": false, + "XRViewport": false, + "XRWebGLBinding": false, + "XRWebGLDepthInformation": false, + "XRWebGLLayer": false, + "XSLTProcessor": false + }, + "worker": { + "addEventListener": false, + "applicationCache": false, + "atob": false, + "Blob": false, + "BroadcastChannel": false, + "btoa": false, + "ByteLengthQueuingStrategy": false, + "Cache": false, + "caches": false, + "clearInterval": false, + "clearTimeout": false, + "close": true, + "CompressionStream": false, + "console": false, + "CountQueuingStrategy": false, + "crypto": false, + "Crypto": false, + "CryptoKey": false, + "CustomEvent": false, + "DecompressionStream": false, + "ErrorEvent": false, + "Event": false, + "fetch": false, + "File": false, + "FileReaderSync": false, + "FormData": false, + "Headers": false, + "IDBCursor": false, + "IDBCursorWithValue": false, + "IDBDatabase": false, + "IDBFactory": false, + "IDBIndex": false, + "IDBKeyRange": false, + "IDBObjectStore": false, + "IDBOpenDBRequest": false, + "IDBRequest": false, + "IDBTransaction": false, + "IDBVersionChangeEvent": false, + "ImageData": false, + "importScripts": true, + "indexedDB": false, + "location": false, + "MessageChannel": false, + "MessageEvent": false, + "MessagePort": false, + "name": false, + "navigator": false, + "Notification": false, + "onclose": true, + "onconnect": true, + "onerror": true, + "onlanguagechange": true, + "onmessage": true, + "onoffline": true, + "ononline": true, + "onrejectionhandled": true, + "onunhandledrejection": true, + "performance": false, + "Performance": false, + "PerformanceEntry": false, + "PerformanceMark": false, + "PerformanceMeasure": false, + "PerformanceNavigation": false, + "PerformanceObserver": false, + "PerformanceObserverEntryList": false, + "PerformanceResourceTiming": false, + "PerformanceTiming": false, + "postMessage": true, + "Promise": false, + "queueMicrotask": false, + "ReadableByteStreamController": false, + "ReadableStream": false, + "ReadableStreamBYOBReader": false, + "ReadableStreamBYOBRequest": false, + "ReadableStreamDefaultController": false, + "ReadableStreamDefaultReader": false, + "removeEventListener": false, + "reportError": false, + "Request": false, + "Response": false, + "self": true, + "ServiceWorkerRegistration": false, + "setInterval": false, + "setTimeout": false, + "SubtleCrypto": false, + "TextDecoder": false, + "TextDecoderStream": false, + "TextEncoder": false, + "TextEncoderStream": false, + "TransformStream": false, + "TransformStreamDefaultController": false, + "URL": false, + "URLSearchParams": false, + "WebAssembly": false, + "WebSocket": false, + "Worker": false, + "WorkerGlobalScope": false, + "WritableStream": false, + "WritableStreamDefaultController": false, + "WritableStreamDefaultWriter": false, + "XMLHttpRequest": false + }, + "node": { + "__dirname": false, + "__filename": false, + "AbortController": false, + "AbortSignal": false, + "atob": false, + "Blob": false, + "BroadcastChannel": false, + "btoa": false, + "Buffer": false, + "ByteLengthQueuingStrategy": false, + "clearImmediate": false, + "clearInterval": false, + "clearTimeout": false, + "CompressionStream": false, + "console": false, + "CountQueuingStrategy": false, + "crypto": false, + "Crypto": false, + "CryptoKey": false, + "CustomEvent": false, + "DecompressionStream": false, + "DOMException": false, + "Event": false, + "EventTarget": false, + "exports": true, + "fetch": false, + "File": false, + "FormData": false, + "global": false, + "Headers": false, + "Intl": false, + "MessageChannel": false, + "MessageEvent": false, + "MessagePort": false, + "module": false, + "performance": false, + "PerformanceEntry": false, + "PerformanceMark": false, + "PerformanceMeasure": false, + "PerformanceObserver": false, + "PerformanceObserverEntryList": false, + "PerformanceResourceTiming": false, + "process": false, + "queueMicrotask": false, + "ReadableByteStreamController": false, + "ReadableStream": false, + "ReadableStreamBYOBReader": false, + "ReadableStreamBYOBRequest": false, + "ReadableStreamDefaultController": false, + "ReadableStreamDefaultReader": false, + "Request": false, + "require": false, + "Response": false, + "setImmediate": false, + "setInterval": false, + "setTimeout": false, + "structuredClone": false, + "SubtleCrypto": false, + "TextDecoder": false, + "TextDecoderStream": false, + "TextEncoder": false, + "TextEncoderStream": false, + "TransformStream": false, + "TransformStreamDefaultController": false, + "URL": false, + "URLSearchParams": false, + "WebAssembly": false, + "WritableStream": false, + "WritableStreamDefaultController": false, + "WritableStreamDefaultWriter": false + }, + "nodeBuiltin": { + "AbortController": false, + "AbortSignal": false, + "atob": false, + "Blob": false, + "BroadcastChannel": false, + "btoa": false, + "Buffer": false, + "ByteLengthQueuingStrategy": false, + "clearImmediate": false, + "clearInterval": false, + "clearTimeout": false, + "CompressionStream": false, + "console": false, + "CountQueuingStrategy": false, + "crypto": false, + "Crypto": false, + "CryptoKey": false, + "CustomEvent": false, + "DecompressionStream": false, + "DOMException": false, + "Event": false, + "EventTarget": false, + "fetch": false, + "File": false, + "FormData": false, + "global": false, + "Headers": false, + "Intl": false, + "MessageChannel": false, + "MessageEvent": false, + "MessagePort": false, + "performance": false, + "PerformanceEntry": false, + "PerformanceMark": false, + "PerformanceMeasure": false, + "PerformanceObserver": false, + "PerformanceObserverEntryList": false, + "PerformanceResourceTiming": false, + "process": false, + "queueMicrotask": false, + "ReadableByteStreamController": false, + "ReadableStream": false, + "ReadableStreamBYOBReader": false, + "ReadableStreamBYOBRequest": false, + "ReadableStreamDefaultController": false, + "ReadableStreamDefaultReader": false, + "Request": false, + "Response": false, + "setImmediate": false, + "setInterval": false, + "setTimeout": false, + "structuredClone": false, + "SubtleCrypto": false, + "TextDecoder": false, + "TextDecoderStream": false, + "TextEncoder": false, + "TextEncoderStream": false, + "TransformStream": false, + "TransformStreamDefaultController": false, + "URL": false, + "URLSearchParams": false, + "WebAssembly": false, + "WritableStream": false, + "WritableStreamDefaultController": false, + "WritableStreamDefaultWriter": false + }, + "commonjs": { + "exports": true, + "global": false, + "module": false, + "require": false + }, + "amd": { + "define": false, + "require": false + }, + "mocha": { + "after": false, + "afterEach": false, + "before": false, + "beforeEach": false, + "context": false, + "describe": false, + "it": false, + "mocha": false, + "run": false, + "setup": false, + "specify": false, + "suite": false, + "suiteSetup": false, + "suiteTeardown": false, + "teardown": false, + "test": false, + "xcontext": false, + "xdescribe": false, + "xit": false, + "xspecify": false + }, + "jasmine": { + "afterAll": false, + "afterEach": false, + "beforeAll": false, + "beforeEach": false, + "describe": false, + "expect": false, + "expectAsync": false, + "fail": false, + "fdescribe": false, + "fit": false, + "it": false, + "jasmine": false, + "pending": false, + "runs": false, + "spyOn": false, + "spyOnAllFunctions": false, + "spyOnProperty": false, + "waits": false, + "waitsFor": false, + "xdescribe": false, + "xit": false + }, + "jest": { + "afterAll": false, + "afterEach": false, + "beforeAll": false, + "beforeEach": false, + "describe": false, + "expect": false, + "fdescribe": false, + "fit": false, + "it": false, + "jest": false, + "pit": false, + "require": false, + "test": false, + "xdescribe": false, + "xit": false, + "xtest": false + }, + "qunit": { + "asyncTest": false, + "deepEqual": false, + "equal": false, + "expect": false, + "module": false, + "notDeepEqual": false, + "notEqual": false, + "notOk": false, + "notPropEqual": false, + "notStrictEqual": false, + "ok": false, + "propEqual": false, + "QUnit": false, + "raises": false, + "start": false, + "stop": false, + "strictEqual": false, + "test": false, + "throws": false + }, + "phantomjs": { + "console": true, + "exports": true, + "phantom": true, + "require": true, + "WebPage": true + }, + "couch": { + "emit": false, + "exports": false, + "getRow": false, + "log": false, + "module": false, + "provides": false, + "require": false, + "respond": false, + "send": false, + "start": false, + "sum": false + }, + "rhino": { + "defineClass": false, + "deserialize": false, + "gc": false, + "help": false, + "importClass": false, + "importPackage": false, + "java": false, + "load": false, + "loadClass": false, + "Packages": false, + "print": false, + "quit": false, + "readFile": false, + "readUrl": false, + "runCommand": false, + "seal": false, + "serialize": false, + "spawn": false, + "sync": false, + "toint32": false, + "version": false + }, + "nashorn": { + "__DIR__": false, + "__FILE__": false, + "__LINE__": false, + "com": false, + "edu": false, + "exit": false, + "java": false, + "Java": false, + "javafx": false, + "JavaImporter": false, + "javax": false, + "JSAdapter": false, + "load": false, + "loadWithNewGlobal": false, + "org": false, + "Packages": false, + "print": false, + "quit": false + }, + "wsh": { + "ActiveXObject": false, + "CollectGarbage": false, + "Debug": false, + "Enumerator": false, + "GetObject": false, + "RuntimeObject": false, + "ScriptEngine": false, + "ScriptEngineBuildVersion": false, + "ScriptEngineMajorVersion": false, + "ScriptEngineMinorVersion": false, + "VBArray": false, + "WScript": false, + "WSH": false + }, + "jquery": { + "$": false, + "jQuery": false + }, + "yui": { + "YAHOO": false, + "YAHOO_config": false, + "YUI": false, + "YUI_config": false + }, + "shelljs": { + "cat": false, + "cd": false, + "chmod": false, + "config": false, + "cp": false, + "dirs": false, + "echo": false, + "env": false, + "error": false, + "exec": false, + "exit": false, + "find": false, + "grep": false, + "ln": false, + "ls": false, + "mkdir": false, + "mv": false, + "popd": false, + "pushd": false, + "pwd": false, + "rm": false, + "sed": false, + "set": false, + "target": false, + "tempdir": false, + "test": false, + "touch": false, + "which": false + }, + "prototypejs": { + "$": false, + "$$": false, + "$A": false, + "$break": false, + "$continue": false, + "$F": false, + "$H": false, + "$R": false, + "$w": false, + "Abstract": false, + "Ajax": false, + "Autocompleter": false, + "Builder": false, + "Class": false, + "Control": false, + "Draggable": false, + "Draggables": false, + "Droppables": false, + "Effect": false, + "Element": false, + "Enumerable": false, + "Event": false, + "Field": false, + "Form": false, + "Hash": false, + "Insertion": false, + "ObjectRange": false, + "PeriodicalExecuter": false, + "Position": false, + "Prototype": false, + "Scriptaculous": false, + "Selector": false, + "Sortable": false, + "SortableObserver": false, + "Sound": false, + "Template": false, + "Toggle": false, + "Try": false + }, + "meteor": { + "$": false, + "Accounts": false, + "AccountsClient": false, + "AccountsCommon": false, + "AccountsServer": false, + "App": false, + "Assets": false, + "Blaze": false, + "check": false, + "Cordova": false, + "DDP": false, + "DDPRateLimiter": false, + "DDPServer": false, + "Deps": false, + "EJSON": false, + "Email": false, + "HTTP": false, + "Log": false, + "Match": false, + "Meteor": false, + "Mongo": false, + "MongoInternals": false, + "Npm": false, + "Package": false, + "Plugin": false, + "process": false, + "Random": false, + "ReactiveDict": false, + "ReactiveVar": false, + "Router": false, + "ServiceConfiguration": false, + "Session": false, + "share": false, + "Spacebars": false, + "Template": false, + "Tinytest": false, + "Tracker": false, + "UI": false, + "Utils": false, + "WebApp": false, + "WebAppInternals": false + }, + "mongo": { + "_isWindows": false, + "_rand": false, + "BulkWriteResult": false, + "cat": false, + "cd": false, + "connect": false, + "db": false, + "getHostName": false, + "getMemInfo": false, + "hostname": false, + "ISODate": false, + "listFiles": false, + "load": false, + "ls": false, + "md5sumFile": false, + "mkdir": false, + "Mongo": false, + "NumberInt": false, + "NumberLong": false, + "ObjectId": false, + "PlanCache": false, + "print": false, + "printjson": false, + "pwd": false, + "quit": false, + "removeFile": false, + "rs": false, + "sh": false, + "UUID": false, + "version": false, + "WriteResult": false + }, + "applescript": { + "$": false, + "Application": false, + "Automation": false, + "console": false, + "delay": false, + "Library": false, + "ObjC": false, + "ObjectSpecifier": false, + "Path": false, + "Progress": false, + "Ref": false + }, + "serviceworker": { + "addEventListener": false, + "applicationCache": false, + "atob": false, + "Blob": false, + "BroadcastChannel": false, + "btoa": false, + "ByteLengthQueuingStrategy": false, + "Cache": false, + "caches": false, + "CacheStorage": false, + "clearInterval": false, + "clearTimeout": false, + "Client": false, + "clients": false, + "Clients": false, + "close": true, + "CompressionStream": false, + "console": false, + "CountQueuingStrategy": false, + "crypto": false, + "Crypto": false, + "CryptoKey": false, + "CustomEvent": false, + "DecompressionStream": false, + "ErrorEvent": false, + "Event": false, + "ExtendableEvent": false, + "ExtendableMessageEvent": false, + "fetch": false, + "FetchEvent": false, + "File": false, + "FileReaderSync": false, + "FormData": false, + "Headers": false, + "IDBCursor": false, + "IDBCursorWithValue": false, + "IDBDatabase": false, + "IDBFactory": false, + "IDBIndex": false, + "IDBKeyRange": false, + "IDBObjectStore": false, + "IDBOpenDBRequest": false, + "IDBRequest": false, + "IDBTransaction": false, + "IDBVersionChangeEvent": false, + "ImageData": false, + "importScripts": false, + "indexedDB": false, + "location": false, + "MessageChannel": false, + "MessageEvent": false, + "MessagePort": false, + "name": false, + "navigator": false, + "Notification": false, + "onclose": true, + "onconnect": true, + "onerror": true, + "onfetch": true, + "oninstall": true, + "onlanguagechange": true, + "onmessage": true, + "onmessageerror": true, + "onnotificationclick": true, + "onnotificationclose": true, + "onoffline": true, + "ononline": true, + "onpush": true, + "onpushsubscriptionchange": true, + "onrejectionhandled": true, + "onsync": true, + "onunhandledrejection": true, + "performance": false, + "Performance": false, + "PerformanceEntry": false, + "PerformanceMark": false, + "PerformanceMeasure": false, + "PerformanceNavigation": false, + "PerformanceObserver": false, + "PerformanceObserverEntryList": false, + "PerformanceResourceTiming": false, + "PerformanceTiming": false, + "postMessage": true, + "Promise": false, + "queueMicrotask": false, + "ReadableByteStreamController": false, + "ReadableStream": false, + "ReadableStreamBYOBReader": false, + "ReadableStreamBYOBRequest": false, + "ReadableStreamDefaultController": false, + "ReadableStreamDefaultReader": false, + "registration": false, + "removeEventListener": false, + "Request": false, + "Response": false, + "self": false, + "ServiceWorker": false, + "ServiceWorkerContainer": false, + "ServiceWorkerGlobalScope": false, + "ServiceWorkerMessageEvent": false, + "ServiceWorkerRegistration": false, + "setInterval": false, + "setTimeout": false, + "skipWaiting": false, + "SubtleCrypto": false, + "TextDecoder": false, + "TextDecoderStream": false, + "TextEncoder": false, + "TextEncoderStream": false, + "TransformStream": false, + "TransformStreamDefaultController": false, + "URL": false, + "URLSearchParams": false, + "WebAssembly": false, + "WebSocket": false, + "WindowClient": false, + "Worker": false, + "WorkerGlobalScope": false, + "WritableStream": false, + "WritableStreamDefaultController": false, + "WritableStreamDefaultWriter": false, + "XMLHttpRequest": false + }, + "atomtest": { + "advanceClock": false, + "atom": false, + "fakeClearInterval": false, + "fakeClearTimeout": false, + "fakeSetInterval": false, + "fakeSetTimeout": false, + "resetTimeouts": false, + "waitsForPromise": false + }, + "embertest": { + "andThen": false, + "click": false, + "currentPath": false, + "currentRouteName": false, + "currentURL": false, + "fillIn": false, + "find": false, + "findAll": false, + "findWithAssert": false, + "keyEvent": false, + "pauseTest": false, + "resumeTest": false, + "triggerEvent": false, + "visit": false, + "wait": false + }, + "protractor": { + "$": false, + "$$": false, + "browser": false, + "by": false, + "By": false, + "DartObject": false, + "element": false, + "protractor": false + }, + "shared-node-browser": { + "AbortController": false, + "AbortSignal": false, + "atob": false, + "Blob": false, + "BroadcastChannel": false, + "btoa": false, + "ByteLengthQueuingStrategy": false, + "clearInterval": false, + "clearTimeout": false, + "CompressionStream": false, + "console": false, + "CountQueuingStrategy": false, + "crypto": false, + "Crypto": false, + "CryptoKey": false, + "CustomEvent": false, + "DecompressionStream": false, + "DOMException": false, + "Event": false, + "EventTarget": false, + "fetch": false, + "File": false, + "FormData": false, + "Headers": false, + "Intl": false, + "MessageChannel": false, + "MessageEvent": false, + "MessagePort": false, + "performance": false, + "PerformanceEntry": false, + "PerformanceMark": false, + "PerformanceMeasure": false, + "PerformanceObserver": false, + "PerformanceObserverEntryList": false, + "PerformanceResourceTiming": false, + "queueMicrotask": false, + "ReadableByteStreamController": false, + "ReadableStream": false, + "ReadableStreamBYOBReader": false, + "ReadableStreamBYOBRequest": false, + "ReadableStreamDefaultController": false, + "ReadableStreamDefaultReader": false, + "Request": false, + "Response": false, + "setInterval": false, + "setTimeout": false, + "structuredClone": false, + "SubtleCrypto": false, + "TextDecoder": false, + "TextDecoderStream": false, + "TextEncoder": false, + "TextEncoderStream": false, + "TransformStream": false, + "TransformStreamDefaultController": false, + "URL": false, + "URLSearchParams": false, + "WebAssembly": false, + "WritableStream": false, + "WritableStreamDefaultController": false, + "WritableStreamDefaultWriter": false + }, + "webextensions": { + "browser": false, + "chrome": false, + "opr": false + }, + "greasemonkey": { + "cloneInto": false, + "createObjectIn": false, + "exportFunction": false, + "GM": false, + "GM_addElement": false, + "GM_addStyle": false, + "GM_addValueChangeListener": false, + "GM_deleteValue": false, + "GM_download": false, + "GM_getResourceText": false, + "GM_getResourceURL": false, + "GM_getTab": false, + "GM_getTabs": false, + "GM_getValue": false, + "GM_info": false, + "GM_listValues": false, + "GM_log": false, + "GM_notification": false, + "GM_openInTab": false, + "GM_registerMenuCommand": false, + "GM_removeValueChangeListener": false, + "GM_saveTab": false, + "GM_setClipboard": false, + "GM_setValue": false, + "GM_unregisterMenuCommand": false, + "GM_xmlhttpRequest": false, + "unsafeWindow": false + }, + "devtools": { + "$": false, + "$_": false, + "$$": false, + "$0": false, + "$1": false, + "$2": false, + "$3": false, + "$4": false, + "$x": false, + "chrome": false, + "clear": false, + "copy": false, + "debug": false, + "dir": false, + "dirxml": false, + "getEventListeners": false, + "inspect": false, + "keys": false, + "monitor": false, + "monitorEvents": false, + "profile": false, + "profileEnd": false, + "queryObjects": false, + "table": false, + "undebug": false, + "unmonitor": false, + "unmonitorEvents": false, + "values": false + } +} diff --git a/novas/novacore-zephyr/groq-code-cli/node_modules/globals/index.d.ts b/novas/novacore-zephyr/groq-code-cli/node_modules/globals/index.d.ts new file mode 100644 index 0000000000000000000000000000000000000000..a842e4c8871e0a5bdfa496395236d13639767494 --- /dev/null +++ b/novas/novacore-zephyr/groq-code-cli/node_modules/globals/index.d.ts @@ -0,0 +1,6 @@ +import {ReadonlyDeep} from 'type-fest'; +import globalsJson = require('./globals.json'); + +declare const globals: ReadonlyDeep; + +export = globals; diff --git a/novas/novacore-zephyr/groq-code-cli/node_modules/globals/index.js b/novas/novacore-zephyr/groq-code-cli/node_modules/globals/index.js new file mode 100644 index 0000000000000000000000000000000000000000..a951582e4176e860fdc0c9931723199310ad3d5b --- /dev/null +++ b/novas/novacore-zephyr/groq-code-cli/node_modules/globals/index.js @@ -0,0 +1,2 @@ +'use strict'; +module.exports = require('./globals.json'); diff --git a/novas/novacore-zephyr/groq-code-cli/node_modules/globals/license b/novas/novacore-zephyr/groq-code-cli/node_modules/globals/license new file mode 100644 index 0000000000000000000000000000000000000000..fa7ceba3eb4a9657a9db7f3ffca4e4e97a9019de --- /dev/null +++ b/novas/novacore-zephyr/groq-code-cli/node_modules/globals/license @@ -0,0 +1,9 @@ +MIT License + +Copyright (c) Sindre Sorhus (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. diff --git a/novas/novacore-zephyr/groq-code-cli/node_modules/globals/package.json b/novas/novacore-zephyr/groq-code-cli/node_modules/globals/package.json new file mode 100644 index 0000000000000000000000000000000000000000..78e266498024718187117b868de6433a538b16bd --- /dev/null +++ b/novas/novacore-zephyr/groq-code-cli/node_modules/globals/package.json @@ -0,0 +1,56 @@ +{ + "name": "globals", + "version": "13.24.0", + "description": "Global identifiers from different JavaScript environments", + "license": "MIT", + "repository": "sindresorhus/globals", + "funding": "https://github.com/sponsors/sindresorhus", + "author": { + "name": "Sindre Sorhus", + "email": "sindresorhus@gmail.com", + "url": "https://sindresorhus.com" + }, + "sideEffects": false, + "engines": { + "node": ">=8" + }, + "scripts": { + "test": "xo && ava" + }, + "files": [ + "index.js", + "index.d.ts", + "globals.json" + ], + "keywords": [ + "globals", + "global", + "identifiers", + "variables", + "vars", + "jshint", + "eslint", + "environments" + ], + "dependencies": { + "type-fest": "^0.20.2" + }, + "devDependencies": { + "ava": "^2.4.0", + "tsd": "^0.14.0", + "xo": "^0.36.1" + }, + "xo": { + "ignores": [ + "get-browser-globals.js" + ], + "rules": { + "node/no-unsupported-features/es-syntax": "off" + } + }, + "tsd": { + "compilerOptions": { + "resolveJsonModule": true + } + } +} diff --git a/novas/novacore-zephyr/groq-code-cli/node_modules/globals/readme.md b/novas/novacore-zephyr/groq-code-cli/node_modules/globals/readme.md new file mode 100644 index 0000000000000000000000000000000000000000..29442a85510b95f3134f5e5d62d6db4f7c86fe10 --- /dev/null +++ b/novas/novacore-zephyr/groq-code-cli/node_modules/globals/readme.md @@ -0,0 +1,44 @@ +# globals + +> Global identifiers from different JavaScript environments + +It's just a [JSON file](globals.json), so use it in any environment. + +This package is used by ESLint. + +**This package [no longer accepts](https://github.com/sindresorhus/globals/issues/82) new environments. If you need it for ESLint, just [create a plugin](http://eslint.org/docs/developer-guide/working-with-plugins#environments-in-plugins).** + +## Install + +```sh +npm install globals +``` + +## Usage + +```js +const globals = require('globals'); + +console.log(globals.browser); +/* +{ + addEventListener: false, + applicationCache: false, + ArrayBuffer: false, + atob: false, + … +} +*/ +``` + +Each global is given a value of `true` or `false`. A value of `true` indicates that the variable may be overwritten. A value of `false` indicates that the variable should be considered read-only. This information is used by static analysis tools to flag incorrect behavior. We assume all variables should be `false` unless we hear otherwise. + +For Node.js this package provides two sets of globals: + +- `globals.nodeBuiltin`: Globals available to all code running in Node.js. + These will usually be available as properties on the `global` object and include `process`, `Buffer`, but not CommonJS arguments like `require`. + See: https://nodejs.org/api/globals.html +- `globals.node`: A combination of the globals from `nodeBuiltin` plus all CommonJS arguments ("CommonJS module scope"). + See: https://nodejs.org/api/modules.html#modules_the_module_scope + +When analyzing code that is known to run outside of a CommonJS wrapper, for example, JavaScript modules, `nodeBuiltin` can find accidental CommonJS references. diff --git a/novas/novacore-zephyr/groq-code-cli/node_modules/groq-sdk/resource.mjs.map b/novas/novacore-zephyr/groq-code-cli/node_modules/groq-sdk/resource.mjs.map new file mode 100644 index 0000000000000000000000000000000000000000..120dbecd4c5c9821ae0bbf363e5d611ae8d76e38 --- /dev/null +++ b/novas/novacore-zephyr/groq-code-cli/node_modules/groq-sdk/resource.mjs.map @@ -0,0 +1 @@ +{"version":3,"file":"resource.mjs","sourceRoot":"","sources":["src/resource.ts"],"names":[],"mappings":"AAAA,sFAAsF;AAItF,MAAM,OAAgB,WAAW;IAG/B,YAAY,MAAY;QACtB,IAAI,CAAC,OAAO,GAAG,MAAM,CAAC;IACxB,CAAC;CACF"} \ No newline at end of file diff --git a/novas/novacore-zephyr/groq-code-cli/node_modules/groq-sdk/resources.d.ts b/novas/novacore-zephyr/groq-code-cli/node_modules/groq-sdk/resources.d.ts new file mode 100644 index 0000000000000000000000000000000000000000..cf7fc8c1891987d63b383b1534516a4e408924a9 --- /dev/null +++ b/novas/novacore-zephyr/groq-code-cli/node_modules/groq-sdk/resources.d.ts @@ -0,0 +1,2 @@ +export * from "./resources/index.js"; +//# sourceMappingURL=resources.d.ts.map \ No newline at end of file diff --git a/novas/novacore-zephyr/groq-code-cli/node_modules/groq-sdk/resources.d.ts.map b/novas/novacore-zephyr/groq-code-cli/node_modules/groq-sdk/resources.d.ts.map new file mode 100644 index 0000000000000000000000000000000000000000..52132886b428380dbdc7bd0790857ca0ae8056cb --- /dev/null +++ b/novas/novacore-zephyr/groq-code-cli/node_modules/groq-sdk/resources.d.ts.map @@ -0,0 +1 @@ +{"version":3,"file":"resources.d.ts","sourceRoot":"","sources":["src/resources.ts"],"names":[],"mappings":"AAAA,cAAc,mBAAmB,CAAC"} \ No newline at end of file diff --git a/novas/novacore-zephyr/groq-code-cli/node_modules/groq-sdk/resources.js b/novas/novacore-zephyr/groq-code-cli/node_modules/groq-sdk/resources.js new file mode 100644 index 0000000000000000000000000000000000000000..e5b789e42ed40e42b198e02a3221070dc7cd4e11 --- /dev/null +++ b/novas/novacore-zephyr/groq-code-cli/node_modules/groq-sdk/resources.js @@ -0,0 +1,18 @@ +"use strict"; +var __createBinding = (this && this.__createBinding) || (Object.create ? (function(o, m, k, k2) { + if (k2 === undefined) k2 = k; + var desc = Object.getOwnPropertyDescriptor(m, k); + if (!desc || ("get" in desc ? !m.__esModule : desc.writable || desc.configurable)) { + desc = { enumerable: true, get: function() { return m[k]; } }; + } + Object.defineProperty(o, k2, desc); +}) : (function(o, m, k, k2) { + if (k2 === undefined) k2 = k; + o[k2] = m[k]; +})); +var __exportStar = (this && this.__exportStar) || function(m, exports) { + for (var p in m) if (p !== "default" && !Object.prototype.hasOwnProperty.call(exports, p)) __createBinding(exports, m, p); +}; +Object.defineProperty(exports, "__esModule", { value: true }); +__exportStar(require("./resources/index.js"), exports); +//# sourceMappingURL=resources.js.map \ No newline at end of file diff --git a/novas/novacore-zephyr/groq-code-cli/node_modules/groq-sdk/resources.js.map b/novas/novacore-zephyr/groq-code-cli/node_modules/groq-sdk/resources.js.map new file mode 100644 index 0000000000000000000000000000000000000000..246a1db04de9e6c0bfa6e6e0d74055181f372001 --- /dev/null +++ b/novas/novacore-zephyr/groq-code-cli/node_modules/groq-sdk/resources.js.map @@ -0,0 +1 @@ +{"version":3,"file":"resources.js","sourceRoot":"","sources":["src/resources.ts"],"names":[],"mappings":";;;;;;;;;;;;;;;;AAAA,uDAAkC"} \ No newline at end of file diff --git a/novas/novacore-zephyr/groq-code-cli/node_modules/groq-sdk/resources.mjs b/novas/novacore-zephyr/groq-code-cli/node_modules/groq-sdk/resources.mjs new file mode 100644 index 0000000000000000000000000000000000000000..2f61813f62690c5477ac27f51b6512cf7bbeed02 --- /dev/null +++ b/novas/novacore-zephyr/groq-code-cli/node_modules/groq-sdk/resources.mjs @@ -0,0 +1,2 @@ +export * from "./resources/index.mjs"; +//# sourceMappingURL=resources.mjs.map \ No newline at end of file diff --git a/novas/novacore-zephyr/groq-code-cli/node_modules/groq-sdk/resources.mjs.map b/novas/novacore-zephyr/groq-code-cli/node_modules/groq-sdk/resources.mjs.map new file mode 100644 index 0000000000000000000000000000000000000000..e91a02056f091f7ff0680236e99fd5fc301b2bce --- /dev/null +++ b/novas/novacore-zephyr/groq-code-cli/node_modules/groq-sdk/resources.mjs.map @@ -0,0 +1 @@ +{"version":3,"file":"resources.mjs","sourceRoot":"","sources":["src/resources.ts"],"names":[],"mappings":""} \ No newline at end of file diff --git a/novas/novacore-zephyr/groq-code-cli/node_modules/groq-sdk/uploads.d.ts b/novas/novacore-zephyr/groq-code-cli/node_modules/groq-sdk/uploads.d.ts new file mode 100644 index 0000000000000000000000000000000000000000..55faa0c5a7b49b230f85341897421c0dc643a63f --- /dev/null +++ b/novas/novacore-zephyr/groq-code-cli/node_modules/groq-sdk/uploads.d.ts @@ -0,0 +1,75 @@ +import { type RequestOptions } from "./core.js"; +import { FormData, type Blob, type FilePropertyBag, type FsReadStream } from "./_shims/index.js"; +import { MultipartBody } from "./_shims/MultipartBody.js"; +export { fileFromPath } from "./_shims/index.js"; +type BlobLikePart = string | ArrayBuffer | ArrayBufferView | BlobLike | Uint8Array | DataView; +export type BlobPart = string | ArrayBuffer | ArrayBufferView | Blob | Uint8Array | DataView; +/** + * Typically, this is a native "File" class. + * + * We provide the {@link toFile} utility to convert a variety of objects + * into the File class. + * + * For convenience, you can also pass a fetch Response, or in Node, + * the result of fs.createReadStream(). + */ +export type Uploadable = FileLike | ResponseLike | FsReadStream; +/** + * Intended to match web.Blob, node.Blob, node-fetch.Blob, etc. + */ +export interface BlobLike { + /** [MDN Reference](https://developer.mozilla.org/docs/Web/API/Blob/size) */ + readonly size: number; + /** [MDN Reference](https://developer.mozilla.org/docs/Web/API/Blob/type) */ + readonly type: string; + /** [MDN Reference](https://developer.mozilla.org/docs/Web/API/Blob/text) */ + text(): Promise; + /** [MDN Reference](https://developer.mozilla.org/docs/Web/API/Blob/slice) */ + slice(start?: number, end?: number): BlobLike; +} +/** + * Intended to match web.File, node.File, node-fetch.File, etc. + */ +export interface FileLike extends BlobLike { + /** [MDN Reference](https://developer.mozilla.org/docs/Web/API/File/lastModified) */ + readonly lastModified: number; + /** [MDN Reference](https://developer.mozilla.org/docs/Web/API/File/name) */ + readonly name: string; +} +/** + * Intended to match web.Response, node.Response, node-fetch.Response, etc. + */ +export interface ResponseLike { + url: string; + blob(): Promise; +} +export declare const isResponseLike: (value: any) => value is ResponseLike; +export declare const isFileLike: (value: any) => value is FileLike; +/** + * The BlobLike type omits arrayBuffer() because @types/node-fetch@^2.6.4 lacks it; but this check + * adds the arrayBuffer() method type because it is available and used at runtime + */ +export declare const isBlobLike: (value: any) => value is BlobLike & { + arrayBuffer(): Promise; +}; +export declare const isUploadable: (value: any) => value is Uploadable; +export type ToFileInput = Uploadable | Exclude | AsyncIterable; +/** + * Helper for creating a {@link File} to pass to an SDK upload method from a variety of different data formats + * @param value the raw content of the file. Can be an {@link Uploadable}, {@link BlobLikePart}, or {@link AsyncIterable} of {@link BlobLikePart}s + * @param {string=} name the name of the file. If omitted, toFile will try to determine a file name from bits if possible + * @param {Object=} options additional properties + * @param {string=} options.type the MIME type of the content + * @param {number=} options.lastModified the last modified timestamp + * @returns a {@link File} with the given properties + */ +export declare function toFile(value: ToFileInput | PromiseLike, name?: string | null | undefined, options?: FilePropertyBag | undefined): Promise; +export declare const isMultipartBody: (body: any) => body is MultipartBody; +/** + * Returns a multipart/form-data request if any part of the given request body contains a File / Blob value. + * Otherwise returns the request as is. + */ +export declare const maybeMultipartFormRequestOptions: >(opts: RequestOptions) => Promise>; +export declare const multipartFormRequestOptions: >(opts: RequestOptions) => Promise>; +export declare const createForm: >(body: T | undefined) => Promise; +//# sourceMappingURL=uploads.d.ts.map \ No newline at end of file diff --git a/novas/novacore-zephyr/groq-code-cli/node_modules/groq-sdk/uploads.d.ts.map b/novas/novacore-zephyr/groq-code-cli/node_modules/groq-sdk/uploads.d.ts.map new file mode 100644 index 0000000000000000000000000000000000000000..227dc5f9b644e11204cd8f55d83e9fa5edfb9928 --- /dev/null +++ b/novas/novacore-zephyr/groq-code-cli/node_modules/groq-sdk/uploads.d.ts.map @@ -0,0 +1 @@ +{"version":3,"file":"uploads.d.ts","sourceRoot":"","sources":["src/uploads.ts"],"names":[],"mappings":"AAAA,OAAO,EAAE,KAAK,cAAc,EAAE,MAAM,QAAQ,CAAC;AAC7C,OAAO,EACL,QAAQ,EAER,KAAK,IAAI,EACT,KAAK,eAAe,EAEpB,KAAK,YAAY,EAElB,MAAM,gBAAgB,CAAC;AACxB,OAAO,EAAE,aAAa,EAAE,MAAM,wBAAwB,CAAC;AACvD,OAAO,EAAE,YAAY,EAAE,MAAM,gBAAgB,CAAC;AAE9C,KAAK,YAAY,GAAG,MAAM,GAAG,WAAW,GAAG,eAAe,GAAG,QAAQ,GAAG,UAAU,GAAG,QAAQ,CAAC;AAC9F,MAAM,MAAM,QAAQ,GAAG,MAAM,GAAG,WAAW,GAAG,eAAe,GAAG,IAAI,GAAG,UAAU,GAAG,QAAQ,CAAC;AAE7F;;;;;;;;GAQG;AACH,MAAM,MAAM,UAAU,GAAG,QAAQ,GAAG,YAAY,GAAG,YAAY,CAAC;AAEhE;;GAEG;AACH,MAAM,WAAW,QAAQ;IACvB,4EAA4E;IAC5E,QAAQ,CAAC,IAAI,EAAE,MAAM,CAAC;IACtB,4EAA4E;IAC5E,QAAQ,CAAC,IAAI,EAAE,MAAM,CAAC;IACtB,4EAA4E;IAC5E,IAAI,IAAI,OAAO,CAAC,MAAM,CAAC,CAAC;IACxB,6EAA6E;IAC7E,KAAK,CAAC,KAAK,CAAC,EAAE,MAAM,EAAE,GAAG,CAAC,EAAE,MAAM,GAAG,QAAQ,CAAC;CAE/C;AAED;;GAEG;AACH,MAAM,WAAW,QAAS,SAAQ,QAAQ;IACxC,oFAAoF;IACpF,QAAQ,CAAC,YAAY,EAAE,MAAM,CAAC;IAC9B,4EAA4E;IAC5E,QAAQ,CAAC,IAAI,EAAE,MAAM,CAAC;CACvB;AAED;;GAEG;AACH,MAAM,WAAW,YAAY;IAC3B,GAAG,EAAE,MAAM,CAAC;IACZ,IAAI,IAAI,OAAO,CAAC,QAAQ,CAAC,CAAC;CAC3B;AAED,eAAO,MAAM,cAAc,UAAW,GAAG,0BAIP,CAAC;AAEnC,eAAO,MAAM,UAAU,UAAW,GAAG,sBAKlB,CAAC;AAEpB;;;GAGG;AACH,eAAO,MAAM,UAAU,UAAW,GAAG;mBAAwC,QAAQ,WAAW,CAAC;CAOxD,CAAC;AAE1C,eAAO,MAAM,YAAY,UAAW,GAAG,wBAEtC,CAAC;AAEF,MAAM,MAAM,WAAW,GAAG,UAAU,GAAG,OAAO,CAAC,YAAY,EAAE,MAAM,CAAC,GAAG,aAAa,CAAC,YAAY,CAAC,CAAC;AAEnG;;;;;;;;GAQG;AACH,wBAAsB,MAAM,CAC1B,KAAK,EAAE,WAAW,GAAG,WAAW,CAAC,WAAW,CAAC,EAC7C,IAAI,CAAC,EAAE,MAAM,GAAG,IAAI,GAAG,SAAS,EAChC,OAAO,CAAC,EAAE,eAAe,GAAG,SAAS,GACpC,OAAO,CAAC,QAAQ,CAAC,CAiCnB;AAmDD,eAAO,MAAM,eAAe,SAAU,GAAG,0BACsD,CAAC;AAEhG;;;GAGG;AACH,eAAO,MAAM,gCAAgC,sGAO5C,CAAC;AAEF,eAAO,MAAM,2BAA2B,sGAKvC,CAAC;AAEF,eAAO,MAAM,UAAU,wDAA6D,QAAQ,QAAQ,CAInG,CAAC"} \ No newline at end of file diff --git a/novas/novacore-zephyr/groq-code-cli/node_modules/groq-sdk/uploads.js b/novas/novacore-zephyr/groq-code-cli/node_modules/groq-sdk/uploads.js new file mode 100644 index 0000000000000000000000000000000000000000..6daae959f2b553f234216205db261cd31efca412 --- /dev/null +++ b/novas/novacore-zephyr/groq-code-cli/node_modules/groq-sdk/uploads.js @@ -0,0 +1,171 @@ +"use strict"; +Object.defineProperty(exports, "__esModule", { value: true }); +exports.createForm = exports.multipartFormRequestOptions = exports.maybeMultipartFormRequestOptions = exports.isMultipartBody = exports.toFile = exports.isUploadable = exports.isBlobLike = exports.isFileLike = exports.isResponseLike = exports.fileFromPath = void 0; +const index_1 = require("./_shims/index.js"); +var index_2 = require("./_shims/index.js"); +Object.defineProperty(exports, "fileFromPath", { enumerable: true, get: function () { return index_2.fileFromPath; } }); +const isResponseLike = (value) => value != null && + typeof value === 'object' && + typeof value.url === 'string' && + typeof value.blob === 'function'; +exports.isResponseLike = isResponseLike; +const isFileLike = (value) => value != null && + typeof value === 'object' && + typeof value.name === 'string' && + typeof value.lastModified === 'number' && + (0, exports.isBlobLike)(value); +exports.isFileLike = isFileLike; +/** + * The BlobLike type omits arrayBuffer() because @types/node-fetch@^2.6.4 lacks it; but this check + * adds the arrayBuffer() method type because it is available and used at runtime + */ +const isBlobLike = (value) => value != null && + typeof value === 'object' && + typeof value.size === 'number' && + typeof value.type === 'string' && + typeof value.text === 'function' && + typeof value.slice === 'function' && + typeof value.arrayBuffer === 'function'; +exports.isBlobLike = isBlobLike; +const isUploadable = (value) => { + return (0, exports.isFileLike)(value) || (0, exports.isResponseLike)(value) || (0, index_1.isFsReadStream)(value); +}; +exports.isUploadable = isUploadable; +/** + * Helper for creating a {@link File} to pass to an SDK upload method from a variety of different data formats + * @param value the raw content of the file. Can be an {@link Uploadable}, {@link BlobLikePart}, or {@link AsyncIterable} of {@link BlobLikePart}s + * @param {string=} name the name of the file. If omitted, toFile will try to determine a file name from bits if possible + * @param {Object=} options additional properties + * @param {string=} options.type the MIME type of the content + * @param {number=} options.lastModified the last modified timestamp + * @returns a {@link File} with the given properties + */ +async function toFile(value, name, options) { + // If it's a promise, resolve it. + value = await value; + // If we've been given a `File` we don't need to do anything + if ((0, exports.isFileLike)(value)) { + return value; + } + if ((0, exports.isResponseLike)(value)) { + const blob = await value.blob(); + name || (name = new URL(value.url).pathname.split(/[\\/]/).pop() ?? 'unknown_file'); + // we need to convert the `Blob` into an array buffer because the `Blob` class + // that `node-fetch` defines is incompatible with the web standard which results + // in `new File` interpreting it as a string instead of binary data. + const data = (0, exports.isBlobLike)(blob) ? [(await blob.arrayBuffer())] : [blob]; + return new index_1.File(data, name, options); + } + const bits = await getBytes(value); + name || (name = getName(value) ?? 'unknown_file'); + if (!options?.type) { + const type = bits[0]?.type; + if (typeof type === 'string') { + options = { ...options, type }; + } + } + return new index_1.File(bits, name, options); +} +exports.toFile = toFile; +async function getBytes(value) { + let parts = []; + if (typeof value === 'string' || + ArrayBuffer.isView(value) || // includes Uint8Array, Buffer, etc. + value instanceof ArrayBuffer) { + parts.push(value); + } + else if ((0, exports.isBlobLike)(value)) { + parts.push(await value.arrayBuffer()); + } + else if (isAsyncIterableIterator(value) // includes Readable, ReadableStream, etc. + ) { + for await (const chunk of value) { + parts.push(chunk); // TODO, consider validating? + } + } + else { + throw new Error(`Unexpected data type: ${typeof value}; constructor: ${value?.constructor + ?.name}; props: ${propsForError(value)}`); + } + return parts; +} +function propsForError(value) { + const props = Object.getOwnPropertyNames(value); + return `[${props.map((p) => `"${p}"`).join(', ')}]`; +} +function getName(value) { + return (getStringFromMaybeBuffer(value.name) || + getStringFromMaybeBuffer(value.filename) || + // For fs.ReadStream + getStringFromMaybeBuffer(value.path)?.split(/[\\/]/).pop()); +} +const getStringFromMaybeBuffer = (x) => { + if (typeof x === 'string') + return x; + if (typeof Buffer !== 'undefined' && x instanceof Buffer) + return String(x); + return undefined; +}; +const isAsyncIterableIterator = (value) => value != null && typeof value === 'object' && typeof value[Symbol.asyncIterator] === 'function'; +const isMultipartBody = (body) => body && typeof body === 'object' && body.body && body[Symbol.toStringTag] === 'MultipartBody'; +exports.isMultipartBody = isMultipartBody; +/** + * Returns a multipart/form-data request if any part of the given request body contains a File / Blob value. + * Otherwise returns the request as is. + */ +const maybeMultipartFormRequestOptions = async (opts) => { + if (!hasUploadableValue(opts.body)) + return opts; + const form = await (0, exports.createForm)(opts.body); + return (0, index_1.getMultipartRequestOptions)(form, opts); +}; +exports.maybeMultipartFormRequestOptions = maybeMultipartFormRequestOptions; +const multipartFormRequestOptions = async (opts) => { + const form = await (0, exports.createForm)(opts.body); + return (0, index_1.getMultipartRequestOptions)(form, opts); +}; +exports.multipartFormRequestOptions = multipartFormRequestOptions; +const createForm = async (body) => { + const form = new index_1.FormData(); + await Promise.all(Object.entries(body || {}).map(([key, value]) => addFormValue(form, key, value))); + return form; +}; +exports.createForm = createForm; +const hasUploadableValue = (value) => { + if ((0, exports.isUploadable)(value)) + return true; + if (Array.isArray(value)) + return value.some(hasUploadableValue); + if (value && typeof value === 'object') { + for (const k in value) { + if (hasUploadableValue(value[k])) + return true; + } + } + return false; +}; +const addFormValue = async (form, key, value) => { + if (value === undefined) + return; + if (value == null) { + throw new TypeError(`Received null for "${key}"; to pass null in FormData, you must use the string 'null'`); + } + // TODO: make nested formats configurable + if (typeof value === 'string' || typeof value === 'number' || typeof value === 'boolean') { + form.append(key, String(value)); + } + else if ((0, exports.isUploadable)(value)) { + const file = await toFile(value); + form.append(key, file); + } + else if (Array.isArray(value)) { + await Promise.all(value.map((entry) => addFormValue(form, key + '[]', entry))); + } + else if (typeof value === 'object') { + await Promise.all(Object.entries(value).map(([name, prop]) => addFormValue(form, `${key}[${name}]`, prop))); + } + else { + throw new TypeError(`Invalid value given to form, expected a string, number, boolean, object, Array, File or Blob but got ${value} instead`); + } +}; +//# sourceMappingURL=uploads.js.map \ No newline at end of file diff --git a/novas/novacore-zephyr/groq-code-cli/node_modules/groq-sdk/uploads.js.map b/novas/novacore-zephyr/groq-code-cli/node_modules/groq-sdk/uploads.js.map new file mode 100644 index 0000000000000000000000000000000000000000..7d7d7aeca527976097ce79ae007b2c1327af7472 --- /dev/null +++ b/novas/novacore-zephyr/groq-code-cli/node_modules/groq-sdk/uploads.js.map @@ -0,0 +1 @@ +{"version":3,"file":"uploads.js","sourceRoot":"","sources":["src/uploads.ts"],"names":[],"mappings":";;;AACA,6CAQwB;AAExB,2CAA8C;AAArC,qGAAA,YAAY,OAAA;AAiDd,MAAM,cAAc,GAAG,CAAC,KAAU,EAAyB,EAAE,CAClE,KAAK,IAAI,IAAI;IACb,OAAO,KAAK,KAAK,QAAQ;IACzB,OAAO,KAAK,CAAC,GAAG,KAAK,QAAQ;IAC7B,OAAO,KAAK,CAAC,IAAI,KAAK,UAAU,CAAC;AAJtB,QAAA,cAAc,kBAIQ;AAE5B,MAAM,UAAU,GAAG,CAAC,KAAU,EAAqB,EAAE,CAC1D,KAAK,IAAI,IAAI;IACb,OAAO,KAAK,KAAK,QAAQ;IACzB,OAAO,KAAK,CAAC,IAAI,KAAK,QAAQ;IAC9B,OAAO,KAAK,CAAC,YAAY,KAAK,QAAQ;IACtC,IAAA,kBAAU,EAAC,KAAK,CAAC,CAAC;AALP,QAAA,UAAU,cAKH;AAEpB;;;GAGG;AACI,MAAM,UAAU,GAAG,CAAC,KAAU,EAA+D,EAAE,CACpG,KAAK,IAAI,IAAI;IACb,OAAO,KAAK,KAAK,QAAQ;IACzB,OAAO,KAAK,CAAC,IAAI,KAAK,QAAQ;IAC9B,OAAO,KAAK,CAAC,IAAI,KAAK,QAAQ;IAC9B,OAAO,KAAK,CAAC,IAAI,KAAK,UAAU;IAChC,OAAO,KAAK,CAAC,KAAK,KAAK,UAAU;IACjC,OAAO,KAAK,CAAC,WAAW,KAAK,UAAU,CAAC;AAP7B,QAAA,UAAU,cAOmB;AAEnC,MAAM,YAAY,GAAG,CAAC,KAAU,EAAuB,EAAE;IAC9D,OAAO,IAAA,kBAAU,EAAC,KAAK,CAAC,IAAI,IAAA,sBAAc,EAAC,KAAK,CAAC,IAAI,IAAA,sBAAc,EAAC,KAAK,CAAC,CAAC;AAC7E,CAAC,CAAC;AAFW,QAAA,YAAY,gBAEvB;AAIF;;;;;;;;GAQG;AACI,KAAK,UAAU,MAAM,CAC1B,KAA6C,EAC7C,IAAgC,EAChC,OAAqC;IAErC,iCAAiC;IACjC,KAAK,GAAG,MAAM,KAAK,CAAC;IAEpB,4DAA4D;IAC5D,IAAI,IAAA,kBAAU,EAAC,KAAK,CAAC,EAAE;QACrB,OAAO,KAAK,CAAC;KACd;IAED,IAAI,IAAA,sBAAc,EAAC,KAAK,CAAC,EAAE;QACzB,MAAM,IAAI,GAAG,MAAM,KAAK,CAAC,IAAI,EAAE,CAAC;QAChC,IAAI,KAAJ,IAAI,GAAK,IAAI,GAAG,CAAC,KAAK,CAAC,GAAG,CAAC,CAAC,QAAQ,CAAC,KAAK,CAAC,OAAO,CAAC,CAAC,GAAG,EAAE,IAAI,cAAc,EAAC;QAE5E,8EAA8E;QAC9E,gFAAgF;QAChF,oEAAoE;QACpE,MAAM,IAAI,GAAG,IAAA,kBAAU,EAAC,IAAI,CAAC,CAAC,CAAC,CAAC,CAAC,CAAC,MAAM,IAAI,CAAC,WAAW,EAAE,CAAQ,CAAC,CAAC,CAAC,CAAC,CAAC,IAAI,CAAC,CAAC;QAE7E,OAAO,IAAI,YAAI,CAAC,IAAI,EAAE,IAAI,EAAE,OAAO,CAAC,CAAC;KACtC;IAED,MAAM,IAAI,GAAG,MAAM,QAAQ,CAAC,KAAK,CAAC,CAAC;IAEnC,IAAI,KAAJ,IAAI,GAAK,OAAO,CAAC,KAAK,CAAC,IAAI,cAAc,EAAC;IAE1C,IAAI,CAAC,OAAO,EAAE,IAAI,EAAE;QAClB,MAAM,IAAI,GAAI,IAAI,CAAC,CAAC,CAAS,EAAE,IAAI,CAAC;QACpC,IAAI,OAAO,IAAI,KAAK,QAAQ,EAAE;YAC5B,OAAO,GAAG,EAAE,GAAG,OAAO,EAAE,IAAI,EAAE,CAAC;SAChC;KACF;IAED,OAAO,IAAI,YAAI,CAAC,IAAI,EAAE,IAAI,EAAE,OAAO,CAAC,CAAC;AACvC,CAAC;AArCD,wBAqCC;AAED,KAAK,UAAU,QAAQ,CAAC,KAAkB;IACxC,IAAI,KAAK,GAAoB,EAAE,CAAC;IAChC,IACE,OAAO,KAAK,KAAK,QAAQ;QACzB,WAAW,CAAC,MAAM,CAAC,KAAK,CAAC,IAAI,oCAAoC;QACjE,KAAK,YAAY,WAAW,EAC5B;QACA,KAAK,CAAC,IAAI,CAAC,KAAK,CAAC,CAAC;KACnB;SAAM,IAAI,IAAA,kBAAU,EAAC,KAAK,CAAC,EAAE;QAC5B,KAAK,CAAC,IAAI,CAAC,MAAM,KAAK,CAAC,WAAW,EAAE,CAAC,CAAC;KACvC;SAAM,IACL,uBAAuB,CAAC,KAAK,CAAC,CAAC,0CAA0C;MACzE;QACA,IAAI,KAAK,EAAE,MAAM,KAAK,IAAI,KAAK,EAAE;YAC/B,KAAK,CAAC,IAAI,CAAC,KAAiB,CAAC,CAAC,CAAC,6BAA6B;SAC7D;KACF;SAAM;QACL,MAAM,IAAI,KAAK,CACb,yBAAyB,OAAO,KAAK,kBAAkB,KAAK,EAAE,WAAW;YACvE,EAAE,IAAI,YAAY,aAAa,CAAC,KAAK,CAAC,EAAE,CAC3C,CAAC;KACH;IAED,OAAO,KAAK,CAAC;AACf,CAAC;AAED,SAAS,aAAa,CAAC,KAAU;IAC/B,MAAM,KAAK,GAAG,MAAM,CAAC,mBAAmB,CAAC,KAAK,CAAC,CAAC;IAChD,OAAO,IAAI,KAAK,CAAC,GAAG,CAAC,CAAC,CAAC,EAAE,EAAE,CAAC,IAAI,CAAC,GAAG,CAAC,CAAC,IAAI,CAAC,IAAI,CAAC,GAAG,CAAC;AACtD,CAAC;AAED,SAAS,OAAO,CAAC,KAAU;IACzB,OAAO,CACL,wBAAwB,CAAC,KAAK,CAAC,IAAI,CAAC;QACpC,wBAAwB,CAAC,KAAK,CAAC,QAAQ,CAAC;QACxC,oBAAoB;QACpB,wBAAwB,CAAC,KAAK,CAAC,IAAI,CAAC,EAAE,KAAK,CAAC,OAAO,CAAC,CAAC,GAAG,EAAE,CAC3D,CAAC;AACJ,CAAC;AAED,MAAM,wBAAwB,GAAG,CAAC,CAA4B,EAAsB,EAAE;IACpF,IAAI,OAAO,CAAC,KAAK,QAAQ;QAAE,OAAO,CAAC,CAAC;IACpC,IAAI,OAAO,MAAM,KAAK,WAAW,IAAI,CAAC,YAAY,MAAM;QAAE,OAAO,MAAM,CAAC,CAAC,CAAC,CAAC;IAC3E,OAAO,SAAS,CAAC;AACnB,CAAC,CAAC;AAEF,MAAM,uBAAuB,GAAG,CAAC,KAAU,EAA2C,EAAE,CACtF,KAAK,IAAI,IAAI,IAAI,OAAO,KAAK,KAAK,QAAQ,IAAI,OAAO,KAAK,CAAC,MAAM,CAAC,aAAa,CAAC,KAAK,UAAU,CAAC;AAE3F,MAAM,eAAe,GAAG,CAAC,IAAS,EAAyB,EAAE,CAClE,IAAI,IAAI,OAAO,IAAI,KAAK,QAAQ,IAAI,IAAI,CAAC,IAAI,IAAI,IAAI,CAAC,MAAM,CAAC,WAAW,CAAC,KAAK,eAAe,CAAC;AADnF,QAAA,eAAe,mBACoE;AAEhG;;;GAGG;AACI,MAAM,gCAAgC,GAAG,KAAK,EACnD,IAAuB,EACqB,EAAE;IAC9C,IAAI,CAAC,kBAAkB,CAAC,IAAI,CAAC,IAAI,CAAC;QAAE,OAAO,IAAI,CAAC;IAEhD,MAAM,IAAI,GAAG,MAAM,IAAA,kBAAU,EAAC,IAAI,CAAC,IAAI,CAAC,CAAC;IACzC,OAAO,IAAA,kCAA0B,EAAC,IAAI,EAAE,IAAI,CAAC,CAAC;AAChD,CAAC,CAAC;AAPW,QAAA,gCAAgC,oCAO3C;AAEK,MAAM,2BAA2B,GAAG,KAAK,EAC9C,IAAuB,EACqB,EAAE;IAC9C,MAAM,IAAI,GAAG,MAAM,IAAA,kBAAU,EAAC,IAAI,CAAC,IAAI,CAAC,CAAC;IACzC,OAAO,IAAA,kCAA0B,EAAC,IAAI,EAAE,IAAI,CAAC,CAAC;AAChD,CAAC,CAAC;AALW,QAAA,2BAA2B,+BAKtC;AAEK,MAAM,UAAU,GAAG,KAAK,EAA+B,IAAmB,EAAqB,EAAE;IACtG,MAAM,IAAI,GAAG,IAAI,gBAAQ,EAAE,CAAC;IAC5B,MAAM,OAAO,CAAC,GAAG,CAAC,MAAM,CAAC,OAAO,CAAC,IAAI,IAAI,EAAE,CAAC,CAAC,GAAG,CAAC,CAAC,CAAC,GAAG,EAAE,KAAK,CAAC,EAAE,EAAE,CAAC,YAAY,CAAC,IAAI,EAAE,GAAG,EAAE,KAAK,CAAC,CAAC,CAAC,CAAC;IACpG,OAAO,IAAI,CAAC;AACd,CAAC,CAAC;AAJW,QAAA,UAAU,cAIrB;AAEF,MAAM,kBAAkB,GAAG,CAAC,KAAc,EAAW,EAAE;IACrD,IAAI,IAAA,oBAAY,EAAC,KAAK,CAAC;QAAE,OAAO,IAAI,CAAC;IACrC,IAAI,KAAK,CAAC,OAAO,CAAC,KAAK,CAAC;QAAE,OAAO,KAAK,CAAC,IAAI,CAAC,kBAAkB,CAAC,CAAC;IAChE,IAAI,KAAK,IAAI,OAAO,KAAK,KAAK,QAAQ,EAAE;QACtC,KAAK,MAAM,CAAC,IAAI,KAAK,EAAE;YACrB,IAAI,kBAAkB,CAAE,KAAa,CAAC,CAAC,CAAC,CAAC;gBAAE,OAAO,IAAI,CAAC;SACxD;KACF;IACD,OAAO,KAAK,CAAC;AACf,CAAC,CAAC;AAEF,MAAM,YAAY,GAAG,KAAK,EAAE,IAAc,EAAE,GAAW,EAAE,KAAc,EAAiB,EAAE;IACxF,IAAI,KAAK,KAAK,SAAS;QAAE,OAAO;IAChC,IAAI,KAAK,IAAI,IAAI,EAAE;QACjB,MAAM,IAAI,SAAS,CACjB,sBAAsB,GAAG,6DAA6D,CACvF,CAAC;KACH;IAED,yCAAyC;IACzC,IAAI,OAAO,KAAK,KAAK,QAAQ,IAAI,OAAO,KAAK,KAAK,QAAQ,IAAI,OAAO,KAAK,KAAK,SAAS,EAAE;QACxF,IAAI,CAAC,MAAM,CAAC,GAAG,EAAE,MAAM,CAAC,KAAK,CAAC,CAAC,CAAC;KACjC;SAAM,IAAI,IAAA,oBAAY,EAAC,KAAK,CAAC,EAAE;QAC9B,MAAM,IAAI,GAAG,MAAM,MAAM,CAAC,KAAK,CAAC,CAAC;QACjC,IAAI,CAAC,MAAM,CAAC,GAAG,EAAE,IAAY,CAAC,CAAC;KAChC;SAAM,IAAI,KAAK,CAAC,OAAO,CAAC,KAAK,CAAC,EAAE;QAC/B,MAAM,OAAO,CAAC,GAAG,CAAC,KAAK,CAAC,GAAG,CAAC,CAAC,KAAK,EAAE,EAAE,CAAC,YAAY,CAAC,IAAI,EAAE,GAAG,GAAG,IAAI,EAAE,KAAK,CAAC,CAAC,CAAC,CAAC;KAChF;SAAM,IAAI,OAAO,KAAK,KAAK,QAAQ,EAAE;QACpC,MAAM,OAAO,CAAC,GAAG,CACf,MAAM,CAAC,OAAO,CAAC,KAAK,CAAC,CAAC,GAAG,CAAC,CAAC,CAAC,IAAI,EAAE,IAAI,CAAC,EAAE,EAAE,CAAC,YAAY,CAAC,IAAI,EAAE,GAAG,GAAG,IAAI,IAAI,GAAG,EAAE,IAAI,CAAC,CAAC,CACzF,CAAC;KACH;SAAM;QACL,MAAM,IAAI,SAAS,CACjB,wGAAwG,KAAK,UAAU,CACxH,CAAC;KACH;AACH,CAAC,CAAC"} \ No newline at end of file diff --git a/novas/novacore-zephyr/groq-code-cli/node_modules/groq-sdk/uploads.mjs b/novas/novacore-zephyr/groq-code-cli/node_modules/groq-sdk/uploads.mjs new file mode 100644 index 0000000000000000000000000000000000000000..7357361e7736cc0c1d6deaf33fbb6bd3f2e38471 --- /dev/null +++ b/novas/novacore-zephyr/groq-code-cli/node_modules/groq-sdk/uploads.mjs @@ -0,0 +1,158 @@ +import { FormData, File, getMultipartRequestOptions, isFsReadStream, } from "./_shims/index.mjs"; +export { fileFromPath } from "./_shims/index.mjs"; +export const isResponseLike = (value) => value != null && + typeof value === 'object' && + typeof value.url === 'string' && + typeof value.blob === 'function'; +export const isFileLike = (value) => value != null && + typeof value === 'object' && + typeof value.name === 'string' && + typeof value.lastModified === 'number' && + isBlobLike(value); +/** + * The BlobLike type omits arrayBuffer() because @types/node-fetch@^2.6.4 lacks it; but this check + * adds the arrayBuffer() method type because it is available and used at runtime + */ +export const isBlobLike = (value) => value != null && + typeof value === 'object' && + typeof value.size === 'number' && + typeof value.type === 'string' && + typeof value.text === 'function' && + typeof value.slice === 'function' && + typeof value.arrayBuffer === 'function'; +export const isUploadable = (value) => { + return isFileLike(value) || isResponseLike(value) || isFsReadStream(value); +}; +/** + * Helper for creating a {@link File} to pass to an SDK upload method from a variety of different data formats + * @param value the raw content of the file. Can be an {@link Uploadable}, {@link BlobLikePart}, or {@link AsyncIterable} of {@link BlobLikePart}s + * @param {string=} name the name of the file. If omitted, toFile will try to determine a file name from bits if possible + * @param {Object=} options additional properties + * @param {string=} options.type the MIME type of the content + * @param {number=} options.lastModified the last modified timestamp + * @returns a {@link File} with the given properties + */ +export async function toFile(value, name, options) { + // If it's a promise, resolve it. + value = await value; + // If we've been given a `File` we don't need to do anything + if (isFileLike(value)) { + return value; + } + if (isResponseLike(value)) { + const blob = await value.blob(); + name || (name = new URL(value.url).pathname.split(/[\\/]/).pop() ?? 'unknown_file'); + // we need to convert the `Blob` into an array buffer because the `Blob` class + // that `node-fetch` defines is incompatible with the web standard which results + // in `new File` interpreting it as a string instead of binary data. + const data = isBlobLike(blob) ? [(await blob.arrayBuffer())] : [blob]; + return new File(data, name, options); + } + const bits = await getBytes(value); + name || (name = getName(value) ?? 'unknown_file'); + if (!options?.type) { + const type = bits[0]?.type; + if (typeof type === 'string') { + options = { ...options, type }; + } + } + return new File(bits, name, options); +} +async function getBytes(value) { + let parts = []; + if (typeof value === 'string' || + ArrayBuffer.isView(value) || // includes Uint8Array, Buffer, etc. + value instanceof ArrayBuffer) { + parts.push(value); + } + else if (isBlobLike(value)) { + parts.push(await value.arrayBuffer()); + } + else if (isAsyncIterableIterator(value) // includes Readable, ReadableStream, etc. + ) { + for await (const chunk of value) { + parts.push(chunk); // TODO, consider validating? + } + } + else { + throw new Error(`Unexpected data type: ${typeof value}; constructor: ${value?.constructor + ?.name}; props: ${propsForError(value)}`); + } + return parts; +} +function propsForError(value) { + const props = Object.getOwnPropertyNames(value); + return `[${props.map((p) => `"${p}"`).join(', ')}]`; +} +function getName(value) { + return (getStringFromMaybeBuffer(value.name) || + getStringFromMaybeBuffer(value.filename) || + // For fs.ReadStream + getStringFromMaybeBuffer(value.path)?.split(/[\\/]/).pop()); +} +const getStringFromMaybeBuffer = (x) => { + if (typeof x === 'string') + return x; + if (typeof Buffer !== 'undefined' && x instanceof Buffer) + return String(x); + return undefined; +}; +const isAsyncIterableIterator = (value) => value != null && typeof value === 'object' && typeof value[Symbol.asyncIterator] === 'function'; +export const isMultipartBody = (body) => body && typeof body === 'object' && body.body && body[Symbol.toStringTag] === 'MultipartBody'; +/** + * Returns a multipart/form-data request if any part of the given request body contains a File / Blob value. + * Otherwise returns the request as is. + */ +export const maybeMultipartFormRequestOptions = async (opts) => { + if (!hasUploadableValue(opts.body)) + return opts; + const form = await createForm(opts.body); + return getMultipartRequestOptions(form, opts); +}; +export const multipartFormRequestOptions = async (opts) => { + const form = await createForm(opts.body); + return getMultipartRequestOptions(form, opts); +}; +export const createForm = async (body) => { + const form = new FormData(); + await Promise.all(Object.entries(body || {}).map(([key, value]) => addFormValue(form, key, value))); + return form; +}; +const hasUploadableValue = (value) => { + if (isUploadable(value)) + return true; + if (Array.isArray(value)) + return value.some(hasUploadableValue); + if (value && typeof value === 'object') { + for (const k in value) { + if (hasUploadableValue(value[k])) + return true; + } + } + return false; +}; +const addFormValue = async (form, key, value) => { + if (value === undefined) + return; + if (value == null) { + throw new TypeError(`Received null for "${key}"; to pass null in FormData, you must use the string 'null'`); + } + // TODO: make nested formats configurable + if (typeof value === 'string' || typeof value === 'number' || typeof value === 'boolean') { + form.append(key, String(value)); + } + else if (isUploadable(value)) { + const file = await toFile(value); + form.append(key, file); + } + else if (Array.isArray(value)) { + await Promise.all(value.map((entry) => addFormValue(form, key + '[]', entry))); + } + else if (typeof value === 'object') { + await Promise.all(Object.entries(value).map(([name, prop]) => addFormValue(form, `${key}[${name}]`, prop))); + } + else { + throw new TypeError(`Invalid value given to form, expected a string, number, boolean, object, Array, File or Blob but got ${value} instead`); + } +}; +//# sourceMappingURL=uploads.mjs.map \ No newline at end of file diff --git a/novas/novacore-zephyr/groq-code-cli/node_modules/groq-sdk/uploads.mjs.map b/novas/novacore-zephyr/groq-code-cli/node_modules/groq-sdk/uploads.mjs.map new file mode 100644 index 0000000000000000000000000000000000000000..e5f32193a1d6750071e8ac217ead4f38f0c5dcbf --- /dev/null +++ b/novas/novacore-zephyr/groq-code-cli/node_modules/groq-sdk/uploads.mjs.map @@ -0,0 +1 @@ +{"version":3,"file":"uploads.mjs","sourceRoot":"","sources":["src/uploads.ts"],"names":[],"mappings":"OACO,EACL,QAAQ,EACR,IAAI,EAGJ,0BAA0B,EAE1B,cAAc,GACf;OAEM,EAAE,YAAY,EAAE;AAiDvB,MAAM,CAAC,MAAM,cAAc,GAAG,CAAC,KAAU,EAAyB,EAAE,CAClE,KAAK,IAAI,IAAI;IACb,OAAO,KAAK,KAAK,QAAQ;IACzB,OAAO,KAAK,CAAC,GAAG,KAAK,QAAQ;IAC7B,OAAO,KAAK,CAAC,IAAI,KAAK,UAAU,CAAC;AAEnC,MAAM,CAAC,MAAM,UAAU,GAAG,CAAC,KAAU,EAAqB,EAAE,CAC1D,KAAK,IAAI,IAAI;IACb,OAAO,KAAK,KAAK,QAAQ;IACzB,OAAO,KAAK,CAAC,IAAI,KAAK,QAAQ;IAC9B,OAAO,KAAK,CAAC,YAAY,KAAK,QAAQ;IACtC,UAAU,CAAC,KAAK,CAAC,CAAC;AAEpB;;;GAGG;AACH,MAAM,CAAC,MAAM,UAAU,GAAG,CAAC,KAAU,EAA+D,EAAE,CACpG,KAAK,IAAI,IAAI;IACb,OAAO,KAAK,KAAK,QAAQ;IACzB,OAAO,KAAK,CAAC,IAAI,KAAK,QAAQ;IAC9B,OAAO,KAAK,CAAC,IAAI,KAAK,QAAQ;IAC9B,OAAO,KAAK,CAAC,IAAI,KAAK,UAAU;IAChC,OAAO,KAAK,CAAC,KAAK,KAAK,UAAU;IACjC,OAAO,KAAK,CAAC,WAAW,KAAK,UAAU,CAAC;AAE1C,MAAM,CAAC,MAAM,YAAY,GAAG,CAAC,KAAU,EAAuB,EAAE;IAC9D,OAAO,UAAU,CAAC,KAAK,CAAC,IAAI,cAAc,CAAC,KAAK,CAAC,IAAI,cAAc,CAAC,KAAK,CAAC,CAAC;AAC7E,CAAC,CAAC;AAIF;;;;;;;;GAQG;AACH,MAAM,CAAC,KAAK,UAAU,MAAM,CAC1B,KAA6C,EAC7C,IAAgC,EAChC,OAAqC;IAErC,iCAAiC;IACjC,KAAK,GAAG,MAAM,KAAK,CAAC;IAEpB,4DAA4D;IAC5D,IAAI,UAAU,CAAC,KAAK,CAAC,EAAE;QACrB,OAAO,KAAK,CAAC;KACd;IAED,IAAI,cAAc,CAAC,KAAK,CAAC,EAAE;QACzB,MAAM,IAAI,GAAG,MAAM,KAAK,CAAC,IAAI,EAAE,CAAC;QAChC,IAAI,KAAJ,IAAI,GAAK,IAAI,GAAG,CAAC,KAAK,CAAC,GAAG,CAAC,CAAC,QAAQ,CAAC,KAAK,CAAC,OAAO,CAAC,CAAC,GAAG,EAAE,IAAI,cAAc,EAAC;QAE5E,8EAA8E;QAC9E,gFAAgF;QAChF,oEAAoE;QACpE,MAAM,IAAI,GAAG,UAAU,CAAC,IAAI,CAAC,CAAC,CAAC,CAAC,CAAC,CAAC,MAAM,IAAI,CAAC,WAAW,EAAE,CAAQ,CAAC,CAAC,CAAC,CAAC,CAAC,IAAI,CAAC,CAAC;QAE7E,OAAO,IAAI,IAAI,CAAC,IAAI,EAAE,IAAI,EAAE,OAAO,CAAC,CAAC;KACtC;IAED,MAAM,IAAI,GAAG,MAAM,QAAQ,CAAC,KAAK,CAAC,CAAC;IAEnC,IAAI,KAAJ,IAAI,GAAK,OAAO,CAAC,KAAK,CAAC,IAAI,cAAc,EAAC;IAE1C,IAAI,CAAC,OAAO,EAAE,IAAI,EAAE;QAClB,MAAM,IAAI,GAAI,IAAI,CAAC,CAAC,CAAS,EAAE,IAAI,CAAC;QACpC,IAAI,OAAO,IAAI,KAAK,QAAQ,EAAE;YAC5B,OAAO,GAAG,EAAE,GAAG,OAAO,EAAE,IAAI,EAAE,CAAC;SAChC;KACF;IAED,OAAO,IAAI,IAAI,CAAC,IAAI,EAAE,IAAI,EAAE,OAAO,CAAC,CAAC;AACvC,CAAC;AAED,KAAK,UAAU,QAAQ,CAAC,KAAkB;IACxC,IAAI,KAAK,GAAoB,EAAE,CAAC;IAChC,IACE,OAAO,KAAK,KAAK,QAAQ;QACzB,WAAW,CAAC,MAAM,CAAC,KAAK,CAAC,IAAI,oCAAoC;QACjE,KAAK,YAAY,WAAW,EAC5B;QACA,KAAK,CAAC,IAAI,CAAC,KAAK,CAAC,CAAC;KACnB;SAAM,IAAI,UAAU,CAAC,KAAK,CAAC,EAAE;QAC5B,KAAK,CAAC,IAAI,CAAC,MAAM,KAAK,CAAC,WAAW,EAAE,CAAC,CAAC;KACvC;SAAM,IACL,uBAAuB,CAAC,KAAK,CAAC,CAAC,0CAA0C;MACzE;QACA,IAAI,KAAK,EAAE,MAAM,KAAK,IAAI,KAAK,EAAE;YAC/B,KAAK,CAAC,IAAI,CAAC,KAAiB,CAAC,CAAC,CAAC,6BAA6B;SAC7D;KACF;SAAM;QACL,MAAM,IAAI,KAAK,CACb,yBAAyB,OAAO,KAAK,kBAAkB,KAAK,EAAE,WAAW;YACvE,EAAE,IAAI,YAAY,aAAa,CAAC,KAAK,CAAC,EAAE,CAC3C,CAAC;KACH;IAED,OAAO,KAAK,CAAC;AACf,CAAC;AAED,SAAS,aAAa,CAAC,KAAU;IAC/B,MAAM,KAAK,GAAG,MAAM,CAAC,mBAAmB,CAAC,KAAK,CAAC,CAAC;IAChD,OAAO,IAAI,KAAK,CAAC,GAAG,CAAC,CAAC,CAAC,EAAE,EAAE,CAAC,IAAI,CAAC,GAAG,CAAC,CAAC,IAAI,CAAC,IAAI,CAAC,GAAG,CAAC;AACtD,CAAC;AAED,SAAS,OAAO,CAAC,KAAU;IACzB,OAAO,CACL,wBAAwB,CAAC,KAAK,CAAC,IAAI,CAAC;QACpC,wBAAwB,CAAC,KAAK,CAAC,QAAQ,CAAC;QACxC,oBAAoB;QACpB,wBAAwB,CAAC,KAAK,CAAC,IAAI,CAAC,EAAE,KAAK,CAAC,OAAO,CAAC,CAAC,GAAG,EAAE,CAC3D,CAAC;AACJ,CAAC;AAED,MAAM,wBAAwB,GAAG,CAAC,CAA4B,EAAsB,EAAE;IACpF,IAAI,OAAO,CAAC,KAAK,QAAQ;QAAE,OAAO,CAAC,CAAC;IACpC,IAAI,OAAO,MAAM,KAAK,WAAW,IAAI,CAAC,YAAY,MAAM;QAAE,OAAO,MAAM,CAAC,CAAC,CAAC,CAAC;IAC3E,OAAO,SAAS,CAAC;AACnB,CAAC,CAAC;AAEF,MAAM,uBAAuB,GAAG,CAAC,KAAU,EAA2C,EAAE,CACtF,KAAK,IAAI,IAAI,IAAI,OAAO,KAAK,KAAK,QAAQ,IAAI,OAAO,KAAK,CAAC,MAAM,CAAC,aAAa,CAAC,KAAK,UAAU,CAAC;AAElG,MAAM,CAAC,MAAM,eAAe,GAAG,CAAC,IAAS,EAAyB,EAAE,CAClE,IAAI,IAAI,OAAO,IAAI,KAAK,QAAQ,IAAI,IAAI,CAAC,IAAI,IAAI,IAAI,CAAC,MAAM,CAAC,WAAW,CAAC,KAAK,eAAe,CAAC;AAEhG;;;GAGG;AACH,MAAM,CAAC,MAAM,gCAAgC,GAAG,KAAK,EACnD,IAAuB,EACqB,EAAE;IAC9C,IAAI,CAAC,kBAAkB,CAAC,IAAI,CAAC,IAAI,CAAC;QAAE,OAAO,IAAI,CAAC;IAEhD,MAAM,IAAI,GAAG,MAAM,UAAU,CAAC,IAAI,CAAC,IAAI,CAAC,CAAC;IACzC,OAAO,0BAA0B,CAAC,IAAI,EAAE,IAAI,CAAC,CAAC;AAChD,CAAC,CAAC;AAEF,MAAM,CAAC,MAAM,2BAA2B,GAAG,KAAK,EAC9C,IAAuB,EACqB,EAAE;IAC9C,MAAM,IAAI,GAAG,MAAM,UAAU,CAAC,IAAI,CAAC,IAAI,CAAC,CAAC;IACzC,OAAO,0BAA0B,CAAC,IAAI,EAAE,IAAI,CAAC,CAAC;AAChD,CAAC,CAAC;AAEF,MAAM,CAAC,MAAM,UAAU,GAAG,KAAK,EAA+B,IAAmB,EAAqB,EAAE;IACtG,MAAM,IAAI,GAAG,IAAI,QAAQ,EAAE,CAAC;IAC5B,MAAM,OAAO,CAAC,GAAG,CAAC,MAAM,CAAC,OAAO,CAAC,IAAI,IAAI,EAAE,CAAC,CAAC,GAAG,CAAC,CAAC,CAAC,GAAG,EAAE,KAAK,CAAC,EAAE,EAAE,CAAC,YAAY,CAAC,IAAI,EAAE,GAAG,EAAE,KAAK,CAAC,CAAC,CAAC,CAAC;IACpG,OAAO,IAAI,CAAC;AACd,CAAC,CAAC;AAEF,MAAM,kBAAkB,GAAG,CAAC,KAAc,EAAW,EAAE;IACrD,IAAI,YAAY,CAAC,KAAK,CAAC;QAAE,OAAO,IAAI,CAAC;IACrC,IAAI,KAAK,CAAC,OAAO,CAAC,KAAK,CAAC;QAAE,OAAO,KAAK,CAAC,IAAI,CAAC,kBAAkB,CAAC,CAAC;IAChE,IAAI,KAAK,IAAI,OAAO,KAAK,KAAK,QAAQ,EAAE;QACtC,KAAK,MAAM,CAAC,IAAI,KAAK,EAAE;YACrB,IAAI,kBAAkB,CAAE,KAAa,CAAC,CAAC,CAAC,CAAC;gBAAE,OAAO,IAAI,CAAC;SACxD;KACF;IACD,OAAO,KAAK,CAAC;AACf,CAAC,CAAC;AAEF,MAAM,YAAY,GAAG,KAAK,EAAE,IAAc,EAAE,GAAW,EAAE,KAAc,EAAiB,EAAE;IACxF,IAAI,KAAK,KAAK,SAAS;QAAE,OAAO;IAChC,IAAI,KAAK,IAAI,IAAI,EAAE;QACjB,MAAM,IAAI,SAAS,CACjB,sBAAsB,GAAG,6DAA6D,CACvF,CAAC;KACH;IAED,yCAAyC;IACzC,IAAI,OAAO,KAAK,KAAK,QAAQ,IAAI,OAAO,KAAK,KAAK,QAAQ,IAAI,OAAO,KAAK,KAAK,SAAS,EAAE;QACxF,IAAI,CAAC,MAAM,CAAC,GAAG,EAAE,MAAM,CAAC,KAAK,CAAC,CAAC,CAAC;KACjC;SAAM,IAAI,YAAY,CAAC,KAAK,CAAC,EAAE;QAC9B,MAAM,IAAI,GAAG,MAAM,MAAM,CAAC,KAAK,CAAC,CAAC;QACjC,IAAI,CAAC,MAAM,CAAC,GAAG,EAAE,IAAY,CAAC,CAAC;KAChC;SAAM,IAAI,KAAK,CAAC,OAAO,CAAC,KAAK,CAAC,EAAE;QAC/B,MAAM,OAAO,CAAC,GAAG,CAAC,KAAK,CAAC,GAAG,CAAC,CAAC,KAAK,EAAE,EAAE,CAAC,YAAY,CAAC,IAAI,EAAE,GAAG,GAAG,IAAI,EAAE,KAAK,CAAC,CAAC,CAAC,CAAC;KAChF;SAAM,IAAI,OAAO,KAAK,KAAK,QAAQ,EAAE;QACpC,MAAM,OAAO,CAAC,GAAG,CACf,MAAM,CAAC,OAAO,CAAC,KAAK,CAAC,CAAC,GAAG,CAAC,CAAC,CAAC,IAAI,EAAE,IAAI,CAAC,EAAE,EAAE,CAAC,YAAY,CAAC,IAAI,EAAE,GAAG,GAAG,IAAI,IAAI,GAAG,EAAE,IAAI,CAAC,CAAC,CACzF,CAAC;KACH;SAAM;QACL,MAAM,IAAI,SAAS,CACjB,wGAAwG,KAAK,UAAU,CACxH,CAAC;KACH;AACH,CAAC,CAAC"} \ No newline at end of file diff --git a/novas/novacore-zephyr/groq-code-cli/node_modules/groq-sdk/version.d.ts b/novas/novacore-zephyr/groq-code-cli/node_modules/groq-sdk/version.d.ts new file mode 100644 index 0000000000000000000000000000000000000000..91f7314fb132f27921e7a4a3fcbd87c0a40f55b6 --- /dev/null +++ b/novas/novacore-zephyr/groq-code-cli/node_modules/groq-sdk/version.d.ts @@ -0,0 +1,2 @@ +export declare const VERSION = "0.27.0"; +//# sourceMappingURL=version.d.ts.map \ No newline at end of file diff --git a/novas/novacore-zephyr/groq-code-cli/node_modules/groq-sdk/version.d.ts.map b/novas/novacore-zephyr/groq-code-cli/node_modules/groq-sdk/version.d.ts.map new file mode 100644 index 0000000000000000000000000000000000000000..e072bdd7a15c376e22ed360f66cda149fff769ac --- /dev/null +++ b/novas/novacore-zephyr/groq-code-cli/node_modules/groq-sdk/version.d.ts.map @@ -0,0 +1 @@ +{"version":3,"file":"version.d.ts","sourceRoot":"","sources":["src/version.ts"],"names":[],"mappings":"AAAA,eAAO,MAAM,OAAO,WAAW,CAAC"} \ No newline at end of file diff --git a/novas/novacore-zephyr/groq-code-cli/node_modules/groq-sdk/version.js b/novas/novacore-zephyr/groq-code-cli/node_modules/groq-sdk/version.js new file mode 100644 index 0000000000000000000000000000000000000000..ce020ad477d958ef2a1f559e064152cbd33fef1d --- /dev/null +++ b/novas/novacore-zephyr/groq-code-cli/node_modules/groq-sdk/version.js @@ -0,0 +1,5 @@ +"use strict"; +Object.defineProperty(exports, "__esModule", { value: true }); +exports.VERSION = void 0; +exports.VERSION = '0.27.0'; // x-release-please-version +//# sourceMappingURL=version.js.map \ No newline at end of file diff --git a/novas/novacore-zephyr/groq-code-cli/node_modules/groq-sdk/version.js.map b/novas/novacore-zephyr/groq-code-cli/node_modules/groq-sdk/version.js.map new file mode 100644 index 0000000000000000000000000000000000000000..e9a6b4f01739d8724dad65ade9271280801ba000 --- /dev/null +++ b/novas/novacore-zephyr/groq-code-cli/node_modules/groq-sdk/version.js.map @@ -0,0 +1 @@ +{"version":3,"file":"version.js","sourceRoot":"","sources":["src/version.ts"],"names":[],"mappings":";;;AAAa,QAAA,OAAO,GAAG,QAAQ,CAAC,CAAC,2BAA2B"} \ No newline at end of file diff --git a/novas/novacore-zephyr/groq-code-cli/node_modules/groq-sdk/version.mjs b/novas/novacore-zephyr/groq-code-cli/node_modules/groq-sdk/version.mjs new file mode 100644 index 0000000000000000000000000000000000000000..c2aed5a4944acf3cb6fe5a9ab517a8c5e07c1565 --- /dev/null +++ b/novas/novacore-zephyr/groq-code-cli/node_modules/groq-sdk/version.mjs @@ -0,0 +1,2 @@ +export const VERSION = '0.27.0'; // x-release-please-version +//# sourceMappingURL=version.mjs.map \ No newline at end of file diff --git a/novas/novacore-zephyr/groq-code-cli/node_modules/groq-sdk/version.mjs.map b/novas/novacore-zephyr/groq-code-cli/node_modules/groq-sdk/version.mjs.map new file mode 100644 index 0000000000000000000000000000000000000000..0c09c723b1318a6966eaf1482f5f556f052a5491 --- /dev/null +++ b/novas/novacore-zephyr/groq-code-cli/node_modules/groq-sdk/version.mjs.map @@ -0,0 +1 @@ +{"version":3,"file":"version.mjs","sourceRoot":"","sources":["src/version.ts"],"names":[],"mappings":"AAAA,MAAM,CAAC,MAAM,OAAO,GAAG,QAAQ,CAAC,CAAC,2BAA2B"} \ No newline at end of file diff --git a/novas/novacore-zephyr/groq-code-cli/node_modules/hard-rejection/index.d.ts b/novas/novacore-zephyr/groq-code-cli/node_modules/hard-rejection/index.d.ts new file mode 100644 index 0000000000000000000000000000000000000000..6f49890662b7e5fd87c07eba30cb5de5ecd4b47b --- /dev/null +++ b/novas/novacore-zephyr/groq-code-cli/node_modules/hard-rejection/index.d.ts @@ -0,0 +1,15 @@ +declare const hardRejection: { + /** + Make unhandled promise rejections fail hard right away instead of the default [silent fail](https://gist.github.com/benjamingr/0237932cee84712951a2). + + @param log - Custom logging function to print the rejected promise. Receives the error stack. Default: `console.error`. + */ + (log?: (stack?: string) => void): void; + + // TODO: Remove this for the next major release, refactor the whole definition to: + // declare function hardRejection(log?: (stack?: string) => void): void; + // export = hardRejection; + default: typeof hardRejection; +}; + +export = hardRejection; diff --git a/novas/novacore-zephyr/groq-code-cli/node_modules/hard-rejection/index.js b/novas/novacore-zephyr/groq-code-cli/node_modules/hard-rejection/index.js new file mode 100644 index 0000000000000000000000000000000000000000..ba0205d38cd80eb2961301c861bbd766031fa495 --- /dev/null +++ b/novas/novacore-zephyr/groq-code-cli/node_modules/hard-rejection/index.js @@ -0,0 +1,25 @@ +'use strict'; +const util = require('util'); + +let installed = false; + +const hardRejection = (log = console.error) => { + if (installed) { + return; + } + + installed = true; + + process.on('unhandledRejection', error => { + if (!(error instanceof Error)) { + error = new Error(`Promise rejected with value: ${util.inspect(error)}`); + } + + log(error.stack); + process.exit(1); + }); +}; + +module.exports = hardRejection; +// TODO: Remove this for the next major release +module.exports.default = hardRejection; diff --git a/novas/novacore-zephyr/groq-code-cli/node_modules/hard-rejection/license b/novas/novacore-zephyr/groq-code-cli/node_modules/hard-rejection/license new file mode 100644 index 0000000000000000000000000000000000000000..e7af2f77107d73046421ef56c4684cbfdd3c1e89 --- /dev/null +++ b/novas/novacore-zephyr/groq-code-cli/node_modules/hard-rejection/license @@ -0,0 +1,9 @@ +MIT License + +Copyright (c) Sindre Sorhus (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. diff --git a/novas/novacore-zephyr/groq-code-cli/node_modules/hard-rejection/package.json b/novas/novacore-zephyr/groq-code-cli/node_modules/hard-rejection/package.json new file mode 100644 index 0000000000000000000000000000000000000000..179b407ed1764031dba1e313470fcb015bc3c3bf --- /dev/null +++ b/novas/novacore-zephyr/groq-code-cli/node_modules/hard-rejection/package.json @@ -0,0 +1,47 @@ +{ + "name": "hard-rejection", + "version": "2.1.0", + "description": "Make unhandled promise rejections fail hard right away instead of the default silent fail", + "license": "MIT", + "repository": "sindresorhus/hard-rejection", + "author": { + "name": "Sindre Sorhus", + "email": "sindresorhus@gmail.com", + "url": "sindresorhus.com" + }, + "engines": { + "node": ">=6" + }, + "scripts": { + "test": "xo && ava && tsd" + }, + "files": [ + "index.js", + "index.d.ts", + "register.js" + ], + "keywords": [ + "promise", + "promises", + "unhandled", + "uncaught", + "rejection", + "hard", + "fail", + "catch", + "throw", + "handler", + "exit", + "debug", + "debugging", + "verbose", + "immediate", + "immediately" + ], + "devDependencies": { + "ava": "^1.4.1", + "execa": "^1.0.0", + "tsd": "^0.7.1", + "xo": "^0.24.0" + } +} diff --git a/novas/novacore-zephyr/groq-code-cli/node_modules/hard-rejection/readme.md b/novas/novacore-zephyr/groq-code-cli/node_modules/hard-rejection/readme.md new file mode 100644 index 0000000000000000000000000000000000000000..b66e475c84dd1c5f33a73d874b13332d2be04195 --- /dev/null +++ b/novas/novacore-zephyr/groq-code-cli/node_modules/hard-rejection/readme.md @@ -0,0 +1,77 @@ +# hard-rejection [![Build Status](https://travis-ci.org/sindresorhus/hard-rejection.svg?branch=master)](https://travis-ci.org/sindresorhus/hard-rejection) + +> Make unhandled promise rejections fail hard right away instead of the default [silent fail](https://gist.github.com/benjamingr/0237932cee84712951a2) + +Promises fail silently if you don't attach a `.catch()` handler. + +This module exits the process with an error message right away when an unhandled rejection is encountered.
+**Note: That might not be desirable as unhandled rejections can be [handled at a future point in time](https://nodejs.org/api/process.html#process_event_unhandledrejection), although not common. You've been warned.** + +Intended for top-level long-running processes like servers, **but not in reusable modules.**
+For command-line apps and tests, see [`loud-rejection`](https://github.com/sindresorhus/loud-rejection). + + +## Install + +``` +$ npm install hard-rejection +``` + + +## Usage + +```js +const hardRejection = require('hard-rejection'); +const promiseFunction = require('some-promise-fn'); + +// Install the handler +hardRejection(); + +promiseFunction(); +``` + +Without this module it's more verbose and you might even miss some that will fail silently: + +```js +const promiseFunction = require('some-promise-fn'); + +function error(error) { + console.error(error.stack); + process.exit(1); +} + +promiseFunction().catch(error); +``` + +### Register script + +Alternatively to the above, you may simply require `hard-rejection/register` and the handler will be automagically installed for you. + +This is handy for ES2015 imports: + +```js +import 'hard-rejection/register'; +``` + + +## API + +### hardRejection([log]) + +#### log + +Type: `Function`
+Default: `console.error` + +Custom logging function to print the rejected promise. Receives the error stack. + + +## Related + +- [loud-rejection](https://github.com/sindresorhus/loud-rejection) - Make unhandled promise rejections fail loudly instead of the default silent fail +- [More…](https://github.com/sindresorhus/promise-fun) + + +## License + +MIT © [Sindre Sorhus](https://sindresorhus.com) diff --git a/novas/novacore-zephyr/groq-code-cli/node_modules/hard-rejection/register.js b/novas/novacore-zephyr/groq-code-cli/node_modules/hard-rejection/register.js new file mode 100644 index 0000000000000000000000000000000000000000..29f49d7192aa1ccced61857acff66d68ac0a5575 --- /dev/null +++ b/novas/novacore-zephyr/groq-code-cli/node_modules/hard-rejection/register.js @@ -0,0 +1,2 @@ +'use strict'; +require('.')(); diff --git a/novas/novacore-zephyr/groq-code-cli/node_modules/has-bigints/.eslintrc b/novas/novacore-zephyr/groq-code-cli/node_modules/has-bigints/.eslintrc new file mode 100644 index 0000000000000000000000000000000000000000..3b5d9e90ec405f85dd7f9066656efccc51193697 --- /dev/null +++ b/novas/novacore-zephyr/groq-code-cli/node_modules/has-bigints/.eslintrc @@ -0,0 +1,5 @@ +{ + "root": true, + + "extends": "@ljharb", +} diff --git a/novas/novacore-zephyr/groq-code-cli/node_modules/has-bigints/.nycrc b/novas/novacore-zephyr/groq-code-cli/node_modules/has-bigints/.nycrc new file mode 100644 index 0000000000000000000000000000000000000000..bdd626ce91477abbdd489b79988baebadbd3c897 --- /dev/null +++ b/novas/novacore-zephyr/groq-code-cli/node_modules/has-bigints/.nycrc @@ -0,0 +1,9 @@ +{ + "all": true, + "check-coverage": false, + "reporter": ["text-summary", "text", "html", "json"], + "exclude": [ + "coverage", + "test" + ] +} diff --git a/novas/novacore-zephyr/groq-code-cli/node_modules/has-bigints/CHANGELOG.md b/novas/novacore-zephyr/groq-code-cli/node_modules/has-bigints/CHANGELOG.md new file mode 100644 index 0000000000000000000000000000000000000000..3d2051ee7372a77cca28278e23e951757381a035 --- /dev/null +++ b/novas/novacore-zephyr/groq-code-cli/node_modules/has-bigints/CHANGELOG.md @@ -0,0 +1,74 @@ +# Changelog + +All notable changes to this project will be documented in this file. + +The format is based on [Keep a Changelog](https://keepachangelog.com/en/1.0.0/) +and this project adheres to [Semantic Versioning](https://semver.org/spec/v2.0.0.html). + +## [v1.1.0](https://github.com/inspect-js/has-bigints/compare/v1.0.2...v1.1.0) - 2024-12-18 + +### Commits + +- [meta] use `npmignore` to autogenerate an npmignore file [`a411cea`](https://github.com/inspect-js/has-bigints/commit/a411ceaf68bc297944c1627ec914455843195398) +- [actions] split out node 10-20, and 20+ [`4515878`](https://github.com/inspect-js/has-bigints/commit/45158780f412a6362d7a6116c552f75e23b4be38) +- [New] add types [`c888241`](https://github.com/inspect-js/has-bigints/commit/c888241a4fda933a270369419d11ce7f19ea50ce) +- [actions] update rebase action to use reusable workflow [`6f44338`](https://github.com/inspect-js/has-bigints/commit/6f44338ebca614230de3c87dc82719cf067335a2) +- [Dev Deps] update `@ljharb/eslint-config`, `auto-changelog`, `npmignore`, `tape` [`ffa1e4d`](https://github.com/inspect-js/has-bigints/commit/ffa1e4daad689075fec091c86d6b53d4432b99ff) +- [Dev Deps] update `aud`, `tape` [`0f5d096`](https://github.com/inspect-js/has-bigints/commit/0f5d09697b37c182587313e4a9218353f8d3d22b) +- [meta] add missing `engines.node` [`3f73c71`](https://github.com/inspect-js/has-bigints/commit/3f73c71d7f4f13dfcec5520a51a97fb91645d9db) +- [Tests] replace `aud` with `npm audit` [`b007efd`](https://github.com/inspect-js/has-bigints/commit/b007efdd11608912a5dcae216748840a746d3517) +- [Dev Deps] add missing peer dep [`459c612`](https://github.com/inspect-js/has-bigints/commit/459c6126ecff63021664dbb48d19c6b1ddc2db14) + +## [v1.0.2](https://github.com/inspect-js/has-bigints/compare/v1.0.1...v1.0.2) - 2022-04-19 + +### Commits + +- [actions] reuse common workflows [`a655b7f`](https://github.com/inspect-js/has-bigints/commit/a655b7f7733ba2de078b3a59a704c2795440d08c) +- [actions] use `node/install` instead of `node/run`; use `codecov` action [`730a2e5`](https://github.com/inspect-js/has-bigints/commit/730a2e53d3f5f82ac43a11cb9753b11445d06d58) +- [readme] add github actions/codecov badges; update URLs [`9a83788`](https://github.com/inspect-js/has-bigints/commit/9a8378861917b41ebb360a9d8ab3d39aa33acf7b) +- [Dev Deps] update `eslint`, `@ljharb/eslint-config`, `safe-publish-latest`, `tape` [`b1edc52`](https://github.com/inspect-js/has-bigints/commit/b1edc522ef6c23556e55b9c81b65fe884d1e2cc4) +- [actions] update codecov uploader [`cbb1bd0`](https://github.com/inspect-js/has-bigints/commit/cbb1bd0eff486070a19283238da6afd33ca73b4b) +- [Dev Deps] update `eslint`, `@ljharb/eslint-config`, `aud`, `auto-changelog`, `tape` [`8717e6d`](https://github.com/inspect-js/has-bigints/commit/8717e6d6ae6b5010aea1fac5e48dfdfaf35d8c72) +- [Dev Deps] update `eslint`, `@ljharb/eslint-config`, `auto-changelog`, `safe-publish-latest`, `tape` [`5f70eab`](https://github.com/inspect-js/has-bigints/commit/5f70eab763118d40415f13e47446ea5c011fbe18) +- [Dev Deps] update `eslint`, `@ljharb/eslint-config`, `aud`, `tape` [`a1446bc`](https://github.com/inspect-js/has-bigints/commit/a1446bc3e806ce3911c73d6fbdd981f461c41019) +- [meta] use `prepublishOnly` script for npm 7+ [`f2dd197`](https://github.com/inspect-js/has-bigints/commit/f2dd19716a06ca7a971644761e864f0435db278e) +- [actions] use checkout v3 [`1ba72f1`](https://github.com/inspect-js/has-bigints/commit/1ba72f19ada076791ff193aca9d8537388d67ddb) +- [Refactor] use a global variable to get the original BigInt instead of a global property [`a7ccfac`](https://github.com/inspect-js/has-bigints/commit/a7ccfac0414e56dadd263fd07c0b5141388df502) +- [actions] skip `npm ls` on older nodes [`62d31e7`](https://github.com/inspect-js/has-bigints/commit/62d31e79658b16391458d0728e0dacbee8694ebb) + +## [v1.0.1](https://github.com/inspect-js/has-bigints/compare/v1.0.0...v1.0.1) - 2020-12-13 + +### Commits + +- [Tests] use shared travis-ci configs [`46a0d6b`](https://github.com/inspect-js/has-bigints/commit/46a0d6be7ed83bd7f5ead11e4eab7fc91570a448) +- [Tests] migrate tests to Github Actions [`91a38fa`](https://github.com/inspect-js/has-bigints/commit/91a38fa4b85a420b8cf4926b3799e6ceb60d8690) +- [meta] do not publish github action workflow files [`69aacba`](https://github.com/inspect-js/has-bigints/commit/69aacba320c1221e7fee1c71bde600bce063f24b) +- [Dev Deps] update `eslint`, `@ljharb/eslint-config`, `aud`, `auto-changelog`, `tape` [`64e2c08`](https://github.com/inspect-js/has-bigints/commit/64e2c0895b21ac91a137452fd2455932f62a2fc1) +- [Tests] run `nyc` on all tests; use `tape` runner [`8009375`](https://github.com/inspect-js/has-bigints/commit/8009375e5ec9faca6bbc09441002af5c5e59ff20) +- [actions] add automatic rebasing / merge commit blocking [`e599917`](https://github.com/inspect-js/has-bigints/commit/e599917fd1f751c9a6c0daac70acb243f8c3a01d) +- [actions] add "Allow Edits" workflow [`bd0126e`](https://github.com/inspect-js/has-bigints/commit/bd0126eba2d67e9b9d588bced34413f507698154) +- [readme] remove travis badge [`8e02a73`](https://github.com/inspect-js/has-bigints/commit/8e02a73db34827d24d2945f2db822973a0b49925) +- [Dev Deps] update `eslint`, `@ljharb/eslint-config`, `auto-changelog`, `safe-publish-latest` [`95859f2`](https://github.com/inspect-js/has-bigints/commit/95859f28f23f5733481c52a501063802cf64f75b) +- [Dev Deps] update `auto-changelog`, `in-publish`, `tape` [`0588f41`](https://github.com/inspect-js/has-bigints/commit/0588f415c6cc01d6b34668680044e03b2998e03f) +- [Dev Deps] update `eslint`, `@ljharb/eslint-config`, `tape` [`5b024a6`](https://github.com/inspect-js/has-bigints/commit/5b024a664a8b7d2d2f750a4c11ce20c395b6f12a) +- [meta] add `version` scripts [`4788d61`](https://github.com/inspect-js/has-bigints/commit/4788d61101c009e4e2c1b4d944c263de06192c6a) +- [actions] switch Automatic Rebase workflow to `pull_request_target` event [`be0e0de`](https://github.com/inspect-js/has-bigints/commit/be0e0de08298dfe483c5d7a2675e5133abeabc53) +- [Dev Deps] update `auto-changelog`; add `aud` [`13a8d1b`](https://github.com/inspect-js/has-bigints/commit/13a8d1bf1f661871d890bfa174de9514f016cdd9) +- [actions] fix action name [`f873d9a`](https://github.com/inspect-js/has-bigints/commit/f873d9a2f10718662528a755b12c61202f4e4afa) +- [meta] add `funding` field [`1b51f49`](https://github.com/inspect-js/has-bigints/commit/1b51f4921df1faf85d2679a0e4ba97ef015a73b7) +- [Dev Deps] update `auto-changelog` [`2322461`](https://github.com/inspect-js/has-bigints/commit/2322461789810434c447439f155eb3ca23eb29fb) +- [Tests] only audit prod deps [`aabdade`](https://github.com/inspect-js/has-bigints/commit/aabdadeaa1e126b91a2fbd82263cc49651ff5e7b) + +## v1.0.0 - 2019-08-10 + +### Commits + +- [Tests] add `.travis.yml` [`9730412`](https://github.com/inspect-js/has-bigints/commit/973041241dc172474bb9457aad41790fe54fec88) +- Initial commit [`65f7c38`](https://github.com/inspect-js/has-bigints/commit/65f7c3889d9a98e214e26d650723cbfc49338463) +- [Tests] add tests [`e374a78`](https://github.com/inspect-js/has-bigints/commit/e374a78033d457badcd47e06752fdec7f62e6c39) +- readme [`5d39092`](https://github.com/inspect-js/has-bigints/commit/5d3909249da442867180fb747eef27543627d250) +- npm init [`1be2e3d`](https://github.com/inspect-js/has-bigints/commit/1be2e3d69db6718901e6845cfc38a07cc46dfd96) +- implementation [`b7bc812`](https://github.com/inspect-js/has-bigints/commit/b7bc8121db1fb1a827625c4cb0608935e3dcbe31) +- [Tests] add linting [`04533be`](https://github.com/inspect-js/has-bigints/commit/04533bef57f60e322238f71f32ee3ae0c988bac4) +- [meta] create FUNDING.yml [`cf824a7`](https://github.com/inspect-js/has-bigints/commit/cf824a7d02e867957d8db17ee0a4c70c8ee5ff23) +- Only apps should have lockfiles [`64e8242`](https://github.com/inspect-js/has-bigints/commit/64e82429f1dca99f624dc971ff13516dee28d353) diff --git a/novas/novacore-zephyr/groq-code-cli/node_modules/has-bigints/LICENSE b/novas/novacore-zephyr/groq-code-cli/node_modules/has-bigints/LICENSE new file mode 100644 index 0000000000000000000000000000000000000000..3900dd7e2ffe6d5205fde1cd3f890aa51ea36234 --- /dev/null +++ b/novas/novacore-zephyr/groq-code-cli/node_modules/has-bigints/LICENSE @@ -0,0 +1,21 @@ +MIT License + +Copyright (c) 2019 Jordan Harband + +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. diff --git a/novas/novacore-zephyr/groq-code-cli/node_modules/has-bigints/README.md b/novas/novacore-zephyr/groq-code-cli/node_modules/has-bigints/README.md new file mode 100644 index 0000000000000000000000000000000000000000..69414e42573b251236d8be8624ae61d7d03e797d --- /dev/null +++ b/novas/novacore-zephyr/groq-code-cli/node_modules/has-bigints/README.md @@ -0,0 +1,39 @@ +# has-bigints [![Version Badge][npm-version-svg]][package-url] + +[![github actions][actions-image]][actions-url] +[![coverage][codecov-image]][codecov-url] +[![dependency status][deps-svg]][deps-url] +[![dev dependency status][dev-deps-svg]][dev-deps-url] +[![License][license-image]][license-url] +[![Downloads][downloads-image]][downloads-url] + +[![npm badge][npm-badge-png]][package-url] + +Determine if the JS environment has BigInt support. + +## Example + +```js +var hasBigInts = require('has-bigints'); + +hasBigInts() === true; // if the environment has native BigInt support. Not polyfillable, not forgeable. +``` + +## Tests +Simply clone the repo, `npm install`, and run `npm test` + +[package-url]: https://npmjs.org/package/has-bigints +[npm-version-svg]: https://versionbadg.es/inspect-js/has-bigints.svg +[deps-svg]: https://david-dm.org/inspect-js/has-bigints.svg +[deps-url]: https://david-dm.org/inspect-js/has-bigints +[dev-deps-svg]: https://david-dm.org/inspect-js/has-bigints/dev-status.svg +[dev-deps-url]: https://david-dm.org/inspect-js/has-bigints#info=devDependencies +[npm-badge-png]: https://nodei.co/npm/has-bigints.png?downloads=true&stars=true +[license-image]: https://img.shields.io/npm/l/has-bigints.svg +[license-url]: LICENSE +[downloads-image]: https://img.shields.io/npm/dm/has-bigints.svg +[downloads-url]: https://npm-stat.com/charts.html?package=has-bigints +[codecov-image]: https://codecov.io/gh/inspect-js/has-bigints/branch/main/graphs/badge.svg +[codecov-url]: https://app.codecov.io/gh/inspect-js/has-bigints/ +[actions-image]: https://img.shields.io/endpoint?url=https://github-actions-badge-u3jn4tfpocch.runkit.sh/inspect-js/has-bigints +[actions-url]: https://github.com/inspect-js/has-bigints/actions diff --git a/novas/novacore-zephyr/groq-code-cli/node_modules/has-bigints/index.d.ts b/novas/novacore-zephyr/groq-code-cli/node_modules/has-bigints/index.d.ts new file mode 100644 index 0000000000000000000000000000000000000000..3bac6850be84b35d0ca19227ce69bf5ebc1a896a --- /dev/null +++ b/novas/novacore-zephyr/groq-code-cli/node_modules/has-bigints/index.d.ts @@ -0,0 +1,3 @@ +declare function hasNativeBigInts(): boolean; + +export = hasNativeBigInts; \ No newline at end of file diff --git a/novas/novacore-zephyr/groq-code-cli/node_modules/has-bigints/index.js b/novas/novacore-zephyr/groq-code-cli/node_modules/has-bigints/index.js new file mode 100644 index 0000000000000000000000000000000000000000..43f910d1577d3c88257eea048ee10c23cea5bf3a --- /dev/null +++ b/novas/novacore-zephyr/groq-code-cli/node_modules/has-bigints/index.js @@ -0,0 +1,11 @@ +'use strict'; + +var $BigInt = typeof BigInt !== 'undefined' && BigInt; + +/** @type {import('.')} */ +module.exports = function hasNativeBigInts() { + return typeof $BigInt === 'function' + && typeof BigInt === 'function' + && typeof $BigInt(42) === 'bigint' // eslint-disable-line no-magic-numbers + && typeof BigInt(42) === 'bigint'; // eslint-disable-line no-magic-numbers +}; diff --git a/novas/novacore-zephyr/groq-code-cli/node_modules/has-bigints/package.json b/novas/novacore-zephyr/groq-code-cli/node_modules/has-bigints/package.json new file mode 100644 index 0000000000000000000000000000000000000000..1d963945917c2b392f61cab7597cc1d3a86c8b92 --- /dev/null +++ b/novas/novacore-zephyr/groq-code-cli/node_modules/has-bigints/package.json @@ -0,0 +1,69 @@ +{ + "name": "has-bigints", + "version": "1.1.0", + "description": "Determine if the JS environment has BigInt support.", + "main": "index.js", + "scripts": { + "prepack": "npmignore --auto --commentLines=autogenerated", + "version": "auto-changelog && git add CHANGELOG.md", + "postversion": "auto-changelog && git add CHANGELOG.md && git commit --no-edit --amend && git tag -f \"v$(node -e \"console.log(require('./package.json').version)\")\"", + "prepublishOnly": "safe-publish-latest", + "prepublish": "not-in-publish || npm run prepublishOnly", + "lint": "eslint --ext=js,mjs .", + "postlint": "tsc && attw -P", + "pretest": "npm run lint", + "tests-only": "nyc tape 'test/**/*.js'", + "test": "npm run tests-only", + "posttest": "npx npm@'>= 10.2' audit --production" + }, + "repository": { + "type": "git", + "url": "git+https://github.com/ljharb/has-bigints.git" + }, + "keywords": [ + "BigInt", + "bigints", + "typeof", + "ES2020" + ], + "author": "Jordan Harband ", + "funding": { + "url": "https://github.com/sponsors/ljharb" + }, + "license": "MIT", + "bugs": { + "url": "https://github.com/ljharb/has-bigints/issues" + }, + "homepage": "https://github.com/ljharb/has-bigints#readme", + "devDependencies": { + "@arethetypeswrong/cli": "^0.17.1", + "@ljharb/eslint-config": "^21.1.1", + "@ljharb/tsconfig": "^0.2.2", + "@types/tape": "^5.8.0", + "auto-changelog": "^2.5.0", + "encoding": "^0.1.13", + "eslint": "=8.8.0", + "in-publish": "^2.0.1", + "npmignore": "^0.3.1", + "nyc": "^10.3.2", + "safe-publish-latest": "^2.0.0", + "tape": "^5.9.0", + "typescript": "next" + }, + "auto-changelog": { + "output": "CHANGELOG.md", + "template": "keepachangelog", + "unreleased": false, + "commitLimit": false, + "backfillLimit": false, + "hideCredit": true + }, + "publishConfig": { + "ignore": [ + ".github/workflows" + ] + }, + "engines": { + "node": ">= 0.4" + } +} diff --git a/novas/novacore-zephyr/groq-code-cli/node_modules/has-bigints/tsconfig.json b/novas/novacore-zephyr/groq-code-cli/node_modules/has-bigints/tsconfig.json new file mode 100644 index 0000000000000000000000000000000000000000..6716d81ce28cf3af2a23d2d9237c7a3d53114217 --- /dev/null +++ b/novas/novacore-zephyr/groq-code-cli/node_modules/has-bigints/tsconfig.json @@ -0,0 +1,9 @@ +{ + "extends": "@ljharb/tsconfig", + "compilerOptions": { + "target": "ES2021", + }, + "exclude": [ + "coverage" + ] +} diff --git a/novas/novacore-zephyr/groq-code-cli/node_modules/has-flag/index.d.ts b/novas/novacore-zephyr/groq-code-cli/node_modules/has-flag/index.d.ts new file mode 100644 index 0000000000000000000000000000000000000000..a0a48c89112785902cb109a27475840fd0952de8 --- /dev/null +++ b/novas/novacore-zephyr/groq-code-cli/node_modules/has-flag/index.d.ts @@ -0,0 +1,39 @@ +/** +Check if [`argv`](https://nodejs.org/docs/latest/api/process.html#process_process_argv) has a specific flag. + +@param flag - CLI flag to look for. The `--` prefix is optional. +@param argv - CLI arguments. Default: `process.argv`. +@returns Whether the flag exists. + +@example +``` +// $ ts-node foo.ts -f --unicorn --foo=bar -- --rainbow + +// foo.ts +import hasFlag = require('has-flag'); + +hasFlag('unicorn'); +//=> true + +hasFlag('--unicorn'); +//=> true + +hasFlag('f'); +//=> true + +hasFlag('-f'); +//=> true + +hasFlag('foo=bar'); +//=> true + +hasFlag('foo'); +//=> false + +hasFlag('rainbow'); +//=> false +``` +*/ +declare function hasFlag(flag: string, argv?: string[]): boolean; + +export = hasFlag; diff --git a/novas/novacore-zephyr/groq-code-cli/node_modules/has-flag/index.js b/novas/novacore-zephyr/groq-code-cli/node_modules/has-flag/index.js new file mode 100644 index 0000000000000000000000000000000000000000..b6f80b1f8ffd7658a11af977a9df3c296008d4cd --- /dev/null +++ b/novas/novacore-zephyr/groq-code-cli/node_modules/has-flag/index.js @@ -0,0 +1,8 @@ +'use strict'; + +module.exports = (flag, argv = process.argv) => { + const prefix = flag.startsWith('-') ? '' : (flag.length === 1 ? '-' : '--'); + const position = argv.indexOf(prefix + flag); + const terminatorPosition = argv.indexOf('--'); + return position !== -1 && (terminatorPosition === -1 || position < terminatorPosition); +}; diff --git a/novas/novacore-zephyr/groq-code-cli/node_modules/has-flag/license b/novas/novacore-zephyr/groq-code-cli/node_modules/has-flag/license new file mode 100644 index 0000000000000000000000000000000000000000..e7af2f77107d73046421ef56c4684cbfdd3c1e89 --- /dev/null +++ b/novas/novacore-zephyr/groq-code-cli/node_modules/has-flag/license @@ -0,0 +1,9 @@ +MIT License + +Copyright (c) Sindre Sorhus (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. diff --git a/novas/novacore-zephyr/groq-code-cli/node_modules/has-flag/package.json b/novas/novacore-zephyr/groq-code-cli/node_modules/has-flag/package.json new file mode 100644 index 0000000000000000000000000000000000000000..a9cba4b856d046212a2a2f13fb911ae1deb4c3b5 --- /dev/null +++ b/novas/novacore-zephyr/groq-code-cli/node_modules/has-flag/package.json @@ -0,0 +1,46 @@ +{ + "name": "has-flag", + "version": "4.0.0", + "description": "Check if argv has a specific flag", + "license": "MIT", + "repository": "sindresorhus/has-flag", + "author": { + "name": "Sindre Sorhus", + "email": "sindresorhus@gmail.com", + "url": "sindresorhus.com" + }, + "engines": { + "node": ">=8" + }, + "scripts": { + "test": "xo && ava && tsd" + }, + "files": [ + "index.js", + "index.d.ts" + ], + "keywords": [ + "has", + "check", + "detect", + "contains", + "find", + "flag", + "cli", + "command-line", + "argv", + "process", + "arg", + "args", + "argument", + "arguments", + "getopt", + "minimist", + "optimist" + ], + "devDependencies": { + "ava": "^1.4.1", + "tsd": "^0.7.2", + "xo": "^0.24.0" + } +} diff --git a/novas/novacore-zephyr/groq-code-cli/node_modules/has-flag/readme.md b/novas/novacore-zephyr/groq-code-cli/node_modules/has-flag/readme.md new file mode 100644 index 0000000000000000000000000000000000000000..3f72dff29a69612c14eaec559e2a11bcced48b5b --- /dev/null +++ b/novas/novacore-zephyr/groq-code-cli/node_modules/has-flag/readme.md @@ -0,0 +1,89 @@ +# has-flag [![Build Status](https://travis-ci.org/sindresorhus/has-flag.svg?branch=master)](https://travis-ci.org/sindresorhus/has-flag) + +> Check if [`argv`](https://nodejs.org/docs/latest/api/process.html#process_process_argv) has a specific flag + +Correctly stops looking after an `--` argument terminator. + +--- + +
+ + Get professional support for this package with a Tidelift subscription + +
+ + Tidelift helps make open source sustainable for maintainers while giving companies
assurances about security, maintenance, and licensing for their dependencies. +
+
+ +--- + + +## Install + +``` +$ npm install has-flag +``` + + +## Usage + +```js +// foo.js +const hasFlag = require('has-flag'); + +hasFlag('unicorn'); +//=> true + +hasFlag('--unicorn'); +//=> true + +hasFlag('f'); +//=> true + +hasFlag('-f'); +//=> true + +hasFlag('foo=bar'); +//=> true + +hasFlag('foo'); +//=> false + +hasFlag('rainbow'); +//=> false +``` + +``` +$ node foo.js -f --unicorn --foo=bar -- --rainbow +``` + + +## API + +### hasFlag(flag, [argv]) + +Returns a boolean for whether the flag exists. + +#### flag + +Type: `string` + +CLI flag to look for. The `--` prefix is optional. + +#### argv + +Type: `string[]`
+Default: `process.argv` + +CLI arguments. + + +## Security + +To report a security vulnerability, please use the [Tidelift security contact](https://tidelift.com/security). Tidelift will coordinate the fix and disclosure. + + +## License + +MIT © [Sindre Sorhus](https://sindresorhus.com) diff --git a/novas/novacore-zephyr/groq-code-cli/node_modules/has-property-descriptors/.eslintrc b/novas/novacore-zephyr/groq-code-cli/node_modules/has-property-descriptors/.eslintrc new file mode 100644 index 0000000000000000000000000000000000000000..2fcc002b0a7f59de19f8b130d5b09bfeb99124a6 --- /dev/null +++ b/novas/novacore-zephyr/groq-code-cli/node_modules/has-property-descriptors/.eslintrc @@ -0,0 +1,13 @@ +{ + "root": true, + + "extends": "@ljharb", + + "rules": { + "func-name-matching": 0, + "id-length": 0, + "new-cap": [2, { + "capIsNewExceptions": ["GetIntrinsic"], + }], + }, +} diff --git a/novas/novacore-zephyr/groq-code-cli/node_modules/has-property-descriptors/.nycrc b/novas/novacore-zephyr/groq-code-cli/node_modules/has-property-descriptors/.nycrc new file mode 100644 index 0000000000000000000000000000000000000000..bdd626ce91477abbdd489b79988baebadbd3c897 --- /dev/null +++ b/novas/novacore-zephyr/groq-code-cli/node_modules/has-property-descriptors/.nycrc @@ -0,0 +1,9 @@ +{ + "all": true, + "check-coverage": false, + "reporter": ["text-summary", "text", "html", "json"], + "exclude": [ + "coverage", + "test" + ] +} diff --git a/novas/novacore-zephyr/groq-code-cli/node_modules/has-property-descriptors/CHANGELOG.md b/novas/novacore-zephyr/groq-code-cli/node_modules/has-property-descriptors/CHANGELOG.md new file mode 100644 index 0000000000000000000000000000000000000000..19c8a959c6153dd7dd01c4c249b7ccd7059f31e9 --- /dev/null +++ b/novas/novacore-zephyr/groq-code-cli/node_modules/has-property-descriptors/CHANGELOG.md @@ -0,0 +1,35 @@ +# Changelog + +All notable changes to this project will be documented in this file. + +The format is based on [Keep a Changelog](https://keepachangelog.com/en/1.0.0/) +and this project adheres to [Semantic Versioning](https://semver.org/spec/v2.0.0.html). + +## [v1.0.2](https://github.com/inspect-js/has-property-descriptors/compare/v1.0.1...v1.0.2) - 2024-02-12 + +### Commits + +- [Refactor] use `es-define-property` [`f93a8c8`](https://github.com/inspect-js/has-property-descriptors/commit/f93a8c85eba70cbceab500f2619fb5cce73a1805) +- [Dev Deps] update `aud`, `npmignore`, `tape` [`42b0c9d`](https://github.com/inspect-js/has-property-descriptors/commit/42b0c9d1c23e747755f0f2924923c418ea34a9ee) +- [Deps] update `get-intrinsic` [`35e9b46`](https://github.com/inspect-js/has-property-descriptors/commit/35e9b46a7f14331bf0de98b644dd803676746037) + +## [v1.0.1](https://github.com/inspect-js/has-property-descriptors/compare/v1.0.0...v1.0.1) - 2023-10-20 + +### Commits + +- [meta] use `npmignore` to autogenerate an npmignore file [`5bbf4da`](https://github.com/inspect-js/has-property-descriptors/commit/5bbf4dae1b58950d87bb3af508bee7513e640868) +- [actions] update rebase action to use reusable workflow [`3a5585b`](https://github.com/inspect-js/has-property-descriptors/commit/3a5585bf74988f71a8f59e67a07d594e62c51fd8) +- [Dev Deps] update `@ljharb/eslint-config`, `aud`, `tape` [`e5c1212`](https://github.com/inspect-js/has-property-descriptors/commit/e5c1212048a8fda549794c47863724ca60b89cae) +- [Dev Deps] update `aud`, `tape` [`e942917`](https://github.com/inspect-js/has-property-descriptors/commit/e942917b6c2f7c090d5623048989cf20d0834ebf) +- [Deps] update `get-intrinsic` [`f4a44ec`](https://github.com/inspect-js/has-property-descriptors/commit/f4a44ec6d94146fa6c550d3c15c31a2062c83ef4) +- [Deps] update `get-intrinsic` [`eeb275b`](https://github.com/inspect-js/has-property-descriptors/commit/eeb275b473e5d72ca843b61ca25cfcb06a5d4300) + +## v1.0.0 - 2022-04-14 + +### Commits + +- Initial implementation, tests [`303559f`](https://github.com/inspect-js/has-property-descriptors/commit/303559f2a72dfe7111573a1aec475ed4a184c35a) +- Initial commit [`3a7ca2d`](https://github.com/inspect-js/has-property-descriptors/commit/3a7ca2dc49f1fff0279a28bb16265e7615e14749) +- read me [`dd73dce`](https://github.com/inspect-js/has-property-descriptors/commit/dd73dce09d89d0f7a4a6e3b1e562a506f979a767) +- npm init [`c1e6557`](https://github.com/inspect-js/has-property-descriptors/commit/c1e655779de632d68cb944c50da6b71bcb7b8c85) +- Only apps should have lockfiles [`e72f7c6`](https://github.com/inspect-js/has-property-descriptors/commit/e72f7c68de534b2d273ee665f8b18d4ecc7f70b0) diff --git a/novas/novacore-zephyr/groq-code-cli/node_modules/has-property-descriptors/LICENSE b/novas/novacore-zephyr/groq-code-cli/node_modules/has-property-descriptors/LICENSE new file mode 100644 index 0000000000000000000000000000000000000000..2e7b9a3eacf263cb418f4c16b087290ef78c39b2 --- /dev/null +++ b/novas/novacore-zephyr/groq-code-cli/node_modules/has-property-descriptors/LICENSE @@ -0,0 +1,21 @@ +MIT License + +Copyright (c) 2022 Inspect JS + +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. diff --git a/novas/novacore-zephyr/groq-code-cli/node_modules/has-property-descriptors/README.md b/novas/novacore-zephyr/groq-code-cli/node_modules/has-property-descriptors/README.md new file mode 100644 index 0000000000000000000000000000000000000000..d81fbd99e91a3ec97fc930ffb985819dacae39a6 --- /dev/null +++ b/novas/novacore-zephyr/groq-code-cli/node_modules/has-property-descriptors/README.md @@ -0,0 +1,43 @@ +# has-property-descriptors [![Version Badge][npm-version-svg]][package-url] + +[![github actions][actions-image]][actions-url] +[![coverage][codecov-image]][codecov-url] +[![dependency status][deps-svg]][deps-url] +[![dev dependency status][dev-deps-svg]][dev-deps-url] +[![License][license-image]][license-url] +[![Downloads][downloads-image]][downloads-url] + +[![npm badge][npm-badge-png]][package-url] + +Does the environment have full property descriptor support? Handles IE 8's broken defineProperty/gOPD. + +## Example + +```js +var hasPropertyDescriptors = require('has-property-descriptors'); +var assert = require('assert'); + +assert.equal(hasPropertyDescriptors(), true); // will be `false` in IE 6-8, and ES5 engines + +// Arrays can not have their length `[[Defined]]` in some engines +assert.equal(hasPropertyDescriptors.hasArrayLengthDefineBug(), false); // will be `true` in Firefox 4-22, and node v0.6 +``` + +## Tests +Simply clone the repo, `npm install`, and run `npm test` + +[package-url]: https://npmjs.org/package/has-property-descriptors +[npm-version-svg]: https://versionbadg.es/inspect-js/has-property-descriptors.svg +[deps-svg]: https://david-dm.org/inspect-js/has-property-descriptors.svg +[deps-url]: https://david-dm.org/inspect-js/has-property-descriptors +[dev-deps-svg]: https://david-dm.org/inspect-js/has-property-descriptors/dev-status.svg +[dev-deps-url]: https://david-dm.org/inspect-js/has-property-descriptors#info=devDependencies +[npm-badge-png]: https://nodei.co/npm/has-property-descriptors.png?downloads=true&stars=true +[license-image]: https://img.shields.io/npm/l/has-property-descriptors.svg +[license-url]: LICENSE +[downloads-image]: https://img.shields.io/npm/dm/has-property-descriptors.svg +[downloads-url]: https://npm-stat.com/charts.html?package=has-property-descriptors +[codecov-image]: https://codecov.io/gh/inspect-js/has-property-descriptors/branch/main/graphs/badge.svg +[codecov-url]: https://app.codecov.io/gh/inspect-js/has-property-descriptors/ +[actions-image]: https://img.shields.io/endpoint?url=https://github-actions-badge-u3jn4tfpocch.runkit.sh/inspect-js/has-property-descriptors +[actions-url]: https://github.com/inspect-js/has-property-descriptors/actions diff --git a/novas/novacore-zephyr/groq-code-cli/node_modules/has-property-descriptors/index.js b/novas/novacore-zephyr/groq-code-cli/node_modules/has-property-descriptors/index.js new file mode 100644 index 0000000000000000000000000000000000000000..04804379cb13a68f351905f39b1d85d128d0720a --- /dev/null +++ b/novas/novacore-zephyr/groq-code-cli/node_modules/has-property-descriptors/index.js @@ -0,0 +1,22 @@ +'use strict'; + +var $defineProperty = require('es-define-property'); + +var hasPropertyDescriptors = function hasPropertyDescriptors() { + return !!$defineProperty; +}; + +hasPropertyDescriptors.hasArrayLengthDefineBug = function hasArrayLengthDefineBug() { + // node v0.6 has a bug where array lengths can be Set but not Defined + if (!$defineProperty) { + return null; + } + try { + return $defineProperty([], 'length', { value: 1 }).length !== 1; + } catch (e) { + // In Firefox 4-22, defining length on an array throws an exception. + return true; + } +}; + +module.exports = hasPropertyDescriptors; diff --git a/novas/novacore-zephyr/groq-code-cli/node_modules/has-property-descriptors/package.json b/novas/novacore-zephyr/groq-code-cli/node_modules/has-property-descriptors/package.json new file mode 100644 index 0000000000000000000000000000000000000000..7e70218b478caca5c0ecd4b58b2e62f23eb28003 --- /dev/null +++ b/novas/novacore-zephyr/groq-code-cli/node_modules/has-property-descriptors/package.json @@ -0,0 +1,77 @@ +{ + "name": "has-property-descriptors", + "version": "1.0.2", + "description": "Does the environment have full property descriptor support? Handles IE 8's broken defineProperty/gOPD.", + "main": "index.js", + "exports": { + ".": "./index.js", + "./package.json": "./package.json" + }, + "sideEffects": false, + "scripts": { + "prepack": "npmignore --auto --commentLines=autogenerated", + "prepublishOnly": "safe-publish-latest", + "prepublish": "not-in-publish || npm run prepublishOnly", + "pretest": "npm run lint", + "prelint": "evalmd README.md", + "lint": "eslint --ext=js,mjs .", + "tests-only": "nyc tape 'test/**/*.js'", + "test": "npm run tests-only", + "posttest": "aud --production", + "version": "auto-changelog && git add CHANGELOG.md", + "postversion": "auto-changelog && git add CHANGELOG.md && git commit --no-edit --amend && git tag -f \"v$(node -e \"console.log(require('./package.json').version)\")\"" + }, + "repository": { + "type": "git", + "url": "git+https://github.com/inspect-js/has-property-descriptors.git" + }, + "keywords": [ + "property", + "descriptors", + "has", + "environment", + "env", + "defineProperty", + "getOwnPropertyDescriptor" + ], + "author": "Jordan Harband ", + "funding": { + "url": "https://github.com/sponsors/ljharb" + }, + "license": "MIT", + "bugs": { + "url": "https://github.com/inspect-js/has-property-descriptors/issues" + }, + "homepage": "https://github.com/inspect-js/has-property-descriptors#readme", + "devDependencies": { + "@ljharb/eslint-config": "^21.1.0", + "aud": "^2.0.4", + "auto-changelog": "^2.4.0", + "eslint": "=8.8.0", + "evalmd": "^0.0.19", + "in-publish": "^2.0.1", + "npmignore": "^0.3.1", + "nyc": "^10.3.2", + "safe-publish-latest": "^2.0.0", + "tape": "^5.7.4" + }, + "dependencies": { + "es-define-property": "^1.0.0" + }, + "testling": { + "files": "test/index.js" + }, + "auto-changelog": { + "output": "CHANGELOG.md", + "template": "keepachangelog", + "unreleased": false, + "commitLimit": false, + "backfillLimit": false, + "hideCredit": true + }, + "publishConfig": { + "ignore": [ + ".github/workflows" + ] + } +} diff --git a/novas/novacore-zephyr/groq-code-cli/node_modules/has-proto/.eslintrc b/novas/novacore-zephyr/groq-code-cli/node_modules/has-proto/.eslintrc new file mode 100644 index 0000000000000000000000000000000000000000..3b5d9e90ec405f85dd7f9066656efccc51193697 --- /dev/null +++ b/novas/novacore-zephyr/groq-code-cli/node_modules/has-proto/.eslintrc @@ -0,0 +1,5 @@ +{ + "root": true, + + "extends": "@ljharb", +} diff --git a/novas/novacore-zephyr/groq-code-cli/node_modules/has-proto/CHANGELOG.md b/novas/novacore-zephyr/groq-code-cli/node_modules/has-proto/CHANGELOG.md new file mode 100644 index 0000000000000000000000000000000000000000..3c42363f0d59e65e2965a67b477fe6cdaf94bb62 --- /dev/null +++ b/novas/novacore-zephyr/groq-code-cli/node_modules/has-proto/CHANGELOG.md @@ -0,0 +1,61 @@ +# Changelog + +All notable changes to this project will be documented in this file. + +The format is based on [Keep a Changelog](https://keepachangelog.com/en/1.0.0/) +and this project adheres to [Semantic Versioning](https://semver.org/spec/v2.0.0.html). + +## [v1.2.0](https://github.com/inspect-js/has-proto/compare/v1.1.0...v1.2.0) - 2024-12-06 + +### Commits + +- [Refactor] use `dunder-proto` instead of `call-bind` [`6e5e76c`](https://github.com/inspect-js/has-proto/commit/6e5e76ce3bf4c01ebb99b38dcd61bee1ba35073f) +- [actions] split out node 10-20, and 20+ [`3b8e9e6`](https://github.com/inspect-js/has-proto/commit/3b8e9e651431ef5e9725dae68881b8107e812ee0) +- [Dev Deps] update `@ljharb/tsconfig`, `gopd` [`57bcd00`](https://github.com/inspect-js/has-proto/commit/57bcd000625c7d1e7f41fd10b4a8e1ea380029dd) +- [actions] skip `npm ls` in node < 10 [`ce3a4d7`](https://github.com/inspect-js/has-proto/commit/ce3a4d76d4f15d94540cb5f2ae50967cc6299ee3) + +## [v1.1.0](https://github.com/inspect-js/has-proto/compare/v1.0.3...v1.1.0) - 2024-12-01 + +### Commits + +- [New] add `accessor` and `mutator` endpoints [`144f6a9`](https://github.com/inspect-js/has-proto/commit/144f6a9c2a3925f25058d5d5ea7eab3be57767d9) +- [types] use shared config [`8b597cf`](https://github.com/inspect-js/has-proto/commit/8b597cff2b09f0351bc357cac0e0c7b0c8bb7e70) +- [Refactor] cache result at module level [`88418bd`](https://github.com/inspect-js/has-proto/commit/88418bde7e0c37c7d9aa6cc79150e774004c01d8) +- [Dev Deps] update `@ljharb/eslint-config`, `auto-changelog`, `tape` [`d246200`](https://github.com/inspect-js/has-proto/commit/d246200bae6ceceebb495df7f8eb0f27a017b63f) +- [Deps] update `gopd`, `reflect.getprototypeof` [`6f72364`](https://github.com/inspect-js/has-proto/commit/6f723645da9b5bef0aaae4a1aa66c07a1fed179f) +- [Tests] add `@arethetypeswrong/cli` [`8194e1a`](https://github.com/inspect-js/has-proto/commit/8194e1a607233f63c5bd0b91112c0423b3296ac9) +- [Tests] replace `aud` with `npm audit` [`fd7ad11`](https://github.com/inspect-js/has-proto/commit/fd7ad111dc35488b3200a763204dba0f6087defc) +- [Dev Deps] update `@types/tape` [`2695808`](https://github.com/inspect-js/has-proto/commit/26958086aec0b1cbfdddd4f10e54d2de1facf85c) +- [Dev Deps] add missing peer dep [`fa4b2f7`](https://github.com/inspect-js/has-proto/commit/fa4b2f77f7c0071e1c06b5590c9bada8e6b2edce) + +## [v1.0.3](https://github.com/inspect-js/has-proto/compare/v1.0.2...v1.0.3) - 2024-02-19 + +### Commits + +- [types] add missing declaration file [`26ecade`](https://github.com/inspect-js/has-proto/commit/26ecade05d253bb5dc376945ee3186d1fbe334f8) + +## [v1.0.2](https://github.com/inspect-js/has-proto/compare/v1.0.1...v1.0.2) - 2024-02-19 + +### Commits + +- add types [`6435262`](https://github.com/inspect-js/has-proto/commit/64352626cf511c0276d5f4bb6be770a0bf0f8524) +- [Dev Deps] update `@ljharb/eslint-config`, `aud`, `npmignore`, `tape` [`f16a5e4`](https://github.com/inspect-js/has-proto/commit/f16a5e4121651e551271419f9d60fdd3561fd82c) +- [Refactor] tiny cleanup [`d1f1a4b`](https://github.com/inspect-js/has-proto/commit/d1f1a4bdc135f115a10f148ce302676224534702) +- [meta] add `sideEffects` flag [`e7ab1a6`](https://github.com/inspect-js/has-proto/commit/e7ab1a6f153b3e80dee68d1748b71e46767a0531) + +## [v1.0.1](https://github.com/inspect-js/has-proto/compare/v1.0.0...v1.0.1) - 2022-12-21 + +### Commits + +- [meta] correct URLs and description [`ef34483`](https://github.com/inspect-js/has-proto/commit/ef34483ca0d35680f271b6b96e35526151b25dfc) +- [patch] add an additional criteria [`e81959e`](https://github.com/inspect-js/has-proto/commit/e81959ed7c7a77fbf459f00cb4ef824f1099497f) +- [Dev Deps] update `aud` [`2bec2c4`](https://github.com/inspect-js/has-proto/commit/2bec2c47b072b122ff5443fba0263f6dc649531f) + +## v1.0.0 - 2022-12-12 + +### Commits + +- Initial implementation, tests, readme [`6886fea`](https://github.com/inspect-js/has-proto/commit/6886fea578f67daf69a7920b2eb7637ea6ebb0bc) +- Initial commit [`99129c8`](https://github.com/inspect-js/has-proto/commit/99129c8f42471ac89cb681ba9cb9d52a583eb94f) +- npm init [`2844ad8`](https://github.com/inspect-js/has-proto/commit/2844ad8e75b84d66a46765b3bab9d2e8ea692e10) +- Only apps should have lockfiles [`c65bc5e`](https://github.com/inspect-js/has-proto/commit/c65bc5e40b9004463f7336d47c67245fb139a36a) diff --git a/novas/novacore-zephyr/groq-code-cli/node_modules/has-proto/LICENSE b/novas/novacore-zephyr/groq-code-cli/node_modules/has-proto/LICENSE new file mode 100644 index 0000000000000000000000000000000000000000..2e7b9a3eacf263cb418f4c16b087290ef78c39b2 --- /dev/null +++ b/novas/novacore-zephyr/groq-code-cli/node_modules/has-proto/LICENSE @@ -0,0 +1,21 @@ +MIT License + +Copyright (c) 2022 Inspect JS + +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. diff --git a/novas/novacore-zephyr/groq-code-cli/node_modules/has-proto/README.md b/novas/novacore-zephyr/groq-code-cli/node_modules/has-proto/README.md new file mode 100644 index 0000000000000000000000000000000000000000..cd33cc16649cdb26f448f5c090ca7baf6fe81324 --- /dev/null +++ b/novas/novacore-zephyr/groq-code-cli/node_modules/has-proto/README.md @@ -0,0 +1,57 @@ +# has-proto [![Version Badge][npm-version-svg]][package-url] + +[![github actions][actions-image]][actions-url] +[![coverage][codecov-image]][codecov-url] +[![License][license-image]][license-url] +[![Downloads][downloads-image]][downloads-url] + +[![npm badge][npm-badge-png]][package-url] + +Does this environment have the ability to set the [[Prototype]] of an object on creation with `__proto__`? + +## Example + +```js +var hasProto = require('has-proto'); +var assert = require('assert'); + +assert.equal(typeof hasProto(), 'boolean'); + +var hasProtoAccessor = require('has-proto/accessor')(); +if (hasProtoAccessor) { + assert.equal([].__proto__, Array.prototype); +} else { + assert(!('__proto__' in Object.prototype)); +} + +var hasProtoMutator = require('has-proto/mutator'); +var obj = {}; +assert('toString' in obj); + +obj.__proto__ = null; +if (hasProtoMutator) { + assert(!('toString' in obj)); +} else { + assert('toString' in obj); + assert.equal(obj.__proto__, null); +} +``` + +## Tests +Simply clone the repo, `npm install`, and run `npm test` + +[package-url]: https://npmjs.org/package/has-proto +[npm-version-svg]: https://versionbadg.es/inspect-js/has-proto.svg +[deps-svg]: https://david-dm.org/inspect-js/has-proto.svg +[deps-url]: https://david-dm.org/inspect-js/has-proto +[dev-deps-svg]: https://david-dm.org/inspect-js/has-proto/dev-status.svg +[dev-deps-url]: https://david-dm.org/inspect-js/has-proto#info=devDependencies +[npm-badge-png]: https://nodei.co/npm/has-proto.png?downloads=true&stars=true +[license-image]: https://img.shields.io/npm/l/has-proto.svg +[license-url]: LICENSE +[downloads-image]: https://img.shields.io/npm/dm/has-proto.svg +[downloads-url]: https://npm-stat.com/charts.html?package=has-proto +[codecov-image]: https://codecov.io/gh/inspect-js/has-proto/branch/main/graphs/badge.svg +[codecov-url]: https://app.codecov.io/gh/inspect-js/has-proto/ +[actions-image]: https://img.shields.io/endpoint?url=https://github-actions-badge-u3jn4tfpocch.runkit.sh/inspect-js/has-proto +[actions-url]: https://github.com/inspect-js/has-proto/actions diff --git a/novas/novacore-zephyr/groq-code-cli/node_modules/has-proto/accessor.d.ts b/novas/novacore-zephyr/groq-code-cli/node_modules/has-proto/accessor.d.ts new file mode 100644 index 0000000000000000000000000000000000000000..eb864800d7e58f28a1e067af498a0bac0d59a010 --- /dev/null +++ b/novas/novacore-zephyr/groq-code-cli/node_modules/has-proto/accessor.d.ts @@ -0,0 +1,3 @@ +declare function accessor(): boolean; + +export = accessor; \ No newline at end of file diff --git a/novas/novacore-zephyr/groq-code-cli/node_modules/has-proto/accessor.js b/novas/novacore-zephyr/groq-code-cli/node_modules/has-proto/accessor.js new file mode 100644 index 0000000000000000000000000000000000000000..e168cba3c3ba12764899885d6d34946cff900155 --- /dev/null +++ b/novas/novacore-zephyr/groq-code-cli/node_modules/has-proto/accessor.js @@ -0,0 +1,20 @@ +'use strict'; + +var result = require('./')(); + +var test = { + __proto__: null, + foo: {} +}; + +/** @type {import('./accessor')} */ +module.exports = function hasAccessor() { + /* eslint no-proto: 0 */ + return result + && !('toString' in test) + // eslint-disable-next-line no-extra-parens + && /** @type {{ __proto__?: typeof Object.prototype }} */ ({}).__proto__ === Object.prototype + // eslint-disable-next-line no-extra-parens + && /** @type {ReadonlyArray & { __proto__?: typeof Array.prototype }} */ ( + []).__proto__ === Array.prototype; +}; diff --git a/novas/novacore-zephyr/groq-code-cli/node_modules/has-proto/index.d.ts b/novas/novacore-zephyr/groq-code-cli/node_modules/has-proto/index.d.ts new file mode 100644 index 0000000000000000000000000000000000000000..1f54f56f4319b6a9d8d41c5645d63598e5d653e6 --- /dev/null +++ b/novas/novacore-zephyr/groq-code-cli/node_modules/has-proto/index.d.ts @@ -0,0 +1,3 @@ +declare function hasProto(): boolean; + +export = hasProto; diff --git a/novas/novacore-zephyr/groq-code-cli/node_modules/has-proto/index.js b/novas/novacore-zephyr/groq-code-cli/node_modules/has-proto/index.js new file mode 100644 index 0000000000000000000000000000000000000000..293fda179fadd9cdf808029d906a8b75bfd7756b --- /dev/null +++ b/novas/novacore-zephyr/groq-code-cli/node_modules/has-proto/index.js @@ -0,0 +1,15 @@ +'use strict'; + +var test = { + __proto__: null, + foo: {} +}; + +// @ts-expect-error: TS errors on an inherited property for some reason +var result = { __proto__: test }.foo === test.foo + && !(test instanceof Object); + +/** @type {import('.')} */ +module.exports = function hasProto() { + return result; +}; diff --git a/novas/novacore-zephyr/groq-code-cli/node_modules/has-proto/mutator.d.ts b/novas/novacore-zephyr/groq-code-cli/node_modules/has-proto/mutator.d.ts new file mode 100644 index 0000000000000000000000000000000000000000..8a556565666540dff66a8a7d226a295404640331 --- /dev/null +++ b/novas/novacore-zephyr/groq-code-cli/node_modules/has-proto/mutator.d.ts @@ -0,0 +1,3 @@ +declare function mutator(): boolean; + +export = mutator; \ No newline at end of file diff --git a/novas/novacore-zephyr/groq-code-cli/node_modules/has-proto/mutator.js b/novas/novacore-zephyr/groq-code-cli/node_modules/has-proto/mutator.js new file mode 100644 index 0000000000000000000000000000000000000000..d4aa3c24d5c04c454758a7da0e55f9c9967ccc54 --- /dev/null +++ b/novas/novacore-zephyr/groq-code-cli/node_modules/has-proto/mutator.js @@ -0,0 +1,33 @@ +'use strict'; + +var result = require('./')(); + +var test = { + __proto__: null, + foo: {} +}; + +var setter = require('dunder-proto/set'); + +/** @type {import('./mutator')} */ +module.exports = function hasMutator() { + if (!result) { + return false; + } + + var obj = { __proto__: test }; + // @ts-expect-error: TS errors on an inherited property for some reason + if (obj.foo !== test.foo) { + return false; + } + + if (!setter) { + return false; + } + + setter(obj, null); + if ('foo' in obj || 'toString' in obj) { + return false; + } + return true; +}; diff --git a/novas/novacore-zephyr/groq-code-cli/node_modules/has-proto/package.json b/novas/novacore-zephyr/groq-code-cli/node_modules/has-proto/package.json new file mode 100644 index 0000000000000000000000000000000000000000..598e76d9ca88fbdf5f51425b80613d8de923a4c4 --- /dev/null +++ b/novas/novacore-zephyr/groq-code-cli/node_modules/has-proto/package.json @@ -0,0 +1,91 @@ +{ + "name": "has-proto", + "version": "1.2.0", + "description": "Does this environment have the ability to get the [[Prototype]] of an object on creation with `__proto__`?", + "main": "index.js", + "exports": { + ".": "./index.js", + "./accessor": "./accessor.js", + "./mutator": "./mutator.js", + "./package.json": "./package.json" + }, + "sideEffects": false, + "scripts": { + "prepack": "npmignore --auto --commentLines=autogenerated", + "prepublishOnly": "safe-publish-latest", + "prepublish": "not-in-publish || npm run prepublishOnly", + "prelint": "evalmd README.md", + "lint": "eslint --ext=js,mjs .", + "postlint": "tsc -p . && attw -P", + "pretest": "npm run lint", + "tests-only": "tape 'test/**/*.js'", + "test": "npm run tests-only", + "posttest": "npx npm@'>=10.2' audit --production", + "version": "auto-changelog && git add CHANGELOG.md", + "postversion": "auto-changelog && git add CHANGELOG.md && git commit --no-edit --amend && git tag -f \"v$(node -e \"console.log(require('./package.json').version)\")\"" + }, + "repository": { + "type": "git", + "url": "git+https://github.com/inspect-js/has-proto.git" + }, + "keywords": [ + "prototype", + "proto", + "set", + "get", + "__proto__", + "getPrototypeOf", + "setPrototypeOf", + "has" + ], + "author": "Jordan Harband ", + "funding": { + "url": "https://github.com/sponsors/ljharb" + }, + "license": "MIT", + "bugs": { + "url": "https://github.com/inspect-js/has-proto/issues" + }, + "homepage": "https://github.com/inspect-js/has-proto#readme", + "testling": { + "files": "test/index.js" + }, + "devDependencies": { + "@arethetypeswrong/cli": "^0.17.0", + "@ljharb/eslint-config": "^21.1.1", + "@ljharb/tsconfig": "^0.2.2", + "@types/gopd": "^1.0.3", + "@types/tape": "^5.6.5", + "auto-changelog": "^2.5.0", + "encoding": "^0.1.13", + "eslint": "=8.8.0", + "evalmd": "^0.0.19", + "gopd": "^1.2.0", + "in-publish": "^2.0.1", + "npmignore": "^0.3.1", + "reflect.getprototypeof": "^1.0.7", + "safe-publish-latest": "^2.0.0", + "tape": "^5.9.0", + "typescript": "next" + }, + "engines": { + "node": ">= 0.4" + }, + "auto-changelog": { + "output": "CHANGELOG.md", + "template": "keepachangelog", + "unreleased": false, + "commitLimit": false, + "backfillLimit": false, + "hideCredit": true + }, + "publishConfig": { + "ignore": [ + ".github/workflows", + "types" + ] + }, + "dependencies": { + "dunder-proto": "^1.0.0" + } +} diff --git a/novas/novacore-zephyr/groq-code-cli/node_modules/has-proto/tsconfig.json b/novas/novacore-zephyr/groq-code-cli/node_modules/has-proto/tsconfig.json new file mode 100644 index 0000000000000000000000000000000000000000..09fd66bdba1605066a703cf4e7517311bac63dec --- /dev/null +++ b/novas/novacore-zephyr/groq-code-cli/node_modules/has-proto/tsconfig.json @@ -0,0 +1,11 @@ +{ + "extends": "@ljharb/tsconfig", + "exclude": [ + "coverage", + ], + "compilerOptions": { + "typeRoots": [ + "types", + ], + }, +} diff --git a/novas/novacore-zephyr/groq-code-cli/node_modules/has-symbols/.eslintrc b/novas/novacore-zephyr/groq-code-cli/node_modules/has-symbols/.eslintrc new file mode 100644 index 0000000000000000000000000000000000000000..2d9a66a8acdbacede413918d9c0c8eaaacee7457 --- /dev/null +++ b/novas/novacore-zephyr/groq-code-cli/node_modules/has-symbols/.eslintrc @@ -0,0 +1,11 @@ +{ + "root": true, + + "extends": "@ljharb", + + "rules": { + "max-statements-per-line": [2, { "max": 2 }], + "no-magic-numbers": 0, + "multiline-comment-style": 0, + } +} diff --git a/novas/novacore-zephyr/groq-code-cli/node_modules/has-symbols/.nycrc b/novas/novacore-zephyr/groq-code-cli/node_modules/has-symbols/.nycrc new file mode 100644 index 0000000000000000000000000000000000000000..bdd626ce91477abbdd489b79988baebadbd3c897 --- /dev/null +++ b/novas/novacore-zephyr/groq-code-cli/node_modules/has-symbols/.nycrc @@ -0,0 +1,9 @@ +{ + "all": true, + "check-coverage": false, + "reporter": ["text-summary", "text", "html", "json"], + "exclude": [ + "coverage", + "test" + ] +} diff --git a/novas/novacore-zephyr/groq-code-cli/node_modules/has-symbols/CHANGELOG.md b/novas/novacore-zephyr/groq-code-cli/node_modules/has-symbols/CHANGELOG.md new file mode 100644 index 0000000000000000000000000000000000000000..cc3cf8390d16d4568d961f93395b7d330c4ada27 --- /dev/null +++ b/novas/novacore-zephyr/groq-code-cli/node_modules/has-symbols/CHANGELOG.md @@ -0,0 +1,91 @@ +# Changelog + +All notable changes to this project will be documented in this file. + +The format is based on [Keep a Changelog](https://keepachangelog.com/en/1.0.0/) +and this project adheres to [Semantic Versioning](https://semver.org/spec/v2.0.0.html). + +## [v1.1.0](https://github.com/inspect-js/has-symbols/compare/v1.0.3...v1.1.0) - 2024-12-02 + +### Commits + +- [actions] update workflows [`548c0bf`](https://github.com/inspect-js/has-symbols/commit/548c0bf8c9b1235458df7a1c0490b0064647a282) +- [actions] further shard; update action deps [`bec56bb`](https://github.com/inspect-js/has-symbols/commit/bec56bb0fb44b43a786686b944875a3175cf3ff3) +- [meta] use `npmignore` to autogenerate an npmignore file [`ac81032`](https://github.com/inspect-js/has-symbols/commit/ac81032809157e0a079e5264e9ce9b6f1275777e) +- [New] add types [`6469cbf`](https://github.com/inspect-js/has-symbols/commit/6469cbff1866cfe367b2b3d181d9296ec14b2a3d) +- [actions] update rebase action to use reusable workflow [`9c9d4d0`](https://github.com/inspect-js/has-symbols/commit/9c9d4d0d8938e4b267acdf8e421f4e92d1716d72) +- [Dev Deps] update `eslint`, `@ljharb/eslint-config`, `aud`, `tape` [`adb5887`](https://github.com/inspect-js/has-symbols/commit/adb5887ca9444849b08beb5caaa9e1d42320cdfb) +- [Dev Deps] update `@ljharb/eslint-config`, `aud`, `tape` [`13ec198`](https://github.com/inspect-js/has-symbols/commit/13ec198ec80f1993a87710af1606a1970b22c7cb) +- [Dev Deps] update `auto-changelog`, `core-js`, `tape` [`941be52`](https://github.com/inspect-js/has-symbols/commit/941be5248387cab1da72509b22acf3fdb223f057) +- [Tests] replace `aud` with `npm audit` [`74f49e9`](https://github.com/inspect-js/has-symbols/commit/74f49e9a9d17a443020784234a1c53ce765b3559) +- [Dev Deps] update `npmignore` [`9c0ac04`](https://github.com/inspect-js/has-symbols/commit/9c0ac0452a834f4c2a4b54044f2d6a89f17e9a70) +- [Dev Deps] add missing peer dep [`52337a5`](https://github.com/inspect-js/has-symbols/commit/52337a5621cced61f846f2afdab7707a8132cc12) + +## [v1.0.3](https://github.com/inspect-js/has-symbols/compare/v1.0.2...v1.0.3) - 2022-03-01 + +### Commits + +- [actions] use `node/install` instead of `node/run`; use `codecov` action [`518b28f`](https://github.com/inspect-js/has-symbols/commit/518b28f6c5a516cbccae30794e40aa9f738b1693) +- [meta] add `bugs` and `homepage` fields; reorder package.json [`c480b13`](https://github.com/inspect-js/has-symbols/commit/c480b13fd6802b557e1cef9749872cb5fdeef744) +- [actions] reuse common workflows [`01d0ee0`](https://github.com/inspect-js/has-symbols/commit/01d0ee0a8d97c0947f5edb73eb722027a77b2b07) +- [actions] update codecov uploader [`6424ebe`](https://github.com/inspect-js/has-symbols/commit/6424ebe86b2c9c7c3d2e9bd4413a4e4f168cb275) +- [Dev Deps] update `eslint`, `@ljharb/eslint-config`, `aud`, `auto-changelog`, `tape` [`dfa7e7f`](https://github.com/inspect-js/has-symbols/commit/dfa7e7ff38b594645d8c8222aab895157fa7e282) +- [Dev Deps] update `eslint`, `@ljharb/eslint-config`, `safe-publish-latest`, `tape` [`0c8d436`](https://github.com/inspect-js/has-symbols/commit/0c8d43685c45189cea9018191d4fd7eca91c9d02) +- [Dev Deps] update `eslint`, `@ljharb/eslint-config`, `aud`, `tape` [`9026554`](https://github.com/inspect-js/has-symbols/commit/902655442a1bf88e72b42345494ef0c60f5d36ab) +- [readme] add actions and codecov badges [`eaa9682`](https://github.com/inspect-js/has-symbols/commit/eaa9682f990f481d3acf7a1c7600bec36f7b3adc) +- [Dev Deps] update `eslint`, `tape` [`bc7a3ba`](https://github.com/inspect-js/has-symbols/commit/bc7a3ba46f27b7743f8a2579732d59d1b9ac791e) +- [Dev Deps] update `eslint`, `auto-changelog` [`0ace00a`](https://github.com/inspect-js/has-symbols/commit/0ace00af08a88cdd1e6ce0d60357d941c60c2d9f) +- [meta] use `prepublishOnly` script for npm 7+ [`093f72b`](https://github.com/inspect-js/has-symbols/commit/093f72bc2b0ed00c781f444922a5034257bf561d) +- [Tests] test on all 16 minors [`9b80d3d`](https://github.com/inspect-js/has-symbols/commit/9b80d3d9102529f04c20ec5b1fcc6e38426c6b03) + +## [v1.0.2](https://github.com/inspect-js/has-symbols/compare/v1.0.1...v1.0.2) - 2021-02-27 + +### Fixed + +- [Fix] use a universal way to get the original Symbol [`#11`](https://github.com/inspect-js/has-symbols/issues/11) + +### Commits + +- [Tests] migrate tests to Github Actions [`90ae798`](https://github.com/inspect-js/has-symbols/commit/90ae79820bdfe7bc703d67f5f3c5e205f98556d3) +- [meta] do not publish github action workflow files [`29e60a1`](https://github.com/inspect-js/has-symbols/commit/29e60a1b7c25c7f1acf7acff4a9320d0d10c49b4) +- [Tests] run `nyc` on all tests [`8476b91`](https://github.com/inspect-js/has-symbols/commit/8476b915650d360915abe2522505abf4b0e8f0ae) +- [readme] fix repo URLs, remove defunct badges [`126288e`](https://github.com/inspect-js/has-symbols/commit/126288ecc1797c0a40247a6b78bcb2e0bc5d7036) +- [Dev Deps] update `eslint`, `@ljharb/eslint-config`, `aud`, `auto-changelog`, `core-js`, `get-own-property-symbols` [`d84bdfa`](https://github.com/inspect-js/has-symbols/commit/d84bdfa48ac5188abbb4904b42614cd6c030940a) +- [Tests] fix linting errors [`0df3070`](https://github.com/inspect-js/has-symbols/commit/0df3070b981b6c9f2ee530c09189a7f5c6def839) +- [actions] add "Allow Edits" workflow [`1e6bc29`](https://github.com/inspect-js/has-symbols/commit/1e6bc29b188f32b9648657b07eda08504be5aa9c) +- [Dev Deps] update `eslint`, `@ljharb/eslint-config`, `tape` [`36cea2a`](https://github.com/inspect-js/has-symbols/commit/36cea2addd4e6ec435f35a2656b4e9ef82498e9b) +- [Dev Deps] update `eslint`, `@ljharb/eslint-config`, `aud`, `tape` [`1278338`](https://github.com/inspect-js/has-symbols/commit/127833801865fbc2cc8979beb9ca869c7bfe8222) +- [Dev Deps] update `eslint`, `@ljharb/eslint-config`, `aud`, `tape` [`1493254`](https://github.com/inspect-js/has-symbols/commit/1493254eda13db5fb8fc5e4a3e8324b3d196029d) +- [Dev Deps] update `eslint`, `@ljharb/eslint-config`, `core-js` [`b090bf2`](https://github.com/inspect-js/has-symbols/commit/b090bf214d3679a30edc1e2d729d466ab5183e1d) +- [actions] switch Automatic Rebase workflow to `pull_request_target` event [`4addb7a`](https://github.com/inspect-js/has-symbols/commit/4addb7ab4dc73f927ae99928d68817554fc21dc0) +- [Dev Deps] update `auto-changelog`, `tape` [`81d0baf`](https://github.com/inspect-js/has-symbols/commit/81d0baf3816096a89a8558e8043895f7a7d10d8b) +- [Dev Deps] update `auto-changelog`; add `aud` [`1a4e561`](https://github.com/inspect-js/has-symbols/commit/1a4e5612c25d91c3a03d509721d02630bc4fe3da) +- [readme] remove unused testling URLs [`3000941`](https://github.com/inspect-js/has-symbols/commit/3000941f958046e923ed8152edb1ef4a599e6fcc) +- [Tests] only audit prod deps [`692e974`](https://github.com/inspect-js/has-symbols/commit/692e9743c912410e9440207631a643a34b4741a1) +- [Dev Deps] update `@ljharb/eslint-config` [`51c946c`](https://github.com/inspect-js/has-symbols/commit/51c946c7f6baa793ec5390bb5a45cdce16b4ba76) + +## [v1.0.1](https://github.com/inspect-js/has-symbols/compare/v1.0.0...v1.0.1) - 2019-11-16 + +### Commits + +- [Tests] use shared travis-ci configs [`ce396c9`](https://github.com/inspect-js/has-symbols/commit/ce396c9419ff11c43d0da5d05cdbb79f7fb42229) +- [Tests] up to `node` `v12.4`, `v11.15`, `v10.15`, `v9.11`, `v8.15`, `v7.10`, `v6.17`, `v4.9`; use `nvm install-latest-npm` [`0690732`](https://github.com/inspect-js/has-symbols/commit/0690732801f47ab429f39ba1962f522d5c462d6b) +- [meta] add `auto-changelog` [`2163d0b`](https://github.com/inspect-js/has-symbols/commit/2163d0b7f36343076b8f947cd1667dd1750f26fc) +- [Dev Deps] update `eslint`, `@ljharb/eslint-config`, `core-js`, `safe-publish-latest`, `tape` [`8e0951f`](https://github.com/inspect-js/has-symbols/commit/8e0951f1a7a2e52068222b7bb73511761e6e4d9c) +- [actions] add automatic rebasing / merge commit blocking [`b09cdb7`](https://github.com/inspect-js/has-symbols/commit/b09cdb7cd7ee39e7a769878f56e2d6066f5ccd1d) +- [Dev Deps] update `eslint`, `@ljharb/eslint-config`, `safe-publish-latest`, `core-js`, `get-own-property-symbols`, `tape` [`1dd42cd`](https://github.com/inspect-js/has-symbols/commit/1dd42cd86183ed0c50f99b1062345c458babca91) +- [meta] create FUNDING.yml [`aa57a17`](https://github.com/inspect-js/has-symbols/commit/aa57a17b19708906d1927f821ea8e73394d84ca4) +- Only apps should have lockfiles [`a2d8bea`](https://github.com/inspect-js/has-symbols/commit/a2d8bea23a97d15c09eaf60f5b107fcf9a4d57aa) +- [Tests] use `npx aud` instead of `nsp` or `npm audit` with hoops [`9e96cb7`](https://github.com/inspect-js/has-symbols/commit/9e96cb783746cbed0c10ef78e599a8eaa7ebe193) +- [meta] add `funding` field [`a0b32cf`](https://github.com/inspect-js/has-symbols/commit/a0b32cf68e803f963c1639b6d47b0a9d6440bab0) +- [Dev Deps] update `safe-publish-latest` [`cb9f0a5`](https://github.com/inspect-js/has-symbols/commit/cb9f0a521a3a1790f1064d437edd33bb6c3d6af0) + +## v1.0.0 - 2016-09-19 + +### Commits + +- Tests. [`ecb6eb9`](https://github.com/inspect-js/has-symbols/commit/ecb6eb934e4883137f3f93b965ba5e0a98df430d) +- package.json [`88a337c`](https://github.com/inspect-js/has-symbols/commit/88a337cee0864a0da35f5d19e69ff0ef0150e46a) +- Initial commit [`42e1e55`](https://github.com/inspect-js/has-symbols/commit/42e1e5502536a2b8ac529c9443984acd14836b1c) +- Initial implementation. [`33f5cc6`](https://github.com/inspect-js/has-symbols/commit/33f5cc6cdff86e2194b081ee842bfdc63caf43fb) +- read me [`01f1170`](https://github.com/inspect-js/has-symbols/commit/01f1170188ff7cb1558aa297f6ba5b516c6d7b0c) diff --git a/novas/novacore-zephyr/groq-code-cli/node_modules/has-symbols/LICENSE b/novas/novacore-zephyr/groq-code-cli/node_modules/has-symbols/LICENSE new file mode 100644 index 0000000000000000000000000000000000000000..df31cbf3c064d00ba5f15a3bb13c957b598b96a1 --- /dev/null +++ b/novas/novacore-zephyr/groq-code-cli/node_modules/has-symbols/LICENSE @@ -0,0 +1,21 @@ +MIT License + +Copyright (c) 2016 Jordan Harband + +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. diff --git a/novas/novacore-zephyr/groq-code-cli/node_modules/has-symbols/README.md b/novas/novacore-zephyr/groq-code-cli/node_modules/has-symbols/README.md new file mode 100644 index 0000000000000000000000000000000000000000..33905f0fc92c406715fef234ba43605c95390b30 --- /dev/null +++ b/novas/novacore-zephyr/groq-code-cli/node_modules/has-symbols/README.md @@ -0,0 +1,46 @@ +# has-symbols [![Version Badge][2]][1] + +[![github actions][actions-image]][actions-url] +[![coverage][codecov-image]][codecov-url] +[![dependency status][5]][6] +[![dev dependency status][7]][8] +[![License][license-image]][license-url] +[![Downloads][downloads-image]][downloads-url] + +[![npm badge][11]][1] + +Determine if the JS environment has Symbol support. Supports spec, or shams. + +## Example + +```js +var hasSymbols = require('has-symbols'); + +hasSymbols() === true; // if the environment has native Symbol support. Not polyfillable, not forgeable. + +var hasSymbolsKinda = require('has-symbols/shams'); +hasSymbolsKinda() === true; // if the environment has a Symbol sham that mostly follows the spec. +``` + +## Supported Symbol shams + - get-own-property-symbols [npm](https://www.npmjs.com/package/get-own-property-symbols) | [github](https://github.com/WebReflection/get-own-property-symbols) + - core-js [npm](https://www.npmjs.com/package/core-js) | [github](https://github.com/zloirock/core-js) + +## Tests +Simply clone the repo, `npm install`, and run `npm test` + +[1]: https://npmjs.org/package/has-symbols +[2]: https://versionbadg.es/inspect-js/has-symbols.svg +[5]: https://david-dm.org/inspect-js/has-symbols.svg +[6]: https://david-dm.org/inspect-js/has-symbols +[7]: https://david-dm.org/inspect-js/has-symbols/dev-status.svg +[8]: https://david-dm.org/inspect-js/has-symbols#info=devDependencies +[11]: https://nodei.co/npm/has-symbols.png?downloads=true&stars=true +[license-image]: https://img.shields.io/npm/l/has-symbols.svg +[license-url]: LICENSE +[downloads-image]: https://img.shields.io/npm/dm/has-symbols.svg +[downloads-url]: https://npm-stat.com/charts.html?package=has-symbols +[codecov-image]: https://codecov.io/gh/inspect-js/has-symbols/branch/main/graphs/badge.svg +[codecov-url]: https://app.codecov.io/gh/inspect-js/has-symbols/ +[actions-image]: https://img.shields.io/endpoint?url=https://github-actions-badge-u3jn4tfpocch.runkit.sh/inspect-js/has-symbols +[actions-url]: https://github.com/inspect-js/has-symbols/actions diff --git a/novas/novacore-zephyr/groq-code-cli/node_modules/has-symbols/index.d.ts b/novas/novacore-zephyr/groq-code-cli/node_modules/has-symbols/index.d.ts new file mode 100644 index 0000000000000000000000000000000000000000..9b98595004b23ce56854e4be1181217591e34776 --- /dev/null +++ b/novas/novacore-zephyr/groq-code-cli/node_modules/has-symbols/index.d.ts @@ -0,0 +1,3 @@ +declare function hasNativeSymbols(): boolean; + +export = hasNativeSymbols; \ No newline at end of file diff --git a/novas/novacore-zephyr/groq-code-cli/node_modules/has-symbols/index.js b/novas/novacore-zephyr/groq-code-cli/node_modules/has-symbols/index.js new file mode 100644 index 0000000000000000000000000000000000000000..fa65265a9d45a38560d60c71f0a3305802c39365 --- /dev/null +++ b/novas/novacore-zephyr/groq-code-cli/node_modules/has-symbols/index.js @@ -0,0 +1,14 @@ +'use strict'; + +var origSymbol = typeof Symbol !== 'undefined' && Symbol; +var hasSymbolSham = require('./shams'); + +/** @type {import('.')} */ +module.exports = function hasNativeSymbols() { + if (typeof origSymbol !== 'function') { return false; } + if (typeof Symbol !== 'function') { return false; } + if (typeof origSymbol('foo') !== 'symbol') { return false; } + if (typeof Symbol('bar') !== 'symbol') { return false; } + + return hasSymbolSham(); +}; diff --git a/novas/novacore-zephyr/groq-code-cli/node_modules/has-symbols/package.json b/novas/novacore-zephyr/groq-code-cli/node_modules/has-symbols/package.json new file mode 100644 index 0000000000000000000000000000000000000000..d835e20b957be00d24b62cfc3e7243cc9f133ca2 --- /dev/null +++ b/novas/novacore-zephyr/groq-code-cli/node_modules/has-symbols/package.json @@ -0,0 +1,111 @@ +{ + "name": "has-symbols", + "version": "1.1.0", + "description": "Determine if the JS environment has Symbol support. Supports spec, or shams.", + "main": "index.js", + "scripts": { + "prepack": "npmignore --auto --commentLines=autogenerated", + "prepublishOnly": "safe-publish-latest", + "prepublish": "not-in-publish || npm run prepublishOnly", + "pretest": "npm run --silent lint", + "test": "npm run tests-only", + "posttest": "npx npm@'>=10.2' audit --production", + "tests-only": "npm run test:stock && npm run test:shams", + "test:stock": "nyc node test", + "test:staging": "nyc node --harmony --es-staging test", + "test:shams": "npm run --silent test:shams:getownpropertysymbols && npm run --silent test:shams:corejs", + "test:shams:corejs": "nyc node test/shams/core-js.js", + "test:shams:getownpropertysymbols": "nyc node test/shams/get-own-property-symbols.js", + "lint": "eslint --ext=js,mjs .", + "postlint": "tsc -p . && attw -P", + "version": "auto-changelog && git add CHANGELOG.md", + "postversion": "auto-changelog && git add CHANGELOG.md && git commit --no-edit --amend && git tag -f \"v$(node -e \"console.log(require('./package.json').version)\")\"" + }, + "repository": { + "type": "git", + "url": "git://github.com/inspect-js/has-symbols.git" + }, + "keywords": [ + "Symbol", + "symbols", + "typeof", + "sham", + "polyfill", + "native", + "core-js", + "ES6" + ], + "author": { + "name": "Jordan Harband", + "email": "ljharb@gmail.com", + "url": "http://ljharb.codes" + }, + "contributors": [ + { + "name": "Jordan Harband", + "email": "ljharb@gmail.com", + "url": "http://ljharb.codes" + } + ], + "funding": { + "url": "https://github.com/sponsors/ljharb" + }, + "license": "MIT", + "bugs": { + "url": "https://github.com/ljharb/has-symbols/issues" + }, + "homepage": "https://github.com/ljharb/has-symbols#readme", + "devDependencies": { + "@arethetypeswrong/cli": "^0.17.0", + "@ljharb/eslint-config": "^21.1.1", + "@ljharb/tsconfig": "^0.2.0", + "@types/core-js": "^2.5.8", + "@types/tape": "^5.6.5", + "auto-changelog": "^2.5.0", + "core-js": "^2.6.12", + "encoding": "^0.1.13", + "eslint": "=8.8.0", + "get-own-property-symbols": "^0.9.5", + "in-publish": "^2.0.1", + "npmignore": "^0.3.1", + "nyc": "^10.3.2", + "safe-publish-latest": "^2.0.0", + "tape": "^5.9.0", + "typescript": "next" + }, + "testling": { + "files": "test/index.js", + "browsers": [ + "iexplore/6.0..latest", + "firefox/3.0..6.0", + "firefox/15.0..latest", + "firefox/nightly", + "chrome/4.0..10.0", + "chrome/20.0..latest", + "chrome/canary", + "opera/10.0..latest", + "opera/next", + "safari/4.0..latest", + "ipad/6.0..latest", + "iphone/6.0..latest", + "android-browser/4.2" + ] + }, + "engines": { + "node": ">= 0.4" + }, + "auto-changelog": { + "output": "CHANGELOG.md", + "template": "keepachangelog", + "unreleased": false, + "commitLimit": false, + "backfillLimit": false, + "hideCredit": true + }, + "publishConfig": { + "ignore": [ + ".github/workflows", + "types" + ] + } +} diff --git a/novas/novacore-zephyr/groq-code-cli/node_modules/has-symbols/shams.d.ts b/novas/novacore-zephyr/groq-code-cli/node_modules/has-symbols/shams.d.ts new file mode 100644 index 0000000000000000000000000000000000000000..8d0bf2435e7e4f5d6c01058b738243f6361b186b --- /dev/null +++ b/novas/novacore-zephyr/groq-code-cli/node_modules/has-symbols/shams.d.ts @@ -0,0 +1,3 @@ +declare function hasSymbolShams(): boolean; + +export = hasSymbolShams; \ No newline at end of file diff --git a/novas/novacore-zephyr/groq-code-cli/node_modules/has-symbols/shams.js b/novas/novacore-zephyr/groq-code-cli/node_modules/has-symbols/shams.js new file mode 100644 index 0000000000000000000000000000000000000000..f97b474105d705cc4acb88c32aaf60cfb28bf6b3 --- /dev/null +++ b/novas/novacore-zephyr/groq-code-cli/node_modules/has-symbols/shams.js @@ -0,0 +1,45 @@ +'use strict'; + +/** @type {import('./shams')} */ +/* eslint complexity: [2, 18], max-statements: [2, 33] */ +module.exports = function hasSymbols() { + if (typeof Symbol !== 'function' || typeof Object.getOwnPropertySymbols !== 'function') { return false; } + if (typeof Symbol.iterator === 'symbol') { return true; } + + /** @type {{ [k in symbol]?: unknown }} */ + var obj = {}; + var sym = Symbol('test'); + var symObj = Object(sym); + if (typeof sym === 'string') { return false; } + + if (Object.prototype.toString.call(sym) !== '[object Symbol]') { return false; } + if (Object.prototype.toString.call(symObj) !== '[object Symbol]') { return false; } + + // temp disabled per https://github.com/ljharb/object.assign/issues/17 + // if (sym instanceof Symbol) { return false; } + // temp disabled per https://github.com/WebReflection/get-own-property-symbols/issues/4 + // if (!(symObj instanceof Symbol)) { return false; } + + // if (typeof Symbol.prototype.toString !== 'function') { return false; } + // if (String(sym) !== Symbol.prototype.toString.call(sym)) { return false; } + + var symVal = 42; + obj[sym] = symVal; + for (var _ in obj) { return false; } // eslint-disable-line no-restricted-syntax, no-unreachable-loop + if (typeof Object.keys === 'function' && Object.keys(obj).length !== 0) { return false; } + + if (typeof Object.getOwnPropertyNames === 'function' && Object.getOwnPropertyNames(obj).length !== 0) { return false; } + + var syms = Object.getOwnPropertySymbols(obj); + if (syms.length !== 1 || syms[0] !== sym) { return false; } + + if (!Object.prototype.propertyIsEnumerable.call(obj, sym)) { return false; } + + if (typeof Object.getOwnPropertyDescriptor === 'function') { + // eslint-disable-next-line no-extra-parens + var descriptor = /** @type {PropertyDescriptor} */ (Object.getOwnPropertyDescriptor(obj, sym)); + if (descriptor.value !== symVal || descriptor.enumerable !== true) { return false; } + } + + return true; +}; diff --git a/novas/novacore-zephyr/groq-code-cli/node_modules/has-symbols/tsconfig.json b/novas/novacore-zephyr/groq-code-cli/node_modules/has-symbols/tsconfig.json new file mode 100644 index 0000000000000000000000000000000000000000..ba99af43fe36a32096fd9bdd451c200215f9293e --- /dev/null +++ b/novas/novacore-zephyr/groq-code-cli/node_modules/has-symbols/tsconfig.json @@ -0,0 +1,10 @@ +{ + "extends": "@ljharb/tsconfig", + "compilerOptions": { + "target": "ES2021", + "maxNodeModuleJsDepth": 0, + }, + "exclude": [ + "coverage" + ] +} diff --git a/novas/novacore-zephyr/groq-code-cli/node_modules/has-tostringtag/.eslintrc b/novas/novacore-zephyr/groq-code-cli/node_modules/has-tostringtag/.eslintrc new file mode 100644 index 0000000000000000000000000000000000000000..3b5d9e90ec405f85dd7f9066656efccc51193697 --- /dev/null +++ b/novas/novacore-zephyr/groq-code-cli/node_modules/has-tostringtag/.eslintrc @@ -0,0 +1,5 @@ +{ + "root": true, + + "extends": "@ljharb", +} diff --git a/novas/novacore-zephyr/groq-code-cli/node_modules/has-tostringtag/.nycrc b/novas/novacore-zephyr/groq-code-cli/node_modules/has-tostringtag/.nycrc new file mode 100644 index 0000000000000000000000000000000000000000..1826526e091b89c896e7099ccd891db79165e329 --- /dev/null +++ b/novas/novacore-zephyr/groq-code-cli/node_modules/has-tostringtag/.nycrc @@ -0,0 +1,13 @@ +{ + "all": true, + "check-coverage": false, + "reporter": ["text-summary", "text", "html", "json"], + "lines": 86, + "statements": 85.93, + "functions": 82.43, + "branches": 76.06, + "exclude": [ + "coverage", + "test" + ] +} diff --git a/novas/novacore-zephyr/groq-code-cli/node_modules/has-tostringtag/CHANGELOG.md b/novas/novacore-zephyr/groq-code-cli/node_modules/has-tostringtag/CHANGELOG.md new file mode 100644 index 0000000000000000000000000000000000000000..eb186ec601ca337a3e77d372edbdc1d560cd4294 --- /dev/null +++ b/novas/novacore-zephyr/groq-code-cli/node_modules/has-tostringtag/CHANGELOG.md @@ -0,0 +1,42 @@ +# Changelog + +All notable changes to this project will be documented in this file. + +The format is based on [Keep a Changelog](https://keepachangelog.com/en/1.0.0/) +and this project adheres to [Semantic Versioning](https://semver.org/spec/v2.0.0.html). + +## [v1.0.2](https://github.com/inspect-js/has-tostringtag/compare/v1.0.1...v1.0.2) - 2024-02-01 + +### Fixed + +- [Fix] move `has-symbols` back to prod deps [`#3`](https://github.com/inspect-js/has-tostringtag/issues/3) + +## [v1.0.1](https://github.com/inspect-js/has-tostringtag/compare/v1.0.0...v1.0.1) - 2024-02-01 + +### Commits + +- [patch] add types [`9276414`](https://github.com/inspect-js/has-tostringtag/commit/9276414b22fab3eeb234688841722c4be113201f) +- [meta] use `npmignore` to autogenerate an npmignore file [`5c0dcd1`](https://github.com/inspect-js/has-tostringtag/commit/5c0dcd1ff66419562a30d1fd88b966cc36bce5fc) +- [actions] reuse common workflows [`dee9509`](https://github.com/inspect-js/has-tostringtag/commit/dee950904ab5719b62cf8d73d2ac950b09093266) +- [actions] update codecov uploader [`b8cb3a0`](https://github.com/inspect-js/has-tostringtag/commit/b8cb3a0b8ffbb1593012c4c2daa45fb25642825d) +- [Tests] generate coverage [`be5b288`](https://github.com/inspect-js/has-tostringtag/commit/be5b28889e2735cdbcef387f84c2829995f2f05e) +- [Dev Deps] update `eslint`, `@ljharb/eslint-config`, `safe-publish-latest`, `tape` [`69a0827`](https://github.com/inspect-js/has-tostringtag/commit/69a0827974e9b877b2c75b70b057555da8f25a65) +- [Dev Deps] update `eslint`, `@ljharb/eslint-config`, `aud`, `auto-changelog`, `tape` [`4c9e210`](https://github.com/inspect-js/has-tostringtag/commit/4c9e210a5682f0557a3235d36b68ce809d7fb825) +- [actions] update rebase action to use reusable workflow [`ca8dcd3`](https://github.com/inspect-js/has-tostringtag/commit/ca8dcd3a6f3f5805d7e3fd461b654aedba0946e7) +- [Dev Deps] update `@ljharb/eslint-config`, `aud`, `npmignore`, `tape` [`07f3eaf`](https://github.com/inspect-js/has-tostringtag/commit/07f3eafa45dd98208c94479737da77f9a69b94c4) +- [Deps] update `has-symbols` [`999e009`](https://github.com/inspect-js/has-tostringtag/commit/999e0095a7d1749a58f55472ec8bf8108cdfdcf3) +- [Tests] remove staging tests since they fail on modern node [`9d9526b`](https://github.com/inspect-js/has-tostringtag/commit/9d9526b1dc1ca7f2292b52efda4c3d857b0e39bd) + +## v1.0.0 - 2021-08-05 + +### Commits + +- Tests [`6b6f573`](https://github.com/inspect-js/has-tostringtag/commit/6b6f5734dc2058badb300ff0783efdad95fe1a65) +- Initial commit [`2f8190e`](https://github.com/inspect-js/has-tostringtag/commit/2f8190e799fac32ba9b95a076c0255e01d7ce475) +- [meta] do not publish github action workflow files [`6e08cc4`](https://github.com/inspect-js/has-tostringtag/commit/6e08cc4e0fea7ec71ef66e70734b2af2c4a8b71b) +- readme [`94bed6c`](https://github.com/inspect-js/has-tostringtag/commit/94bed6c9560cbbfda034f8d6c260bb7b0db33c1a) +- npm init [`be67840`](https://github.com/inspect-js/has-tostringtag/commit/be67840ab92ee7adb98bcc65261975543f815fa5) +- Implementation [`c4914ec`](https://github.com/inspect-js/has-tostringtag/commit/c4914ecc51ddee692c85b471ae0a5d8123030fbf) +- [meta] use `auto-changelog` [`4aaf768`](https://github.com/inspect-js/has-tostringtag/commit/4aaf76895ae01d7b739f2b19f967ef2372506cd7) +- Only apps should have lockfiles [`bc4d99e`](https://github.com/inspect-js/has-tostringtag/commit/bc4d99e4bf494afbaa235c5f098df6e642edf724) +- [meta] add `safe-publish-latest` [`6523c05`](https://github.com/inspect-js/has-tostringtag/commit/6523c05c9b87140f3ae74c9daf91633dd9ff4e1f) diff --git a/novas/novacore-zephyr/groq-code-cli/node_modules/has-tostringtag/LICENSE b/novas/novacore-zephyr/groq-code-cli/node_modules/has-tostringtag/LICENSE new file mode 100644 index 0000000000000000000000000000000000000000..7948bc02a7937478ae009ff3796e76b25bdfbb08 --- /dev/null +++ b/novas/novacore-zephyr/groq-code-cli/node_modules/has-tostringtag/LICENSE @@ -0,0 +1,21 @@ +MIT License + +Copyright (c) 2021 Inspect JS + +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. diff --git a/novas/novacore-zephyr/groq-code-cli/node_modules/has-tostringtag/README.md b/novas/novacore-zephyr/groq-code-cli/node_modules/has-tostringtag/README.md new file mode 100644 index 0000000000000000000000000000000000000000..67a5e929dfce41c47370c4141ed9fae8ba6aea21 --- /dev/null +++ b/novas/novacore-zephyr/groq-code-cli/node_modules/has-tostringtag/README.md @@ -0,0 +1,46 @@ +# has-tostringtag [![Version Badge][2]][1] + +[![github actions][actions-image]][actions-url] +[![coverage][codecov-image]][codecov-url] +[![dependency status][5]][6] +[![dev dependency status][7]][8] +[![License][license-image]][license-url] +[![Downloads][downloads-image]][downloads-url] + +[![npm badge][11]][1] + +Determine if the JS environment has `Symbol.toStringTag` support. Supports spec, or shams. + +## Example + +```js +var hasSymbolToStringTag = require('has-tostringtag'); + +hasSymbolToStringTag() === true; // if the environment has native Symbol.toStringTag support. Not polyfillable, not forgeable. + +var hasSymbolToStringTagKinda = require('has-tostringtag/shams'); +hasSymbolToStringTagKinda() === true; // if the environment has a Symbol.toStringTag sham that mostly follows the spec. +``` + +## Supported Symbol shams + - get-own-property-symbols [npm](https://www.npmjs.com/package/get-own-property-symbols) | [github](https://github.com/WebReflection/get-own-property-symbols) + - core-js [npm](https://www.npmjs.com/package/core-js) | [github](https://github.com/zloirock/core-js) + +## Tests +Simply clone the repo, `npm install`, and run `npm test` + +[1]: https://npmjs.org/package/has-tostringtag +[2]: https://versionbadg.es/inspect-js/has-tostringtag.svg +[5]: https://david-dm.org/inspect-js/has-tostringtag.svg +[6]: https://david-dm.org/inspect-js/has-tostringtag +[7]: https://david-dm.org/inspect-js/has-tostringtag/dev-status.svg +[8]: https://david-dm.org/inspect-js/has-tostringtag#info=devDependencies +[11]: https://nodei.co/npm/has-tostringtag.png?downloads=true&stars=true +[license-image]: https://img.shields.io/npm/l/has-tostringtag.svg +[license-url]: LICENSE +[downloads-image]: https://img.shields.io/npm/dm/has-tostringtag.svg +[downloads-url]: https://npm-stat.com/charts.html?package=has-tostringtag +[codecov-image]: https://codecov.io/gh/inspect-js/has-tostringtag/branch/main/graphs/badge.svg +[codecov-url]: https://app.codecov.io/gh/inspect-js/has-tostringtag/ +[actions-image]: https://img.shields.io/endpoint?url=https://github-actions-badge-u3jn4tfpocch.runkit.sh/inspect-js/has-tostringtag +[actions-url]: https://github.com/inspect-js/has-tostringtag/actions diff --git a/novas/novacore-zephyr/groq-code-cli/node_modules/has-tostringtag/index.d.ts b/novas/novacore-zephyr/groq-code-cli/node_modules/has-tostringtag/index.d.ts new file mode 100644 index 0000000000000000000000000000000000000000..a61bc60a86c3c7149b6fcef29c4826d2ee404235 --- /dev/null +++ b/novas/novacore-zephyr/groq-code-cli/node_modules/has-tostringtag/index.d.ts @@ -0,0 +1,3 @@ +declare function hasToStringTag(): boolean; + +export = hasToStringTag; diff --git a/novas/novacore-zephyr/groq-code-cli/node_modules/has-tostringtag/index.js b/novas/novacore-zephyr/groq-code-cli/node_modules/has-tostringtag/index.js new file mode 100644 index 0000000000000000000000000000000000000000..77bfa00702851e245eaca0b4bb197075e4afd9a9 --- /dev/null +++ b/novas/novacore-zephyr/groq-code-cli/node_modules/has-tostringtag/index.js @@ -0,0 +1,8 @@ +'use strict'; + +var hasSymbols = require('has-symbols'); + +/** @type {import('.')} */ +module.exports = function hasToStringTag() { + return hasSymbols() && typeof Symbol.toStringTag === 'symbol'; +}; diff --git a/novas/novacore-zephyr/groq-code-cli/node_modules/has-tostringtag/package.json b/novas/novacore-zephyr/groq-code-cli/node_modules/has-tostringtag/package.json new file mode 100644 index 0000000000000000000000000000000000000000..e5b0300258950d1cd622fc5367ddf50717278ce0 --- /dev/null +++ b/novas/novacore-zephyr/groq-code-cli/node_modules/has-tostringtag/package.json @@ -0,0 +1,108 @@ +{ + "name": "has-tostringtag", + "version": "1.0.2", + "author": { + "name": "Jordan Harband", + "email": "ljharb@gmail.com", + "url": "http://ljharb.codes" + }, + "funding": { + "url": "https://github.com/sponsors/ljharb" + }, + "contributors": [ + { + "name": "Jordan Harband", + "email": "ljharb@gmail.com", + "url": "http://ljharb.codes" + } + ], + "description": "Determine if the JS environment has `Symbol.toStringTag` support. Supports spec, or shams.", + "license": "MIT", + "main": "index.js", + "types": "./index.d.ts", + "exports": { + ".": [ + { + "types": "./index.d.ts", + "default": "./index.js" + }, + "./index.js" + ], + "./shams": [ + { + "types": "./shams.d.ts", + "default": "./shams.js" + }, + "./shams.js" + ], + "./package.json": "./package.json" + }, + "scripts": { + "prepack": "npmignore --auto --commentLines=autogenerated", + "prepublishOnly": "safe-publish-latest", + "prepublish": "not-in-publish || npm run prepublishOnly", + "pretest": "npm run --silent lint", + "test": "npm run tests-only", + "posttest": "aud --production", + "tests-only": "npm run test:stock && npm run test:shams", + "test:stock": "nyc node test", + "test:staging": "nyc node --harmony --es-staging test", + "test:shams": "npm run --silent test:shams:getownpropertysymbols && npm run --silent test:shams:corejs", + "test:shams:corejs": "nyc node test/shams/core-js.js", + "test:shams:getownpropertysymbols": "nyc node test/shams/get-own-property-symbols.js", + "lint": "eslint --ext=js,mjs .", + "version": "auto-changelog && git add CHANGELOG.md", + "postversion": "auto-changelog && git add CHANGELOG.md && git commit --no-edit --amend && git tag -f \"v$(node -e \"console.log(require('./package.json').version)\")\"" + }, + "repository": { + "type": "git", + "url": "git+https://github.com/inspect-js/has-tostringtag.git" + }, + "bugs": { + "url": "https://github.com/inspect-js/has-tostringtag/issues" + }, + "homepage": "https://github.com/inspect-js/has-tostringtag#readme", + "keywords": [ + "javascript", + "ecmascript", + "symbol", + "symbols", + "tostringtag", + "Symbol.toStringTag" + ], + "devDependencies": { + "@ljharb/eslint-config": "^21.1.0", + "@types/has-symbols": "^1.0.2", + "@types/tape": "^5.6.4", + "aud": "^2.0.4", + "auto-changelog": "^2.4.0", + "core-js": "^2.6.12", + "eslint": "=8.8.0", + "get-own-property-symbols": "^0.9.5", + "in-publish": "^2.0.1", + "npmignore": "^0.3.1", + "nyc": "^10.3.2", + "safe-publish-latest": "^2.0.0", + "tape": "^5.7.4", + "typescript": "next" + }, + "engines": { + "node": ">= 0.4" + }, + "auto-changelog": { + "output": "CHANGELOG.md", + "template": "keepachangelog", + "unreleased": false, + "commitLimit": false, + "backfillLimit": false, + "hideCredit": true + }, + "publishConfig": { + "ignore": [ + ".github/workflows" + ] + }, + "dependencies": { + "has-symbols": "^1.0.3" + } +} diff --git a/novas/novacore-zephyr/groq-code-cli/node_modules/has-tostringtag/shams.d.ts b/novas/novacore-zephyr/groq-code-cli/node_modules/has-tostringtag/shams.d.ts new file mode 100644 index 0000000000000000000000000000000000000000..ea4aeecfd04c4c0b3dc79389754968cf1e201c06 --- /dev/null +++ b/novas/novacore-zephyr/groq-code-cli/node_modules/has-tostringtag/shams.d.ts @@ -0,0 +1,3 @@ +declare function hasToStringTagShams(): boolean; + +export = hasToStringTagShams; diff --git a/novas/novacore-zephyr/groq-code-cli/node_modules/has-tostringtag/shams.js b/novas/novacore-zephyr/groq-code-cli/node_modules/has-tostringtag/shams.js new file mode 100644 index 0000000000000000000000000000000000000000..809580dbd6a347bb63b22eb116a14e32bcd64cda --- /dev/null +++ b/novas/novacore-zephyr/groq-code-cli/node_modules/has-tostringtag/shams.js @@ -0,0 +1,8 @@ +'use strict'; + +var hasSymbols = require('has-symbols/shams'); + +/** @type {import('.')} */ +module.exports = function hasToStringTagShams() { + return hasSymbols() && !!Symbol.toStringTag; +}; diff --git a/novas/novacore-zephyr/groq-code-cli/node_modules/has-tostringtag/tsconfig.json b/novas/novacore-zephyr/groq-code-cli/node_modules/has-tostringtag/tsconfig.json new file mode 100644 index 0000000000000000000000000000000000000000..2002ce5a53532769b9b5bc561dac11518c384d13 --- /dev/null +++ b/novas/novacore-zephyr/groq-code-cli/node_modules/has-tostringtag/tsconfig.json @@ -0,0 +1,49 @@ +{ + "compilerOptions": { + /* Visit https://aka.ms/tsconfig to read more about this file */ + + /* Projects */ + + /* Language and Environment */ + "target": "ESNext", /* Set the JavaScript language version for emitted JavaScript and include compatible library declarations. */ + // "lib": [], /* Specify a set of bundled library declaration files that describe the target runtime environment. */ + // "noLib": true, /* Disable including any library files, including the default lib.d.ts. */ + "useDefineForClassFields": true, /* Emit ECMAScript-standard-compliant class fields. */ + // "moduleDetection": "auto", /* Control what method is used to detect module-format JS files. */ + + /* Modules */ + "module": "commonjs", /* Specify what module code is generated. */ + // "rootDir": "./", /* Specify the root folder within your source files. */ + // "moduleResolution": "node10", /* Specify how TypeScript looks up a file from a given module specifier. */ + // "baseUrl": "./", /* Specify the base directory to resolve non-relative module names. */ + // "paths": {}, /* Specify a set of entries that re-map imports to additional lookup locations. */ + // "rootDirs": [], /* Allow multiple folders to be treated as one when resolving modules. */ + "typeRoots": ["types"], /* Specify multiple folders that act like './node_modules/@types'. */ + "resolveJsonModule": true, /* Enable importing .json files. */ + // "allowArbitraryExtensions": true, /* Enable importing files with any extension, provided a declaration file is present. */ + + /* JavaScript Support */ + "allowJs": true, /* Allow JavaScript files to be a part of your program. Use the 'checkJS' option to get errors from these files. */ + "checkJs": true, /* Enable error reporting in type-checked JavaScript files. */ + "maxNodeModuleJsDepth": 0, /* Specify the maximum folder depth used for checking JavaScript files from 'node_modules'. Only applicable with 'allowJs'. */ + + /* Emit */ + "declaration": true, /* Generate .d.ts files from TypeScript and JavaScript files in your project. */ + "declarationMap": true, /* Create sourcemaps for d.ts files. */ + "noEmit": true, /* Disable emitting files from a compilation. */ + + /* Interop Constraints */ + "allowSyntheticDefaultImports": true, /* Allow 'import x from y' when a module doesn't have a default export. */ + "esModuleInterop": true, /* Emit additional JavaScript to ease support for importing CommonJS modules. This enables 'allowSyntheticDefaultImports' for type compatibility. */ + "forceConsistentCasingInFileNames": true, /* Ensure that casing is correct in imports. */ + + /* Type Checking */ + "strict": true, /* Enable all strict type-checking options. */ + + /* Completeness */ + //"skipLibCheck": true /* Skip type checking all .d.ts files. */ + }, + "exclude": [ + "coverage" + ] +} diff --git a/novas/novacore-zephyr/groq-code-cli/node_modules/hasown/.eslintrc b/novas/novacore-zephyr/groq-code-cli/node_modules/hasown/.eslintrc new file mode 100644 index 0000000000000000000000000000000000000000..3b5d9e90ec405f85dd7f9066656efccc51193697 --- /dev/null +++ b/novas/novacore-zephyr/groq-code-cli/node_modules/hasown/.eslintrc @@ -0,0 +1,5 @@ +{ + "root": true, + + "extends": "@ljharb", +} diff --git a/novas/novacore-zephyr/groq-code-cli/node_modules/hasown/.nycrc b/novas/novacore-zephyr/groq-code-cli/node_modules/hasown/.nycrc new file mode 100644 index 0000000000000000000000000000000000000000..1826526e091b89c896e7099ccd891db79165e329 --- /dev/null +++ b/novas/novacore-zephyr/groq-code-cli/node_modules/hasown/.nycrc @@ -0,0 +1,13 @@ +{ + "all": true, + "check-coverage": false, + "reporter": ["text-summary", "text", "html", "json"], + "lines": 86, + "statements": 85.93, + "functions": 82.43, + "branches": 76.06, + "exclude": [ + "coverage", + "test" + ] +} diff --git a/novas/novacore-zephyr/groq-code-cli/node_modules/hasown/CHANGELOG.md b/novas/novacore-zephyr/groq-code-cli/node_modules/hasown/CHANGELOG.md new file mode 100644 index 0000000000000000000000000000000000000000..2b0a980fbd767e2c3ac910e34158964e7dcdbf2c --- /dev/null +++ b/novas/novacore-zephyr/groq-code-cli/node_modules/hasown/CHANGELOG.md @@ -0,0 +1,40 @@ +# Changelog + +All notable changes to this project will be documented in this file. + +The format is based on [Keep a Changelog](https://keepachangelog.com/en/1.0.0/) +and this project adheres to [Semantic Versioning](https://semver.org/spec/v2.0.0.html). + +## [v2.0.2](https://github.com/inspect-js/hasOwn/compare/v2.0.1...v2.0.2) - 2024-03-10 + +### Commits + +- [types] use shared config [`68e9d4d`](https://github.com/inspect-js/hasOwn/commit/68e9d4dab6facb4f05f02c6baea94a3f2a4e44b2) +- [actions] remove redundant finisher; use reusable workflow [`241a68e`](https://github.com/inspect-js/hasOwn/commit/241a68e13ea1fe52bec5ba7f74144befc31fae7b) +- [Tests] increase coverage [`4125c0d`](https://github.com/inspect-js/hasOwn/commit/4125c0d6121db56ae30e38346dfb0c000b04f0a7) +- [Tests] skip `npm ls` in old node due to TS [`01b9282`](https://github.com/inspect-js/hasOwn/commit/01b92822f9971dea031eafdd14767df41d61c202) +- [types] improve predicate type [`d340f85`](https://github.com/inspect-js/hasOwn/commit/d340f85ce02e286ef61096cbbb6697081d40a12b) +- [Dev Deps] update `tape` [`70089fc`](https://github.com/inspect-js/hasOwn/commit/70089fcf544e64acc024cbe60f5a9b00acad86de) +- [Tests] use `@arethetypeswrong/cli` [`50b272c`](https://github.com/inspect-js/hasOwn/commit/50b272c829f40d053a3dd91c9796e0ac0b2af084) + +## [v2.0.1](https://github.com/inspect-js/hasOwn/compare/v2.0.0...v2.0.1) - 2024-02-10 + +### Commits + +- [types] use a handwritten d.ts file; fix exported type [`012b989`](https://github.com/inspect-js/hasOwn/commit/012b9898ccf91dc441e2ebf594ff70270a5fda58) +- [Dev Deps] update `@types/function-bind`, `@types/mock-property`, `@types/tape`, `aud`, `mock-property`, `npmignore`, `tape`, `typescript` [`977a56f`](https://github.com/inspect-js/hasOwn/commit/977a56f51a1f8b20566f3c471612137894644025) +- [meta] add `sideEffects` flag [`3a60b7b`](https://github.com/inspect-js/hasOwn/commit/3a60b7bf42fccd8c605e5f145a6fcc83b13cb46f) + +## [v2.0.0](https://github.com/inspect-js/hasOwn/compare/v1.0.1...v2.0.0) - 2023-10-19 + +### Commits + +- revamped implementation, tests, readme [`72bf8b3`](https://github.com/inspect-js/hasOwn/commit/72bf8b338e77a638f0a290c63ffaed18339c36b4) +- [meta] revamp package.json [`079775f`](https://github.com/inspect-js/hasOwn/commit/079775fb1ec72c1c6334069593617a0be3847458) +- Only apps should have lockfiles [`6640e23`](https://github.com/inspect-js/hasOwn/commit/6640e233d1bb8b65260880f90787637db157d215) + +## v1.0.1 - 2023-10-10 + +### Commits + +- Initial commit [`8dbfde6`](https://github.com/inspect-js/hasOwn/commit/8dbfde6e8fb0ebb076fab38d138f2984eb340a62) diff --git a/novas/novacore-zephyr/groq-code-cli/node_modules/hasown/LICENSE b/novas/novacore-zephyr/groq-code-cli/node_modules/hasown/LICENSE new file mode 100644 index 0000000000000000000000000000000000000000..0314929078de8a733a0af9c8ba5bc00aca094cc9 --- /dev/null +++ b/novas/novacore-zephyr/groq-code-cli/node_modules/hasown/LICENSE @@ -0,0 +1,21 @@ +MIT License + +Copyright (c) Jordan Harband and contributors + +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. diff --git a/novas/novacore-zephyr/groq-code-cli/node_modules/hasown/README.md b/novas/novacore-zephyr/groq-code-cli/node_modules/hasown/README.md new file mode 100644 index 0000000000000000000000000000000000000000..f759b8a8396e3993fb7901d7551d38ee2a786b31 --- /dev/null +++ b/novas/novacore-zephyr/groq-code-cli/node_modules/hasown/README.md @@ -0,0 +1,40 @@ +# hasown [![Version Badge][npm-version-svg]][package-url] + +[![github actions][actions-image]][actions-url] +[![coverage][codecov-image]][codecov-url] +[![License][license-image]][license-url] +[![Downloads][downloads-image]][downloads-url] + +[![npm badge][npm-badge-png]][package-url] + +A robust, ES3 compatible, "has own property" predicate. + +## Example + +```js +const assert = require('assert'); +const hasOwn = require('hasown'); + +assert.equal(hasOwn({}, 'toString'), false); +assert.equal(hasOwn([], 'length'), true); +assert.equal(hasOwn({ a: 42 }, 'a'), true); +``` + +## Tests +Simply clone the repo, `npm install`, and run `npm test` + +[package-url]: https://npmjs.org/package/hasown +[npm-version-svg]: https://versionbadg.es/inspect-js/hasown.svg +[deps-svg]: https://david-dm.org/inspect-js/hasOwn.svg +[deps-url]: https://david-dm.org/inspect-js/hasOwn +[dev-deps-svg]: https://david-dm.org/inspect-js/hasOwn/dev-status.svg +[dev-deps-url]: https://david-dm.org/inspect-js/hasOwn#info=devDependencies +[npm-badge-png]: https://nodei.co/npm/hasown.png?downloads=true&stars=true +[license-image]: https://img.shields.io/npm/l/hasown.svg +[license-url]: LICENSE +[downloads-image]: https://img.shields.io/npm/dm/hasown.svg +[downloads-url]: https://npm-stat.com/charts.html?package=hasown +[codecov-image]: https://codecov.io/gh/inspect-js/hasOwn/branch/main/graphs/badge.svg +[codecov-url]: https://app.codecov.io/gh/inspect-js/hasOwn/ +[actions-image]: https://img.shields.io/endpoint?url=https://github-actions-badge-u3jn4tfpocch.runkit.sh/inspect-js/hasOwn +[actions-url]: https://github.com/inspect-js/hasOwn/actions diff --git a/novas/novacore-zephyr/groq-code-cli/node_modules/hasown/index.d.ts b/novas/novacore-zephyr/groq-code-cli/node_modules/hasown/index.d.ts new file mode 100644 index 0000000000000000000000000000000000000000..aafdf3b2b8f0ef01aa1b3e44596560eee3f38ff7 --- /dev/null +++ b/novas/novacore-zephyr/groq-code-cli/node_modules/hasown/index.d.ts @@ -0,0 +1,3 @@ +declare function hasOwn(o: O, p: K): o is O & Record; + +export = hasOwn; diff --git a/novas/novacore-zephyr/groq-code-cli/node_modules/hasown/index.js b/novas/novacore-zephyr/groq-code-cli/node_modules/hasown/index.js new file mode 100644 index 0000000000000000000000000000000000000000..34e60591349679d8cbdb1033a60eb5d171d7637e --- /dev/null +++ b/novas/novacore-zephyr/groq-code-cli/node_modules/hasown/index.js @@ -0,0 +1,8 @@ +'use strict'; + +var call = Function.prototype.call; +var $hasOwn = Object.prototype.hasOwnProperty; +var bind = require('function-bind'); + +/** @type {import('.')} */ +module.exports = bind.call(call, $hasOwn); diff --git a/novas/novacore-zephyr/groq-code-cli/node_modules/hasown/package.json b/novas/novacore-zephyr/groq-code-cli/node_modules/hasown/package.json new file mode 100644 index 0000000000000000000000000000000000000000..8502e13dd5c835ead21cfc21ead0dbdce432f741 --- /dev/null +++ b/novas/novacore-zephyr/groq-code-cli/node_modules/hasown/package.json @@ -0,0 +1,92 @@ +{ + "name": "hasown", + "version": "2.0.2", + "description": "A robust, ES3 compatible, \"has own property\" predicate.", + "main": "index.js", + "exports": { + ".": "./index.js", + "./package.json": "./package.json" + }, + "types": "index.d.ts", + "sideEffects": false, + "scripts": { + "prepack": "npmignore --auto --commentLines=autogenerated", + "prepublish": "not-in-publish || npm run prepublishOnly", + "prepublishOnly": "safe-publish-latest", + "prelint": "evalmd README.md", + "lint": "eslint --ext=js,mjs .", + "postlint": "npm run tsc", + "pretest": "npm run lint", + "tsc": "tsc -p .", + "posttsc": "attw -P", + "tests-only": "nyc tape 'test/**/*.js'", + "test": "npm run tests-only", + "posttest": "aud --production", + "version": "auto-changelog && git add CHANGELOG.md", + "postversion": "auto-changelog && git add CHANGELOG.md && git commit --no-edit --amend && git tag -f \"v$(node -e \"console.log(require('./package.json').version)\")\"" + }, + "repository": { + "type": "git", + "url": "git+https://github.com/inspect-js/hasOwn.git" + }, + "keywords": [ + "has", + "hasOwnProperty", + "hasOwn", + "has-own", + "own", + "has", + "property", + "in", + "javascript", + "ecmascript" + ], + "author": "Jordan Harband ", + "license": "MIT", + "bugs": { + "url": "https://github.com/inspect-js/hasOwn/issues" + }, + "homepage": "https://github.com/inspect-js/hasOwn#readme", + "dependencies": { + "function-bind": "^1.1.2" + }, + "devDependencies": { + "@arethetypeswrong/cli": "^0.15.1", + "@ljharb/eslint-config": "^21.1.0", + "@ljharb/tsconfig": "^0.2.0", + "@types/function-bind": "^1.1.10", + "@types/mock-property": "^1.0.2", + "@types/tape": "^5.6.4", + "aud": "^2.0.4", + "auto-changelog": "^2.4.0", + "eslint": "=8.8.0", + "evalmd": "^0.0.19", + "in-publish": "^2.0.1", + "mock-property": "^1.0.3", + "npmignore": "^0.3.1", + "nyc": "^10.3.2", + "safe-publish-latest": "^2.0.0", + "tape": "^5.7.5", + "typescript": "next" + }, + "engines": { + "node": ">= 0.4" + }, + "testling": { + "files": "test/index.js" + }, + "auto-changelog": { + "output": "CHANGELOG.md", + "template": "keepachangelog", + "unreleased": false, + "commitLimit": false, + "backfillLimit": false, + "hideCredit": true + }, + "publishConfig": { + "ignore": [ + ".github/workflows", + "test" + ] + } +} diff --git a/novas/novacore-zephyr/groq-code-cli/node_modules/hasown/tsconfig.json b/novas/novacore-zephyr/groq-code-cli/node_modules/hasown/tsconfig.json new file mode 100644 index 0000000000000000000000000000000000000000..0930c565850326810b8efe09ca98895aeffd8f21 --- /dev/null +++ b/novas/novacore-zephyr/groq-code-cli/node_modules/hasown/tsconfig.json @@ -0,0 +1,6 @@ +{ + "extends": "@ljharb/tsconfig", + "exclude": [ + "coverage", + ], +} diff --git a/novas/novacore-zephyr/groq-code-cli/node_modules/hosted-git-info/LICENSE b/novas/novacore-zephyr/groq-code-cli/node_modules/hosted-git-info/LICENSE new file mode 100644 index 0000000000000000000000000000000000000000..45055763dc838d98e35b6f3bd9a94bf15218a16d --- /dev/null +++ b/novas/novacore-zephyr/groq-code-cli/node_modules/hosted-git-info/LICENSE @@ -0,0 +1,13 @@ +Copyright (c) 2015, Rebecca Turner + +Permission to use, copy, modify, and/or distribute this software for any +purpose with or without fee is hereby granted, provided that the above +copyright notice and this permission notice appear in all copies. + +THE SOFTWARE IS PROVIDED "AS IS" AND THE AUTHOR DISCLAIMS ALL WARRANTIES WITH +REGARD TO THIS SOFTWARE INCLUDING ALL IMPLIED WARRANTIES OF MERCHANTABILITY AND +FITNESS. IN NO EVENT SHALL THE AUTHOR BE LIABLE FOR ANY SPECIAL, DIRECT, +INDIRECT, OR CONSEQUENTIAL DAMAGES OR ANY DAMAGES WHATSOEVER RESULTING FROM +LOSS OF USE, DATA OR PROFITS, WHETHER IN AN ACTION OF CONTRACT, NEGLIGENCE OR +OTHER TORTIOUS ACTION, ARISING OUT OF OR IN CONNECTION WITH THE USE OR +PERFORMANCE OF THIS SOFTWARE. diff --git a/novas/novacore-zephyr/groq-code-cli/node_modules/hosted-git-info/README.md b/novas/novacore-zephyr/groq-code-cli/node_modules/hosted-git-info/README.md new file mode 100644 index 0000000000000000000000000000000000000000..87404060296269cdc7384806244fc606bfa8e9d6 --- /dev/null +++ b/novas/novacore-zephyr/groq-code-cli/node_modules/hosted-git-info/README.md @@ -0,0 +1,133 @@ +# hosted-git-info + +This will let you identify and transform various git hosts URLs between +protocols. It also can tell you what the URL is for the raw path for +particular file for direct access without git. + +## Example + +```javascript +var hostedGitInfo = require("hosted-git-info") +var info = hostedGitInfo.fromUrl("git@github.com:npm/hosted-git-info.git", opts) +/* info looks like: +{ + type: "github", + domain: "github.com", + user: "npm", + project: "hosted-git-info" +} +*/ +``` + +If the URL can't be matched with a git host, `null` will be returned. We +can match git, ssh and https urls. Additionally, we can match ssh connect +strings (`git@github.com:npm/hosted-git-info`) and shortcuts (eg, +`github:npm/hosted-git-info`). GitHub specifically, is detected in the case +of a third, unprefixed, form: `npm/hosted-git-info`. + +If it does match, the returned object has properties of: + +* info.type -- The short name of the service +* info.domain -- The domain for git protocol use +* info.user -- The name of the user/org on the git host +* info.project -- The name of the project on the git host + +## Version Contract + +The major version will be bumped any time… + +* The constructor stops accepting URLs that it previously accepted. +* A method is removed. +* A method can no longer accept the number and type of arguments it previously accepted. +* A method can return a different type than it currently returns. + +Implications: + +* I do not consider the specific format of the urls returned from, say + `.https()` to be a part of the contract. The contract is that it will + return a string that can be used to fetch the repo via HTTPS. But what + that string looks like, specifically, can change. +* Dropping support for a hosted git provider would constitute a breaking + change. + +## Usage + +### var info = hostedGitInfo.fromUrl(gitSpecifier[, options]) + +* *gitSpecifer* is a URL of a git repository or a SCP-style specifier of one. +* *options* is an optional object. It can have the following properties: + * *noCommittish* — If true then committishes won't be included in generated URLs. + * *noGitPlus* — If true then `git+` won't be prefixed on URLs. + +## Methods + +All of the methods take the same options as the `fromUrl` factory. Options +provided to a method override those provided to the constructor. + +* info.file(path, opts) + +Given the path of a file relative to the repository, returns a URL for +directly fetching it from the githost. If no committish was set then +`master` will be used as the default. + +For example `hostedGitInfo.fromUrl("git@github.com:npm/hosted-git-info.git#v1.0.0").file("package.json")` +would return `https://raw.githubusercontent.com/npm/hosted-git-info/v1.0.0/package.json` + +* info.shortcut(opts) + +eg, `github:npm/hosted-git-info` + +* info.browse(path, fragment, opts) + +eg, `https://github.com/npm/hosted-git-info/tree/v1.2.0`, +`https://github.com/npm/hosted-git-info/tree/v1.2.0/package.json`, +`https://github.com/npm/hosted-git-info/tree/v1.2.0/REAMDE.md#supported-hosts` + +* info.bugs(opts) + +eg, `https://github.com/npm/hosted-git-info/issues` + +* info.docs(opts) + +eg, `https://github.com/npm/hosted-git-info/tree/v1.2.0#readme` + +* info.https(opts) + +eg, `git+https://github.com/npm/hosted-git-info.git` + +* info.sshurl(opts) + +eg, `git+ssh://git@github.com/npm/hosted-git-info.git` + +* info.ssh(opts) + +eg, `git@github.com:npm/hosted-git-info.git` + +* info.path(opts) + +eg, `npm/hosted-git-info` + +* info.tarball(opts) + +eg, `https://github.com/npm/hosted-git-info/archive/v1.2.0.tar.gz` + +* info.getDefaultRepresentation() + +Returns the default output type. The default output type is based on the +string you passed in to be parsed + +* info.toString(opts) + +Uses the getDefaultRepresentation to call one of the other methods to get a URL for +this resource. As such `hostedGitInfo.fromUrl(url).toString()` will give +you a normalized version of the URL that still uses the same protocol. + +Shortcuts will still be returned as shortcuts, but the special case github +form of `org/project` will be normalized to `github:org/project`. + +SSH connect strings will be normalized into `git+ssh` URLs. + +## Supported hosts + +Currently this supports GitHub, Bitbucket and GitLab. Pull requests for +additional hosts welcome. diff --git a/novas/novacore-zephyr/groq-code-cli/node_modules/hosted-git-info/package.json b/novas/novacore-zephyr/groq-code-cli/node_modules/hosted-git-info/package.json new file mode 100644 index 0000000000000000000000000000000000000000..ffd5c7d1b6bcf52670f389efef47f4ae64c6e096 --- /dev/null +++ b/novas/novacore-zephyr/groq-code-cli/node_modules/hosted-git-info/package.json @@ -0,0 +1,67 @@ +{ + "name": "hosted-git-info", + "version": "5.2.1", + "description": "Provides metadata and conversions from repository urls for GitHub, Bitbucket and GitLab", + "main": "./lib/index.js", + "repository": { + "type": "git", + "url": "https://github.com/npm/hosted-git-info.git" + }, + "keywords": [ + "git", + "github", + "bitbucket", + "gitlab" + ], + "author": "GitHub Inc.", + "license": "ISC", + "bugs": { + "url": "https://github.com/npm/hosted-git-info/issues" + }, + "homepage": "https://github.com/npm/hosted-git-info", + "scripts": { + "posttest": "npm run lint", + "snap": "tap", + "test": "tap", + "test:coverage": "tap --coverage-report=html", + "lint": "eslint \"**/*.js\"", + "postlint": "template-oss-check", + "lintfix": "npm run lint -- --fix", + "template-oss-apply": "template-oss-apply --force" + }, + "dependencies": { + "lru-cache": "^7.5.1" + }, + "devDependencies": { + "@npmcli/eslint-config": "^3.0.1", + "@npmcli/template-oss": "4.7.1", + "tap": "^16.0.1" + }, + "files": [ + "bin/", + "lib/" + ], + "engines": { + "node": "^12.13.0 || ^14.15.0 || >=16.0.0" + }, + "tap": { + "color": 1, + "coverage": true, + "nyc-arg": [ + "--exclude", + "tap-snapshots/**" + ] + }, + "templateOSS": { + "//@npmcli/template-oss": "This file is partially managed by @npmcli/template-oss. Edits may be overwritten.", + "version": "4.7.1", + "ciVersions": [ + "12.13.0", + "12.x", + "14.15.0", + "14.x", + "16.0.0", + "16.x" + ] + } +} diff --git a/novas/novacore-zephyr/groq-code-cli/node_modules/https-proxy-agent/LICENSE b/novas/novacore-zephyr/groq-code-cli/node_modules/https-proxy-agent/LICENSE new file mode 100644 index 0000000000000000000000000000000000000000..008728cb51847dcff9c68cf1d9c30d76b9323457 --- /dev/null +++ b/novas/novacore-zephyr/groq-code-cli/node_modules/https-proxy-agent/LICENSE @@ -0,0 +1,22 @@ +(The MIT License) + +Copyright (c) 2013 Nathan Rajlich + +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. \ No newline at end of file diff --git a/novas/novacore-zephyr/groq-code-cli/node_modules/https-proxy-agent/README.md b/novas/novacore-zephyr/groq-code-cli/node_modules/https-proxy-agent/README.md new file mode 100644 index 0000000000000000000000000000000000000000..ebc53cfa4a3a7b5ac98d9ab638e72537f98c4cfe --- /dev/null +++ b/novas/novacore-zephyr/groq-code-cli/node_modules/https-proxy-agent/README.md @@ -0,0 +1,70 @@ +https-proxy-agent +================ +### An HTTP(s) proxy `http.Agent` implementation for HTTPS + +This module provides an `http.Agent` implementation that connects to a specified +HTTP or HTTPS proxy server, and can be used with the built-in `https` module. + +Specifically, this `Agent` implementation connects to an intermediary "proxy" +server and issues the [CONNECT HTTP method][CONNECT], which tells the proxy to +open a direct TCP connection to the destination server. + +Since this agent implements the CONNECT HTTP method, it also works with other +protocols that use this method when connecting over proxies (i.e. WebSockets). +See the "Examples" section below for more. + +Examples +-------- + +#### `https` module example + +```ts +import * as https from 'https'; +import { HttpsProxyAgent } from 'https-proxy-agent'; + +const agent = new HttpsProxyAgent('http://168.63.76.32:3128'); + +https.get('https://example.com', { agent }, (res) => { + console.log('"response" event!', res.headers); + res.pipe(process.stdout); +}); +``` + +#### `ws` WebSocket connection example + +```ts +import WebSocket from 'ws'; +import { HttpsProxyAgent } from 'https-proxy-agent'; + +const agent = new HttpsProxyAgent('http://168.63.76.32:3128'); +const socket = new WebSocket('ws://echo.websocket.org', { agent }); + +socket.on('open', function () { + console.log('"open" event!'); + socket.send('hello world'); +}); + +socket.on('message', function (data, flags) { + console.log('"message" event! %j %j', data, flags); + socket.close(); +}); +``` + +API +--- + +### new HttpsProxyAgent(proxy: string | URL, options?: HttpsProxyAgentOptions) + +The `HttpsProxyAgent` class implements an `http.Agent` subclass that connects +to the specified "HTTP(s) proxy server" in order to proxy HTTPS and/or WebSocket +requests. This is achieved by using the [HTTP `CONNECT` method][CONNECT]. + +The `proxy` argument is the URL for the proxy server. + +The `options` argument accepts the usual `http.Agent` constructor options, and +some additional properties: + + * `headers` - Object containing additional headers to send to the proxy server + in the `CONNECT` request. + +[CONNECT]: http://en.wikipedia.org/wiki/HTTP_tunnel#HTTP_CONNECT_Tunneling diff --git a/novas/novacore-zephyr/groq-code-cli/node_modules/https-proxy-agent/package.json b/novas/novacore-zephyr/groq-code-cli/node_modules/https-proxy-agent/package.json new file mode 100644 index 0000000000000000000000000000000000000000..51b7e1175ff51bb63526e3e80557625a34372edf --- /dev/null +++ b/novas/novacore-zephyr/groq-code-cli/node_modules/https-proxy-agent/package.json @@ -0,0 +1,50 @@ +{ + "name": "https-proxy-agent", + "version": "7.0.6", + "description": "An HTTP(s) proxy `http.Agent` implementation for HTTPS", + "main": "./dist/index.js", + "types": "./dist/index.d.ts", + "files": [ + "dist" + ], + "repository": { + "type": "git", + "url": "https://github.com/TooTallNate/proxy-agents.git", + "directory": "packages/https-proxy-agent" + }, + "keywords": [ + "https", + "proxy", + "endpoint", + "agent" + ], + "author": "Nathan Rajlich (http://n8.io/)", + "license": "MIT", + "dependencies": { + "agent-base": "^7.1.2", + "debug": "4" + }, + "devDependencies": { + "@types/async-retry": "^1.4.5", + "@types/debug": "4", + "@types/jest": "^29.5.1", + "@types/node": "^14.18.45", + "async-listen": "^3.0.0", + "async-retry": "^1.3.3", + "jest": "^29.5.0", + "ts-jest": "^29.1.0", + "typescript": "^5.0.4", + "proxy": "2.2.0", + "tsconfig": "0.0.0" + }, + "engines": { + "node": ">= 14" + }, + "scripts": { + "build": "tsc", + "test": "jest --env node --verbose --bail test/test.ts", + "test-e2e": "jest --env node --verbose --bail test/e2e.test.ts", + "lint": "eslint --ext .ts", + "pack": "node ../../scripts/pack.mjs" + } +} \ No newline at end of file diff --git a/novas/novacore-zephyr/groq-code-cli/node_modules/human-signals/LICENSE b/novas/novacore-zephyr/groq-code-cli/node_modules/human-signals/LICENSE new file mode 100644 index 0000000000000000000000000000000000000000..ba6ed1c2592383f91a80e48f4234917e6a9d37ad --- /dev/null +++ b/novas/novacore-zephyr/groq-code-cli/node_modules/human-signals/LICENSE @@ -0,0 +1,201 @@ + Apache License + Version 2.0, January 2004 + http://www.apache.org/licenses/ + + TERMS AND CONDITIONS FOR USE, REPRODUCTION, AND DISTRIBUTION + + 1. Definitions. + + "License" shall mean the terms and conditions for use, reproduction, + and distribution as defined by Sections 1 through 9 of this document. + + "Licensor" shall mean the copyright owner or entity authorized by + the copyright owner that is granting the License. + + "Legal Entity" shall mean the union of the acting entity and all + other entities that control, are controlled by, or are under common + control with that entity. For the purposes of this definition, + "control" means (i) the power, direct or indirect, to cause the + direction or management of such entity, whether by contract or + otherwise, or (ii) ownership of fifty percent (50%) or more of the + outstanding shares, or (iii) beneficial ownership of such entity. + + "You" (or "Your") shall mean an individual or Legal Entity + exercising permissions granted by this License. + + "Source" form shall mean the preferred form for making modifications, + including but not limited to software source code, documentation + source, and configuration files. + + "Object" form shall mean any form resulting from mechanical + transformation or translation of a Source form, including but + not limited to compiled object code, generated documentation, + and conversions to other media types. + + "Work" shall mean the work of authorship, whether in Source or + Object form, made available under the License, as indicated by a + copyright notice that is included in or attached to the work + (an example is provided in the Appendix below). + + "Derivative Works" shall mean any work, whether in Source or Object + form, that is based on (or derived from) the Work and for which the + editorial revisions, annotations, elaborations, or other modifications + represent, as a whole, an original work of authorship. For the purposes + of this License, Derivative Works shall not include works that remain + separable from, or merely link (or bind by name) to the interfaces of, + the Work and Derivative Works thereof. + + "Contribution" shall mean any work of authorship, including + the original version of the Work and any modifications or additions + to that Work or Derivative Works thereof, that is intentionally + submitted to Licensor for inclusion in the Work by the copyright owner + or by an individual or Legal Entity authorized to submit on behalf of + the copyright owner. For the purposes of this definition, "submitted" + means any form of electronic, verbal, or written communication sent + to the Licensor or its representatives, including but not limited to + communication on electronic mailing lists, source code control systems, + and issue tracking systems that are managed by, or on behalf of, the + Licensor for the purpose of discussing and improving the Work, but + excluding communication that is conspicuously marked or otherwise + designated in writing by the copyright owner as "Not a Contribution." + + "Contributor" shall mean Licensor and any individual or Legal Entity + on behalf of whom a Contribution has been received by Licensor and + subsequently incorporated within the Work. + + 2. Grant of Copyright License. Subject to the terms and conditions of + this License, each Contributor hereby grants to You a perpetual, + worldwide, non-exclusive, no-charge, royalty-free, irrevocable + copyright license to reproduce, prepare Derivative Works of, + publicly display, publicly perform, sublicense, and distribute the + Work and such Derivative Works in Source or Object form. + + 3. Grant of Patent License. Subject to the terms and conditions of + this License, each Contributor hereby grants to You a perpetual, + worldwide, non-exclusive, no-charge, royalty-free, irrevocable + (except as stated in this section) patent license to make, have made, + use, offer to sell, sell, import, and otherwise transfer the Work, + where such license applies only to those patent claims licensable + by such Contributor that are necessarily infringed by their + Contribution(s) alone or by combination of their Contribution(s) + with the Work to which such Contribution(s) was submitted. If You + institute patent litigation against any entity (including a + cross-claim or counterclaim in a lawsuit) alleging that the Work + or a Contribution incorporated within the Work constitutes direct + or contributory patent infringement, then any patent licenses + granted to You under this License for that Work shall terminate + as of the date such litigation is filed. + + 4. Redistribution. You may reproduce and distribute copies of the + Work or Derivative Works thereof in any medium, with or without + modifications, and in Source or Object form, provided that You + meet the following conditions: + + (a) You must give any other recipients of the Work or + Derivative Works a copy of this License; and + + (b) You must cause any modified files to carry prominent notices + stating that You changed the files; and + + (c) You must retain, in the Source form of any Derivative Works + that You distribute, all copyright, patent, trademark, and + attribution notices from the Source form of the Work, + excluding those notices that do not pertain to any part of + the Derivative Works; and + + (d) If the Work includes a "NOTICE" text file as part of its + distribution, then any Derivative Works that You distribute must + include a readable copy of the attribution notices contained + within such NOTICE file, excluding those notices that do not + pertain to any part of the Derivative Works, in at least one + of the following places: within a NOTICE text file distributed + as part of the Derivative Works; within the Source form or + documentation, if provided along with the Derivative Works; or, + within a display generated by the Derivative Works, if and + wherever such third-party notices normally appear. The contents + of the NOTICE file are for informational purposes only and + do not modify the License. You may add Your own attribution + notices within Derivative Works that You distribute, alongside + or as an addendum to the NOTICE text from the Work, provided + that such additional attribution notices cannot be construed + as modifying the License. + + You may add Your own copyright statement to Your modifications and + may provide additional or different license terms and conditions + for use, reproduction, or distribution of Your modifications, or + for any such Derivative Works as a whole, provided Your use, + reproduction, and distribution of the Work otherwise complies with + the conditions stated in this License. + + 5. Submission of Contributions. Unless You explicitly state otherwise, + any Contribution intentionally submitted for inclusion in the Work + by You to the Licensor shall be under the terms and conditions of + this License, without any additional terms or conditions. + Notwithstanding the above, nothing herein shall supersede or modify + the terms of any separate license agreement you may have executed + with Licensor regarding such Contributions. + + 6. Trademarks. This License does not grant permission to use the trade + names, trademarks, service marks, or product names of the Licensor, + except as required for reasonable and customary use in describing the + origin of the Work and reproducing the content of the NOTICE file. + + 7. Disclaimer of Warranty. Unless required by applicable law or + agreed to in writing, Licensor provides the Work (and each + Contributor provides its Contributions) on an "AS IS" BASIS, + WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or + implied, including, without limitation, any warranties or conditions + of TITLE, NON-INFRINGEMENT, MERCHANTABILITY, or FITNESS FOR A + PARTICULAR PURPOSE. You are solely responsible for determining the + appropriateness of using or redistributing the Work and assume any + risks associated with Your exercise of permissions under this License. + + 8. Limitation of Liability. In no event and under no legal theory, + whether in tort (including negligence), contract, or otherwise, + unless required by applicable law (such as deliberate and grossly + negligent acts) or agreed to in writing, shall any Contributor be + liable to You for damages, including any direct, indirect, special, + incidental, or consequential damages of any character arising as a + result of this License or out of the use or inability to use the + Work (including but not limited to damages for loss of goodwill, + work stoppage, computer failure or malfunction, or any and all + other commercial damages or losses), even if such Contributor + has been advised of the possibility of such damages. + + 9. Accepting Warranty or Additional Liability. While redistributing + the Work or Derivative Works thereof, You may choose to offer, + and charge a fee for, acceptance of support, warranty, indemnity, + or other liability obligations and/or rights consistent with this + License. However, in accepting such obligations, You may act only + on Your own behalf and on Your sole responsibility, not on behalf + of any other Contributor, and only if You agree to indemnify, + defend, and hold each Contributor harmless for any liability + incurred by, or claims asserted against, such Contributor by reason + of your accepting any such warranty or additional liability. + + END OF TERMS AND CONDITIONS + + APPENDIX: How to apply the Apache License to your work. + + To apply the Apache License to your work, attach the following + boilerplate notice, with the fields enclosed by brackets "[]" + replaced with your own identifying information. (Don't include + the brackets!) The text should be enclosed in the appropriate + comment syntax for the file format. We also recommend that a + file or class name and description of purpose be included on the + same "printed page" as the copyright notice for easier + identification within third-party archives. + + Copyright 2025 ehmicky + + Licensed under the Apache License, Version 2.0 (the "License"); + you may not use this file except in compliance with the License. + You may obtain a copy of the License at + + http://www.apache.org/licenses/LICENSE-2.0 + + Unless required by applicable law or agreed to in writing, software + distributed under the License is distributed on an "AS IS" BASIS, + WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied. + See the License for the specific language governing permissions and + limitations under the License. diff --git a/novas/novacore-zephyr/groq-code-cli/node_modules/human-signals/README.md b/novas/novacore-zephyr/groq-code-cli/node_modules/human-signals/README.md new file mode 100644 index 0000000000000000000000000000000000000000..ab79ecc8324d430a33aef621e86fec5a081cdbc9 --- /dev/null +++ b/novas/novacore-zephyr/groq-code-cli/node_modules/human-signals/README.md @@ -0,0 +1,171 @@ +[![Node](https://img.shields.io/badge/-Node.js-808080?logo=node.js&colorA=404040&logoColor=66cc33)](https://www.npmjs.com/package/human-signals) +[![TypeScript](https://img.shields.io/badge/-Typed-808080?logo=typescript&colorA=404040&logoColor=0096ff)](/src/main.d.ts) +[![Codecov](https://img.shields.io/badge/-Tested%20100%25-808080?logo=codecov&colorA=404040)](https://codecov.io/gh/ehmicky/human-signals) +[![Mastodon](https://img.shields.io/badge/-Mastodon-808080.svg?logo=mastodon&colorA=404040&logoColor=9590F9)](https://fosstodon.org/@ehmicky) +[![Medium](https://img.shields.io/badge/-Medium-808080.svg?logo=medium&colorA=404040)](https://medium.com/@ehmicky) + +Human-friendly process signals. + +This is a map of known process signals with some information about each signal. + +Unlike +[`os.constants.signals`](https://nodejs.org/api/os.html#os_signal_constants) +this includes: + +- human-friendly [descriptions](#description) +- [default actions](#action), including whether they [can be prevented](#forced) +- whether the signal is [supported](#supported) by the current OS + +# Example + +```js +import { signalsByName, signalsByNumber } from 'human-signals' + +console.log(signalsByName.SIGINT) +// { +// name: 'SIGINT', +// number: 2, +// description: 'User interruption with CTRL-C', +// supported: true, +// action: 'terminate', +// forced: false, +// standard: 'ansi' +// } + +console.log(signalsByNumber[8]) +// { +// name: 'SIGFPE', +// number: 8, +// description: 'Floating point arithmetic error', +// supported: true, +// action: 'core', +// forced: false, +// standard: 'ansi' +// } +``` + +# Install + +```bash +npm install human-signals +``` + +This package works in Node.js >=18.18.0. + +This is an ES module. It must be loaded using +[an `import` or `import()` statement](https://gist.github.com/sindresorhus/a39789f98801d908bbc7ff3ecc99d99c), +not `require()`. If TypeScript is used, it must be configured to +[output ES modules](https://www.typescriptlang.org/docs/handbook/esm-node.html), +not CommonJS. + +# Usage + +## signalsByName + +_Type_: `object` + +Object whose keys are signal [names](#name) and values are +[signal objects](#signal). + +## signalsByNumber + +_Type_: `object` + +Object whose keys are signal [numbers](#number) and values are +[signal objects](#signal). + +## signal + +_Type_: `object` + +Signal object with the following properties. + +### name + +_Type_: `string` + +Standard name of the signal, for example `'SIGINT'`. + +### number + +_Type_: `number` + +Code number of the signal, for example `2`. While most `number` are +cross-platform, some are different between different OS. + +### description + +_Type_: `string` + +Human-friendly description for the signal, for example +`'User interruption with CTRL-C'`. + +### supported + +_Type_: `boolean` + +Whether the current OS can handle this signal in Node.js using +[`process.on(name, handler)`](https://nodejs.org/api/process.html#process_signal_events). + +The list of supported signals +[is OS-specific](https://github.com/ehmicky/cross-platform-node-guide/blob/main/docs/6_networking_ipc/signals.md#cross-platform-signals). + +### action + +_Type_: `string`\ +_Enum_: `'terminate'`, `'core'`, `'ignore'`, `'pause'`, `'unpause'` + +What is the default action for this signal when it is not handled. + +### forced + +_Type_: `boolean` + +Whether the signal's default action cannot be prevented. This is `true` for +`SIGTERM`, `SIGKILL` and `SIGSTOP`. + +### standard + +_Type_: `string`\ +_Enum_: `'ansi'`, `'posix'`, `'bsd'`, `'systemv'`, `'other'` + +Which standard defined that signal. + +# Support + +For any question, _don't hesitate_ to [submit an issue on GitHub](../../issues). + +Everyone is welcome regardless of personal background. We enforce a +[Code of conduct](CODE_OF_CONDUCT.md) in order to promote a positive and +inclusive environment. + +# Contributing + +This project was made with ❤️. The simplest way to give back is by starring and +sharing it online. + +If the documentation is unclear or has a typo, please click on the page's `Edit` +button (pencil icon) and suggest a correction. + +If you would like to help us fix a bug or add a new feature, please check our +[guidelines](CONTRIBUTING.md). Pull requests are welcome! + +Thanks go to our wonderful contributors: + + + + + + + + + + + + +
ehmicky
ehmicky

💻 🎨 🤔 📖
electrovir
electrovir

💻
Felix Zedén Yverås
Felix Zedén Yverås

💻 ⚠️
+ + + + + diff --git a/novas/novacore-zephyr/groq-code-cli/node_modules/human-signals/package.json b/novas/novacore-zephyr/groq-code-cli/node_modules/human-signals/package.json new file mode 100644 index 0000000000000000000000000000000000000000..86f35fb5be868b01adb61178291748bb40b82f0b --- /dev/null +++ b/novas/novacore-zephyr/groq-code-cli/node_modules/human-signals/package.json @@ -0,0 +1,66 @@ +{ + "name": "human-signals", + "version": "8.0.1", + "type": "module", + "exports": { + "types": "./build/src/main.d.ts", + "default": "./build/src/main.js" + }, + "main": "./build/src/main.js", + "types": "./build/src/main.d.ts", + "files": [ + "build/src/**/*.{js,json,d.ts}", + "!build/src/**/*.test.js", + "!build/src/{helpers,fixtures}" + ], + "sideEffects": false, + "scripts": { + "test": "gulp test" + }, + "description": "Human-friendly process signals", + "keywords": [ + "signal", + "signals", + "handlers", + "error-handling", + "interrupts", + "sigterm", + "sigint", + "irq", + "process", + "exit", + "exit-code", + "status", + "operating-system", + "es6", + "javascript", + "typescript", + "linux", + "macos", + "windows", + "nodejs" + ], + "license": "Apache-2.0", + "homepage": "https://www.github.com/ehmicky/human-signals", + "repository": { + "type": "git", + "url": "git+https://github.com/ehmicky/human-signals.git" + }, + "bugs": { + "url": "https://github.com/ehmicky/human-signals/issues" + }, + "author": "ehmicky (https://github.com/ehmicky)", + "directories": { + "lib": "src" + }, + "devDependencies": { + "@ehmicky/dev-tasks": "^3.0.33", + "@ehmicky/eslint-config": "^20.0.31", + "@ehmicky/prettier-config": "^1.0.6", + "ajv": "^8.17.1", + "test-each": "^7.0.1" + }, + "engines": { + "node": ">=18.18.0" + } +} diff --git a/novas/novacore-zephyr/groq-code-cli/node_modules/humanize-ms/History.md b/novas/novacore-zephyr/groq-code-cli/node_modules/humanize-ms/History.md new file mode 100644 index 0000000000000000000000000000000000000000..b1595870501193cf638fe9f3d2d34f9a9229e46e --- /dev/null +++ b/novas/novacore-zephyr/groq-code-cli/node_modules/humanize-ms/History.md @@ -0,0 +1,25 @@ + +1.2.1 / 2017-05-19 +================== + + * fix: package.json to reduce vulnerabilities (#3) + +1.2.0 / 2016-05-21 +================== + + * feat: warn with stack + +1.1.0 / 2016-04-04 +================== + + * deps: upgrade ms to 0.7.0 + +1.0.1 / 2014-12-31 +================== + + * feat(index.js): warn when result is undefined + +1.0.0 / 2014-08-14 +================== + + * init diff --git a/novas/novacore-zephyr/groq-code-cli/node_modules/humanize-ms/LICENSE b/novas/novacore-zephyr/groq-code-cli/node_modules/humanize-ms/LICENSE new file mode 100644 index 0000000000000000000000000000000000000000..89de354795ec7a7cdab07c091029653d3618540d --- /dev/null +++ b/novas/novacore-zephyr/groq-code-cli/node_modules/humanize-ms/LICENSE @@ -0,0 +1,17 @@ +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. diff --git a/novas/novacore-zephyr/groq-code-cli/node_modules/humanize-ms/README.md b/novas/novacore-zephyr/groq-code-cli/node_modules/humanize-ms/README.md new file mode 100644 index 0000000000000000000000000000000000000000..20a2ca35b89fbc26f92986f2d7ad9b9f579e42ef --- /dev/null +++ b/novas/novacore-zephyr/groq-code-cli/node_modules/humanize-ms/README.md @@ -0,0 +1,40 @@ +humanize-ms +--------------- + +[![NPM version][npm-image]][npm-url] +[![build status][travis-image]][travis-url] +[![Test coverage][coveralls-image]][coveralls-url] +[![Gittip][gittip-image]][gittip-url] +[![David deps][david-image]][david-url] + +[npm-image]: https://img.shields.io/npm/v/humanize-ms.svg?style=flat +[npm-url]: https://npmjs.org/package/humanize-ms +[travis-image]: https://img.shields.io/travis/node-modules/humanize-ms.svg?style=flat +[travis-url]: https://travis-ci.org/node-modules/humanize-ms +[coveralls-image]: https://img.shields.io/coveralls/node-modules/humanize-ms.svg?style=flat +[coveralls-url]: https://coveralls.io/r/node-modules/humanize-ms?branch=master +[gittip-image]: https://img.shields.io/gittip/dead-horse.svg?style=flat +[gittip-url]: https://www.gittip.com/dead-horse/ +[david-image]: https://img.shields.io/david/node-modules/humanize-ms.svg?style=flat +[david-url]: https://david-dm.org/node-modules/humanize-ms + +transform humanize time to ms + +## Installation + +```bash +$ npm install humanize-ms +``` + +## Examples + +```js +var ms = require('humanize-ms'); + +ms('1s') // 1000 +ms(1000) // 1000 +``` + +### License + +MIT diff --git a/novas/novacore-zephyr/groq-code-cli/node_modules/humanize-ms/index.js b/novas/novacore-zephyr/groq-code-cli/node_modules/humanize-ms/index.js new file mode 100644 index 0000000000000000000000000000000000000000..660df81def51203e511a0bd801655225e9d08ade --- /dev/null +++ b/novas/novacore-zephyr/groq-code-cli/node_modules/humanize-ms/index.js @@ -0,0 +1,24 @@ +/*! + * humanize-ms - index.js + * Copyright(c) 2014 dead_horse + * MIT Licensed + */ + +'use strict'; + +/** + * Module dependencies. + */ + +var util = require('util'); +var ms = require('ms'); + +module.exports = function (t) { + if (typeof t === 'number') return t; + var r = ms(t); + if (r === undefined) { + var err = new Error(util.format('humanize-ms(%j) result undefined', t)); + console.warn(err.stack); + } + return r; +}; diff --git a/novas/novacore-zephyr/groq-code-cli/node_modules/humanize-ms/package.json b/novas/novacore-zephyr/groq-code-cli/node_modules/humanize-ms/package.json new file mode 100644 index 0000000000000000000000000000000000000000..da4ab7f571a686b90680ae00f9284ab886c772f3 --- /dev/null +++ b/novas/novacore-zephyr/groq-code-cli/node_modules/humanize-ms/package.json @@ -0,0 +1,37 @@ +{ + "name": "humanize-ms", + "version": "1.2.1", + "description": "transform humanize time to ms", + "main": "index.js", + "files": [ + "index.js" + ], + "scripts": { + "test": "make test" + }, + "keywords": [ + "humanize", + "ms" + ], + "author": { + "name": "dead-horse", + "email": "dead_horse@qq.com", + "url": "http://deadhorse.me" + }, + "repository": { + "type": "git", + "url": "https://github.com/node-modules/humanize-ms" + }, + "license": "MIT", + "dependencies": { + "ms": "^2.0.0" + }, + "devDependencies": { + "autod": "*", + "beautify-benchmark": "~0.2.4", + "benchmark": "~1.0.0", + "istanbul": "*", + "mocha": "*", + "should": "*" + } +} diff --git a/novas/novacore-zephyr/groq-code-cli/node_modules/ignore-by-default/LICENSE b/novas/novacore-zephyr/groq-code-cli/node_modules/ignore-by-default/LICENSE new file mode 100644 index 0000000000000000000000000000000000000000..ee1e367897fb23db63bccadd30f413c1eb957634 --- /dev/null +++ b/novas/novacore-zephyr/groq-code-cli/node_modules/ignore-by-default/LICENSE @@ -0,0 +1,14 @@ +ISC License (ISC) +Copyright (c) 2016, Mark Wubben + +Permission to use, copy, modify, and/or distribute this software for any purpose +with or without fee is hereby granted, provided that the above copyright notice +and this permission notice appear in all copies. + +THE SOFTWARE IS PROVIDED "AS IS" AND THE AUTHOR DISCLAIMS ALL WARRANTIES WITH +REGARD TO THIS SOFTWARE INCLUDING ALL IMPLIED WARRANTIES OF MERCHANTABILITY AND +FITNESS. IN NO EVENT SHALL THE AUTHOR BE LIABLE FOR ANY SPECIAL, DIRECT, +INDIRECT, OR CONSEQUENTIAL DAMAGES OR ANY DAMAGES WHATSOEVER RESULTING FROM LOSS +OF USE, DATA OR PROFITS, WHETHER IN AN ACTION OF CONTRACT, NEGLIGENCE OR OTHER +TORTIOUS ACTION, ARISING OUT OF OR IN CONNECTION WITH THE USE OR PERFORMANCE OF +THIS SOFTWARE. diff --git a/novas/novacore-zephyr/groq-code-cli/node_modules/ignore-by-default/README.md b/novas/novacore-zephyr/groq-code-cli/node_modules/ignore-by-default/README.md new file mode 100644 index 0000000000000000000000000000000000000000..90a908d2e871cbe756be0a99618e910fb36ba268 --- /dev/null +++ b/novas/novacore-zephyr/groq-code-cli/node_modules/ignore-by-default/README.md @@ -0,0 +1,26 @@ +# ignore-by-default + +This is a package aimed at Node.js development tools. It provides a list of +directories that should probably be ignored by such tools, e.g. when watching +for file changes. + +It's used by [AVA](https://www.npmjs.com/package/ava) and +[nodemon](https://www.npmjs.com/package/nodemon). + +[Please contribute!](./CONTRIBUTING.md) + +## Installation + +``` +npm install ignore-by-default +``` + +## Usage + +The `ignore-by-default` module exports a `directories()` function, which will +return an array of directory names. These are the ones you should ignore. + +```js +// ['.git', '.sass_cache', …] +const ignoredDirectories = require('ignore-by-default').directories() +``` diff --git a/novas/novacore-zephyr/groq-code-cli/node_modules/ignore-by-default/index.js b/novas/novacore-zephyr/groq-code-cli/node_modules/ignore-by-default/index.js new file mode 100644 index 0000000000000000000000000000000000000000..f9281a9a128746a2610ba94a4608e69f72c21f4d --- /dev/null +++ b/novas/novacore-zephyr/groq-code-cli/node_modules/ignore-by-default/index.js @@ -0,0 +1,12 @@ +'use strict' + +exports.directories = () => [ + '.git', // Git repository files, see + '.log', // Log files emitted by tools such as `tsserver`, see + '.nyc_output', // Temporary directory where nyc stores coverage data, see + '.sass-cache', // Cache folder for node-sass, see + '.yarn', // Where node modules are installed when using Yarn, see + 'bower_components', // Where Bower packages are installed, see + 'coverage', // Standard output directory for code coverage reports, see + 'node_modules' // Where Node modules are installed, see +] diff --git a/novas/novacore-zephyr/groq-code-cli/node_modules/ignore-by-default/package.json b/novas/novacore-zephyr/groq-code-cli/node_modules/ignore-by-default/package.json new file mode 100644 index 0000000000000000000000000000000000000000..1aea20b5654ae59d3614a16acd214e593930b85a --- /dev/null +++ b/novas/novacore-zephyr/groq-code-cli/node_modules/ignore-by-default/package.json @@ -0,0 +1,37 @@ +{ + "name": "ignore-by-default", + "version": "2.1.0", + "description": "A list of directories you should ignore by default", + "engines": { + "node": ">=10 <11 || >=12 <13 || >=14" + }, + "main": "index.js", + "files": [ + "index.js" + ], + "scripts": { + "test": "standard && node test.js" + }, + "repository": { + "type": "git", + "url": "git+https://github.com/novemberborn/ignore-by-default.git" + }, + "keywords": [ + "ignore", + "chokidar", + "watcher", + "exclude", + "glob", + "pattern" + ], + "author": "Mark Wubben (https://novemberborn.net/)", + "license": "ISC", + "bugs": { + "url": "https://github.com/novemberborn/ignore-by-default/issues" + }, + "homepage": "https://github.com/novemberborn/ignore-by-default#readme", + "devDependencies": { + "figures": "^3.2.0", + "standard": "^14.3.4" + } +} diff --git a/novas/novacore-zephyr/groq-code-cli/node_modules/ignore/LICENSE-MIT b/novas/novacore-zephyr/groq-code-cli/node_modules/ignore/LICENSE-MIT new file mode 100644 index 0000000000000000000000000000000000000000..825533e337fa1d8e6fccfe70318c4abf52600d25 --- /dev/null +++ b/novas/novacore-zephyr/groq-code-cli/node_modules/ignore/LICENSE-MIT @@ -0,0 +1,21 @@ +Copyright (c) 2013 Kael Zhang , contributors +http://kael.me/ + +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. \ No newline at end of file diff --git a/novas/novacore-zephyr/groq-code-cli/node_modules/ignore/README.md b/novas/novacore-zephyr/groq-code-cli/node_modules/ignore/README.md new file mode 100644 index 0000000000000000000000000000000000000000..50d88822a9a25f7b1c154bae8c12c8a5bae62a66 --- /dev/null +++ b/novas/novacore-zephyr/groq-code-cli/node_modules/ignore/README.md @@ -0,0 +1,412 @@ + + + + + + + + + + + + + +
LinuxOS XWindowsCoverageDownloads
+ + Build Status + + + Windows Build Status + + + Coverage Status + + + npm module downloads per month +
+ +# ignore + +`ignore` is a manager, filter and parser which implemented in pure JavaScript according to the [.gitignore spec 2.22.1](http://git-scm.com/docs/gitignore). + +`ignore` is used by eslint, gitbook and [many others](https://www.npmjs.com/browse/depended/ignore). + +Pay **ATTENTION** that [`minimatch`](https://www.npmjs.org/package/minimatch) (which used by `fstream-ignore`) does not follow the gitignore spec. + +To filter filenames according to a .gitignore file, I recommend this npm package, `ignore`. + +To parse an `.npmignore` file, you should use `minimatch`, because an `.npmignore` file is parsed by npm using `minimatch` and it does not work in the .gitignore way. + +### Tested on + +`ignore` is fully tested, and has more than **five hundreds** of unit tests. + +- Linux + Node: `0.8` - `7.x` +- Windows + Node: `0.10` - `7.x`, node < `0.10` is not tested due to the lack of support of appveyor. + +Actually, `ignore` does not rely on any versions of node specially. + +Since `4.0.0`, ignore will no longer support `node < 6` by default, to use in node < 6, `require('ignore/legacy')`. For details, see [CHANGELOG](https://github.com/kaelzhang/node-ignore/blob/master/CHANGELOG.md). + +## Table Of Main Contents + +- [Usage](#usage) +- [`Pathname` Conventions](#pathname-conventions) +- See Also: + - [`glob-gitignore`](https://www.npmjs.com/package/glob-gitignore) matches files using patterns and filters them according to gitignore rules. +- [Upgrade Guide](#upgrade-guide) + +## Install + +```sh +npm i ignore +``` + +## Usage + +```js +import ignore from 'ignore' +const ig = ignore().add(['.abc/*', '!.abc/d/']) +``` + +### Filter the given paths + +```js +const paths = [ + '.abc/a.js', // filtered out + '.abc/d/e.js' // included +] + +ig.filter(paths) // ['.abc/d/e.js'] +ig.ignores('.abc/a.js') // true +``` + +### As the filter function + +```js +paths.filter(ig.createFilter()); // ['.abc/d/e.js'] +``` + +### Win32 paths will be handled + +```js +ig.filter(['.abc\\a.js', '.abc\\d\\e.js']) +// if the code above runs on windows, the result will be +// ['.abc\\d\\e.js'] +``` + +## Why another ignore? + +- `ignore` is a standalone module, and is much simpler so that it could easy work with other programs, unlike [isaacs](https://npmjs.org/~isaacs)'s [fstream-ignore](https://npmjs.org/package/fstream-ignore) which must work with the modules of the fstream family. + +- `ignore` only contains utility methods to filter paths according to the specified ignore rules, so + - `ignore` never try to find out ignore rules by traversing directories or fetching from git configurations. + - `ignore` don't cares about sub-modules of git projects. + +- Exactly according to [gitignore man page](http://git-scm.com/docs/gitignore), fixes some known matching issues of fstream-ignore, such as: + - '`/*.js`' should only match '`a.js`', but not '`abc/a.js`'. + - '`**/foo`' should match '`foo`' anywhere. + - Prevent re-including a file if a parent directory of that file is excluded. + - Handle trailing whitespaces: + - `'a '`(one space) should not match `'a '`(two spaces). + - `'a \ '` matches `'a '` + - All test cases are verified with the result of `git check-ignore`. + +# Methods + +## .add(pattern: string | Ignore): this +## .add(patterns: Array): this + +- **pattern** `String | Ignore` An ignore pattern string, or the `Ignore` instance +- **patterns** `Array` Array of ignore patterns. + +Adds a rule or several rules to the current manager. + +Returns `this` + +Notice that a line starting with `'#'`(hash) is treated as a comment. Put a backslash (`'\'`) in front of the first hash for patterns that begin with a hash, if you want to ignore a file with a hash at the beginning of the filename. + +```js +ignore().add('#abc').ignores('#abc') // false +ignore().add('\\#abc').ignores('#abc') // true +``` + +`pattern` could either be a line of ignore pattern or a string of multiple ignore patterns, which means we could just `ignore().add()` the content of a ignore file: + +```js +ignore() +.add(fs.readFileSync(filenameOfGitignore).toString()) +.filter(filenames) +``` + +`pattern` could also be an `ignore` instance, so that we could easily inherit the rules of another `Ignore` instance. + +## .addIgnoreFile(path) + +REMOVED in `3.x` for now. + +To upgrade `ignore@2.x` up to `3.x`, use + +```js +import fs from 'fs' + +if (fs.existsSync(filename)) { + ignore().add(fs.readFileSync(filename).toString()) +} +``` + +instead. + +## .filter(paths: Array<Pathname>): Array<Pathname> + +```ts +type Pathname = string +``` + +Filters the given array of pathnames, and returns the filtered array. + +- **paths** `Array.` The array of `pathname`s to be filtered. + +### `Pathname` Conventions: + +#### 1. `Pathname` should be a `path.relative()`d pathname + +`Pathname` should be a string that have been `path.join()`ed, or the return value of `path.relative()` to the current directory, + +```js +// WRONG, an error will be thrown +ig.ignores('./abc') + +// WRONG, for it will never happen, and an error will be thrown +// If the gitignore rule locates at the root directory, +// `'/abc'` should be changed to `'abc'`. +// ``` +// path.relative('/', '/abc') -> 'abc' +// ``` +ig.ignores('/abc') + +// WRONG, that it is an absolute path on Windows, an error will be thrown +ig.ignores('C:\\abc') + +// Right +ig.ignores('abc') + +// Right +ig.ignores(path.join('./abc')) // path.join('./abc') -> 'abc' +``` + +In other words, each `Pathname` here should be a relative path to the directory of the gitignore rules. + +Suppose the dir structure is: + +``` +/path/to/your/repo + |-- a + | |-- a.js + | + |-- .b + | + |-- .c + |-- .DS_store +``` + +Then the `paths` might be like this: + +```js +[ + 'a/a.js' + '.b', + '.c/.DS_store' +] +``` + +#### 2. filenames and dirnames + +`node-ignore` does NO `fs.stat` during path matching, so for the example below: + +```js +// First, we add a ignore pattern to ignore a directory +ig.add('config/') + +// `ig` does NOT know if 'config', in the real world, +// is a normal file, directory or something. + +ig.ignores('config') +// `ig` treats `config` as a file, so it returns `false` + +ig.ignores('config/') +// returns `true` +``` + +Specially for people who develop some library based on `node-ignore`, it is important to understand that. + +Usually, you could use [`glob`](http://npmjs.org/package/glob) with `option.mark = true` to fetch the structure of the current directory: + +```js +import glob from 'glob' + +glob('**', { + // Adds a / character to directory matches. + mark: true +}, (err, files) => { + if (err) { + return console.error(err) + } + + let filtered = ignore().add(patterns).filter(files) + console.log(filtered) +}) +``` + +## .ignores(pathname: Pathname): boolean + +> new in 3.2.0 + +Returns `Boolean` whether `pathname` should be ignored. + +```js +ig.ignores('.abc/a.js') // true +``` + +## .createFilter() + +Creates a filter function which could filter an array of paths with `Array.prototype.filter`. + +Returns `function(path)` the filter function. + +## .test(pathname: Pathname) since 5.0.0 + +Returns `TestResult` + +```ts +interface TestResult { + ignored: boolean + // true if the `pathname` is finally unignored by some negative pattern + unignored: boolean +} +``` + +- `{ignored: true, unignored: false}`: the `pathname` is ignored +- `{ignored: false, unignored: true}`: the `pathname` is unignored +- `{ignored: false, unignored: false}`: the `pathname` is never matched by any ignore rules. + +## static `ignore.isPathValid(pathname): boolean` since 5.0.0 + +Check whether the `pathname` is an valid `path.relative()`d path according to the [convention](#1-pathname-should-be-a-pathrelatived-pathname). + +This method is **NOT** used to check if an ignore pattern is valid. + +```js +ignore.isPathValid('./foo') // false +``` + +## ignore(options) + +### `options.ignorecase` since 4.0.0 + +Similar as the `core.ignorecase` option of [git-config](https://git-scm.com/docs/git-config), `node-ignore` will be case insensitive if `options.ignorecase` is set to `true` (the default value), otherwise case sensitive. + +```js +const ig = ignore({ + ignorecase: false +}) + +ig.add('*.png') + +ig.ignores('*.PNG') // false +``` + +### `options.ignoreCase?: boolean` since 5.2.0 + +Which is alternative to `options.ignoreCase` + +### `options.allowRelativePaths?: boolean` since 5.2.0 + +This option brings backward compatibility with projects which based on `ignore@4.x`. If `options.allowRelativePaths` is `true`, `ignore` will not check whether the given path to be tested is [`path.relative()`d](#pathname-conventions). + +However, passing a relative path, such as `'./foo'` or `'../foo'`, to test if it is ignored or not is not a good practise, which might lead to unexpected behavior + +```js +ignore({ + allowRelativePaths: true +}).ignores('../foo/bar.js') // And it will not throw +``` + +**** + +# Upgrade Guide + +## Upgrade 4.x -> 5.x + +Since `5.0.0`, if an invalid `Pathname` passed into `ig.ignores()`, an error will be thrown, unless `options.allowRelative = true` is passed to the `Ignore` factory. + +While `ignore < 5.0.0` did not make sure what the return value was, as well as + +```ts +.ignores(pathname: Pathname): boolean + +.filter(pathnames: Array): Array + +.createFilter(): (pathname: Pathname) => boolean + +.test(pathname: Pathname): {ignored: boolean, unignored: boolean} +``` + +See the convention [here](#1-pathname-should-be-a-pathrelatived-pathname) for details. + +If there are invalid pathnames, the conversion and filtration should be done by users. + +```js +import {isPathValid} from 'ignore' // introduced in 5.0.0 + +const paths = [ + // invalid + ////////////////// + '', + false, + '../foo', + '.', + ////////////////// + + // valid + 'foo' +] +.filter(isValidPath) + +ig.filter(paths) +``` + +## Upgrade 3.x -> 4.x + +Since `4.0.0`, `ignore` will no longer support node < 6, to use `ignore` in node < 6: + +```js +var ignore = require('ignore/legacy') +``` + +## Upgrade 2.x -> 3.x + +- All `options` of 2.x are unnecessary and removed, so just remove them. +- `ignore()` instance is no longer an [`EventEmitter`](nodejs.org/api/events.html), and all events are unnecessary and removed. +- `.addIgnoreFile()` is removed, see the [.addIgnoreFile](#addignorefilepath) section for details. + +**** + +# Collaborators + +- [@whitecolor](https://github.com/whitecolor) *Alex* +- [@SamyPesse](https://github.com/SamyPesse) *Samy Pessé* +- [@azproduction](https://github.com/azproduction) *Mikhail Davydov* +- [@TrySound](https://github.com/TrySound) *Bogdan Chadkin* +- [@JanMattner](https://github.com/JanMattner) *Jan Mattner* +- [@ntwb](https://github.com/ntwb) *Stephen Edgar* +- [@kasperisager](https://github.com/kasperisager) *Kasper Isager* +- [@sandersn](https://github.com/sandersn) *Nathan Shively-Sanders* diff --git a/novas/novacore-zephyr/groq-code-cli/node_modules/ignore/index.d.ts b/novas/novacore-zephyr/groq-code-cli/node_modules/ignore/index.d.ts new file mode 100644 index 0000000000000000000000000000000000000000..970631e266e6d85875c6399b4dd98ec95cf34e4a --- /dev/null +++ b/novas/novacore-zephyr/groq-code-cli/node_modules/ignore/index.d.ts @@ -0,0 +1,61 @@ +type Pathname = string + +interface TestResult { + ignored: boolean + unignored: boolean +} + +export interface Ignore { + /** + * Adds one or several rules to the current manager. + * @param {string[]} patterns + * @returns IgnoreBase + */ + add(patterns: string | Ignore | readonly (string | Ignore)[]): this + + /** + * Filters the given array of pathnames, and returns the filtered array. + * NOTICE that each path here should be a relative path to the root of your repository. + * @param paths the array of paths to be filtered. + * @returns The filtered array of paths + */ + filter(pathnames: readonly Pathname[]): Pathname[] + + /** + * Creates a filter function which could filter + * an array of paths with Array.prototype.filter. + */ + createFilter(): (pathname: Pathname) => boolean + + /** + * Returns Boolean whether pathname should be ignored. + * @param {string} pathname a path to check + * @returns boolean + */ + ignores(pathname: Pathname): boolean + + /** + * Returns whether pathname should be ignored or unignored + * @param {string} pathname a path to check + * @returns TestResult + */ + test(pathname: Pathname): TestResult +} + +export interface Options { + ignorecase?: boolean + // For compatibility + ignoreCase?: boolean + allowRelativePaths?: boolean +} + +/** + * Creates new ignore manager. + */ +declare function ignore(options?: Options): Ignore + +declare namespace ignore { + export function isPathValid (pathname: string): boolean +} + +export default ignore diff --git a/novas/novacore-zephyr/groq-code-cli/node_modules/ignore/index.js b/novas/novacore-zephyr/groq-code-cli/node_modules/ignore/index.js new file mode 100644 index 0000000000000000000000000000000000000000..9f0dbfebda0cd8d9f48ea8fe99380275fd4677dd --- /dev/null +++ b/novas/novacore-zephyr/groq-code-cli/node_modules/ignore/index.js @@ -0,0 +1,636 @@ +// A simple implementation of make-array +function makeArray (subject) { + return Array.isArray(subject) + ? subject + : [subject] +} + +const EMPTY = '' +const SPACE = ' ' +const ESCAPE = '\\' +const REGEX_TEST_BLANK_LINE = /^\s+$/ +const REGEX_INVALID_TRAILING_BACKSLASH = /(?:[^\\]|^)\\$/ +const REGEX_REPLACE_LEADING_EXCAPED_EXCLAMATION = /^\\!/ +const REGEX_REPLACE_LEADING_EXCAPED_HASH = /^\\#/ +const REGEX_SPLITALL_CRLF = /\r?\n/g +// /foo, +// ./foo, +// ../foo, +// . +// .. +const REGEX_TEST_INVALID_PATH = /^\.*\/|^\.+$/ + +const SLASH = '/' + +// Do not use ternary expression here, since "istanbul ignore next" is buggy +let TMP_KEY_IGNORE = 'node-ignore' +/* istanbul ignore else */ +if (typeof Symbol !== 'undefined') { + TMP_KEY_IGNORE = Symbol.for('node-ignore') +} +const KEY_IGNORE = TMP_KEY_IGNORE + +const define = (object, key, value) => + Object.defineProperty(object, key, {value}) + +const REGEX_REGEXP_RANGE = /([0-z])-([0-z])/g + +const RETURN_FALSE = () => false + +// Sanitize the range of a regular expression +// The cases are complicated, see test cases for details +const sanitizeRange = range => range.replace( + REGEX_REGEXP_RANGE, + (match, from, to) => from.charCodeAt(0) <= to.charCodeAt(0) + ? match + // Invalid range (out of order) which is ok for gitignore rules but + // fatal for JavaScript regular expression, so eliminate it. + : EMPTY +) + +// See fixtures #59 +const cleanRangeBackSlash = slashes => { + const {length} = slashes + return slashes.slice(0, length - length % 2) +} + +// > If the pattern ends with a slash, +// > it is removed for the purpose of the following description, +// > but it would only find a match with a directory. +// > In other words, foo/ will match a directory foo and paths underneath it, +// > but will not match a regular file or a symbolic link foo +// > (this is consistent with the way how pathspec works in general in Git). +// '`foo/`' will not match regular file '`foo`' or symbolic link '`foo`' +// -> ignore-rules will not deal with it, because it costs extra `fs.stat` call +// you could use option `mark: true` with `glob` + +// '`foo/`' should not continue with the '`..`' +const REPLACERS = [ + + [ + // remove BOM + // TODO: + // Other similar zero-width characters? + /^\uFEFF/, + () => EMPTY + ], + + // > Trailing spaces are ignored unless they are quoted with backslash ("\") + [ + // (a\ ) -> (a ) + // (a ) -> (a) + // (a ) -> (a) + // (a \ ) -> (a ) + /((?:\\\\)*?)(\\?\s+)$/, + (_, m1, m2) => m1 + ( + m2.indexOf('\\') === 0 + ? SPACE + : EMPTY + ) + ], + + // replace (\ ) with ' ' + // (\ ) -> ' ' + // (\\ ) -> '\\ ' + // (\\\ ) -> '\\ ' + [ + /(\\+?)\s/g, + (_, m1) => { + const {length} = m1 + return m1.slice(0, length - length % 2) + SPACE + } + ], + + // Escape metacharacters + // which is written down by users but means special for regular expressions. + + // > There are 12 characters with special meanings: + // > - the backslash \, + // > - the caret ^, + // > - the dollar sign $, + // > - the period or dot ., + // > - the vertical bar or pipe symbol |, + // > - the question mark ?, + // > - the asterisk or star *, + // > - the plus sign +, + // > - the opening parenthesis (, + // > - the closing parenthesis ), + // > - and the opening square bracket [, + // > - the opening curly brace {, + // > These special characters are often called "metacharacters". + [ + /[\\$.|*+(){^]/g, + match => `\\${match}` + ], + + [ + // > a question mark (?) matches a single character + /(?!\\)\?/g, + () => '[^/]' + ], + + // leading slash + [ + + // > A leading slash matches the beginning of the pathname. + // > For example, "/*.c" matches "cat-file.c" but not "mozilla-sha1/sha1.c". + // A leading slash matches the beginning of the pathname + /^\//, + () => '^' + ], + + // replace special metacharacter slash after the leading slash + [ + /\//g, + () => '\\/' + ], + + [ + // > A leading "**" followed by a slash means match in all directories. + // > For example, "**/foo" matches file or directory "foo" anywhere, + // > the same as pattern "foo". + // > "**/foo/bar" matches file or directory "bar" anywhere that is directly + // > under directory "foo". + // Notice that the '*'s have been replaced as '\\*' + /^\^*\\\*\\\*\\\//, + + // '**/foo' <-> 'foo' + () => '^(?:.*\\/)?' + ], + + // starting + [ + // there will be no leading '/' + // (which has been replaced by section "leading slash") + // If starts with '**', adding a '^' to the regular expression also works + /^(?=[^^])/, + function startingReplacer () { + // If has a slash `/` at the beginning or middle + return !/\/(?!$)/.test(this) + // > Prior to 2.22.1 + // > If the pattern does not contain a slash /, + // > Git treats it as a shell glob pattern + // Actually, if there is only a trailing slash, + // git also treats it as a shell glob pattern + + // After 2.22.1 (compatible but clearer) + // > If there is a separator at the beginning or middle (or both) + // > of the pattern, then the pattern is relative to the directory + // > level of the particular .gitignore file itself. + // > Otherwise the pattern may also match at any level below + // > the .gitignore level. + ? '(?:^|\\/)' + + // > Otherwise, Git treats the pattern as a shell glob suitable for + // > consumption by fnmatch(3) + : '^' + } + ], + + // two globstars + [ + // Use lookahead assertions so that we could match more than one `'/**'` + /\\\/\\\*\\\*(?=\\\/|$)/g, + + // Zero, one or several directories + // should not use '*', or it will be replaced by the next replacer + + // Check if it is not the last `'/**'` + (_, index, str) => index + 6 < str.length + + // case: /**/ + // > A slash followed by two consecutive asterisks then a slash matches + // > zero or more directories. + // > For example, "a/**/b" matches "a/b", "a/x/b", "a/x/y/b" and so on. + // '/**/' + ? '(?:\\/[^\\/]+)*' + + // case: /** + // > A trailing `"/**"` matches everything inside. + + // #21: everything inside but it should not include the current folder + : '\\/.+' + ], + + // normal intermediate wildcards + [ + // Never replace escaped '*' + // ignore rule '\*' will match the path '*' + + // 'abc.*/' -> go + // 'abc.*' -> skip this rule, + // coz trailing single wildcard will be handed by [trailing wildcard] + /(^|[^\\]+)(\\\*)+(?=.+)/g, + + // '*.js' matches '.js' + // '*.js' doesn't match 'abc' + (_, p1, p2) => { + // 1. + // > An asterisk "*" matches anything except a slash. + // 2. + // > Other consecutive asterisks are considered regular asterisks + // > and will match according to the previous rules. + const unescaped = p2.replace(/\\\*/g, '[^\\/]*') + return p1 + unescaped + } + ], + + [ + // unescape, revert step 3 except for back slash + // For example, if a user escape a '\\*', + // after step 3, the result will be '\\\\\\*' + /\\\\\\(?=[$.|*+(){^])/g, + () => ESCAPE + ], + + [ + // '\\\\' -> '\\' + /\\\\/g, + () => ESCAPE + ], + + [ + // > The range notation, e.g. [a-zA-Z], + // > can be used to match one of the characters in a range. + + // `\` is escaped by step 3 + /(\\)?\[([^\]/]*?)(\\*)($|\])/g, + (match, leadEscape, range, endEscape, close) => leadEscape === ESCAPE + // '\\[bar]' -> '\\\\[bar\\]' + ? `\\[${range}${cleanRangeBackSlash(endEscape)}${close}` + : close === ']' + ? endEscape.length % 2 === 0 + // A normal case, and it is a range notation + // '[bar]' + // '[bar\\\\]' + ? `[${sanitizeRange(range)}${endEscape}]` + // Invalid range notaton + // '[bar\\]' -> '[bar\\\\]' + : '[]' + : '[]' + ], + + // ending + [ + // 'js' will not match 'js.' + // 'ab' will not match 'abc' + /(?:[^*])$/, + + // WTF! + // https://git-scm.com/docs/gitignore + // changes in [2.22.1](https://git-scm.com/docs/gitignore/2.22.1) + // which re-fixes #24, #38 + + // > If there is a separator at the end of the pattern then the pattern + // > will only match directories, otherwise the pattern can match both + // > files and directories. + + // 'js*' will not match 'a.js' + // 'js/' will not match 'a.js' + // 'js' will match 'a.js' and 'a.js/' + match => /\/$/.test(match) + // foo/ will not match 'foo' + ? `${match}$` + // foo matches 'foo' and 'foo/' + : `${match}(?=$|\\/$)` + ], + + // trailing wildcard + [ + /(\^|\\\/)?\\\*$/, + (_, p1) => { + const prefix = p1 + // '\^': + // '/*' does not match EMPTY + // '/*' does not match everything + + // '\\\/': + // 'abc/*' does not match 'abc/' + ? `${p1}[^/]+` + + // 'a*' matches 'a' + // 'a*' matches 'aa' + : '[^/]*' + + return `${prefix}(?=$|\\/$)` + } + ], +] + +// A simple cache, because an ignore rule only has only one certain meaning +const regexCache = Object.create(null) + +// @param {pattern} +const makeRegex = (pattern, ignoreCase) => { + let source = regexCache[pattern] + + if (!source) { + source = REPLACERS.reduce( + (prev, [matcher, replacer]) => + prev.replace(matcher, replacer.bind(pattern)), + pattern + ) + regexCache[pattern] = source + } + + return ignoreCase + ? new RegExp(source, 'i') + : new RegExp(source) +} + +const isString = subject => typeof subject === 'string' + +// > A blank line matches no files, so it can serve as a separator for readability. +const checkPattern = pattern => pattern + && isString(pattern) + && !REGEX_TEST_BLANK_LINE.test(pattern) + && !REGEX_INVALID_TRAILING_BACKSLASH.test(pattern) + + // > A line starting with # serves as a comment. + && pattern.indexOf('#') !== 0 + +const splitPattern = pattern => pattern.split(REGEX_SPLITALL_CRLF) + +class IgnoreRule { + constructor ( + origin, + pattern, + negative, + regex + ) { + this.origin = origin + this.pattern = pattern + this.negative = negative + this.regex = regex + } +} + +const createRule = (pattern, ignoreCase) => { + const origin = pattern + let negative = false + + // > An optional prefix "!" which negates the pattern; + if (pattern.indexOf('!') === 0) { + negative = true + pattern = pattern.substr(1) + } + + pattern = pattern + // > Put a backslash ("\") in front of the first "!" for patterns that + // > begin with a literal "!", for example, `"\!important!.txt"`. + .replace(REGEX_REPLACE_LEADING_EXCAPED_EXCLAMATION, '!') + // > Put a backslash ("\") in front of the first hash for patterns that + // > begin with a hash. + .replace(REGEX_REPLACE_LEADING_EXCAPED_HASH, '#') + + const regex = makeRegex(pattern, ignoreCase) + + return new IgnoreRule( + origin, + pattern, + negative, + regex + ) +} + +const throwError = (message, Ctor) => { + throw new Ctor(message) +} + +const checkPath = (path, originalPath, doThrow) => { + if (!isString(path)) { + return doThrow( + `path must be a string, but got \`${originalPath}\``, + TypeError + ) + } + + // We don't know if we should ignore EMPTY, so throw + if (!path) { + return doThrow(`path must not be empty`, TypeError) + } + + // Check if it is a relative path + if (checkPath.isNotRelative(path)) { + const r = '`path.relative()`d' + return doThrow( + `path should be a ${r} string, but got "${originalPath}"`, + RangeError + ) + } + + return true +} + +const isNotRelative = path => REGEX_TEST_INVALID_PATH.test(path) + +checkPath.isNotRelative = isNotRelative +checkPath.convert = p => p + +class Ignore { + constructor ({ + ignorecase = true, + ignoreCase = ignorecase, + allowRelativePaths = false + } = {}) { + define(this, KEY_IGNORE, true) + + this._rules = [] + this._ignoreCase = ignoreCase + this._allowRelativePaths = allowRelativePaths + this._initCache() + } + + _initCache () { + this._ignoreCache = Object.create(null) + this._testCache = Object.create(null) + } + + _addPattern (pattern) { + // #32 + if (pattern && pattern[KEY_IGNORE]) { + this._rules = this._rules.concat(pattern._rules) + this._added = true + return + } + + if (checkPattern(pattern)) { + const rule = createRule(pattern, this._ignoreCase) + this._added = true + this._rules.push(rule) + } + } + + // @param {Array | string | Ignore} pattern + add (pattern) { + this._added = false + + makeArray( + isString(pattern) + ? splitPattern(pattern) + : pattern + ).forEach(this._addPattern, this) + + // Some rules have just added to the ignore, + // making the behavior changed. + if (this._added) { + this._initCache() + } + + return this + } + + // legacy + addPattern (pattern) { + return this.add(pattern) + } + + // | ignored : unignored + // negative | 0:0 | 0:1 | 1:0 | 1:1 + // -------- | ------- | ------- | ------- | -------- + // 0 | TEST | TEST | SKIP | X + // 1 | TESTIF | SKIP | TEST | X + + // - SKIP: always skip + // - TEST: always test + // - TESTIF: only test if checkUnignored + // - X: that never happen + + // @param {boolean} whether should check if the path is unignored, + // setting `checkUnignored` to `false` could reduce additional + // path matching. + + // @returns {TestResult} true if a file is ignored + _testOne (path, checkUnignored) { + let ignored = false + let unignored = false + + this._rules.forEach(rule => { + const {negative} = rule + if ( + unignored === negative && ignored !== unignored + || negative && !ignored && !unignored && !checkUnignored + ) { + return + } + + const matched = rule.regex.test(path) + + if (matched) { + ignored = !negative + unignored = negative + } + }) + + return { + ignored, + unignored + } + } + + // @returns {TestResult} + _test (originalPath, cache, checkUnignored, slices) { + const path = originalPath + // Supports nullable path + && checkPath.convert(originalPath) + + checkPath( + path, + originalPath, + this._allowRelativePaths + ? RETURN_FALSE + : throwError + ) + + return this._t(path, cache, checkUnignored, slices) + } + + _t (path, cache, checkUnignored, slices) { + if (path in cache) { + return cache[path] + } + + if (!slices) { + // path/to/a.js + // ['path', 'to', 'a.js'] + slices = path.split(SLASH) + } + + slices.pop() + + // If the path has no parent directory, just test it + if (!slices.length) { + return cache[path] = this._testOne(path, checkUnignored) + } + + const parent = this._t( + slices.join(SLASH) + SLASH, + cache, + checkUnignored, + slices + ) + + // If the path contains a parent directory, check the parent first + return cache[path] = parent.ignored + // > It is not possible to re-include a file if a parent directory of + // > that file is excluded. + ? parent + : this._testOne(path, checkUnignored) + } + + ignores (path) { + return this._test(path, this._ignoreCache, false).ignored + } + + createFilter () { + return path => !this.ignores(path) + } + + filter (paths) { + return makeArray(paths).filter(this.createFilter()) + } + + // @returns {TestResult} + test (path) { + return this._test(path, this._testCache, true) + } +} + +const factory = options => new Ignore(options) + +const isPathValid = path => + checkPath(path && checkPath.convert(path), path, RETURN_FALSE) + +factory.isPathValid = isPathValid + +// Fixes typescript +factory.default = factory + +module.exports = factory + +// Windows +// -------------------------------------------------------------- +/* istanbul ignore if */ +if ( + // Detect `process` so that it can run in browsers. + typeof process !== 'undefined' + && ( + process.env && process.env.IGNORE_TEST_WIN32 + || process.platform === 'win32' + ) +) { + /* eslint no-control-regex: "off" */ + const makePosix = str => /^\\\\\?\\/.test(str) + || /["<>|\u0000-\u001F]+/u.test(str) + ? str + : str.replace(/\\/g, '/') + + checkPath.convert = makePosix + + // 'C:\\foo' <- 'C:\\foo' has been converted to 'C:/' + // 'd:\\foo' + const REGIX_IS_WINDOWS_PATH_ABSOLUTE = /^[a-z]:\//i + checkPath.isNotRelative = path => + REGIX_IS_WINDOWS_PATH_ABSOLUTE.test(path) + || isNotRelative(path) +} diff --git a/novas/novacore-zephyr/groq-code-cli/node_modules/ignore/legacy.js b/novas/novacore-zephyr/groq-code-cli/node_modules/ignore/legacy.js new file mode 100644 index 0000000000000000000000000000000000000000..de3f66ce89151854cf3269eabf3080a6398c93f0 --- /dev/null +++ b/novas/novacore-zephyr/groq-code-cli/node_modules/ignore/legacy.js @@ -0,0 +1,559 @@ +"use strict"; + +function _typeof(obj) { "@babel/helpers - typeof"; return _typeof = "function" == typeof Symbol && "symbol" == typeof Symbol.iterator ? function (obj) { return typeof obj; } : function (obj) { return obj && "function" == typeof Symbol && obj.constructor === Symbol && obj !== Symbol.prototype ? "symbol" : typeof obj; }, _typeof(obj); } +function _defineProperties(target, props) { for (var i = 0; i < props.length; i++) { var descriptor = props[i]; descriptor.enumerable = descriptor.enumerable || false; descriptor.configurable = true; if ("value" in descriptor) descriptor.writable = true; Object.defineProperty(target, _toPropertyKey(descriptor.key), descriptor); } } +function _createClass(Constructor, protoProps, staticProps) { if (protoProps) _defineProperties(Constructor.prototype, protoProps); if (staticProps) _defineProperties(Constructor, staticProps); Object.defineProperty(Constructor, "prototype", { writable: false }); return Constructor; } +function _toPropertyKey(arg) { var key = _toPrimitive(arg, "string"); return _typeof(key) === "symbol" ? key : String(key); } +function _toPrimitive(input, hint) { if (_typeof(input) !== "object" || input === null) return input; var prim = input[Symbol.toPrimitive]; if (prim !== undefined) { var res = prim.call(input, hint || "default"); if (_typeof(res) !== "object") return res; throw new TypeError("@@toPrimitive must return a primitive value."); } return (hint === "string" ? String : Number)(input); } +function _classCallCheck(instance, Constructor) { if (!(instance instanceof Constructor)) { throw new TypeError("Cannot call a class as a function"); } } +function _slicedToArray(arr, i) { return _arrayWithHoles(arr) || _iterableToArrayLimit(arr, i) || _unsupportedIterableToArray(arr, i) || _nonIterableRest(); } +function _nonIterableRest() { throw new TypeError("Invalid attempt to destructure non-iterable instance.\nIn order to be iterable, non-array objects must have a [Symbol.iterator]() method."); } +function _unsupportedIterableToArray(o, minLen) { if (!o) return; if (typeof o === "string") return _arrayLikeToArray(o, minLen); var n = Object.prototype.toString.call(o).slice(8, -1); if (n === "Object" && o.constructor) n = o.constructor.name; if (n === "Map" || n === "Set") return Array.from(o); if (n === "Arguments" || /^(?:Ui|I)nt(?:8|16|32)(?:Clamped)?Array$/.test(n)) return _arrayLikeToArray(o, minLen); } +function _arrayLikeToArray(arr, len) { if (len == null || len > arr.length) len = arr.length; for (var i = 0, arr2 = new Array(len); i < len; i++) arr2[i] = arr[i]; return arr2; } +function _iterableToArrayLimit(arr, i) { var _i = null == arr ? null : "undefined" != typeof Symbol && arr[Symbol.iterator] || arr["@@iterator"]; if (null != _i) { var _s, _e, _x, _r, _arr = [], _n = !0, _d = !1; try { if (_x = (_i = _i.call(arr)).next, 0 === i) { if (Object(_i) !== _i) return; _n = !1; } else for (; !(_n = (_s = _x.call(_i)).done) && (_arr.push(_s.value), _arr.length !== i); _n = !0); } catch (err) { _d = !0, _e = err; } finally { try { if (!_n && null != _i["return"] && (_r = _i["return"](), Object(_r) !== _r)) return; } finally { if (_d) throw _e; } } return _arr; } } +function _arrayWithHoles(arr) { if (Array.isArray(arr)) return arr; } +// A simple implementation of make-array +function makeArray(subject) { + return Array.isArray(subject) ? subject : [subject]; +} +var EMPTY = ''; +var SPACE = ' '; +var ESCAPE = '\\'; +var REGEX_TEST_BLANK_LINE = /^\s+$/; +var REGEX_INVALID_TRAILING_BACKSLASH = /(?:[^\\]|^)\\$/; +var REGEX_REPLACE_LEADING_EXCAPED_EXCLAMATION = /^\\!/; +var REGEX_REPLACE_LEADING_EXCAPED_HASH = /^\\#/; +var REGEX_SPLITALL_CRLF = /\r?\n/g; +// /foo, +// ./foo, +// ../foo, +// . +// .. +var REGEX_TEST_INVALID_PATH = /^\.*\/|^\.+$/; +var SLASH = '/'; + +// Do not use ternary expression here, since "istanbul ignore next" is buggy +var TMP_KEY_IGNORE = 'node-ignore'; +/* istanbul ignore else */ +if (typeof Symbol !== 'undefined') { + TMP_KEY_IGNORE = Symbol["for"]('node-ignore'); +} +var KEY_IGNORE = TMP_KEY_IGNORE; +var define = function define(object, key, value) { + return Object.defineProperty(object, key, { + value: value + }); +}; +var REGEX_REGEXP_RANGE = /([0-z])-([0-z])/g; +var RETURN_FALSE = function RETURN_FALSE() { + return false; +}; + +// Sanitize the range of a regular expression +// The cases are complicated, see test cases for details +var sanitizeRange = function sanitizeRange(range) { + return range.replace(REGEX_REGEXP_RANGE, function (match, from, to) { + return from.charCodeAt(0) <= to.charCodeAt(0) ? match + // Invalid range (out of order) which is ok for gitignore rules but + // fatal for JavaScript regular expression, so eliminate it. + : EMPTY; + }); +}; + +// See fixtures #59 +var cleanRangeBackSlash = function cleanRangeBackSlash(slashes) { + var length = slashes.length; + return slashes.slice(0, length - length % 2); +}; + +// > If the pattern ends with a slash, +// > it is removed for the purpose of the following description, +// > but it would only find a match with a directory. +// > In other words, foo/ will match a directory foo and paths underneath it, +// > but will not match a regular file or a symbolic link foo +// > (this is consistent with the way how pathspec works in general in Git). +// '`foo/`' will not match regular file '`foo`' or symbolic link '`foo`' +// -> ignore-rules will not deal with it, because it costs extra `fs.stat` call +// you could use option `mark: true` with `glob` + +// '`foo/`' should not continue with the '`..`' +var REPLACERS = [[ +// remove BOM +// TODO: +// Other similar zero-width characters? +/^\uFEFF/, function () { + return EMPTY; +}], +// > Trailing spaces are ignored unless they are quoted with backslash ("\") +[ +// (a\ ) -> (a ) +// (a ) -> (a) +// (a ) -> (a) +// (a \ ) -> (a ) +/((?:\\\\)*?)(\\?\s+)$/, function (_, m1, m2) { + return m1 + (m2.indexOf('\\') === 0 ? SPACE : EMPTY); +}], +// replace (\ ) with ' ' +// (\ ) -> ' ' +// (\\ ) -> '\\ ' +// (\\\ ) -> '\\ ' +[/(\\+?)\s/g, function (_, m1) { + var length = m1.length; + return m1.slice(0, length - length % 2) + SPACE; +}], +// Escape metacharacters +// which is written down by users but means special for regular expressions. + +// > There are 12 characters with special meanings: +// > - the backslash \, +// > - the caret ^, +// > - the dollar sign $, +// > - the period or dot ., +// > - the vertical bar or pipe symbol |, +// > - the question mark ?, +// > - the asterisk or star *, +// > - the plus sign +, +// > - the opening parenthesis (, +// > - the closing parenthesis ), +// > - and the opening square bracket [, +// > - the opening curly brace {, +// > These special characters are often called "metacharacters". +[/[\\$.|*+(){^]/g, function (match) { + return "\\".concat(match); +}], [ +// > a question mark (?) matches a single character +/(?!\\)\?/g, function () { + return '[^/]'; +}], +// leading slash +[ +// > A leading slash matches the beginning of the pathname. +// > For example, "/*.c" matches "cat-file.c" but not "mozilla-sha1/sha1.c". +// A leading slash matches the beginning of the pathname +/^\//, function () { + return '^'; +}], +// replace special metacharacter slash after the leading slash +[/\//g, function () { + return '\\/'; +}], [ +// > A leading "**" followed by a slash means match in all directories. +// > For example, "**/foo" matches file or directory "foo" anywhere, +// > the same as pattern "foo". +// > "**/foo/bar" matches file or directory "bar" anywhere that is directly +// > under directory "foo". +// Notice that the '*'s have been replaced as '\\*' +/^\^*\\\*\\\*\\\//, +// '**/foo' <-> 'foo' +function () { + return '^(?:.*\\/)?'; +}], +// starting +[ +// there will be no leading '/' +// (which has been replaced by section "leading slash") +// If starts with '**', adding a '^' to the regular expression also works +/^(?=[^^])/, function startingReplacer() { + // If has a slash `/` at the beginning or middle + return !/\/(?!$)/.test(this) + // > Prior to 2.22.1 + // > If the pattern does not contain a slash /, + // > Git treats it as a shell glob pattern + // Actually, if there is only a trailing slash, + // git also treats it as a shell glob pattern + + // After 2.22.1 (compatible but clearer) + // > If there is a separator at the beginning or middle (or both) + // > of the pattern, then the pattern is relative to the directory + // > level of the particular .gitignore file itself. + // > Otherwise the pattern may also match at any level below + // > the .gitignore level. + ? '(?:^|\\/)' + + // > Otherwise, Git treats the pattern as a shell glob suitable for + // > consumption by fnmatch(3) + : '^'; +}], +// two globstars +[ +// Use lookahead assertions so that we could match more than one `'/**'` +/\\\/\\\*\\\*(?=\\\/|$)/g, +// Zero, one or several directories +// should not use '*', or it will be replaced by the next replacer + +// Check if it is not the last `'/**'` +function (_, index, str) { + return index + 6 < str.length + + // case: /**/ + // > A slash followed by two consecutive asterisks then a slash matches + // > zero or more directories. + // > For example, "a/**/b" matches "a/b", "a/x/b", "a/x/y/b" and so on. + // '/**/' + ? '(?:\\/[^\\/]+)*' + + // case: /** + // > A trailing `"/**"` matches everything inside. + + // #21: everything inside but it should not include the current folder + : '\\/.+'; +}], +// normal intermediate wildcards +[ +// Never replace escaped '*' +// ignore rule '\*' will match the path '*' + +// 'abc.*/' -> go +// 'abc.*' -> skip this rule, +// coz trailing single wildcard will be handed by [trailing wildcard] +/(^|[^\\]+)(\\\*)+(?=.+)/g, +// '*.js' matches '.js' +// '*.js' doesn't match 'abc' +function (_, p1, p2) { + // 1. + // > An asterisk "*" matches anything except a slash. + // 2. + // > Other consecutive asterisks are considered regular asterisks + // > and will match according to the previous rules. + var unescaped = p2.replace(/\\\*/g, '[^\\/]*'); + return p1 + unescaped; +}], [ +// unescape, revert step 3 except for back slash +// For example, if a user escape a '\\*', +// after step 3, the result will be '\\\\\\*' +/\\\\\\(?=[$.|*+(){^])/g, function () { + return ESCAPE; +}], [ +// '\\\\' -> '\\' +/\\\\/g, function () { + return ESCAPE; +}], [ +// > The range notation, e.g. [a-zA-Z], +// > can be used to match one of the characters in a range. + +// `\` is escaped by step 3 +/(\\)?\[([^\]/]*?)(\\*)($|\])/g, function (match, leadEscape, range, endEscape, close) { + return leadEscape === ESCAPE + // '\\[bar]' -> '\\\\[bar\\]' + ? "\\[".concat(range).concat(cleanRangeBackSlash(endEscape)).concat(close) : close === ']' ? endEscape.length % 2 === 0 + // A normal case, and it is a range notation + // '[bar]' + // '[bar\\\\]' + ? "[".concat(sanitizeRange(range)).concat(endEscape, "]") // Invalid range notaton + // '[bar\\]' -> '[bar\\\\]' + : '[]' : '[]'; +}], +// ending +[ +// 'js' will not match 'js.' +// 'ab' will not match 'abc' +/(?:[^*])$/, +// WTF! +// https://git-scm.com/docs/gitignore +// changes in [2.22.1](https://git-scm.com/docs/gitignore/2.22.1) +// which re-fixes #24, #38 + +// > If there is a separator at the end of the pattern then the pattern +// > will only match directories, otherwise the pattern can match both +// > files and directories. + +// 'js*' will not match 'a.js' +// 'js/' will not match 'a.js' +// 'js' will match 'a.js' and 'a.js/' +function (match) { + return /\/$/.test(match) + // foo/ will not match 'foo' + ? "".concat(match, "$") // foo matches 'foo' and 'foo/' + : "".concat(match, "(?=$|\\/$)"); +}], +// trailing wildcard +[/(\^|\\\/)?\\\*$/, function (_, p1) { + var prefix = p1 + // '\^': + // '/*' does not match EMPTY + // '/*' does not match everything + + // '\\\/': + // 'abc/*' does not match 'abc/' + ? "".concat(p1, "[^/]+") // 'a*' matches 'a' + // 'a*' matches 'aa' + : '[^/]*'; + return "".concat(prefix, "(?=$|\\/$)"); +}]]; + +// A simple cache, because an ignore rule only has only one certain meaning +var regexCache = Object.create(null); + +// @param {pattern} +var makeRegex = function makeRegex(pattern, ignoreCase) { + var source = regexCache[pattern]; + if (!source) { + source = REPLACERS.reduce(function (prev, _ref) { + var _ref2 = _slicedToArray(_ref, 2), + matcher = _ref2[0], + replacer = _ref2[1]; + return prev.replace(matcher, replacer.bind(pattern)); + }, pattern); + regexCache[pattern] = source; + } + return ignoreCase ? new RegExp(source, 'i') : new RegExp(source); +}; +var isString = function isString(subject) { + return typeof subject === 'string'; +}; + +// > A blank line matches no files, so it can serve as a separator for readability. +var checkPattern = function checkPattern(pattern) { + return pattern && isString(pattern) && !REGEX_TEST_BLANK_LINE.test(pattern) && !REGEX_INVALID_TRAILING_BACKSLASH.test(pattern) + + // > A line starting with # serves as a comment. + && pattern.indexOf('#') !== 0; +}; +var splitPattern = function splitPattern(pattern) { + return pattern.split(REGEX_SPLITALL_CRLF); +}; +var IgnoreRule = /*#__PURE__*/_createClass(function IgnoreRule(origin, pattern, negative, regex) { + _classCallCheck(this, IgnoreRule); + this.origin = origin; + this.pattern = pattern; + this.negative = negative; + this.regex = regex; +}); +var createRule = function createRule(pattern, ignoreCase) { + var origin = pattern; + var negative = false; + + // > An optional prefix "!" which negates the pattern; + if (pattern.indexOf('!') === 0) { + negative = true; + pattern = pattern.substr(1); + } + pattern = pattern + // > Put a backslash ("\") in front of the first "!" for patterns that + // > begin with a literal "!", for example, `"\!important!.txt"`. + .replace(REGEX_REPLACE_LEADING_EXCAPED_EXCLAMATION, '!') + // > Put a backslash ("\") in front of the first hash for patterns that + // > begin with a hash. + .replace(REGEX_REPLACE_LEADING_EXCAPED_HASH, '#'); + var regex = makeRegex(pattern, ignoreCase); + return new IgnoreRule(origin, pattern, negative, regex); +}; +var throwError = function throwError(message, Ctor) { + throw new Ctor(message); +}; +var checkPath = function checkPath(path, originalPath, doThrow) { + if (!isString(path)) { + return doThrow("path must be a string, but got `".concat(originalPath, "`"), TypeError); + } + + // We don't know if we should ignore EMPTY, so throw + if (!path) { + return doThrow("path must not be empty", TypeError); + } + + // Check if it is a relative path + if (checkPath.isNotRelative(path)) { + var r = '`path.relative()`d'; + return doThrow("path should be a ".concat(r, " string, but got \"").concat(originalPath, "\""), RangeError); + } + return true; +}; +var isNotRelative = function isNotRelative(path) { + return REGEX_TEST_INVALID_PATH.test(path); +}; +checkPath.isNotRelative = isNotRelative; +checkPath.convert = function (p) { + return p; +}; +var Ignore = /*#__PURE__*/function () { + function Ignore() { + var _ref3 = arguments.length > 0 && arguments[0] !== undefined ? arguments[0] : {}, + _ref3$ignorecase = _ref3.ignorecase, + ignorecase = _ref3$ignorecase === void 0 ? true : _ref3$ignorecase, + _ref3$ignoreCase = _ref3.ignoreCase, + ignoreCase = _ref3$ignoreCase === void 0 ? ignorecase : _ref3$ignoreCase, + _ref3$allowRelativePa = _ref3.allowRelativePaths, + allowRelativePaths = _ref3$allowRelativePa === void 0 ? false : _ref3$allowRelativePa; + _classCallCheck(this, Ignore); + define(this, KEY_IGNORE, true); + this._rules = []; + this._ignoreCase = ignoreCase; + this._allowRelativePaths = allowRelativePaths; + this._initCache(); + } + _createClass(Ignore, [{ + key: "_initCache", + value: function _initCache() { + this._ignoreCache = Object.create(null); + this._testCache = Object.create(null); + } + }, { + key: "_addPattern", + value: function _addPattern(pattern) { + // #32 + if (pattern && pattern[KEY_IGNORE]) { + this._rules = this._rules.concat(pattern._rules); + this._added = true; + return; + } + if (checkPattern(pattern)) { + var rule = createRule(pattern, this._ignoreCase); + this._added = true; + this._rules.push(rule); + } + } + + // @param {Array | string | Ignore} pattern + }, { + key: "add", + value: function add(pattern) { + this._added = false; + makeArray(isString(pattern) ? splitPattern(pattern) : pattern).forEach(this._addPattern, this); + + // Some rules have just added to the ignore, + // making the behavior changed. + if (this._added) { + this._initCache(); + } + return this; + } + + // legacy + }, { + key: "addPattern", + value: function addPattern(pattern) { + return this.add(pattern); + } + + // | ignored : unignored + // negative | 0:0 | 0:1 | 1:0 | 1:1 + // -------- | ------- | ------- | ------- | -------- + // 0 | TEST | TEST | SKIP | X + // 1 | TESTIF | SKIP | TEST | X + + // - SKIP: always skip + // - TEST: always test + // - TESTIF: only test if checkUnignored + // - X: that never happen + + // @param {boolean} whether should check if the path is unignored, + // setting `checkUnignored` to `false` could reduce additional + // path matching. + + // @returns {TestResult} true if a file is ignored + }, { + key: "_testOne", + value: function _testOne(path, checkUnignored) { + var ignored = false; + var unignored = false; + this._rules.forEach(function (rule) { + var negative = rule.negative; + if (unignored === negative && ignored !== unignored || negative && !ignored && !unignored && !checkUnignored) { + return; + } + var matched = rule.regex.test(path); + if (matched) { + ignored = !negative; + unignored = negative; + } + }); + return { + ignored: ignored, + unignored: unignored + }; + } + + // @returns {TestResult} + }, { + key: "_test", + value: function _test(originalPath, cache, checkUnignored, slices) { + var path = originalPath + // Supports nullable path + && checkPath.convert(originalPath); + checkPath(path, originalPath, this._allowRelativePaths ? RETURN_FALSE : throwError); + return this._t(path, cache, checkUnignored, slices); + } + }, { + key: "_t", + value: function _t(path, cache, checkUnignored, slices) { + if (path in cache) { + return cache[path]; + } + if (!slices) { + // path/to/a.js + // ['path', 'to', 'a.js'] + slices = path.split(SLASH); + } + slices.pop(); + + // If the path has no parent directory, just test it + if (!slices.length) { + return cache[path] = this._testOne(path, checkUnignored); + } + var parent = this._t(slices.join(SLASH) + SLASH, cache, checkUnignored, slices); + + // If the path contains a parent directory, check the parent first + return cache[path] = parent.ignored + // > It is not possible to re-include a file if a parent directory of + // > that file is excluded. + ? parent : this._testOne(path, checkUnignored); + } + }, { + key: "ignores", + value: function ignores(path) { + return this._test(path, this._ignoreCache, false).ignored; + } + }, { + key: "createFilter", + value: function createFilter() { + var _this = this; + return function (path) { + return !_this.ignores(path); + }; + } + }, { + key: "filter", + value: function filter(paths) { + return makeArray(paths).filter(this.createFilter()); + } + + // @returns {TestResult} + }, { + key: "test", + value: function test(path) { + return this._test(path, this._testCache, true); + } + }]); + return Ignore; +}(); +var factory = function factory(options) { + return new Ignore(options); +}; +var isPathValid = function isPathValid(path) { + return checkPath(path && checkPath.convert(path), path, RETURN_FALSE); +}; +factory.isPathValid = isPathValid; + +// Fixes typescript +factory["default"] = factory; +module.exports = factory; + +// Windows +// -------------------------------------------------------------- +/* istanbul ignore if */ +if ( +// Detect `process` so that it can run in browsers. +typeof process !== 'undefined' && (process.env && process.env.IGNORE_TEST_WIN32 || process.platform === 'win32')) { + /* eslint no-control-regex: "off" */ + var makePosix = function makePosix(str) { + return /^\\\\\?\\/.test(str) || /[\0-\x1F"<>\|]+/.test(str) ? str : str.replace(/\\/g, '/'); + }; + checkPath.convert = makePosix; + + // 'C:\\foo' <- 'C:\\foo' has been converted to 'C:/' + // 'd:\\foo' + var REGIX_IS_WINDOWS_PATH_ABSOLUTE = /^[a-z]:\//i; + checkPath.isNotRelative = function (path) { + return REGIX_IS_WINDOWS_PATH_ABSOLUTE.test(path) || isNotRelative(path); + }; +} diff --git a/novas/novacore-zephyr/groq-code-cli/node_modules/ignore/package.json b/novas/novacore-zephyr/groq-code-cli/node_modules/ignore/package.json new file mode 100644 index 0000000000000000000000000000000000000000..b7f684e98b5bd90035f08415c3187be330d43b52 --- /dev/null +++ b/novas/novacore-zephyr/groq-code-cli/node_modules/ignore/package.json @@ -0,0 +1,74 @@ +{ + "name": "ignore", + "version": "5.3.2", + "description": "Ignore is a manager and filter for .gitignore rules, the one used by eslint, gitbook and many others.", + "files": [ + "legacy.js", + "index.js", + "index.d.ts", + "LICENSE-MIT" + ], + "scripts": { + "prepublishOnly": "npm run build", + "build": "babel -o legacy.js index.js", + "test:lint": "eslint .", + "test:tsc": "tsc ./test/ts/simple.ts --lib ES6", + "test:ts": "node ./test/ts/simple.js", + "tap": "tap --reporter classic", + "test:git": "npm run tap test/git-check-ignore.js", + "test:ignore": "npm run tap test/ignore.js", + "test:ignore:only": "IGNORE_ONLY_IGNORES=1 npm run tap test/ignore.js", + "test:others": "npm run tap test/others.js", + "test:cases": "npm run tap test/*.js -- --coverage", + "test:no-coverage": "npm run tap test/*.js -- --no-check-coverage", + "test:only": "npm run test:lint && npm run test:tsc && npm run test:ts && npm run test:cases", + "test": "npm run test:only", + "test:win32": "IGNORE_TEST_WIN32=1 npm run test", + "report": "tap --coverage-report=html", + "posttest": "npm run report && codecov" + }, + "repository": { + "type": "git", + "url": "git@github.com:kaelzhang/node-ignore.git" + }, + "keywords": [ + "ignore", + ".gitignore", + "gitignore", + "npmignore", + "rules", + "manager", + "filter", + "regexp", + "regex", + "fnmatch", + "glob", + "asterisks", + "regular-expression" + ], + "author": "kael", + "license": "MIT", + "bugs": { + "url": "https://github.com/kaelzhang/node-ignore/issues" + }, + "devDependencies": { + "@babel/cli": "^7.22.9", + "@babel/core": "^7.22.9", + "@babel/preset-env": "^7.22.9", + "codecov": "^3.8.2", + "debug": "^4.3.4", + "eslint": "^8.46.0", + "eslint-config-ostai": "^3.0.0", + "eslint-plugin-import": "^2.28.0", + "mkdirp": "^3.0.1", + "pre-suf": "^1.1.1", + "rimraf": "^6.0.1", + "spawn-sync": "^2.0.0", + "tap": "^16.3.9", + "tmp": "0.2.3", + "typescript": "^5.1.6" + }, + "engines": { + "node": ">= 4" + } +} diff --git a/novas/novacore-zephyr/groq-code-cli/node_modules/import-fresh/index.d.ts b/novas/novacore-zephyr/groq-code-cli/node_modules/import-fresh/index.d.ts new file mode 100644 index 0000000000000000000000000000000000000000..36d7e208bceaee9df97c360d14c7f42ca61c802e --- /dev/null +++ b/novas/novacore-zephyr/groq-code-cli/node_modules/import-fresh/index.d.ts @@ -0,0 +1,30 @@ +/** +Import a module while bypassing the cache. + +@example +``` +// foo.js +let i = 0; +module.exports = () => ++i; + +// index.js +import importFresh = require('import-fresh'); + +require('./foo')(); +//=> 1 + +require('./foo')(); +//=> 2 + +importFresh('./foo')(); +//=> 1 + +importFresh('./foo')(); +//=> 1 + +const foo = importFresh('./foo'); +``` +*/ +declare function importFresh(moduleId: string): T; + +export = importFresh; diff --git a/novas/novacore-zephyr/groq-code-cli/node_modules/import-fresh/index.js b/novas/novacore-zephyr/groq-code-cli/node_modules/import-fresh/index.js new file mode 100644 index 0000000000000000000000000000000000000000..1bed87651a1cc651c06e5ef2566c8753c6a1a7fa --- /dev/null +++ b/novas/novacore-zephyr/groq-code-cli/node_modules/import-fresh/index.js @@ -0,0 +1,34 @@ +'use strict'; +const path = require('path'); +const resolveFrom = require('resolve-from'); +const parentModule = require('parent-module'); + +module.exports = moduleId => { + if (typeof moduleId !== 'string') { + throw new TypeError('Expected a string'); + } + + const parentPath = parentModule(__filename); + + const cwd = parentPath ? path.dirname(parentPath) : __dirname; + const filePath = resolveFrom(cwd, moduleId); + + const oldModule = require.cache[filePath]; + // Delete itself from module parent + if (oldModule && oldModule.parent) { + let i = oldModule.parent.children.length; + + while (i--) { + if (oldModule.parent.children[i].id === filePath) { + oldModule.parent.children.splice(i, 1); + } + } + } + + delete require.cache[filePath]; // Delete module from cache + + const parent = require.cache[parentPath]; // If `filePath` and `parentPath` are the same, cache will already be deleted so we won't get a memory leak in next step + + // In case cache doesn't have parent, fall back to normal require + return parent === undefined || parent.require === undefined ? require(filePath) : parent.require(filePath); +}; diff --git a/novas/novacore-zephyr/groq-code-cli/node_modules/import-fresh/license b/novas/novacore-zephyr/groq-code-cli/node_modules/import-fresh/license new file mode 100644 index 0000000000000000000000000000000000000000..fa7ceba3eb4a9657a9db7f3ffca4e4e97a9019de --- /dev/null +++ b/novas/novacore-zephyr/groq-code-cli/node_modules/import-fresh/license @@ -0,0 +1,9 @@ +MIT License + +Copyright (c) Sindre Sorhus (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. diff --git a/novas/novacore-zephyr/groq-code-cli/node_modules/import-fresh/package.json b/novas/novacore-zephyr/groq-code-cli/node_modules/import-fresh/package.json new file mode 100644 index 0000000000000000000000000000000000000000..4e8b841669e6aae5c62bae262e2a75f7113e6bda --- /dev/null +++ b/novas/novacore-zephyr/groq-code-cli/node_modules/import-fresh/package.json @@ -0,0 +1,48 @@ +{ + "name": "import-fresh", + "version": "3.3.1", + "description": "Import a module while bypassing the cache", + "license": "MIT", + "repository": "sindresorhus/import-fresh", + "funding": "https://github.com/sponsors/sindresorhus", + "author": { + "name": "Sindre Sorhus", + "email": "sindresorhus@gmail.com", + "url": "https://sindresorhus.com" + }, + "exports": { + "types": "./index.d.ts", + "default": "./index.js" + }, + "sideEffects": false, + "engines": { + "node": ">=6" + }, + "scripts": { + "test": "xo && ava && tsd", + "heapdump": "node heapdump.js" + }, + "files": [ + "index.js", + "index.d.ts" + ], + "keywords": [ + "require", + "cache", + "uncache", + "uncached", + "module", + "fresh", + "bypass" + ], + "dependencies": { + "parent-module": "^1.0.0", + "resolve-from": "^4.0.0" + }, + "devDependencies": { + "ava": "^1.0.1", + "heapdump": "^0.3.12", + "tsd": "^0.7.3", + "xo": "^0.23.0" + } +} diff --git a/novas/novacore-zephyr/groq-code-cli/node_modules/import-fresh/readme.md b/novas/novacore-zephyr/groq-code-cli/node_modules/import-fresh/readme.md new file mode 100644 index 0000000000000000000000000000000000000000..a868bc627b67f8e07cadbb89edd8c1b711195029 --- /dev/null +++ b/novas/novacore-zephyr/groq-code-cli/node_modules/import-fresh/readme.md @@ -0,0 +1,54 @@ +# import-fresh + +> Import a module while bypassing the [cache](https://nodejs.org/api/modules.html#modules_caching) + +Useful for testing purposes when you need to freshly import a module. + +## ESM + +For ESM, you can use this snippet: + +```js +const importFresh = moduleName => import(`${moduleName}?${Date.now()}`); + +const {default: foo} = await importFresh('foo'); +``` + +**This snippet causes a memory leak, so only use it for short-lived tests.** + +## Install + +```sh +npm install import-fresh +``` + +## Usage + +```js +// foo.js +let i = 0; +module.exports = () => ++i; +``` + +```js +const importFresh = require('import-fresh'); + +require('./foo')(); +//=> 1 + +require('./foo')(); +//=> 2 + +importFresh('./foo')(); +//=> 1 + +importFresh('./foo')(); +//=> 1 +``` + +## Related + +- [clear-module](https://github.com/sindresorhus/clear-module) - Clear a module from the import cache +- [import-from](https://github.com/sindresorhus/import-from) - Import a module from a given path +- [import-cwd](https://github.com/sindresorhus/import-cwd) - Import a module from the current working directory +- [import-lazy](https://github.com/sindresorhus/import-lazy) - Import modules lazily diff --git a/novas/novacore-zephyr/groq-code-cli/node_modules/import-modules/index.js b/novas/novacore-zephyr/groq-code-cli/node_modules/import-modules/index.js new file mode 100644 index 0000000000000000000000000000000000000000..ec5f92283aedd3f3175db2198df708c30ee08016 --- /dev/null +++ b/novas/novacore-zephyr/groq-code-cli/node_modules/import-modules/index.js @@ -0,0 +1,54 @@ +'use strict'; +const fs = require('fs'); +const path = require('path'); + +// Prevent caching of this module so module.parent is always accurate. +delete require.cache[__filename]; +const parentFile = module.parent && module.parent.filename; +const parentDirectory = path.dirname(parentFile || '.'); + +// The default file extensions used by `require()`. +const fileExtensions = new Set(['.js', '.json', '.node']); + +module.exports = (directory, options) => { + directory = path.resolve(parentDirectory, directory || ''); + + options = { + camelize: true, + fileExtensions, + ...options + }; + + let files; + try { + files = fs.readdirSync(directory); + } catch (_) { + return {}; + } + + const done = new Set(); + const returnValue = {}; + + for (const fileExtension of options.fileExtensions) { + for (const file of files) { + const filenameStem = path.basename(file).replace(/\.\w+$/, ''); + const fullPath = path.join(directory, file); + + if (done.has(filenameStem) || + fullPath === parentFile || + path.extname(file) !== fileExtension || + filenameStem[0] === '_' || + filenameStem[0] === '.') { + continue; + } + + const exportKey = options.camelize ? filenameStem.replace(/[-_](\w)/g, (m, p1) => p1.toUpperCase()) : filenameStem; + + returnValue[exportKey] = require(fullPath); + done.add(filenameStem); + } + } + + return returnValue; +}; + diff --git a/novas/novacore-zephyr/groq-code-cli/node_modules/import-modules/license b/novas/novacore-zephyr/groq-code-cli/node_modules/import-modules/license new file mode 100644 index 0000000000000000000000000000000000000000..fa7ceba3eb4a9657a9db7f3ffca4e4e97a9019de --- /dev/null +++ b/novas/novacore-zephyr/groq-code-cli/node_modules/import-modules/license @@ -0,0 +1,9 @@ +MIT License + +Copyright (c) Sindre Sorhus (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. diff --git a/novas/novacore-zephyr/groq-code-cli/node_modules/import-modules/package.json b/novas/novacore-zephyr/groq-code-cli/node_modules/import-modules/package.json new file mode 100644 index 0000000000000000000000000000000000000000..a8467c128f8f8e9563609d1977259bb4e5a9b9ad --- /dev/null +++ b/novas/novacore-zephyr/groq-code-cli/node_modules/import-modules/package.json @@ -0,0 +1,44 @@ +{ + "name": "import-modules", + "version": "2.1.0", + "description": "Import all modules in a directory", + "license": "MIT", + "repository": "sindresorhus/import-files", + "funding": "https://github.com/sponsors/sindresorhus", + "author": { + "name": "Sindre Sorhus", + "email": "sindresorhus@gmail.com", + "url": "https://sindresorhus.com" + }, + "engines": { + "node": ">=8" + }, + "scripts": { + "test": "xo && ava" + }, + "files": [ + "index.js" + ], + "keywords": [ + "import", + "require", + "files", + "modules", + "all", + "directory", + "folder", + "js", + "paths", + "multiple", + "index" + ], + "devDependencies": { + "ava": "^2.4.0", + "xo": "^0.25.3" + }, + "xo": { + "ignores": [ + "fixture" + ] + } +} diff --git a/novas/novacore-zephyr/groq-code-cli/node_modules/import-modules/readme.md b/novas/novacore-zephyr/groq-code-cli/node_modules/import-modules/readme.md new file mode 100644 index 0000000000000000000000000000000000000000..f4e0e171c70cb056e367b2384509c082665b56b8 --- /dev/null +++ b/novas/novacore-zephyr/groq-code-cli/node_modules/import-modules/readme.md @@ -0,0 +1,64 @@ +# import-modules + +> Import all modules in a directory + +*This package is intentionally simple. Not interested in more features.* + +## Install + +``` +$ npm install import-modules +``` + +## Usage + +``` +. +└── directory + ├── foo-bar.js + └── baz-faz.js +``` + +```js +const importModules = require('import-modules'); + +const modules = importModules('directory'); + +console.log(modules); +//=> {fooBar: [Function], bazFaz: [Function]} +``` + +## API + +### importModules(directory?, options?) + +#### directory + +Type: `string`\ +Default: `__dirname` + +Directory to import modules from. Unless you've set the `fileExtensions` option, that means any `.js`, `.json`, `.node` files, in that order. Does not recurse. Ignores the caller file and files starting with `.` or `_`. + +#### options + +Type: `object` + +##### camelize + +Type: `boolean`\ +Default: `true` + +Convert dash-style names (`foo-bar`) and snake-style names (`foo_bar`) to camel-case (`fooBar`). + +##### fileExtensions + +Type: `string[]`\ +Default: `['.js', '.json', '.node']` + +File extensions to look for. Order matters. + +## Related + +- [import-from](https://github.com/sindresorhus/import-from) - Import a module from a given path +- [import-cwd](https://github.com/sindresorhus/import-cwd) - Import a module from the current working directory +- [import-lazy](https://github.com/sindresorhus/import-lazy) - Import a module lazily diff --git a/novas/novacore-zephyr/groq-code-cli/node_modules/imurmurhash/README.md b/novas/novacore-zephyr/groq-code-cli/node_modules/imurmurhash/README.md new file mode 100644 index 0000000000000000000000000000000000000000..f35b20a0ef5bfeb5e8159dae696f8d5034bb3bf1 --- /dev/null +++ b/novas/novacore-zephyr/groq-code-cli/node_modules/imurmurhash/README.md @@ -0,0 +1,122 @@ +iMurmurHash.js +============== + +An incremental implementation of the MurmurHash3 (32-bit) hashing algorithm for JavaScript based on [Gary Court's implementation](https://github.com/garycourt/murmurhash-js) with [kazuyukitanimura's modifications](https://github.com/kazuyukitanimura/murmurhash-js). + +This version works significantly faster than the non-incremental version if you need to hash many small strings into a single hash, since string concatenation (to build the single string to pass the non-incremental version) is fairly costly. In one case tested, using the incremental version was about 50% faster than concatenating 5-10 strings and then hashing. + +Installation +------------ + +To use iMurmurHash in the browser, [download the latest version](https://raw.github.com/jensyt/imurmurhash-js/master/imurmurhash.min.js) and include it as a script on your site. + +```html + + +``` + +--- + +To use iMurmurHash in Node.js, install the module using NPM: + +```bash +npm install imurmurhash +``` + +Then simply include it in your scripts: + +```javascript +MurmurHash3 = require('imurmurhash'); +``` + +Quick Example +------------- + +```javascript +// Create the initial hash +var hashState = MurmurHash3('string'); + +// Incrementally add text +hashState.hash('more strings'); +hashState.hash('even more strings'); + +// All calls can be chained if desired +hashState.hash('and').hash('some').hash('more'); + +// Get a result +hashState.result(); +// returns 0xe4ccfe6b +``` + +Functions +--------- + +### MurmurHash3 ([string], [seed]) +Get a hash state object, optionally initialized with the given _string_ and _seed_. _Seed_ must be a positive integer if provided. Calling this function without the `new` keyword will return a cached state object that has been reset. This is safe to use as long as the object is only used from a single thread and no other hashes are created while operating on this one. If this constraint cannot be met, you can use `new` to create a new state object. For example: + +```javascript +// Use the cached object, calling the function again will return the same +// object (but reset, so the current state would be lost) +hashState = MurmurHash3(); +... + +// Create a new object that can be safely used however you wish. Calling the +// function again will simply return a new state object, and no state loss +// will occur, at the cost of creating more objects. +hashState = new MurmurHash3(); +``` + +Both methods can be mixed however you like if you have different use cases. + +--- + +### MurmurHash3.prototype.hash (string) +Incrementally add _string_ to the hash. This can be called as many times as you want for the hash state object, including after a call to `result()`. Returns `this` so calls can be chained. + +--- + +### MurmurHash3.prototype.result () +Get the result of the hash as a 32-bit positive integer. This performs the tail and finalizer portions of the algorithm, but does not store the result in the state object. This means that it is perfectly safe to get results and then continue adding strings via `hash`. + +```javascript +// Do the whole string at once +MurmurHash3('this is a test string').result(); +// 0x70529328 + +// Do part of the string, get a result, then the other part +var m = MurmurHash3('this is a'); +m.result(); +// 0xbfc4f834 +m.hash(' test string').result(); +// 0x70529328 (same as above) +``` + +--- + +### MurmurHash3.prototype.reset ([seed]) +Reset the state object for reuse, optionally using the given _seed_ (defaults to 0 like the constructor). Returns `this` so calls can be chained. + +--- + +License (MIT) +------------- +Copyright (c) 2013 Gary Court, Jens Taylor + +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. diff --git a/novas/novacore-zephyr/groq-code-cli/node_modules/imurmurhash/imurmurhash.js b/novas/novacore-zephyr/groq-code-cli/node_modules/imurmurhash/imurmurhash.js new file mode 100644 index 0000000000000000000000000000000000000000..e63146a2b7e70b6e270fb277fb933b1657669ab8 --- /dev/null +++ b/novas/novacore-zephyr/groq-code-cli/node_modules/imurmurhash/imurmurhash.js @@ -0,0 +1,138 @@ +/** + * @preserve + * JS Implementation of incremental MurmurHash3 (r150) (as of May 10, 2013) + * + * @author Jens Taylor + * @see http://github.com/homebrewing/brauhaus-diff + * @author Gary Court + * @see http://github.com/garycourt/murmurhash-js + * @author Austin Appleby + * @see http://sites.google.com/site/murmurhash/ + */ +(function(){ + var cache; + + // Call this function without `new` to use the cached object (good for + // single-threaded environments), or with `new` to create a new object. + // + // @param {string} key A UTF-16 or ASCII string + // @param {number} seed An optional positive integer + // @return {object} A MurmurHash3 object for incremental hashing + function MurmurHash3(key, seed) { + var m = this instanceof MurmurHash3 ? this : cache; + m.reset(seed) + if (typeof key === 'string' && key.length > 0) { + m.hash(key); + } + + if (m !== this) { + return m; + } + }; + + // Incrementally add a string to this hash + // + // @param {string} key A UTF-16 or ASCII string + // @return {object} this + MurmurHash3.prototype.hash = function(key) { + var h1, k1, i, top, len; + + len = key.length; + this.len += len; + + k1 = this.k1; + i = 0; + switch (this.rem) { + case 0: k1 ^= len > i ? (key.charCodeAt(i++) & 0xffff) : 0; + case 1: k1 ^= len > i ? (key.charCodeAt(i++) & 0xffff) << 8 : 0; + case 2: k1 ^= len > i ? (key.charCodeAt(i++) & 0xffff) << 16 : 0; + case 3: + k1 ^= len > i ? (key.charCodeAt(i) & 0xff) << 24 : 0; + k1 ^= len > i ? (key.charCodeAt(i++) & 0xff00) >> 8 : 0; + } + + this.rem = (len + this.rem) & 3; // & 3 is same as % 4 + len -= this.rem; + if (len > 0) { + h1 = this.h1; + while (1) { + k1 = (k1 * 0x2d51 + (k1 & 0xffff) * 0xcc9e0000) & 0xffffffff; + k1 = (k1 << 15) | (k1 >>> 17); + k1 = (k1 * 0x3593 + (k1 & 0xffff) * 0x1b870000) & 0xffffffff; + + h1 ^= k1; + h1 = (h1 << 13) | (h1 >>> 19); + h1 = (h1 * 5 + 0xe6546b64) & 0xffffffff; + + if (i >= len) { + break; + } + + k1 = ((key.charCodeAt(i++) & 0xffff)) ^ + ((key.charCodeAt(i++) & 0xffff) << 8) ^ + ((key.charCodeAt(i++) & 0xffff) << 16); + top = key.charCodeAt(i++); + k1 ^= ((top & 0xff) << 24) ^ + ((top & 0xff00) >> 8); + } + + k1 = 0; + switch (this.rem) { + case 3: k1 ^= (key.charCodeAt(i + 2) & 0xffff) << 16; + case 2: k1 ^= (key.charCodeAt(i + 1) & 0xffff) << 8; + case 1: k1 ^= (key.charCodeAt(i) & 0xffff); + } + + this.h1 = h1; + } + + this.k1 = k1; + return this; + }; + + // Get the result of this hash + // + // @return {number} The 32-bit hash + MurmurHash3.prototype.result = function() { + var k1, h1; + + k1 = this.k1; + h1 = this.h1; + + if (k1 > 0) { + k1 = (k1 * 0x2d51 + (k1 & 0xffff) * 0xcc9e0000) & 0xffffffff; + k1 = (k1 << 15) | (k1 >>> 17); + k1 = (k1 * 0x3593 + (k1 & 0xffff) * 0x1b870000) & 0xffffffff; + h1 ^= k1; + } + + h1 ^= this.len; + + h1 ^= h1 >>> 16; + h1 = (h1 * 0xca6b + (h1 & 0xffff) * 0x85eb0000) & 0xffffffff; + h1 ^= h1 >>> 13; + h1 = (h1 * 0xae35 + (h1 & 0xffff) * 0xc2b20000) & 0xffffffff; + h1 ^= h1 >>> 16; + + return h1 >>> 0; + }; + + // Reset the hash object for reuse + // + // @param {number} seed An optional positive integer + MurmurHash3.prototype.reset = function(seed) { + this.h1 = typeof seed === 'number' ? seed : 0; + this.rem = this.k1 = this.len = 0; + return this; + }; + + // A cached object to use. This can be safely used if you're in a single- + // threaded environment, otherwise you need to create new hashes to use. + cache = new MurmurHash3(); + + if (typeof(module) != 'undefined') { + module.exports = MurmurHash3; + } else { + this.MurmurHash3 = MurmurHash3; + } +}()); diff --git a/novas/novacore-zephyr/groq-code-cli/node_modules/imurmurhash/imurmurhash.min.js b/novas/novacore-zephyr/groq-code-cli/node_modules/imurmurhash/imurmurhash.min.js new file mode 100644 index 0000000000000000000000000000000000000000..dc0ee88d6b69c97b7e2389a58fc09e675e6f415f --- /dev/null +++ b/novas/novacore-zephyr/groq-code-cli/node_modules/imurmurhash/imurmurhash.min.js @@ -0,0 +1,12 @@ +/** + * @preserve + * JS Implementation of incremental MurmurHash3 (r150) (as of May 10, 2013) + * + * @author Jens Taylor + * @see http://github.com/homebrewing/brauhaus-diff + * @author Gary Court + * @see http://github.com/garycourt/murmurhash-js + * @author Austin Appleby + * @see http://sites.google.com/site/murmurhash/ + */ +!function(){function t(h,r){var s=this instanceof t?this:e;return s.reset(r),"string"==typeof h&&h.length>0&&s.hash(h),s!==this?s:void 0}var e;t.prototype.hash=function(t){var e,h,r,s,i;switch(i=t.length,this.len+=i,h=this.k1,r=0,this.rem){case 0:h^=i>r?65535&t.charCodeAt(r++):0;case 1:h^=i>r?(65535&t.charCodeAt(r++))<<8:0;case 2:h^=i>r?(65535&t.charCodeAt(r++))<<16:0;case 3:h^=i>r?(255&t.charCodeAt(r))<<24:0,h^=i>r?(65280&t.charCodeAt(r++))>>8:0}if(this.rem=3&i+this.rem,i-=this.rem,i>0){for(e=this.h1;;){if(h=4294967295&11601*h+3432906752*(65535&h),h=h<<15|h>>>17,h=4294967295&13715*h+461832192*(65535&h),e^=h,e=e<<13|e>>>19,e=4294967295&5*e+3864292196,r>=i)break;h=65535&t.charCodeAt(r++)^(65535&t.charCodeAt(r++))<<8^(65535&t.charCodeAt(r++))<<16,s=t.charCodeAt(r++),h^=(255&s)<<24^(65280&s)>>8}switch(h=0,this.rem){case 3:h^=(65535&t.charCodeAt(r+2))<<16;case 2:h^=(65535&t.charCodeAt(r+1))<<8;case 1:h^=65535&t.charCodeAt(r)}this.h1=e}return this.k1=h,this},t.prototype.result=function(){var t,e;return t=this.k1,e=this.h1,t>0&&(t=4294967295&11601*t+3432906752*(65535&t),t=t<<15|t>>>17,t=4294967295&13715*t+461832192*(65535&t),e^=t),e^=this.len,e^=e>>>16,e=4294967295&51819*e+2246770688*(65535&e),e^=e>>>13,e=4294967295&44597*e+3266445312*(65535&e),e^=e>>>16,e>>>0},t.prototype.reset=function(t){return this.h1="number"==typeof t?t:0,this.rem=this.k1=this.len=0,this},e=new t,"undefined"!=typeof module?module.exports=t:this.MurmurHash3=t}(); \ No newline at end of file diff --git a/novas/novacore-zephyr/groq-code-cli/node_modules/imurmurhash/package.json b/novas/novacore-zephyr/groq-code-cli/node_modules/imurmurhash/package.json new file mode 100644 index 0000000000000000000000000000000000000000..8a93edb55a22452c643c85e6ad8e8a8bf0a3fad9 --- /dev/null +++ b/novas/novacore-zephyr/groq-code-cli/node_modules/imurmurhash/package.json @@ -0,0 +1,40 @@ +{ + "name": "imurmurhash", + "version": "0.1.4", + "description": "An incremental implementation of MurmurHash3", + "homepage": "https://github.com/jensyt/imurmurhash-js", + "main": "imurmurhash.js", + "files": [ + "imurmurhash.js", + "imurmurhash.min.js", + "package.json", + "README.md" + ], + "repository": { + "type": "git", + "url": "https://github.com/jensyt/imurmurhash-js" + }, + "bugs": { + "url": "https://github.com/jensyt/imurmurhash-js/issues" + }, + "keywords": [ + "murmur", + "murmurhash", + "murmurhash3", + "hash", + "incremental" + ], + "author": { + "name": "Jens Taylor", + "email": "jensyt@gmail.com", + "url": "https://github.com/homebrewing" + }, + "license": "MIT", + "dependencies": { + }, + "devDependencies": { + }, + "engines": { + "node": ">=0.8.19" + } +} diff --git a/novas/novacore-zephyr/groq-code-cli/node_modules/indent-string/index.d.ts b/novas/novacore-zephyr/groq-code-cli/node_modules/indent-string/index.d.ts new file mode 100644 index 0000000000000000000000000000000000000000..72b7d776e00a18f5189d6fbe2584c35028962596 --- /dev/null +++ b/novas/novacore-zephyr/groq-code-cli/node_modules/indent-string/index.d.ts @@ -0,0 +1,38 @@ +export interface Options { + /** + The string to use for the indent. + + @default ' ' + */ + readonly indent?: string; + + /** + Also indent empty lines. + + @default false + */ + readonly includeEmptyLines?: boolean; +} + +/** +Indent each line in a string. + +@param string - The string to indent. +@param count - How many times you want `options.indent` repeated. Default: `1`. + +@example +``` +import indentString from 'indent-string'; + +indentString('Unicorns\nRainbows', 4); +//=> ' Unicorns\n Rainbows' + +indentString('Unicorns\nRainbows', 4, {indent: '♥'}); +//=> '♥♥♥♥Unicorns\n♥♥♥♥Rainbows' +``` +*/ +export default function indentString( + string: string, + count?: number, + options?: Options +): string; diff --git a/novas/novacore-zephyr/groq-code-cli/node_modules/indent-string/index.js b/novas/novacore-zephyr/groq-code-cli/node_modules/indent-string/index.js new file mode 100644 index 0000000000000000000000000000000000000000..4861a4ce8a731a47ed8ca0baddf30190147fbd11 --- /dev/null +++ b/novas/novacore-zephyr/groq-code-cli/node_modules/indent-string/index.js @@ -0,0 +1,38 @@ +export default function indentString(string, count = 1, options = {}) { + const { + indent = ' ', + includeEmptyLines = false + } = options; + + if (typeof string !== 'string') { + throw new TypeError( + `Expected \`input\` to be a \`string\`, got \`${typeof string}\`` + ); + } + + if (typeof count !== 'number') { + throw new TypeError( + `Expected \`count\` to be a \`number\`, got \`${typeof count}\`` + ); + } + + if (count < 0) { + throw new RangeError( + `Expected \`count\` to be at least 0, got \`${count}\`` + ); + } + + if (typeof indent !== 'string') { + throw new TypeError( + `Expected \`options.indent\` to be a \`string\`, got \`${typeof indent}\`` + ); + } + + if (count === 0) { + return string; + } + + const regex = includeEmptyLines ? /^/gm : /^(?!\s*$)/gm; + + return string.replace(regex, indent.repeat(count)); +} diff --git a/novas/novacore-zephyr/groq-code-cli/node_modules/indent-string/license b/novas/novacore-zephyr/groq-code-cli/node_modules/indent-string/license new file mode 100644 index 0000000000000000000000000000000000000000..fa7ceba3eb4a9657a9db7f3ffca4e4e97a9019de --- /dev/null +++ b/novas/novacore-zephyr/groq-code-cli/node_modules/indent-string/license @@ -0,0 +1,9 @@ +MIT License + +Copyright (c) Sindre Sorhus (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. diff --git a/novas/novacore-zephyr/groq-code-cli/node_modules/indent-string/package.json b/novas/novacore-zephyr/groq-code-cli/node_modules/indent-string/package.json new file mode 100644 index 0000000000000000000000000000000000000000..84cc629c4c4244b051c16cee3634c59f6e4eca5c --- /dev/null +++ b/novas/novacore-zephyr/groq-code-cli/node_modules/indent-string/package.json @@ -0,0 +1,40 @@ +{ + "name": "indent-string", + "version": "5.0.0", + "description": "Indent each line in a string", + "license": "MIT", + "repository": "sindresorhus/indent-string", + "funding": "https://github.com/sponsors/sindresorhus", + "author": { + "name": "Sindre Sorhus", + "email": "sindresorhus@gmail.com", + "url": "https://sindresorhus.com" + }, + "type": "module", + "exports": "./index.js", + "engines": { + "node": ">=12" + }, + "scripts": { + "test": "xo && ava && tsd" + }, + "files": [ + "index.js", + "index.d.ts" + ], + "keywords": [ + "indent", + "string", + "pad", + "align", + "line", + "text", + "each", + "every" + ], + "devDependencies": { + "ava": "^3.15.0", + "tsd": "^0.14.0", + "xo": "^0.38.2" + } +} diff --git a/novas/novacore-zephyr/groq-code-cli/node_modules/indent-string/readme.md b/novas/novacore-zephyr/groq-code-cli/node_modules/indent-string/readme.md new file mode 100644 index 0000000000000000000000000000000000000000..c1ebd462fec925678c2a156b8b84ac70c8efc04e --- /dev/null +++ b/novas/novacore-zephyr/groq-code-cli/node_modules/indent-string/readme.md @@ -0,0 +1,73 @@ +# indent-string + +> Indent each line in a string + +## Install + +``` +$ npm install indent-string +``` + +## Usage + +```js +import indentString from 'indent-string'; + +indentString('Unicorns\nRainbows', 4); +//=> ' Unicorns\n Rainbows' + +indentString('Unicorns\nRainbows', 4, {indent: '♥'}); +//=> '♥♥♥♥Unicorns\n♥♥♥♥Rainbows' +``` + +## API + +### indentString(string, count?, options?) + +#### string + +Type: `string` + +The string to indent. + +#### count + +Type: `number`\ +Default: `1` + +How many times you want `options.indent` repeated. + +#### options + +Type: `object` + +##### indent + +Type: `string`\ +Default: `' '` + +The string to use for the indent. + +##### includeEmptyLines + +Type: `boolean`\ +Default: `false` + +Also indent empty lines. + +## Related + +- [indent-string-cli](https://github.com/sindresorhus/indent-string-cli) - CLI for this module +- [strip-indent](https://github.com/sindresorhus/strip-indent) - Strip leading whitespace from every line in a string + +--- + +
+ + Get professional support for this package with a Tidelift subscription + +
+ + Tidelift helps make open source sustainable for maintainers while giving companies
assurances about security, maintenance, and licensing for their dependencies. +
+
diff --git a/novas/novacore-zephyr/groq-code-cli/node_modules/inflight/LICENSE b/novas/novacore-zephyr/groq-code-cli/node_modules/inflight/LICENSE new file mode 100644 index 0000000000000000000000000000000000000000..05eeeb88c2ef4cc9bacbcc46d6cfcb6962f8b385 --- /dev/null +++ b/novas/novacore-zephyr/groq-code-cli/node_modules/inflight/LICENSE @@ -0,0 +1,15 @@ +The ISC License + +Copyright (c) Isaac Z. Schlueter + +Permission to use, copy, modify, and/or distribute this software for any +purpose with or without fee is hereby granted, provided that the above +copyright notice and this permission notice appear in all copies. + +THE SOFTWARE IS PROVIDED "AS IS" AND THE AUTHOR DISCLAIMS ALL WARRANTIES +WITH REGARD TO THIS SOFTWARE INCLUDING ALL IMPLIED WARRANTIES OF +MERCHANTABILITY AND FITNESS. IN NO EVENT SHALL THE AUTHOR BE LIABLE FOR +ANY SPECIAL, DIRECT, INDIRECT, OR CONSEQUENTIAL DAMAGES OR ANY DAMAGES +WHATSOEVER RESULTING FROM LOSS OF USE, DATA OR PROFITS, WHETHER IN AN +ACTION OF CONTRACT, NEGLIGENCE OR OTHER TORTIOUS ACTION, ARISING OUT OF OR +IN CONNECTION WITH THE USE OR PERFORMANCE OF THIS SOFTWARE. diff --git a/novas/novacore-zephyr/groq-code-cli/node_modules/inflight/README.md b/novas/novacore-zephyr/groq-code-cli/node_modules/inflight/README.md new file mode 100644 index 0000000000000000000000000000000000000000..6dc8929171a8c50c0ab8c216b6000fe9c146f3fb --- /dev/null +++ b/novas/novacore-zephyr/groq-code-cli/node_modules/inflight/README.md @@ -0,0 +1,37 @@ +# inflight + +Add callbacks to requests in flight to avoid async duplication + +## USAGE + +```javascript +var inflight = require('inflight') + +// some request that does some stuff +function req(key, callback) { + // key is any random string. like a url or filename or whatever. + // + // will return either a falsey value, indicating that the + // request for this key is already in flight, or a new callback + // which when called will call all callbacks passed to inflightk + // with the same key + callback = inflight(key, callback) + + // If we got a falsey value back, then there's already a req going + if (!callback) return + + // this is where you'd fetch the url or whatever + // callback is also once()-ified, so it can safely be assigned + // to multiple events etc. First call wins. + setTimeout(function() { + callback(null, key) + }, 100) +} + +// only assigns a single setTimeout +// when it dings, all cbs get called +req('foo', cb1) +req('foo', cb2) +req('foo', cb3) +req('foo', cb4) +``` diff --git a/novas/novacore-zephyr/groq-code-cli/node_modules/inflight/inflight.js b/novas/novacore-zephyr/groq-code-cli/node_modules/inflight/inflight.js new file mode 100644 index 0000000000000000000000000000000000000000..48202b3ca41d9768b5f526f3aede4581e7693386 --- /dev/null +++ b/novas/novacore-zephyr/groq-code-cli/node_modules/inflight/inflight.js @@ -0,0 +1,54 @@ +var wrappy = require('wrappy') +var reqs = Object.create(null) +var once = require('once') + +module.exports = wrappy(inflight) + +function inflight (key, cb) { + if (reqs[key]) { + reqs[key].push(cb) + return null + } else { + reqs[key] = [cb] + return makeres(key) + } +} + +function makeres (key) { + return once(function RES () { + var cbs = reqs[key] + var len = cbs.length + var args = slice(arguments) + + // XXX It's somewhat ambiguous whether a new callback added in this + // pass should be queued for later execution if something in the + // list of callbacks throws, or if it should just be discarded. + // However, it's such an edge case that it hardly matters, and either + // choice is likely as surprising as the other. + // As it happens, we do go ahead and schedule it for later execution. + try { + for (var i = 0; i < len; i++) { + cbs[i].apply(null, args) + } + } finally { + if (cbs.length > len) { + // added more in the interim. + // de-zalgo, just in case, but don't call again. + cbs.splice(0, len) + process.nextTick(function () { + RES.apply(null, args) + }) + } else { + delete reqs[key] + } + } + }) +} + +function slice (args) { + var length = args.length + var array = [] + + for (var i = 0; i < length; i++) array[i] = args[i] + return array +} diff --git a/novas/novacore-zephyr/groq-code-cli/node_modules/inflight/package.json b/novas/novacore-zephyr/groq-code-cli/node_modules/inflight/package.json new file mode 100644 index 0000000000000000000000000000000000000000..6084d3509a5d6d79eb84cb6046a954100caeba7d --- /dev/null +++ b/novas/novacore-zephyr/groq-code-cli/node_modules/inflight/package.json @@ -0,0 +1,29 @@ +{ + "name": "inflight", + "version": "1.0.6", + "description": "Add callbacks to requests in flight to avoid async duplication", + "main": "inflight.js", + "files": [ + "inflight.js" + ], + "dependencies": { + "once": "^1.3.0", + "wrappy": "1" + }, + "devDependencies": { + "tap": "^7.1.2" + }, + "scripts": { + "test": "tap test.js --100" + }, + "repository": { + "type": "git", + "url": "https://github.com/npm/inflight.git" + }, + "author": "Isaac Z. Schlueter (http://blog.izs.me/)", + "bugs": { + "url": "https://github.com/isaacs/inflight/issues" + }, + "homepage": "https://github.com/isaacs/inflight", + "license": "ISC" +} diff --git a/novas/novacore-zephyr/groq-code-cli/node_modules/inherits/LICENSE b/novas/novacore-zephyr/groq-code-cli/node_modules/inherits/LICENSE new file mode 100644 index 0000000000000000000000000000000000000000..dea3013d6710ee273f49ac606a65d5211d480c88 --- /dev/null +++ b/novas/novacore-zephyr/groq-code-cli/node_modules/inherits/LICENSE @@ -0,0 +1,16 @@ +The ISC License + +Copyright (c) Isaac Z. Schlueter + +Permission to use, copy, modify, and/or distribute this software for any +purpose with or without fee is hereby granted, provided that the above +copyright notice and this permission notice appear in all copies. + +THE SOFTWARE IS PROVIDED "AS IS" AND THE AUTHOR DISCLAIMS ALL WARRANTIES WITH +REGARD TO THIS SOFTWARE INCLUDING ALL IMPLIED WARRANTIES OF MERCHANTABILITY AND +FITNESS. IN NO EVENT SHALL THE AUTHOR BE LIABLE FOR ANY SPECIAL, DIRECT, +INDIRECT, OR CONSEQUENTIAL DAMAGES OR ANY DAMAGES WHATSOEVER RESULTING FROM +LOSS OF USE, DATA OR PROFITS, WHETHER IN AN ACTION OF CONTRACT, NEGLIGENCE OR +OTHER TORTIOUS ACTION, ARISING OUT OF OR IN CONNECTION WITH THE USE OR +PERFORMANCE OF THIS SOFTWARE. + diff --git a/novas/novacore-zephyr/groq-code-cli/node_modules/inherits/README.md b/novas/novacore-zephyr/groq-code-cli/node_modules/inherits/README.md new file mode 100644 index 0000000000000000000000000000000000000000..b1c56658557b8162aa9f5ba8610ed03a5e558d9d --- /dev/null +++ b/novas/novacore-zephyr/groq-code-cli/node_modules/inherits/README.md @@ -0,0 +1,42 @@ +Browser-friendly inheritance fully compatible with standard node.js +[inherits](http://nodejs.org/api/util.html#util_util_inherits_constructor_superconstructor). + +This package exports standard `inherits` from node.js `util` module in +node environment, but also provides alternative browser-friendly +implementation through [browser +field](https://gist.github.com/shtylman/4339901). Alternative +implementation is a literal copy of standard one located in standalone +module to avoid requiring of `util`. It also has a shim for old +browsers with no `Object.create` support. + +While keeping you sure you are using standard `inherits` +implementation in node.js environment, it allows bundlers such as +[browserify](https://github.com/substack/node-browserify) to not +include full `util` package to your client code if all you need is +just `inherits` function. It worth, because browser shim for `util` +package is large and `inherits` is often the single function you need +from it. + +It's recommended to use this package instead of +`require('util').inherits` for any code that has chances to be used +not only in node.js but in browser too. + +## usage + +```js +var inherits = require('inherits'); +// then use exactly as the standard one +``` + +## note on version ~1.0 + +Version ~1.0 had completely different motivation and is not compatible +neither with 2.0 nor with standard node.js `inherits`. + +If you are using version ~1.0 and planning to switch to ~2.0, be +careful: + +* new version uses `super_` instead of `super` for referencing + superclass +* new version overwrites current prototype while old one preserves any + existing fields on it diff --git a/novas/novacore-zephyr/groq-code-cli/node_modules/inherits/inherits.js b/novas/novacore-zephyr/groq-code-cli/node_modules/inherits/inherits.js new file mode 100644 index 0000000000000000000000000000000000000000..f71f2d93294a67ad5d9300aae07973e259f26068 --- /dev/null +++ b/novas/novacore-zephyr/groq-code-cli/node_modules/inherits/inherits.js @@ -0,0 +1,9 @@ +try { + var util = require('util'); + /* istanbul ignore next */ + if (typeof util.inherits !== 'function') throw ''; + module.exports = util.inherits; +} catch (e) { + /* istanbul ignore next */ + module.exports = require('./inherits_browser.js'); +} diff --git a/novas/novacore-zephyr/groq-code-cli/node_modules/inherits/inherits_browser.js b/novas/novacore-zephyr/groq-code-cli/node_modules/inherits/inherits_browser.js new file mode 100644 index 0000000000000000000000000000000000000000..86bbb3dc29e4847df14de2c2b4b168e065184643 --- /dev/null +++ b/novas/novacore-zephyr/groq-code-cli/node_modules/inherits/inherits_browser.js @@ -0,0 +1,27 @@ +if (typeof Object.create === 'function') { + // implementation from standard node.js 'util' module + module.exports = function inherits(ctor, superCtor) { + if (superCtor) { + ctor.super_ = superCtor + ctor.prototype = Object.create(superCtor.prototype, { + constructor: { + value: ctor, + enumerable: false, + writable: true, + configurable: true + } + }) + } + }; +} else { + // old school shim for old browsers + module.exports = function inherits(ctor, superCtor) { + if (superCtor) { + ctor.super_ = superCtor + var TempCtor = function () {} + TempCtor.prototype = superCtor.prototype + ctor.prototype = new TempCtor() + ctor.prototype.constructor = ctor + } + } +} diff --git a/novas/novacore-zephyr/groq-code-cli/node_modules/inherits/package.json b/novas/novacore-zephyr/groq-code-cli/node_modules/inherits/package.json new file mode 100644 index 0000000000000000000000000000000000000000..37b4366b83e63e037cd447090ec25b39fce27e01 --- /dev/null +++ b/novas/novacore-zephyr/groq-code-cli/node_modules/inherits/package.json @@ -0,0 +1,29 @@ +{ + "name": "inherits", + "description": "Browser-friendly inheritance fully compatible with standard node.js inherits()", + "version": "2.0.4", + "keywords": [ + "inheritance", + "class", + "klass", + "oop", + "object-oriented", + "inherits", + "browser", + "browserify" + ], + "main": "./inherits.js", + "browser": "./inherits_browser.js", + "repository": "git://github.com/isaacs/inherits", + "license": "ISC", + "scripts": { + "test": "tap" + }, + "devDependencies": { + "tap": "^14.2.4" + }, + "files": [ + "inherits.js", + "inherits_browser.js" + ] +} diff --git a/novas/novacore-zephyr/groq-code-cli/node_modules/ink-testing-library/license b/novas/novacore-zephyr/groq-code-cli/node_modules/ink-testing-library/license new file mode 100644 index 0000000000000000000000000000000000000000..864bb52130f94d14e2e5c78579d7b0a53e1ec40b --- /dev/null +++ b/novas/novacore-zephyr/groq-code-cli/node_modules/ink-testing-library/license @@ -0,0 +1,9 @@ +MIT License + +Copyright (c) Vadym Demedes (github.com/vadimdemedes/ink-testing-library) + +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. diff --git a/novas/novacore-zephyr/groq-code-cli/node_modules/ink-testing-library/package.json b/novas/novacore-zephyr/groq-code-cli/node_modules/ink-testing-library/package.json new file mode 100644 index 0000000000000000000000000000000000000000..7422c29a21e168fdb957f71b09178be88dbd9caf --- /dev/null +++ b/novas/novacore-zephyr/groq-code-cli/node_modules/ink-testing-library/package.json @@ -0,0 +1,71 @@ +{ + "name": "ink-testing-library", + "version": "3.0.0", + "description": "Utilities for testing Ink apps", + "license": "MIT", + "repository": "vadimdemedes/ink-testing-library", + "author": { + "name": "Vadim Demedes", + "email": "vadimdemedes@hey.com", + "url": "https://github.com/vadimdemedes" + }, + "type": "module", + "exports": { + "types": "./build/index.d.ts", + "default": "./build/index.js" + }, + "engines": { + "node": ">=14.16" + }, + "scripts": { + "prepare": "tsc", + "build": "tsc", + "test": "tsc && xo && ava" + }, + "files": [ + "build" + ], + "keywords": [ + "ink", + "cli", + "test" + ], + "devDependencies": { + "@sindresorhus/tsconfig": "^3.0.1", + "@types/react": "^18.0.0", + "@vdemedes/prettier-config": "^1.0.1", + "ava": "^5.1.1", + "delay": "^5.0.0", + "eslint-config-xo-react": "^0.27.0", + "eslint-plugin-react": "^7.32.2", + "eslint-plugin-react-hooks": "^4.6.0", + "ink": "^4.0.0", + "prettier": "^2.0.4", + "react": "^18.0.0", + "ts-node": "^10.9.1", + "typescript": "^4.9.4", + "xo": "^0.53.0" + }, + "peerDependencies": { + "@types/react": ">=18.0.0" + }, + "peerDependenciesMeta": { + "@types/react": { + "optional": true + } + }, + "ava": { + "extensions": { + "ts": "module", + "tsx": "module" + }, + "nodeArguments": [ + "--loader=ts-node/esm" + ] + }, + "xo": { + "extends": "xo-react", + "prettier": true + }, + "prettier": "@vdemedes/prettier-config" +} diff --git a/novas/novacore-zephyr/groq-code-cli/node_modules/ink-testing-library/readme.md b/novas/novacore-zephyr/groq-code-cli/node_modules/ink-testing-library/readme.md new file mode 100644 index 0000000000000000000000000000000000000000..d091ffbd34722f5963c08ad31ae83b54852bcef8 --- /dev/null +++ b/novas/novacore-zephyr/groq-code-cli/node_modules/ink-testing-library/readme.md @@ -0,0 +1,153 @@ +# ink-testing-library ![test](https://github.com/vadimdemedes/ink-testing-library/workflows/test/badge.svg) + +> Utilities for testing [Ink](https://github.com/vadimdemedes/ink) apps + +## Install + +``` +$ npm install --save-dev ink-testing-library +``` + +## Usage + +```jsx +import React from 'react'; +import {Text} from 'ink'; +import {render} from 'ink-testing-library'; + +const Counter = ({count}) => Count: {count}; + +const {lastFrame, rerender} = render(); +lastFrame() === 'Count: 0'; //=> true + +rerender(); +lastFrame() === 'Count: 1'; //=> true +``` + +## API + +### render(tree) + +#### tree + +Type: `ReactElement` + +React component to render. + +```jsx +render(); +``` + +This function returns an object, which contains the following methods and properties. + +#### lastFrame() + +Type: `function` + +Shortcut to [`stdout.lastFrame`](#lastframe-1). + +#### frames + +Type: `array` + +Shortcut to [`stdout.frames`](#frames-1). + +#### rerender(tree) + +Type: `function` + +##### tree + +Type: `ReactElement` + +Rerender root component with different props or replace with another component. + +```jsx +const {rerender} = render(); +rerender(); +``` + +#### unmount() + +Type: `function` + +Unmount current component. + +```jsx +const {unmount} = render(); +unmount(); +``` + +#### stdin + +Type: `object` + +##### write() + +Type: `function` + +Write data to current component's stdin stream. + +```jsx +import {useInput, Text} from 'ink'; + +const Test = () => { + useInput(input => { + console.log(input); + //=> 'hello' + }); + + return …; +}; + +const {stdin} = render(); +stdin.write('hello'); +``` + +#### stdout + +Type: `object` + +##### lastFrame() + +Type: `function` + +Return the last rendered frame (output) from stdout stream. + +```jsx +const Test = () => Hello; + +const {stdout} = render(); +stdout.lastFrame(); //=> 'Hello' +``` + +##### frames + +Type: `array` + +Array of all rendered frames, where the last frame is also the last item in that array. + +```jsx +const Counter = ({count}) => Count: {count}; + +const {stdout, rerender} = render(); +rerender(); + +console.log(stdout.frames); //=> ['Count: 0', 'Count: 1'] +``` + +#### stderr + +Type: `object` + +##### lastFrame() + +Type: `function` + +Same as [`lastFrame`](#lastframe-1) in [`stdout`](#stdout), but for stderr stream. + +##### frames + +Type: `array` + +Same as [`frames`](#frames-1) in [`stdout`](#stdout), but for stderr stream. diff --git a/novas/novacore-zephyr/groq-code-cli/node_modules/internal-slot/.attw.json b/novas/novacore-zephyr/groq-code-cli/node_modules/internal-slot/.attw.json new file mode 100644 index 0000000000000000000000000000000000000000..a315daf489600296193809e2602ff43d3f2f2319 --- /dev/null +++ b/novas/novacore-zephyr/groq-code-cli/node_modules/internal-slot/.attw.json @@ -0,0 +1,5 @@ +{ + "ignoreRules": [ + "named-exports" + ] +} diff --git a/novas/novacore-zephyr/groq-code-cli/node_modules/internal-slot/.editorconfig b/novas/novacore-zephyr/groq-code-cli/node_modules/internal-slot/.editorconfig new file mode 100644 index 0000000000000000000000000000000000000000..bc228f8269443bf772b437890dde7756a3e8a894 --- /dev/null +++ b/novas/novacore-zephyr/groq-code-cli/node_modules/internal-slot/.editorconfig @@ -0,0 +1,20 @@ +root = true + +[*] +indent_style = tab +indent_size = 4 +end_of_line = lf +charset = utf-8 +trim_trailing_whitespace = true +insert_final_newline = true +max_line_length = 150 + +[CHANGELOG.md] +indent_style = space +indent_size = 2 + +[*.json] +max_line_length = off + +[Makefile] +max_line_length = off diff --git a/novas/novacore-zephyr/groq-code-cli/node_modules/internal-slot/.eslintrc b/novas/novacore-zephyr/groq-code-cli/node_modules/internal-slot/.eslintrc new file mode 100644 index 0000000000000000000000000000000000000000..c42d8f2f7751fdcba8ffa7774a46c3116f93f194 --- /dev/null +++ b/novas/novacore-zephyr/groq-code-cli/node_modules/internal-slot/.eslintrc @@ -0,0 +1,11 @@ +{ + "root": true, + + "extends": "@ljharb", + + "rules": { + "max-params": [2, 3], + "new-cap": [2, { "capIsNewExceptions": ["GetIntrinsic"] }], + "no-magic-numbers": 0, + }, +} diff --git a/novas/novacore-zephyr/groq-code-cli/node_modules/internal-slot/.nycrc b/novas/novacore-zephyr/groq-code-cli/node_modules/internal-slot/.nycrc new file mode 100644 index 0000000000000000000000000000000000000000..bdd626ce91477abbdd489b79988baebadbd3c897 --- /dev/null +++ b/novas/novacore-zephyr/groq-code-cli/node_modules/internal-slot/.nycrc @@ -0,0 +1,9 @@ +{ + "all": true, + "check-coverage": false, + "reporter": ["text-summary", "text", "html", "json"], + "exclude": [ + "coverage", + "test" + ] +} diff --git a/novas/novacore-zephyr/groq-code-cli/node_modules/internal-slot/CHANGELOG.md b/novas/novacore-zephyr/groq-code-cli/node_modules/internal-slot/CHANGELOG.md new file mode 100644 index 0000000000000000000000000000000000000000..9a403f1cc0b1781c5fcfb9390a663c587a9df3ae --- /dev/null +++ b/novas/novacore-zephyr/groq-code-cli/node_modules/internal-slot/CHANGELOG.md @@ -0,0 +1,114 @@ +### Changelog + +All notable changes to this project will be documented in this file. Dates are displayed in UTC. + +Generated by [`auto-changelog`](https://github.com/CookPete/auto-changelog). + +#### [v1.1.0](https://github.com/ljharb/internal-slot/compare/v1.0.7...v1.1.0) + +> 13 December 2024 + +- [New] add types [`295d25d`](https://github.com/ljharb/internal-slot/commit/295d25d55cfcb6ba1dd2520b36f4270c5a613c09) +- [actions] split out node 10-20, and 20+ [`9c9a2ab`](https://github.com/ljharb/internal-slot/commit/9c9a2ab345f0cb6d202cc92297060889e9ed5e06) +- [Dev Deps] update `@ljharb/eslint-config`, `auto-changelog`, `object-inspect`, `tape` [`9c5621b`](https://github.com/ljharb/internal-slot/commit/9c5621bc88dd9fcf20e2347a7c26af7fdcd509a2) +- [Deps] update `hasown`, `side-channel` [`5281391`](https://github.com/ljharb/internal-slot/commit/52813911eb534cda56e414810b6e2bfe85fa340c) +- [Tests] replace `aud` with `npm audit` [`64ce191`](https://github.com/ljharb/internal-slot/commit/64ce191a0603f10017854cb7dc5629da2b5fca6b) +- [Dev Deps] add missing peer dep [`d500343`](https://github.com/ljharb/internal-slot/commit/d5003432d47d7d5dced1c5c5f3543a4f1b65bb1f) + +#### [v1.0.7](https://github.com/ljharb/internal-slot/compare/v1.0.6...v1.0.7) + +> 5 February 2024 + +- [Dev Deps] update `aud`, `npmignore`, `tape` [`89c88c1`](https://github.com/ljharb/internal-slot/commit/89c88c1ed8de7c681fd3cec7bb2f045db0268d84) +- [Refactor] use `es-errors`, so things that only need those do not need `get-intrinsic` [`b437631`](https://github.com/ljharb/internal-slot/commit/b4376312d4a5d7bc99fb383cae3f15bd2f3d36d1) + +#### [v1.0.6](https://github.com/ljharb/internal-slot/compare/v1.0.5...v1.0.6) + +> 20 October 2023 + +- [Dev Deps] update `@ljharb/eslint-config`, `aud`, `object-inspect`, `tape` [`4d568d2`](https://github.com/ljharb/internal-slot/commit/4d568d2897a2efe9b0604ae240bc89787924070f) +- [Refactor] use `hasown` instead of `has` [`f946e94`](https://github.com/ljharb/internal-slot/commit/f946e94885f5fa092a4de04f366d746c0c5a2f2f) +- [Deps] update `get-intrinsic` [`1bbc885`](https://github.com/ljharb/internal-slot/commit/1bbc885b0225dadac6e50f421cda5814c242b0bb) +- [meta] remove unused `.eslintignore` [`6fdde1a`](https://github.com/ljharb/internal-slot/commit/6fdde1a25348cf9fc41c9808d342e6502f37658d) + +#### [v1.0.5](https://github.com/ljharb/internal-slot/compare/v1.0.4...v1.0.5) + +> 9 February 2023 + +- [Dev Deps] update `@ljharb/eslint-config`, `aud`, `object-inspect`, `tape` [`e427703`](https://github.com/ljharb/internal-slot/commit/e427703bfc669c590a863ec77ecd3789d7b7c458) +- [Deps] update `get-intrinsic` [`aa652f0`](https://github.com/ljharb/internal-slot/commit/aa652f05c5c15b4ed1a118be60f0565e47bd7208) +- [Fix] improve assertion message [`8df86e3`](https://github.com/ljharb/internal-slot/commit/8df86e3ea21786b5eb7654f22202665c8b63accf) + +#### [v1.0.4](https://github.com/ljharb/internal-slot/compare/v1.0.3...v1.0.4) + +> 13 December 2022 + +- [actions] reuse common workflows [`82a1aee`](https://github.com/ljharb/internal-slot/commit/82a1aee603bce8627930597edb3a04b4970ed151) +- [meta] use `npmignore` to autogenerate an npmignore file [`56f7e71`](https://github.com/ljharb/internal-slot/commit/56f7e7182dd934dd6c1b80497a110670d02a91b9) +- [actions] use `node/install` instead of `node/run`; use `codecov` action [`e25ff67`](https://github.com/ljharb/internal-slot/commit/e25ff67d568f77c1b66168957d82b080779e1c0a) +- [actions] update rebase action to use reusable workflow [`227e81e`](https://github.com/ljharb/internal-slot/commit/227e81eaef7230a265103ef1ef0618d2920c3f30) +- [Dev Deps] update `eslint`, `@ljharb/eslint-config`, `aud`, `auto-changelog`, `foreach`, `object-inspect`, `tape` [`fc9f319`](https://github.com/ljharb/internal-slot/commit/fc9f319d136ddf2e79910390d1e7ad279d41cc01) +- [Dev Deps] update `eslint`, `@ljharb/eslint-config`, `auto-changelog`, `object-inspect`, `safe-publish-latest`, `tape` [`0a72a0f`](https://github.com/ljharb/internal-slot/commit/0a72a0f389511b41645f441da19257a266cb37f7) +- [actions] update codecov uploader [`e2b993f`](https://github.com/ljharb/internal-slot/commit/e2b993f143278a30424ebd5526019e59828989d0) +- [Dev Deps] update `eslint`, `@ljharb/eslint-config`, `aud`, `object-inspect`, `tape` [`8f0ab80`](https://github.com/ljharb/internal-slot/commit/8f0ab808afdd458001c35c828962dc714d824754) +- [actions] update checkout action [`8da4b91`](https://github.com/ljharb/internal-slot/commit/8da4b91c3454671da2e53a831ca0928147965a09) +- [Dev Deps] update `eslint`, `@ljharb/eslint-config`, `@safe-publish-latest`, `tape` [`7ab37aa`](https://github.com/ljharb/internal-slot/commit/7ab37aabf01ded2605fa583a9866b62172f82e30) +- [readme] add github actions/codecov badges [`71234be`](https://github.com/ljharb/internal-slot/commit/71234bef4ef99e2f17d72ae3a1b7c0522519b7d7) +- [Fix] `assert`: throw on a nonexistent slot even when an object already has other slots [`12580bd`](https://github.com/ljharb/internal-slot/commit/12580bd26fe9f8603566e9e076092b5e1fb7340b) +- [Tests] use `for-each` instead of `foreach` [`7229df0`](https://github.com/ljharb/internal-slot/commit/7229df01666ccb022dde82686d84b97b7bcfc53a) +- [meta] use `prepublishOnly` script for npm 7+ [`8728872`](https://github.com/ljharb/internal-slot/commit/8728872cfbd735d3ae87e885c081a08d5b26edf0) +- [Deps] update `get-intrinsic` [`1b7088f`](https://github.com/ljharb/internal-slot/commit/1b7088fa970c33757816b08357814bdbf6d722b6) +- [Deps] update `get-intrinsic` [`063621e`](https://github.com/ljharb/internal-slot/commit/063621ec99d1b9262d3898c0ecad0e1e98be5f75) + +#### [v1.0.3](https://github.com/ljharb/internal-slot/compare/v1.0.2...v1.0.3) + +> 26 January 2021 + +- [Tests] use shared travis-ci configs [`0ef2263`](https://github.com/ljharb/internal-slot/commit/0ef22634fa2269d9df0d784aca3c5748e8eabd3b) +- [Tests] migrate tests to Github Actions [`6253915`](https://github.com/ljharb/internal-slot/commit/6253915d28721df2eda5630849bc6b57647e3ee2) +- [meta] do not publish github action workflow files [`ef94e55`](https://github.com/ljharb/internal-slot/commit/ef94e555727ed6a649ef64010904fe89a468d459) +- [Tests] run `nyc` on all tests; use `tape` runner [`917d6ca`](https://github.com/ljharb/internal-slot/commit/917d6ca630cdcd6b4da9a2c300c6a3abb6e724fe) +- [Dev Deps] update `eslint`, `@ljharb/eslint-config`, `aud`, `auto-changelog`, `object-inspect`, `tape` [`8dcb6fe`](https://github.com/ljharb/internal-slot/commit/8dcb6fe01d6a45e1af17a9dace95ca47c99b4328) +- [actions] add "Allow Edits" workflow [`7aa3e86`](https://github.com/ljharb/internal-slot/commit/7aa3e86edb0149fd882717481885760aeb28474e) +- [Refactor] use `get-intrinsic` instead of `es-abstract`; update `side-channel` [`11ad17d`](https://github.com/ljharb/internal-slot/commit/11ad17d4255adcbc55fd4eca0bf6733bac59f1bf) +- [readme] remove travis badge [`5b75452`](https://github.com/ljharb/internal-slot/commit/5b754523aa07e8f67d0135df75059a18047292bb) +- [actions] switch Automatic Rebase workflow to `pull_request_target` event [`d531688`](https://github.com/ljharb/internal-slot/commit/d5316880956b4dd83e6b6c9ab48fdd8171a4a268) +- [Dev Deps] update `@ljharb/eslint-config`, `tape` [`c76fa91`](https://github.com/ljharb/internal-slot/commit/c76fa91a7e623a738e22332bee4e985aea41122e) +- [Dev Deps] update `eslint`, `tape` [`e733ccd`](https://github.com/ljharb/internal-slot/commit/e733ccd68e81c72ef2e02726e001895053de7887) +- [Dev Deps] update `auto-changelog`; add `aud` [`df20bf5`](https://github.com/ljharb/internal-slot/commit/df20bf5d3943a533c20799d8cc1449997e85d53b) +- [meta] fix autochangelog [`e89e6f1`](https://github.com/ljharb/internal-slot/commit/e89e6f1ff9f10f386e6400b586db78ad9c0f1309) +- [Tests] only audit prod deps [`71317b9`](https://github.com/ljharb/internal-slot/commit/71317b95ec6bbd9877807da0c0316ee9f5f30fab) +- [Deps] update `es-abstract` [`c17ccf4`](https://github.com/ljharb/internal-slot/commit/c17ccf45f4cb0d3b7a1536e9cd3a7ff9a7dafd21) +- [Dev Deps] update `tape` [`d81ae03`](https://github.com/ljharb/internal-slot/commit/d81ae030a0e8f58cee00f752601ce60405a93d78) +- [Deps] update `es-abstract` [`b56303b`](https://github.com/ljharb/internal-slot/commit/b56303b4c3af7a510f9f51860895a46fd2e14752) +- [Deps] update `es-abstract` [`9996d1c`](https://github.com/ljharb/internal-slot/commit/9996d1cf3507750c7a6845a2fb0d0f849ea898a1) + +#### [v1.0.2](https://github.com/ljharb/internal-slot/compare/v1.0.1...v1.0.2) + +> 20 December 2019 + +- [Deps] update `es-abstract`, `side-channel` [`5c9df03`](https://github.com/ljharb/internal-slot/commit/5c9df03a25518f5c482cff4e1447a26fa071df9a) +- [Dev Deps] update `@ljharb/eslint-config`, `tape` [`7820f98`](https://github.com/ljharb/internal-slot/commit/7820f984e523a64ddf3068c4e5631abf61eb1ea4) + +#### [v1.0.1](https://github.com/ljharb/internal-slot/compare/v1.0.0...v1.0.1) + +> 1 December 2019 + +- [Refactor] use `side-channel` package [`d38639f`](https://github.com/ljharb/internal-slot/commit/d38639f0a3cdb5090711179d0e78df857ecbd5d3) +- [actions] add automatic rebasing / merge commit blocking [`74267e6`](https://github.com/ljharb/internal-slot/commit/74267e6e591e18ba39186cb99139d3fd7a757c9f) +- [Dev Deps] update `eslint`, `@ljharb/eslint-config`, `auto-changelog`, `object-inspect`, `safe-publish-latest` [`b042eef`](https://github.com/ljharb/internal-slot/commit/b042eefc067b830bbd370833f7f21754e802b0b2) +- [Deps] update `es-abstract` [`98cf4e8`](https://github.com/ljharb/internal-slot/commit/98cf4e86c1bfe99eda7b11a8ea70394368f33e4f) + +#### v1.0.0 + +> 20 October 2019 + +- Tests [`b50fa41`](https://github.com/ljharb/internal-slot/commit/b50fa41b6f47aba39ac4cb733658580974a0b00a) +- implementation [`c5a59f3`](https://github.com/ljharb/internal-slot/commit/c5a59f3753677f81aa12a0226d3b1187846d06dd) +- Initial commit [`15ebe4d`](https://github.com/ljharb/internal-slot/commit/15ebe4dc6d46885f67969d64c9c3e705780963f8) +- readme [`382a3f5`](https://github.com/ljharb/internal-slot/commit/382a3f53d8975e6488373a0fc2abcdc7c4c44247) +- npm init [`d5e7c97`](https://github.com/ljharb/internal-slot/commit/d5e7c977ef694e89c245fd11165f63c06a7a5040) +- [meta] add FUNDING.yml [`685b608`](https://github.com/ljharb/internal-slot/commit/685b6087613f6735f4411a558500d92f8a3ec3f2) +- [meta] add `auto-changelog`, `safe-publish-latest` [`f8fdf1c`](https://github.com/ljharb/internal-slot/commit/f8fdf1c3f0c592f71746da6d7f8bea18f8946dda) +- [Tests] add `npm run lint` [`baaaa09`](https://github.com/ljharb/internal-slot/commit/baaaa09ab6e5bc5fcc0e7c76e10c55aa18f4ca7e) +- Only apps should have lockfiles [`dfa7efa`](https://github.com/ljharb/internal-slot/commit/dfa7efa3d5cd23261cb75c2adab6ee3c06790fee) diff --git a/novas/novacore-zephyr/groq-code-cli/node_modules/internal-slot/LICENSE b/novas/novacore-zephyr/groq-code-cli/node_modules/internal-slot/LICENSE new file mode 100644 index 0000000000000000000000000000000000000000..3900dd7e2ffe6d5205fde1cd3f890aa51ea36234 --- /dev/null +++ b/novas/novacore-zephyr/groq-code-cli/node_modules/internal-slot/LICENSE @@ -0,0 +1,21 @@ +MIT License + +Copyright (c) 2019 Jordan Harband + +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. diff --git a/novas/novacore-zephyr/groq-code-cli/node_modules/internal-slot/README.md b/novas/novacore-zephyr/groq-code-cli/node_modules/internal-slot/README.md new file mode 100644 index 0000000000000000000000000000000000000000..73d9852e5bc89ccef26502c9935351f110b095e0 --- /dev/null +++ b/novas/novacore-zephyr/groq-code-cli/node_modules/internal-slot/README.md @@ -0,0 +1,58 @@ +# internal-slot [![Version Badge][npm-version-svg]][package-url] + +[![github actions][actions-image]][actions-url] +[![coverage][codecov-image]][codecov-url] +[![dependency status][deps-svg]][deps-url] +[![dev dependency status][dev-deps-svg]][dev-deps-url] +[![License][license-image]][license-url] +[![Downloads][downloads-image]][downloads-url] + +[![npm badge][npm-badge-png]][package-url] + +Truly private storage, akin to the JS spec’s concept of internal slots. + +Uses a WeakMap when available; a Map when not; and a regular object in even older engines. Performance and garbage collection behavior will reflect the environment’s capabilities accordingly. + +## Example + +```js +var SLOT = require('internal-slot'); +var assert = require('assert'); + +var o = {}; + +assert.throws(function () { SLOT.assert(o, 'foo'); }); + +assert.equal(SLOT.has(o, 'foo'), false); +assert.equal(SLOT.get(o, 'foo'), undefined); + +SLOT.set(o, 'foo', 42); + +assert.equal(SLOT.has(o, 'foo'), true); +assert.equal(SLOT.get(o, 'foo'), 42); + +assert.doesNotThrow(function () { SLOT.assert(o, 'foo'); }); +``` + +## Tests +Simply clone the repo, `npm install`, and run `npm test` + +## Security + +Please email [@ljharb](https://github.com/ljharb) or see https://tidelift.com/security if you have a potential security vulnerability to report. + +[package-url]: https://npmjs.org/package/internal-slot +[npm-version-svg]: https://versionbadg.es/ljharb/internal-slot.svg +[deps-svg]: https://david-dm.org/ljharb/internal-slot.svg +[deps-url]: https://david-dm.org/ljharb/internal-slot +[dev-deps-svg]: https://david-dm.org/ljharb/internal-slot/dev-status.svg +[dev-deps-url]: https://david-dm.org/ljharb/internal-slot#info=devDependencies +[npm-badge-png]: https://nodei.co/npm/internal-slot.png?downloads=true&stars=true +[license-image]: https://img.shields.io/npm/l/internal-slot.svg +[license-url]: LICENSE +[downloads-image]: https://img.shields.io/npm/dm/internal-slot.svg +[downloads-url]: https://npm-stat.com/charts.html?package=internal-slot +[codecov-image]: https://codecov.io/gh/ljharb/internal-slot/branch/main/graphs/badge.svg +[codecov-url]: https://app.codecov.io/gh/ljharb/internal-slot/ +[actions-image]: https://img.shields.io/endpoint?url=https://github-actions-badge-u3jn4tfpocch.runkit.sh/ljharb/internal-slot +[actions-url]: https://github.com/ljharb/internal-slot/actions diff --git a/novas/novacore-zephyr/groq-code-cli/node_modules/internal-slot/index.d.ts b/novas/novacore-zephyr/groq-code-cli/node_modules/internal-slot/index.d.ts new file mode 100644 index 0000000000000000000000000000000000000000..fe8dba095a421d2f076e22c6d2811ed5a9801017 --- /dev/null +++ b/novas/novacore-zephyr/groq-code-cli/node_modules/internal-slot/index.d.ts @@ -0,0 +1,12 @@ +declare namespace SLOT { + type InternalSlot = string; // `[[${string}]]`; // TODO: restrict this to require the brackets +} + +declare const SLOT: { + assert(O: object, slot: SLOT.InternalSlot): void; + get(O: object, slot: SLOT.InternalSlot): unknown; + set(O: object, slot: SLOT.InternalSlot, value?: unknown): void; + has(O: object, slot: SLOT.InternalSlot): boolean; +} + +export = SLOT; diff --git a/novas/novacore-zephyr/groq-code-cli/node_modules/internal-slot/index.js b/novas/novacore-zephyr/groq-code-cli/node_modules/internal-slot/index.js new file mode 100644 index 0000000000000000000000000000000000000000..c79a66be795bc9882210c196d7f7a1c71afee5b3 --- /dev/null +++ b/novas/novacore-zephyr/groq-code-cli/node_modules/internal-slot/index.js @@ -0,0 +1,69 @@ +'use strict'; + +/** @typedef {`$${import('.').InternalSlot}`} SaltedInternalSlot */ +/** @typedef {{ [k in SaltedInternalSlot]?: unknown }} SlotsObject */ + +var hasOwn = require('hasown'); +/** @type {import('side-channel').Channel} */ +var channel = require('side-channel')(); + +var $TypeError = require('es-errors/type'); + +/** @type {import('.')} */ +var SLOT = { + assert: function (O, slot) { + if (!O || (typeof O !== 'object' && typeof O !== 'function')) { + throw new $TypeError('`O` is not an object'); + } + if (typeof slot !== 'string') { + throw new $TypeError('`slot` must be a string'); + } + channel.assert(O); + if (!SLOT.has(O, slot)) { + throw new $TypeError('`' + slot + '` is not present on `O`'); + } + }, + get: function (O, slot) { + if (!O || (typeof O !== 'object' && typeof O !== 'function')) { + throw new $TypeError('`O` is not an object'); + } + if (typeof slot !== 'string') { + throw new $TypeError('`slot` must be a string'); + } + var slots = channel.get(O); + // eslint-disable-next-line no-extra-parens + return slots && slots[/** @type {SaltedInternalSlot} */ ('$' + slot)]; + }, + has: function (O, slot) { + if (!O || (typeof O !== 'object' && typeof O !== 'function')) { + throw new $TypeError('`O` is not an object'); + } + if (typeof slot !== 'string') { + throw new $TypeError('`slot` must be a string'); + } + var slots = channel.get(O); + // eslint-disable-next-line no-extra-parens + return !!slots && hasOwn(slots, /** @type {SaltedInternalSlot} */ ('$' + slot)); + }, + set: function (O, slot, V) { + if (!O || (typeof O !== 'object' && typeof O !== 'function')) { + throw new $TypeError('`O` is not an object'); + } + if (typeof slot !== 'string') { + throw new $TypeError('`slot` must be a string'); + } + var slots = channel.get(O); + if (!slots) { + slots = {}; + channel.set(O, slots); + } + // eslint-disable-next-line no-extra-parens + slots[/** @type {SaltedInternalSlot} */ ('$' + slot)] = V; + } +}; + +if (Object.freeze) { + Object.freeze(SLOT); +} + +module.exports = SLOT; diff --git a/novas/novacore-zephyr/groq-code-cli/node_modules/internal-slot/package.json b/novas/novacore-zephyr/groq-code-cli/node_modules/internal-slot/package.json new file mode 100644 index 0000000000000000000000000000000000000000..fc35b9abae9c5b5dacddfedacb2951fe07cf324e --- /dev/null +++ b/novas/novacore-zephyr/groq-code-cli/node_modules/internal-slot/package.json @@ -0,0 +1,79 @@ +{ + "name": "internal-slot", + "version": "1.1.0", + "description": "ES spec-like internal slots", + "main": "index.js", + "scripts": { + "prepack": "npmignore --auto --commentLines=autogenerated", + "prepublishOnly": "safe-publish-latest", + "prepublish": "not-in-publish || npm run prepublishOnly", + "version": "auto-changelog && git add CHANGELOG.md", + "postversion": "auto-changelog && git add CHANGELOG.md && git commit --no-edit --amend && git tag -f \"v$(node -e \"console.log(require('./package.json').version)\")\"", + "pretest": "npm run lint", + "lint": "eslint --ext=js,mjs .", + "postlint": "tsc && attw -P", + "tests-only": "nyc tape 'test/**/*.js'", + "test": "npm run tests-only", + "posttest": "npx npm@'>= 10.2' audit --production" + }, + "repository": { + "type": "git", + "url": "git+https://github.com/ljharb/internal-slot.git" + }, + "keywords": [ + "internal", + "slot", + "internal slot", + "ecmascript", + "es", + "spec", + "private", + "data", + "private data", + "weakmap" + ], + "author": "Jordan Harband ", + "license": "MIT", + "bugs": { + "url": "https://github.com/ljharb/internal-slot/issues" + }, + "homepage": "https://github.com/ljharb/internal-slot#readme", + "engines": { + "node": ">= 0.4" + }, + "devDependencies": { + "@arethetypeswrong/cli": "^0.17.1", + "@ljharb/eslint-config": "^21.1.1", + "@ljharb/tsconfig": "^0.2.2", + "@types/for-each": "^0.3.3", + "@types/object-inspect": "^1.13.0", + "@types/tape": "^5.6.5", + "auto-changelog": "^2.5.0", + "encoding": "^0.1.13", + "eslint": "=8.8.0", + "for-each": "^0.3.3", + "in-publish": "^2.0.1", + "npmignore": "^0.3.1", + "nyc": "^10.3.2", + "object-inspect": "^1.13.3", + "safe-publish-latest": "^2.0.0", + "tape": "^5.9.0", + "typescript": "next" + }, + "dependencies": { + "es-errors": "^1.3.0", + "hasown": "^2.0.2", + "side-channel": "^1.1.0" + }, + "auto-changelog": { + "output": "CHANGELOG.md", + "unreleased": false, + "commitLimit": false, + "backfillLimit": false + }, + "publishConfig": { + "ignore": [ + ".github/workflows" + ] + } +} diff --git a/novas/novacore-zephyr/groq-code-cli/node_modules/internal-slot/tsconfig.json b/novas/novacore-zephyr/groq-code-cli/node_modules/internal-slot/tsconfig.json new file mode 100644 index 0000000000000000000000000000000000000000..60fb90e45970d491a68e6db8c72fcc531d13a44e --- /dev/null +++ b/novas/novacore-zephyr/groq-code-cli/node_modules/internal-slot/tsconfig.json @@ -0,0 +1,9 @@ +{ + "extends": "@ljharb/tsconfig", + "compilerOptions": { + //"target": "es2021", + }, + "exclude": [ + "coverage", + ], +} diff --git a/novas/novacore-zephyr/groq-code-cli/node_modules/irregular-plurals/index.d.ts b/novas/novacore-zephyr/groq-code-cli/node_modules/irregular-plurals/index.d.ts new file mode 100644 index 0000000000000000000000000000000000000000..653ead67e7672f9dfce15d6289b0d4f60491140f --- /dev/null +++ b/novas/novacore-zephyr/groq-code-cli/node_modules/irregular-plurals/index.d.ts @@ -0,0 +1,8 @@ +import irregularPluralsJson = require('./irregular-plurals.json'); + +declare const irregularPlurals: ReadonlyMap< + keyof typeof irregularPluralsJson, + string +>; + +export = irregularPlurals; diff --git a/novas/novacore-zephyr/groq-code-cli/node_modules/irregular-plurals/index.js b/novas/novacore-zephyr/groq-code-cli/node_modules/irregular-plurals/index.js new file mode 100644 index 0000000000000000000000000000000000000000..12b6ae0eb948c5cb53f534ec20a0c40f91129e12 --- /dev/null +++ b/novas/novacore-zephyr/groq-code-cli/node_modules/irregular-plurals/index.js @@ -0,0 +1,4 @@ +'use strict'; +const irregularPlurals = require('./irregular-plurals.json'); + +module.exports = new Map(Object.entries(irregularPlurals)); diff --git a/novas/novacore-zephyr/groq-code-cli/node_modules/irregular-plurals/irregular-plurals.json b/novas/novacore-zephyr/groq-code-cli/node_modules/irregular-plurals/irregular-plurals.json new file mode 100644 index 0000000000000000000000000000000000000000..3d14de1a33cfb4fc527727a7b1b1870ccaab6e89 --- /dev/null +++ b/novas/novacore-zephyr/groq-code-cli/node_modules/irregular-plurals/irregular-plurals.json @@ -0,0 +1,175 @@ +{ + "addendum": "addenda", + "aircraft": "aircraft", + "alga": "algae", + "alumna": "alumnae", + "alumnus": "alumni", + "alveolus": "alveoli", + "amoeba": "amoebae", + "analysis": "analyses", + "antenna": "antennae", + "antithesis": "antitheses", + "apex": "apices", + "appendix": "appendices", + "automaton": "automata", + "axis": "axes", + "bacillus": "bacilli", + "bacterium": "bacteria", + "baculum": "bacula", + "barracks": "barracks", + "basis": "bases", + "beau": "beaux", + "bison": "bison", + "buffalo": "buffalo", + "bureau": "bureaus", + "cactus": "cacti", + "calf": "calves", + "carcinoma": "carcinomata", + "carp": "carp", + "census": "censuses", + "chassis": "chassis", + "cherub": "cherubim", + "child": "children", + "château": "châteaus", + "cloaca": "cloacae", + "cod": "cod", + "codex": "codices", + "concerto": "concerti", + "consortium": "consortia", + "corpus": "corpora", + "crisis": "crises", + "criterion": "criteria", + "curriculum": "curricula", + "cystoma": "cystomata", + "datum": "data", + "deer": "deer", + "diagnosis": "diagnoses", + "die": "dice", + "dwarf": "dwarfs", + "echo": "echoes", + "elf": "elves", + "elk": "elk", + "ellipsis": "ellipses", + "embargo": "embargoes", + "emphasis": "emphases", + "erratum": "errata", + "faux pas": "faux pas", + "fez": "fezes", + "firmware": "firmware", + "fish": "fish", + "focus": "foci", + "foot": "feet", + "formula": "formulae", + "fungus": "fungi", + "gallows": "gallows", + "genus": "genera", + "glomerulus": "glomeruli", + "goose": "geese", + "graffito": "graffiti", + "grouse": "grouse", + "half": "halves", + "hamulus": "hamuli", + "hero": "heroes", + "hippopotamus": "hippopotami", + "hoof": "hooves", + "hovercraft": "hovercraft", + "hypothesis": "hypotheses", + "iliac": "ilia", + "incubus": "incubi", + "index": "indices", + "interstitium": "interstitia", + "kakapo": "kakapo", + "knife": "knives", + "larva": "larvae", + "leaf": "leaves", + "libretto": "libretti", + "life": "lives", + "loaf": "loaves", + "loculus": "loculi", + "locus": "loci", + "louse": "lice", + "man": "men", + "matrix": "matrices", + "means": "means", + "measles": "measles", + "media": "media", + "medium": "media", + "memorandum": "memoranda", + "millennium": "millennia", + "minutia": "minutiae", + "moose": "moose", + "mouse": "mice", + "nebula": "nebulae", + "nemesis": "nemeses", + "neurosis": "neuroses", + "news": "news", + "nucleolus": "nucleoli", + "nucleus": "nuclei", + "oasis": "oases", + "occiput": "occipita", + "offspring": "offspring", + "omphalos": "omphaloi", + "opus": "opera", + "ovum": "ova", + "ox": "oxen", + "paralysis": "paralyses", + "parenthesis": "parentheses", + "person": "people", + "phenomenon": "phenomena", + "phylum": "phyla", + "pike": "pike", + "polyhedron": "polyhedra", + "potato": "potatoes", + "primus": "primi", + "prognosis": "prognoses", + "quiz": "quizzes", + "radius": "radii", + "referendum": "referenda", + "salmon": "salmon", + "scarf": "scarves", + "scrotum": "scrota", + "self": "selves", + "seminoma": "seminomata", + "series": "series", + "sheep": "sheep", + "shelf": "shelves", + "shrimp": "shrimp", + "simulacrum": "simulacra", + "soliloquy": "soliloquies", + "spacecraft": "spacecraft", + "species": "species", + "spectrum": "spectra", + "squid": "squid", + "stimulus": "stimuli", + "stratum": "strata", + "swine": "swine", + "syconium": "syconia", + "syllabus": "syllabi", + "symposium": "symposia", + "synopsis": "synopses", + "synthesis": "syntheses", + "tableau": "tableaus", + "testis": "testes", + "that": "those", + "thesis": "theses", + "thief": "thieves", + "this": "these", + "thrombus": "thrombi", + "tomato": "tomatoes", + "tooth": "teeth", + "torus": "tori", + "trout": "trout", + "tuna": "tuna", + "umbilicus": "umbilici", + "uterus": "uteri", + "vertebra": "vertebrae", + "vertex": "vertices", + "veto": "vetoes", + "vita": "vitae", + "vortex": "vortices", + "watercraft": "watercraft", + "wharf": "wharves", + "wife": "wives", + "wolf": "wolves", + "woman": "women" +} diff --git a/novas/novacore-zephyr/groq-code-cli/node_modules/irregular-plurals/license b/novas/novacore-zephyr/groq-code-cli/node_modules/irregular-plurals/license new file mode 100644 index 0000000000000000000000000000000000000000..e7af2f77107d73046421ef56c4684cbfdd3c1e89 --- /dev/null +++ b/novas/novacore-zephyr/groq-code-cli/node_modules/irregular-plurals/license @@ -0,0 +1,9 @@ +MIT License + +Copyright (c) Sindre Sorhus (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. diff --git a/novas/novacore-zephyr/groq-code-cli/node_modules/irregular-plurals/package.json b/novas/novacore-zephyr/groq-code-cli/node_modules/irregular-plurals/package.json new file mode 100644 index 0000000000000000000000000000000000000000..62aa5fb0ae074fefeffd4d4871b2ac55cc105437 --- /dev/null +++ b/novas/novacore-zephyr/groq-code-cli/node_modules/irregular-plurals/package.json @@ -0,0 +1,52 @@ +{ + "name": "irregular-plurals", + "version": "3.5.0", + "description": "Map of nouns to their irregular plural form", + "license": "MIT", + "repository": "sindresorhus/irregular-plurals", + "author": { + "name": "Sindre Sorhus", + "email": "sindresorhus@gmail.com", + "url": "sindresorhus.com" + }, + "engines": { + "node": ">=8" + }, + "scripts": { + "//test": "xo && ava && tsd", + "test": "ava" + }, + "files": [ + "index.js", + "index.d.ts", + "irregular-plurals.json" + ], + "keywords": [ + "word", + "words", + "list", + "map", + "hash", + "json", + "irregular", + "plural", + "plurals", + "noun", + "nouns" + ], + "devDependencies": { + "ava": "^1.4.1", + "tsd": "^0.7.2", + "xo": "^0.24.0" + }, + "xo": { + "rules": { + "import/extensions": "off" + } + }, + "tsd": { + "compilerOptions": { + "resolveJsonModule": true + } + } +} diff --git a/novas/novacore-zephyr/groq-code-cli/node_modules/irregular-plurals/readme.md b/novas/novacore-zephyr/groq-code-cli/node_modules/irregular-plurals/readme.md new file mode 100644 index 0000000000000000000000000000000000000000..897d26db6f04a0e337057861c9e1325a8c26221c --- /dev/null +++ b/novas/novacore-zephyr/groq-code-cli/node_modules/irregular-plurals/readme.md @@ -0,0 +1,38 @@ +# irregular-plurals + +> Map of nouns to their irregular plural form + +> An irregular plural in this library is defined as a noun that cannot be made plural by applying these rules: +> - If the noun ends in an "s", "x", "z", "ch" or "sh", add "es" +> - If the noun ends in a "y" and is preceded by a consonant, drop the "y" and add "ies" +> - If the noun ends in a "y" and is preceded by a vowel, add "s" + +The list is just a [JSON file](irregular-plurals.json) and can be used anywhere. + +## Install + +``` +$ npm install irregular-plurals +``` + +## Usage + +```js +const irregularPlurals = require('irregular-plurals'); + +console.log(irregularPlurals.get('cactus')); +//=> 'cacti' + +console.log(irregularPlurals); +/* +Map { + [addendum, 'addenda'], + [alga, 'algae'], + … +} +*/ +``` + +## Related + +- [plur](https://github.com/sindresorhus/plur) - Pluralize a word diff --git a/novas/novacore-zephyr/groq-code-cli/node_modules/is-array-buffer/.eslintrc b/novas/novacore-zephyr/groq-code-cli/node_modules/is-array-buffer/.eslintrc new file mode 100644 index 0000000000000000000000000000000000000000..0b9a855cd1686413c083e279797d99f2cffe42e7 --- /dev/null +++ b/novas/novacore-zephyr/groq-code-cli/node_modules/is-array-buffer/.eslintrc @@ -0,0 +1,17 @@ +{ + "root": true, + + "extends": "@ljharb", + + "globals": { + "DataView": false, + }, + + "rules": { + "new-cap": ["error", { + "capIsNewExceptions": [ + "GetIntrinsic", + ], + }], + }, +} diff --git a/novas/novacore-zephyr/groq-code-cli/node_modules/is-array-buffer/.nycrc b/novas/novacore-zephyr/groq-code-cli/node_modules/is-array-buffer/.nycrc new file mode 100644 index 0000000000000000000000000000000000000000..bdd626ce91477abbdd489b79988baebadbd3c897 --- /dev/null +++ b/novas/novacore-zephyr/groq-code-cli/node_modules/is-array-buffer/.nycrc @@ -0,0 +1,9 @@ +{ + "all": true, + "check-coverage": false, + "reporter": ["text-summary", "text", "html", "json"], + "exclude": [ + "coverage", + "test" + ] +} diff --git a/novas/novacore-zephyr/groq-code-cli/node_modules/is-array-buffer/CHANGELOG.md b/novas/novacore-zephyr/groq-code-cli/node_modules/is-array-buffer/CHANGELOG.md new file mode 100644 index 0000000000000000000000000000000000000000..9acc7392a76c976e03b9ad1f634d0687e2111b09 --- /dev/null +++ b/novas/novacore-zephyr/groq-code-cli/node_modules/is-array-buffer/CHANGELOG.md @@ -0,0 +1,91 @@ +# Changelog + +All notable changes to this project will be documented in this file. + +The format is based on [Keep a Changelog](https://keepachangelog.com/en/1.0.0/) +and this project adheres to [Semantic Versioning](https://semver.org/spec/v2.0.0.html). + +## [v3.0.5](https://github.com/fengyuanchen/is-array-buffer/compare/v3.0.4...v3.0.5) - 2024-12-16 + +### Commits + +- [types] use shared config [`6180b31`](https://github.com/fengyuanchen/is-array-buffer/commit/6180b3180cd15a49e6394cb6de0ae2667124d3f7) +- [actions] split out node 10-20, and 20+ [`1ea4712`](https://github.com/fengyuanchen/is-array-buffer/commit/1ea471223e393bfc124fdecdbeb23fe08209514f) +- [Dev Deps] update `@ljharb/eslint-config`, `@ljharb/tsconfig`, `@types/get-intrinsic`, `@types/object-inspect`, `@types/tape`, `auto-changelog`, `es-value-fixtures`, `object-inspect`, `tape` [`de2b6ab`](https://github.com/fengyuanchen/is-array-buffer/commit/de2b6aba5e88b382bd6707409aa39822707fed50) +- [Deps] update `call-bind`, `get-intrinsic` [`55b80a1`](https://github.com/fengyuanchen/is-array-buffer/commit/55b80a10ae9151e1bd52382610d7330f37a1dc05) +- [Deps] update `call-bind`, `get-intrinsic` [`184484a`](https://github.com/fengyuanchen/is-array-buffer/commit/184484ad7fd3a72426f78e2bce3246e8c23e9ccf) +- [Dev Deps] update `available-typed-arrays`, `tape` [`81582a7`](https://github.com/fengyuanchen/is-array-buffer/commit/81582a72d6ddb28f67ad542edcd673d6c01cc2c0) +- [Tests] add `@arethetypeswrong/cli` [`6d67841`](https://github.com/fengyuanchen/is-array-buffer/commit/6d6784170ec8a0b766428ce44be3157147860a09) +- [Refactor] use `call-bound` directly [`dd0bad1`](https://github.com/fengyuanchen/is-array-buffer/commit/dd0bad194e4ff0e5413be23d69018fa961ce4af7) +- [Tests] replace `aud` with `npm audit` [`99b62d1`](https://github.com/fengyuanchen/is-array-buffer/commit/99b62d1755b6965bbc236342215e28a10d6839a7) +- [Dev Deps] remove obsolete DT package [`9fc6971`](https://github.com/fengyuanchen/is-array-buffer/commit/9fc69715867796c5854fd5377d90da6f01fb981e) +- [Dev Deps] add missing peer dep [`a3b8dbb`](https://github.com/fengyuanchen/is-array-buffer/commit/a3b8dbb538c13abb8f1a4d4d9a682ec71c2f52f8) + +## [v3.0.4](https://github.com/fengyuanchen/is-array-buffer/compare/v3.0.3...v3.0.4) - 2024-02-02 + +### Commits + +- [patch] add types [`15fab4c`](https://github.com/fengyuanchen/is-array-buffer/commit/15fab4c68378904a12592969042e638dbc6be8e5) + +## [v3.0.3](https://github.com/fengyuanchen/is-array-buffer/compare/v3.0.2...v3.0.3) - 2024-02-02 + +### Commits + +- [Fix] TAs can take a DataView in node 0.8; use a simpler check [`69a03f6`](https://github.com/fengyuanchen/is-array-buffer/commit/69a03f671f892b724be1a899a3d90c981e7601c9) +- [Dev Deps] update `aud`, `available-typed-arrays`, `npmignore`, `object-inspect`, `tape` [`53ca341`](https://github.com/fengyuanchen/is-array-buffer/commit/53ca34182d2aab61e90e744ee47d01f6577b616e) +- [Deps] update `call-bind`, `get-intrinsic`, `is-typed-array` [`bec883f`](https://github.com/fengyuanchen/is-array-buffer/commit/bec883f31e83410a46927a843ded46ebffbbb1f6) +- [Dev Deps] update `@ljharb/eslint-config`, `aud`, `tape` [`944d4ce`](https://github.com/fengyuanchen/is-array-buffer/commit/944d4cea229ce29a0965665bf59df290c53ecbbb) +- [meta] add missing `engines.node` [`0852be6`](https://github.com/fengyuanchen/is-array-buffer/commit/0852be6f64188912d2383ff9b6a7cc12bd369006) +- [Deps] update `get-intrinsic` [`b59c4af`](https://github.com/fengyuanchen/is-array-buffer/commit/b59c4af432014649d6cd1f070cf6e9917e6ad524) + +## [v3.0.2](https://github.com/fengyuanchen/is-array-buffer/compare/v3.0.1...v3.0.2) - 2023-03-01 + +### Commits + +- [Fix] `node` 0.8: an object arg to a TA only throws a RangeError when it is an ArrayBuffer of an incompatible byte length [`d5108f6`](https://github.com/fengyuanchen/is-array-buffer/commit/d5108f6d06245e616b6c563995f214a38732243c) +- [Dev Deps] update `object-inspect`, `tape` [`400f456`](https://github.com/fengyuanchen/is-array-buffer/commit/400f4563ccbe27c7fbb485665352c76210bba9cb) +- [Deps] update `get-intrinsic` [`133732e`](https://github.com/fengyuanchen/is-array-buffer/commit/133732ec88f8dded1c705b758badc2240077a6d8) + +## [v3.0.1](https://github.com/fengyuanchen/is-array-buffer/compare/v3.0.0...v3.0.1) - 2023-01-05 + +### Commits + +- [Fix] in node 0.8, TAs do not coerce Uint8Arrays to an ArrayBuffer properly [`e488763`](https://github.com/fengyuanchen/is-array-buffer/commit/e48876346f446825dad619e55dcc830ed93f2853) +- [Dev Deps] update `@ljharb/eslint-config`, `aud` [`8eebfa2`](https://github.com/fengyuanchen/is-array-buffer/commit/8eebfa21881f3a9fa5094f8c486f00e496658ea9) + +## [v3.0.0](https://github.com/fengyuanchen/is-array-buffer/compare/v2.0.0...v3.0.0) - 2023-01-04 + +### Commits + +- [Breaking] replace package implementation [`b65f929`](https://github.com/fengyuanchen/is-array-buffer/commit/b65f929d856d2a42f043be0f5a0fc2e067370ed1) +- Initial implementation, tests, readme [`06afa73`](https://github.com/fengyuanchen/is-array-buffer/commit/06afa73e775960802ea9257cc6b4cdf768c72d3f) +- Initial commit [`051813f`](https://github.com/fengyuanchen/is-array-buffer/commit/051813f15e3cbf515e2447306761dd9c42819150) +- npm init [`946d3de`](https://github.com/fengyuanchen/is-array-buffer/commit/946d3de82b15471fb2c00a4a2a5a52eb0515eb04) +- [meta] use `npmignore` to autogenerate an npmignore file [`ca4c446`](https://github.com/fengyuanchen/is-array-buffer/commit/ca4c446f37daf5ab8cc590f2194574c2706561ed) +- Only apps should have lockfiles [`be7d8eb`](https://github.com/fengyuanchen/is-array-buffer/commit/be7d8eb09dc5033c04df85d7ba9a8714f4e54357) +- docs: fix badge link [`9ea7fb6`](https://github.com/fengyuanchen/is-array-buffer/commit/9ea7fb638e79f8938161b3b7370cb965d8e93a8b) + + + +## 2.0.0 (Feb 12, 2021) + +- Refactor in TypeScript. +- Drop the `dist` directory. +- Drop the UMD bundled file. +- Add a declaration file for TypeScript. + +## 1.0.1 (Apr 1, 2018) + +- Improve code style. + +## 1.0.0 (Jul 25, 2017) + +- Supports UMD, CommonJS and ES Module. + +## 0.1.0 (Nov 28, 2015) + +- Check if ArrayBuffer is defined first. + +## 0.0.1 (Nov 11, 2015) + +- Initial release. diff --git a/novas/novacore-zephyr/groq-code-cli/node_modules/is-array-buffer/LICENSE b/novas/novacore-zephyr/groq-code-cli/node_modules/is-array-buffer/LICENSE new file mode 100644 index 0000000000000000000000000000000000000000..a9b309c224b7b2fca6babe7f08f6bd42b7a27181 --- /dev/null +++ b/novas/novacore-zephyr/groq-code-cli/node_modules/is-array-buffer/LICENSE @@ -0,0 +1,21 @@ +MIT License + +Copyright (c) 2015 Chen Gengyuan, Inspect JS + +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. diff --git a/novas/novacore-zephyr/groq-code-cli/node_modules/is-array-buffer/README.md b/novas/novacore-zephyr/groq-code-cli/node_modules/is-array-buffer/README.md new file mode 100644 index 0000000000000000000000000000000000000000..7b0292f6d40ba1c00d9277224299ca922b3a9276 --- /dev/null +++ b/novas/novacore-zephyr/groq-code-cli/node_modules/is-array-buffer/README.md @@ -0,0 +1,56 @@ +# is-array-buffer [![Version Badge][npm-version-svg]][package-url] + +[![github actions][actions-image]][actions-url] +[![coverage][codecov-image]][codecov-url] +[![License][license-image]][license-url] +[![Downloads][downloads-image]][downloads-url] + +[![npm badge][npm-badge-png]][package-url] + +Is this value a JS ArrayBuffer? This module works cross-realm/iframe, does not depend on `instanceof` or mutable properties, and despite ES6 Symbol.toStringTag. + +## Example + +```js +var assert = require('assert'); +var isArrayBuffer = require('is-array-buffer'); + +assert(!isArrayBuffer(function () {})); +assert(!isArrayBuffer(null)); +assert(!isArrayBuffer(function* () { yield 42; return Infinity; }); +assert(!isArrayBuffer(Symbol('foo'))); +assert(!isArrayBuffer(1n)); +assert(!isArrayBuffer(Object(1n))); + +assert(!isArrayBuffer(new Set())); +assert(!isArrayBuffer(new WeakSet())); +assert(!isArrayBuffer(new Map())); +assert(!isArrayBuffer(new WeakMap())); +assert(!isArrayBuffer(new WeakRef({}))); +assert(!isArrayBuffer(new FinalizationRegistry(() => {}))); +assert(!isArrayBuffer(new SharedArrayBuffer())); + +assert(isArrayBuffer(new ArrayBuffer())); + +class MyArrayBuffer extends ArrayBuffer {} +assert(isArrayBuffer(new MyArrayBuffer())); +``` + +## Tests +Simply clone the repo, `npm install`, and run `npm test` + +[package-url]: https://npmjs.org/package/is-array-buffer +[npm-version-svg]: https://versionbadg.es/inspect-js/is-array-buffer.svg +[deps-svg]: https://david-dm.org/inspect-js/is-array-buffer.svg +[deps-url]: https://david-dm.org/inspect-js/is-array-buffer +[dev-deps-svg]: https://david-dm.org/inspect-js/is-array-buffer/dev-status.svg +[dev-deps-url]: https://david-dm.org/inspect-js/is-array-buffer#info=devDependencies +[npm-badge-png]: https://nodei.co/npm/is-array-buffer.png?downloads=true&stars=true +[license-image]: https://img.shields.io/npm/l/is-array-buffer.svg +[license-url]: LICENSE +[downloads-image]: https://img.shields.io/npm/dm/is-array-buffer.svg +[downloads-url]: https://npm-stat.com/charts.html?package=is-array-buffer +[codecov-image]: https://codecov.io/gh/inspect-js/is-array-buffer/branch/main/graphs/badge.svg +[codecov-url]: https://app.codecov.io/gh/inspect-js/is-array-buffer/ +[actions-image]: https://img.shields.io/endpoint?url=https://github-actions-badge-u3jn4tfpocch.runkit.sh/inspect-js/is-array-buffer +[actions-url]: https://github.com/inspect-js/is-array-buffer/actions diff --git a/novas/novacore-zephyr/groq-code-cli/node_modules/is-array-buffer/index.d.ts b/novas/novacore-zephyr/groq-code-cli/node_modules/is-array-buffer/index.d.ts new file mode 100644 index 0000000000000000000000000000000000000000..993527cb490376d0fa92172268c10966383a0fae --- /dev/null +++ b/novas/novacore-zephyr/groq-code-cli/node_modules/is-array-buffer/index.d.ts @@ -0,0 +1,3 @@ +declare function isArrayBuffer(value: unknown): value is ArrayBuffer; + +export = isArrayBuffer; \ No newline at end of file diff --git a/novas/novacore-zephyr/groq-code-cli/node_modules/is-array-buffer/index.js b/novas/novacore-zephyr/groq-code-cli/node_modules/is-array-buffer/index.js new file mode 100644 index 0000000000000000000000000000000000000000..fbedee84aaab47f01deb8125da25757e488c8273 --- /dev/null +++ b/novas/novacore-zephyr/groq-code-cli/node_modules/is-array-buffer/index.js @@ -0,0 +1,43 @@ +'use strict'; + +var callBind = require('call-bind'); +var callBound = require('call-bound'); +var GetIntrinsic = require('get-intrinsic'); + +var $ArrayBuffer = GetIntrinsic('%ArrayBuffer%', true); +/** @type {undefined | ((receiver: ArrayBuffer) => number) | ((receiver: unknown) => never)} */ +var $byteLength = callBound('ArrayBuffer.prototype.byteLength', true); +var $toString = callBound('Object.prototype.toString'); + +// in node 0.10, ArrayBuffers have no prototype methods, but have an own slot-checking `slice` method +var abSlice = !!$ArrayBuffer && !$byteLength && new $ArrayBuffer(0).slice; +var $abSlice = !!abSlice && callBind(abSlice); + +/** @type {import('.')} */ +module.exports = $byteLength || $abSlice + ? function isArrayBuffer(obj) { + if (!obj || typeof obj !== 'object') { + return false; + } + try { + if ($byteLength) { + // @ts-expect-error no idea why TS can't handle the overload + $byteLength(obj); + } else { + // @ts-expect-error TS chooses not to type-narrow inside a closure + $abSlice(obj, 0); + } + return true; + } catch (e) { + return false; + } + } + : $ArrayBuffer + // in node 0.8, ArrayBuffers have no prototype or own methods, but also no Symbol.toStringTag + ? function isArrayBuffer(obj) { + return $toString(obj) === '[object ArrayBuffer]'; + } + // @ts-expect-error + : function isArrayBuffer(obj) { // eslint-disable-line no-unused-vars + return false; + }; diff --git a/novas/novacore-zephyr/groq-code-cli/node_modules/is-array-buffer/package.json b/novas/novacore-zephyr/groq-code-cli/node_modules/is-array-buffer/package.json new file mode 100644 index 0000000000000000000000000000000000000000..7c7fa3bc16d268753f1b68027410da034ab6b1ec --- /dev/null +++ b/novas/novacore-zephyr/groq-code-cli/node_modules/is-array-buffer/package.json @@ -0,0 +1,91 @@ +{ + "name": "is-array-buffer", + "version": "3.0.5", + "description": "Is this value a JS ArrayBuffer?", + "main": "index.js", + "exports": { + ".": "./index.js", + "./package.json": "./package.json" + }, + "types": "./index.d.ts", + "sideEffects": false, + "scripts": { + "prepack": "npmignore --auto --commentLines=autogenerated", + "prepublishOnly": "safe-publish-latest", + "prepublish": "not-in-publish || npm run prepublishOnly", + "lint": "eslint --ext=.js,.mjs .", + "postlint": "tsc && attw -P", + "pretest": "npm run lint", + "tests-only": "nyc tape 'test/**/*.js'", + "test": "npm run tests-only --", + "posttest": "npx npm@'>= 10.2' audit --production", + "version": "auto-changelog && git add CHANGELOG.md", + "postversion": "auto-changelog && git add CHANGELOG.md && git commit --no-edit --amend && git tag -f \"v$(node -e \"console.log(require('./package.json').version)\")\"" + }, + "repository": { + "type": "git", + "url": "git+https://github.com/inspect-js/is-array-buffer.git" + }, + "keywords": [ + "javascript", + "ecmascript", + "is", + "arraybuffer", + "array", + "buffer" + ], + "author": "Jordan Harband ", + "funding": { + "url": "https://github.com/sponsors/ljharb" + }, + "license": "MIT", + "bugs": { + "url": "https://github.com/inspect-js/is-array-buffer/issues" + }, + "homepage": "https://github.com/inspect-js/is-array-buffer#readme", + "devDependencies": { + "@arethetypeswrong/cli": "^0.17.1", + "@ljharb/eslint-config": "^21.1.1", + "@ljharb/tsconfig": "^0.2.2", + "@types/call-bind": "^1.0.5", + "@types/for-each": "^0.3.3", + "@types/get-intrinsic": "^1.2.3", + "@types/object-inspect": "^1.13.0", + "@types/tape": "^5.7.0", + "auto-changelog": "^2.5.0", + "available-typed-arrays": "^1.0.7", + "encoding": "^0.1.13", + "es-value-fixtures": "^1.5.0", + "eslint": "=8.8.0", + "for-each": "^0.3.3", + "in-publish": "^2.0.1", + "npmignore": "^0.3.1", + "nyc": "^10.3.2", + "object-inspect": "^1.13.3", + "safe-publish-latest": "^2.0.0", + "tape": "^5.9.0", + "typescript": "next" + }, + "auto-changelog": { + "output": "CHANGELOG.md", + "template": "keepachangelog", + "unreleased": false, + "commitLimit": false, + "backfillLimit": false, + "hideCredit": true, + "startingVersion": "2.0.1" + }, + "dependencies": { + "call-bind": "^1.0.8", + "call-bound": "^1.0.3", + "get-intrinsic": "^1.2.6" + }, + "publishConfig": { + "ignore": [ + ".github/workflows" + ] + }, + "engines": { + "node": ">= 0.4" + } +} diff --git a/novas/novacore-zephyr/groq-code-cli/node_modules/is-array-buffer/tsconfig.json b/novas/novacore-zephyr/groq-code-cli/node_modules/is-array-buffer/tsconfig.json new file mode 100644 index 0000000000000000000000000000000000000000..b9fbbf12f8d0e5d60469d364c4aa201ec7d63fed --- /dev/null +++ b/novas/novacore-zephyr/groq-code-cli/node_modules/is-array-buffer/tsconfig.json @@ -0,0 +1,9 @@ +{ + "extends": "@ljharb/tsconfig", + "compilerOptions": { + "target": "ES2021", + }, + "exclude": [ + "coverage", + ], +} diff --git a/novas/novacore-zephyr/groq-code-cli/node_modules/is-arrayish/.editorconfig b/novas/novacore-zephyr/groq-code-cli/node_modules/is-arrayish/.editorconfig new file mode 100644 index 0000000000000000000000000000000000000000..4c017f8ad214943ae5b33bb361a6c2d89a0a72fa --- /dev/null +++ b/novas/novacore-zephyr/groq-code-cli/node_modules/is-arrayish/.editorconfig @@ -0,0 +1,18 @@ +root = true + +[*] +indent_style = tab +end_of_line = lf +charset = utf-8 +trim_trailing_whitespace = true +insert_final_newline = true + +[*.coffee] +indent_style = space + +[{package.json,*.yml}] +indent_style = space +indent_size = 2 + +[*.md] +trim_trailing_whitespace = false diff --git a/novas/novacore-zephyr/groq-code-cli/node_modules/is-arrayish/.istanbul.yml b/novas/novacore-zephyr/groq-code-cli/node_modules/is-arrayish/.istanbul.yml new file mode 100644 index 0000000000000000000000000000000000000000..19fbec32b851dba9b1d32506d6e9a191b0eb24c2 --- /dev/null +++ b/novas/novacore-zephyr/groq-code-cli/node_modules/is-arrayish/.istanbul.yml @@ -0,0 +1,4 @@ +instrumentation: + excludes: + - test.js + - test/**/* diff --git a/novas/novacore-zephyr/groq-code-cli/node_modules/is-arrayish/.npmignore b/novas/novacore-zephyr/groq-code-cli/node_modules/is-arrayish/.npmignore new file mode 100644 index 0000000000000000000000000000000000000000..8d5eacb3ef6d5369abebd00d5e589cacdc9e0f0b --- /dev/null +++ b/novas/novacore-zephyr/groq-code-cli/node_modules/is-arrayish/.npmignore @@ -0,0 +1,5 @@ +/coverage/ +/test.js +/test/ +*.sw[a-p] +/node_modules/ diff --git a/novas/novacore-zephyr/groq-code-cli/node_modules/is-arrayish/.travis.yml b/novas/novacore-zephyr/groq-code-cli/node_modules/is-arrayish/.travis.yml new file mode 100644 index 0000000000000000000000000000000000000000..5a0424350edc7e4c8b4657c79f30261eb6eb1c64 --- /dev/null +++ b/novas/novacore-zephyr/groq-code-cli/node_modules/is-arrayish/.travis.yml @@ -0,0 +1,17 @@ +language: node_js + +script: + - node_modules/.bin/istanbul cover node_modules/.bin/_mocha -- --compilers coffee:coffee-script/register + - cat coverage/lcov.info | node_modules/.bin/coveralls +node_js: + - "0.10" + - "0.11" + - "0.12" + - "iojs" +os: + - linux + - osx + +notifications: + slack: + secure: oOt8QGzdrPDsTMcyahtIq5Q+0U1iwfgJgFCxBLsomQ0bpIMn+y5m4viJydA2UinHPGc944HS3LMZS9iKQyv+DjTgbhUyNXqeVjtxCwRe37f5rKQlXVvdfmjHk2kln4H8DcK3r5Qd/+2hd9BeMsp2GImTrkRSud1CZQlhhe5IgZOboSoWpGVMMy1iazWT06tAtiB2LRVhmsdUaFZDWAhGZ+UAvCPf+mnBOAylIj+U0GDrofhfTi25RK0gddG2f/p2M1HCu49O6wECGWkt2hVei233DkNJyLLLJVcvmhf+aXkV5TjMyaoxh/HdcV4DrA7KvYuWmWWKsINa9hlwAsdd/FYmJ6PjRkKWas2JoQ1C+qOzDxyQvn3CaUZFKD99pdsq0rBBZujqXQKZZ/hWb/CE74BI6fKmqQkiEPaD/7uADj04FEg6HVBZaMCyauOaK5b3VC97twbALZ1qVxYV6mU+zSEvnUbpnjjvRO0fSl9ZHA+rzkW73kX3GmHY0wAozEZbSy7QLuZlQ2QtHmBLr+APaGMdL1sFF9qFfzqKy0WDbSE0WS6hpAEJpTsjYmeBrnI8UmK3m++iEgyQPvZoH9LhUT+ek7XIfHZMe04BmC6wuO24/RfpmR6bQK9VMarFCYlBiWxg/z30vkP0KTpUi3o/cqFm7/Noxc0i2LVqM3E0Sy4= diff --git a/novas/novacore-zephyr/groq-code-cli/node_modules/is-arrayish/LICENSE b/novas/novacore-zephyr/groq-code-cli/node_modules/is-arrayish/LICENSE new file mode 100644 index 0000000000000000000000000000000000000000..0a5f461a6930323a7ca4e0acfd28043323805316 --- /dev/null +++ b/novas/novacore-zephyr/groq-code-cli/node_modules/is-arrayish/LICENSE @@ -0,0 +1,21 @@ +The MIT License (MIT) + +Copyright (c) 2015 JD Ballard + +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. diff --git a/novas/novacore-zephyr/groq-code-cli/node_modules/is-arrayish/README.md b/novas/novacore-zephyr/groq-code-cli/node_modules/is-arrayish/README.md new file mode 100644 index 0000000000000000000000000000000000000000..7d360724c01518ad6ad60766838d2ef3625e50f4 --- /dev/null +++ b/novas/novacore-zephyr/groq-code-cli/node_modules/is-arrayish/README.md @@ -0,0 +1,16 @@ +# node-is-arrayish [![Travis-CI.org Build Status](https://img.shields.io/travis/Qix-/node-is-arrayish.svg?style=flat-square)](https://travis-ci.org/Qix-/node-is-arrayish) [![Coveralls.io Coverage Rating](https://img.shields.io/coveralls/Qix-/node-is-arrayish.svg?style=flat-square)](https://coveralls.io/r/Qix-/node-is-arrayish) +> Determines if an object can be used like an Array + +## Example +```javascript +var isArrayish = require('is-arrayish'); + +isArrayish([]); // true +isArrayish({__proto__: []}); // true +isArrayish({}); // false +isArrayish({length:10}); // false +``` + +## License +Licensed under the [MIT License](http://opensource.org/licenses/MIT). +You can find a copy of it in [LICENSE](LICENSE). diff --git a/novas/novacore-zephyr/groq-code-cli/node_modules/is-arrayish/index.js b/novas/novacore-zephyr/groq-code-cli/node_modules/is-arrayish/index.js new file mode 100644 index 0000000000000000000000000000000000000000..5b971868b6668b0397bf90d446476c8468901c52 --- /dev/null +++ b/novas/novacore-zephyr/groq-code-cli/node_modules/is-arrayish/index.js @@ -0,0 +1,10 @@ +'use strict'; + +module.exports = function isArrayish(obj) { + if (!obj) { + return false; + } + + return obj instanceof Array || Array.isArray(obj) || + (obj.length >= 0 && obj.splice instanceof Function); +}; diff --git a/novas/novacore-zephyr/groq-code-cli/node_modules/is-arrayish/package.json b/novas/novacore-zephyr/groq-code-cli/node_modules/is-arrayish/package.json new file mode 100644 index 0000000000000000000000000000000000000000..8b2d1c3083fdddcb9e67624a42228e1ad4bb0fdc --- /dev/null +++ b/novas/novacore-zephyr/groq-code-cli/node_modules/is-arrayish/package.json @@ -0,0 +1,34 @@ +{ + "name": "is-arrayish", + "description": "Determines if an object can be used as an array", + "version": "0.2.1", + "author": "Qix (http://github.com/qix-)", + "keywords": [ + "is", + "array", + "duck", + "type", + "arrayish", + "similar", + "proto", + "prototype", + "type" + ], + "license": "MIT", + "scripts": { + "pretest": "xo", + "test": "mocha --compilers coffee:coffee-script/register" + }, + "repository": { + "type": "git", + "url": "https://github.com/qix-/node-is-arrayish.git" + }, + "devDependencies": { + "coffee-script": "^1.9.3", + "coveralls": "^2.11.2", + "istanbul": "^0.3.17", + "mocha": "^2.2.5", + "should": "^7.0.1", + "xo": "^0.6.1" + } +} diff --git a/novas/novacore-zephyr/groq-code-cli/node_modules/is-async-function/.eslintrc b/novas/novacore-zephyr/groq-code-cli/node_modules/is-async-function/.eslintrc new file mode 100644 index 0000000000000000000000000000000000000000..c885fa335fdae0fbef7b2771d426b1bf348eb356 --- /dev/null +++ b/novas/novacore-zephyr/groq-code-cli/node_modules/is-async-function/.eslintrc @@ -0,0 +1,9 @@ +{ + "root": true, + + "extends": "@ljharb", + + "rules": { + "no-new-func": 1, + }, +} diff --git a/novas/novacore-zephyr/groq-code-cli/node_modules/is-async-function/.nycrc b/novas/novacore-zephyr/groq-code-cli/node_modules/is-async-function/.nycrc new file mode 100644 index 0000000000000000000000000000000000000000..bdd626ce91477abbdd489b79988baebadbd3c897 --- /dev/null +++ b/novas/novacore-zephyr/groq-code-cli/node_modules/is-async-function/.nycrc @@ -0,0 +1,9 @@ +{ + "all": true, + "check-coverage": false, + "reporter": ["text-summary", "text", "html", "json"], + "exclude": [ + "coverage", + "test" + ] +} diff --git a/novas/novacore-zephyr/groq-code-cli/node_modules/is-async-function/CHANGELOG.md b/novas/novacore-zephyr/groq-code-cli/node_modules/is-async-function/CHANGELOG.md new file mode 100644 index 0000000000000000000000000000000000000000..fcb27bf90e4ea83fe98260c10fc68d2214fcf70d --- /dev/null +++ b/novas/novacore-zephyr/groq-code-cli/node_modules/is-async-function/CHANGELOG.md @@ -0,0 +1,189 @@ +# Changelog + +All notable changes to this project will be documented in this file. + +The format is based on [Keep a Changelog](https://keepachangelog.com/en/1.0.0/) +and this project adheres to [Semantic Versioning](https://semver.org/spec/v2.0.0.html). + +## [v2.1.1](https://github.com/inspect-js/is-async-function/compare/v2.1.0...v2.1.1) - 2025-01-22 + +### Fixed + +- [Refactor] use `async-function` for the eval parts [`#31`](https://github.com/inspect-js/is-async-function/issues/31) + +### Commits + +- [Refactor] move `new Function` helper into a separate file [`db36da5`](https://github.com/inspect-js/is-async-function/commit/db36da5467fbbf0f2ae264114be6aa9edf55e218) +- [Dev Deps] update `@arethetypeswrong/cli`, `@types/tape` [`981ab90`](https://github.com/inspect-js/is-async-function/commit/981ab907b700d344b510ca1617fda00a66513aa2) +- [meta] add `exports` [`81bb8e5`](https://github.com/inspect-js/is-async-function/commit/81bb8e578c8cbeeda742715ab7a935c0472866a1) +- [Refactor] skip `getProto` call when `AsyncFunction` does not exist [`dc929a5`](https://github.com/inspect-js/is-async-function/commit/dc929a547a5f7cd1337b176d20135b8cc3cc23cb) + +## [v2.1.0](https://github.com/inspect-js/is-async-function/compare/v2.0.0...v2.1.0) - 2025-01-02 + +### Commits + +- [meta] use `npmignore` to autogenerate an npmignore file [`b8d050b`](https://github.com/inspect-js/is-async-function/commit/b8d050ba1ab615ef748e8ffbe48c5fc4e14af510) +- [actions] split out node 10-20, and 20+ [`1c8cd4b`](https://github.com/inspect-js/is-async-function/commit/1c8cd4bb565934ec5a4d9fc351ac9c8e2b217c07) +- [New] add types [`5ba6244`](https://github.com/inspect-js/is-async-function/commit/5ba62441efb4eb267659bcccd615018e7e09cc30) +- [Robustness] use `call-bound`, `safe-regex-test` [`9379ecd`](https://github.com/inspect-js/is-async-function/commit/9379ecda6ddce8460a6a0dc1a3d5555443b0b510) +- [actions] update rebase action to use reusable workflow [`81b54fb`](https://github.com/inspect-js/is-async-function/commit/81b54fbcb881ac0000306dfd8aade39c51191256) +- [Tests] use `for-each` [`ebdc486`](https://github.com/inspect-js/is-async-function/commit/ebdc486ab08c35651567c9f21f11a18ab5618737) +- [Dev Deps] update `@ljharb/eslint-config`, `auto-changelog`, `npmignore`, `tape` [`9eb494f`](https://github.com/inspect-js/is-async-function/commit/9eb494f5f5a89eebf7981db906c0c821598465fe) +- [Dev Deps] update `aud`, `tape` [`ea43809`](https://github.com/inspect-js/is-async-function/commit/ea43809bff25e47e196bde254c7383464c03ae7e) +- [Refactor] use `get-proto` directly [`fc46390`](https://github.com/inspect-js/is-async-function/commit/fc4639088bb6ed4e8b19988d3e642d45ee45e70e) +- [Tests] replace `aud` with `npm audit` [`edb4afb`](https://github.com/inspect-js/is-async-function/commit/edb4afb68d6d63d049608269fdf83cdb98956ff3) +- [Deps] update `has-tostringtag` [`dc78cf5`](https://github.com/inspect-js/is-async-function/commit/dc78cf545f87ecc17fc7f3426bbbc5ecdea9d167) +- [Dev Deps] add missing peer dep [`a93d8ff`](https://github.com/inspect-js/is-async-function/commit/a93d8ff0a22e4351d625ca5bb0fc73d222f9756c) + +## [v2.0.0](https://github.com/inspect-js/is-async-function/compare/v1.3.0...v2.0.0) - 2022-04-11 + +### Commits + +- [Breaking] v2 implementation and tests [`d79a37e`](https://github.com/inspect-js/is-async-function/commit/d79a37e25e24a74be3c349de51fda4ad58f30f3a) +- Initial commit [`456defc`](https://github.com/inspect-js/is-async-function/commit/456defc6dc36809d11dd5a199110e46fe9fb4a6f) +- npm init [`d35b611`](https://github.com/inspect-js/is-async-function/commit/d35b611d669e57a3a6fd017930d3bf9a0589ffd2) +- Only apps should have lockfiles [`5920874`](https://github.com/inspect-js/is-async-function/commit/5920874ec2b26762d1037168a73e1c29a4286b1a) + +## [v1.3.0](https://github.com/inspect-js/is-async-function/compare/v1.2.4...v1.3.0) - 2020-01-15 + +### Commits + +- feat: update deps, ci, readme [`dbb52a7`](https://github.com/inspect-js/is-async-function/commit/dbb52a7714887e897df62302a6ad8e8402d67fe4) +- chore(release): 1.3.0 [`972e26c`](https://github.com/inspect-js/is-async-function/commit/972e26c01ad14aa3560462624f24f4464efc46a3) + +## [v1.2.4](https://github.com/inspect-js/is-async-function/compare/v1.2.3...v1.2.4) - 2020-01-15 + +### Merged + +- fix(src): remove unneeded condition [`#16`](https://github.com/inspect-js/is-async-function/pull/16) + +### Fixed + +- fix: update deps + the tests; close #17 [`#17`](https://github.com/inspect-js/is-async-function/issues/17) + +### Commits + +- chore: update broken badge links [`2985e36`](https://github.com/inspect-js/is-async-function/commit/2985e36a644306ab2beb392e6833860cc1b3dadf) +- chore: add github funding file [`377233a`](https://github.com/inspect-js/is-async-function/commit/377233ab85f042e68b4cf5c7fd91860b77e8ce53) +- chore: all modules are stable for years [`b7db9f0`](https://github.com/inspect-js/is-async-function/commit/b7db9f07cfcd8e3f7f7c448f71dcf73ef0e9b67e) +- chore(release): 1.2.4 [`a9f441f`](https://github.com/inspect-js/is-async-function/commit/a9f441f0b801dabf6e8a1690c871fd564e56ddad) +- fix: add npm funding field [`c05ef28`](https://github.com/inspect-js/is-async-function/commit/c05ef28a1aa33543fc29c1c897613dc8676c1afc) +- chore: drop testing on old Node versions [`c975f68`](https://github.com/inspect-js/is-async-function/commit/c975f68a788d99ebf109a34ed9867f19c85b8805) +- chore(ci): test on 6 only [`106dcdd`](https://github.com/inspect-js/is-async-function/commit/106dcdd6d225248ef55c41218706fef1a7ce8c0e) + +## [v1.2.3](https://github.com/inspect-js/is-async-function/compare/v1.2.2...v1.2.3) - 2017-03-11 + +### Commits + +- fix(style): remove lazy-cache, and update boilerplate stuff [`abd32db`](https://github.com/inspect-js/is-async-function/commit/abd32dba0d727e9a75fffa7ef7df138bbc722b69) +- fix(docs): regenerate readme [`592f1b7`](https://github.com/inspect-js/is-async-function/commit/592f1b721c7c81bc1a6a84e462f4bd7ba7f24cd3) +- fix(package): add missing dependency [`73f404d`](https://github.com/inspect-js/is-async-function/commit/73f404d9afc054c90c1f1bee280497ac809b1eb3) +- chore(release): 1.2.3 [`103cf28`](https://github.com/inspect-js/is-async-function/commit/103cf28cfa5302a5a00bb5c9bd8bf9ecc69999fa) +- fix(package): wrong version, because too fast update ;d [`2e887f0`](https://github.com/inspect-js/is-async-function/commit/2e887f09dbc9e234f5f26cadd4e7fe9cc97184fb) + +## [v1.2.2](https://github.com/inspect-js/is-async-function/compare/v1.2.1...v1.2.2) - 2016-10-29 + +### Fixed + +- fix(docs): fixes and updates API docs [`#14`](https://github.com/inspect-js/is-async-function/issues/14) + +### Commits + +- chore(release): 1.2.2 [`9165f94`](https://github.com/inspect-js/is-async-function/commit/9165f942865906a02e0f9afe55ac2f305d71a9b1) + +## [v1.2.1](https://github.com/inspect-js/is-async-function/compare/v1.2.0...v1.2.1) - 2016-10-27 + +### Fixed + +- fix(non-strict): fix a bug in non-strict mode [`#13`](https://github.com/inspect-js/is-async-function/issues/13) + +### Commits + +- chore(release): 1.2.1 [`f4c7f02`](https://github.com/inspect-js/is-async-function/commit/f4c7f02ecb1ca02772890552797da3b39883ed43) + +## [v1.2.0](https://github.com/inspect-js/is-async-function/compare/v1.1.5...v1.2.0) - 2016-10-27 + +### Merged + +- Revert "Update arr-includes to version 2.0.0 🚀" [`#12`](https://github.com/inspect-js/is-async-function/pull/12) +- chore(package): update arr-includes to version 2.0.0 [`#11`](https://github.com/inspect-js/is-async-function/pull/11) + +### Commits + +- feat(strict): introduce strict mode [`ef8526f`](https://github.com/inspect-js/is-async-function/commit/ef8526ffa8ba2b4cf37f6bd2dae21aee871e6e6a) +- docs(update): api docs [`739eb54`](https://github.com/inspect-js/is-async-function/commit/739eb5482ba560ad2de153a29fc16778f4d3ef3f) +- chore(release): 1.2.0 [`3222afe`](https://github.com/inspect-js/is-async-function/commit/3222afed47c9b5d2fa12490aff2d7c9887183ea2) + +## [v1.1.5](https://github.com/inspect-js/is-async-function/compare/v1.1.4...v1.1.5) - 2016-09-21 + +### Commits + +- chore(tests): simplify tests [`be112bb`](https://github.com/inspect-js/is-async-function/commit/be112bb3dec204f174bf745056b7c0fc7377aef5) +- Release v1.1.5 [`577d96c`](https://github.com/inspect-js/is-async-function/commit/577d96c9f0fb6288e6bc88d8e51703b98f19b20c) + +## [v1.1.4](https://github.com/inspect-js/is-async-function/compare/v1.1.3...v1.1.4) - 2016-09-21 + +### Fixed + +- chore(package): update deps, use lazy-cache - closes #10 [`#10`](https://github.com/inspect-js/is-async-function/issues/10) + +### Commits + +- chore(package/tests): update to use `mukla` instead of `assertit` lib [`83011b1`](https://github.com/inspect-js/is-async-function/commit/83011b1e2820e239c606d872468582f5a9249c47) +- chore(package): update npm scripts, add coveralls/standard/nyc to devDeps [`631acbd`](https://github.com/inspect-js/is-async-function/commit/631acbdcf9fd9aa6d56ac98e10f3092e7e5be485) +- chore(gitignore): update gitignore [`7f09f8f`](https://github.com/inspect-js/is-async-function/commit/7f09f8f40777879e70315dfeef0805755a44a293) +- chore(editorconfig): update editorconfig [`8bb8593`](https://github.com/inspect-js/is-async-function/commit/8bb85939f87e6738c5ca35b5e5f5d8cca67353c9) +- docs(readme): run verb to update readme [`cf15044`](https://github.com/inspect-js/is-async-function/commit/cf150446dc4e948f2629377d7f369824bfda8b3b) +- Release v1.1.4 [`41190e1`](https://github.com/inspect-js/is-async-function/commit/41190e1da3aeb787921b3ea5d834634295c31de8) + +## [v1.1.3](https://github.com/inspect-js/is-async-function/compare/v1.1.2...v1.1.3) - 2016-04-21 + +### Merged + +- chore(package): update is-match to version 0.4.1 [`#7`](https://github.com/inspect-js/is-async-function/pull/7) + +### Commits + +- use `common-callback-names` [`37c253f`](https://github.com/inspect-js/is-async-function/commit/37c253f9a34b68acd5651075a3f1b74cd30ed8fd) +- Release v1.1.3 [`f212193`](https://github.com/inspect-js/is-async-function/commit/f212193a00790ccae387e2d7a373076fcbbb9d8f) + +## [v1.1.2](https://github.com/inspect-js/is-async-function/compare/v1.1.1...v1.1.2) - 2016-03-18 + +### Commits + +- cleanup and update metadata [`e09ab8b`](https://github.com/inspect-js/is-async-function/commit/e09ab8b98e6aecd28d38ba4ff4c1f17c26549a06) +- update docs [`42920c6`](https://github.com/inspect-js/is-async-function/commit/42920c699f706fcf1048e0c039b335d7bbaf34ed) +- Release v1.1.2 [`19d77d6`](https://github.com/inspect-js/is-async-function/commit/19d77d6ba7abe87ecf4d2765cd8536fca140b3bd) + +## [v1.1.1](https://github.com/inspect-js/is-async-function/compare/v1.1.0...v1.1.1) - 2016-03-18 + +### Commits + +- run update [`27b21bf`](https://github.com/inspect-js/is-async-function/commit/27b21bf76254635d6c5c18f896b6f151938ae810) +- add docs [`ab38f94`](https://github.com/inspect-js/is-async-function/commit/ab38f947707182e0ea165e3bee90bd46b8dbfaf9) +- update docs [`90654c9`](https://github.com/inspect-js/is-async-function/commit/90654c93e8ff9d0cfd1443ae3609cd898b57ef11) +- refactor, allow passing custom array of argument names [`a1787c7`](https://github.com/inspect-js/is-async-function/commit/a1787c757f522cb5e1c568ec5270be14a38c4cc9) +- add related libs [`868f423`](https://github.com/inspect-js/is-async-function/commit/868f4235a449d610a87351e5a5070f42a0c6e7ce) +- Release v1.1.1 [`bc7d85e`](https://github.com/inspect-js/is-async-function/commit/bc7d85e2a115163d3b09f78be5196f21adce1a7c) +- update description [`ce2e97b`](https://github.com/inspect-js/is-async-function/commit/ce2e97b34762f2087699a5b9910e498ec7062090) + +## [v1.1.0](https://github.com/inspect-js/is-async-function/compare/v1.0.0...v1.1.0) - 2015-06-25 + +### Commits + +- Release v1.1.0 [`b3f3704`](https://github.com/inspect-js/is-async-function/commit/b3f3704f13a32664a08b3d55162925e37626f5e8) +- update metadata [`95e6bc2`](https://github.com/inspect-js/is-async-function/commit/95e6bc2cc195ff5d2ab01f47c6a157b3a583d01a) +- check also for `done` and `next` [`6697d29`](https://github.com/inspect-js/is-async-function/commit/6697d29430ac9ce5f55572a2d7762baa1f05a33b) + +## v1.0.0 - 2015-06-05 + +### Commits + +- :cat2: implement :star2: [`eaccc68`](https://github.com/inspect-js/is-async-function/commit/eaccc681838a983390e93607451500982759bd7a) +- add keywords [`55a5ffc`](https://github.com/inspect-js/is-async-function/commit/55a5ffc65d344328cf5b5bb7b7e1520ecede0035) +- Release v1.0.0 [`66eab5f`](https://github.com/inspect-js/is-async-function/commit/66eab5f96c62a6a39b913a84e8ec4b37c657026a) +- refactor [`a7ce00d`](https://github.com/inspect-js/is-async-function/commit/a7ce00d537bf420338b91fee00eb6893d14952bf) +- add test for when throw [`60d0175`](https://github.com/inspect-js/is-async-function/commit/60d0175a955645b304f572fd571a1ced47486958) +- add `related` section [`904acd8`](https://github.com/inspect-js/is-async-function/commit/904acd8fbd5c6c020ba537cc9962154d818ad067) +- simplify travis [`ee17273`](https://github.com/inspect-js/is-async-function/commit/ee172737486a8a5f7b2b642aa72e6ca7a1749a1c) +- Initial commit [`7e914c1`](https://github.com/inspect-js/is-async-function/commit/7e914c1c6d669635f239fa86d9d96f85d8aaaab4) diff --git a/novas/novacore-zephyr/groq-code-cli/node_modules/is-async-function/LICENSE b/novas/novacore-zephyr/groq-code-cli/node_modules/is-async-function/LICENSE new file mode 100644 index 0000000000000000000000000000000000000000..a7515403968498f7a24e38b771edecbaff528301 --- /dev/null +++ b/novas/novacore-zephyr/groq-code-cli/node_modules/is-async-function/LICENSE @@ -0,0 +1,20 @@ +The MIT License (MIT) + +Copyright (c) 2021 Jordan Harband + +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. diff --git a/novas/novacore-zephyr/groq-code-cli/node_modules/is-async-function/README.md b/novas/novacore-zephyr/groq-code-cli/node_modules/is-async-function/README.md new file mode 100644 index 0000000000000000000000000000000000000000..6b5a34fe6f7d7778dd91688ce7ebe97c72c312b4 --- /dev/null +++ b/novas/novacore-zephyr/groq-code-cli/node_modules/is-async-function/README.md @@ -0,0 +1,41 @@ +# is-async-function [![Version Badge][2]][1] + +[![github actions][actions-image]][actions-url] +[![coverage][codecov-image]][codecov-url] +[![dependency status][5]][6] +[![dev dependency status][7]][8] +[![License][license-image]][license-url] +[![Downloads][downloads-image]][downloads-url] + +[![npm badge][11]][1] + +Is this a native `async function`? + +## Example + +```js +var isAsyncFunction = require('is-async-function'); +assert(!isAsyncFunction(function () {})); +assert(!isAsyncFunction(null)); +assert(!isAsyncFunction(function* () { yield 42; return Infinity; })); +assert(isAsyncFunction(async function () {})); +``` + +## Tests +Simply clone the repo, `npm install`, and run `npm test` + +[1]: https://npmjs.org/package/is-async-function +[2]: https://versionbadg.es/inspect-js/is-async-function.svg +[5]: https://david-dm.org/inspect-js/is-async-function.svg +[6]: https://david-dm.org/inspect-js/is-async-function +[7]: https://david-dm.org/inspect-js/is-async-function/dev-status.svg +[8]: https://david-dm.org/inspect-js/is-async-function#info=devDependencies +[11]: https://nodei.co/npm/is-async-function.png?downloads=true&stars=true +[license-image]: https://img.shields.io/npm/l/is-async-function.svg +[license-url]: LICENSE +[downloads-image]: https://img.shields.io/npm/dm/is-async-function.svg +[downloads-url]: https://npm-stat.com/charts.html?package=is-async-function +[codecov-image]: https://codecov.io/gh/inspect-js/is-async-function/branch/main/graphs/badge.svg +[codecov-url]: https://app.codecov.io/gh/inspect-js/is-async-function/ +[actions-image]: https://img.shields.io/endpoint?url=https://github-actions-badge-u3jn4tfpocch.runkit.sh/inspect-js/is-async-function +[actions-url]: https://github.com/inspect-js/is-async-function/actions diff --git a/novas/novacore-zephyr/groq-code-cli/node_modules/is-async-function/index.d.ts b/novas/novacore-zephyr/groq-code-cli/node_modules/is-async-function/index.d.ts new file mode 100644 index 0000000000000000000000000000000000000000..515f3cbc9cb2039e5495da5490b04492a359af41 --- /dev/null +++ b/novas/novacore-zephyr/groq-code-cli/node_modules/is-async-function/index.d.ts @@ -0,0 +1,9 @@ +import type { AsyncFunction } from 'async-function'; + +declare namespace isAsyncFunction { + export type { AsyncFunction }; +} + +declare function isAsyncFunction(fn: unknown): fn is AsyncFunction; + +export = isAsyncFunction; \ No newline at end of file diff --git a/novas/novacore-zephyr/groq-code-cli/node_modules/is-async-function/index.js b/novas/novacore-zephyr/groq-code-cli/node_modules/is-async-function/index.js new file mode 100644 index 0000000000000000000000000000000000000000..cb39da5189516a48518b673b174273515a08e1df --- /dev/null +++ b/novas/novacore-zephyr/groq-code-cli/node_modules/is-async-function/index.js @@ -0,0 +1,32 @@ +'use strict'; + +var callBound = require('call-bound'); +var safeRegexTest = require('safe-regex-test'); + +var toStr = callBound('Object.prototype.toString'); +var fnToStr = callBound('Function.prototype.toString'); +var isFnRegex = safeRegexTest(/^\s*async(?:\s+function(?:\s+|\()|\s*\()/); + +var hasToStringTag = require('has-tostringtag/shams')(); +var getProto = require('get-proto'); + +var getAsyncFunc = require('async-function'); + +/** @type {import('.')} */ +module.exports = function isAsyncFunction(fn) { + if (typeof fn !== 'function') { + return false; + } + if (isFnRegex(fnToStr(fn))) { + return true; + } + if (!hasToStringTag) { + var str = toStr(fn); + return str === '[object AsyncFunction]'; + } + if (!getProto) { + return false; + } + var asyncFunc = getAsyncFunc(); + return asyncFunc && asyncFunc.prototype === getProto(fn); +}; diff --git a/novas/novacore-zephyr/groq-code-cli/node_modules/is-async-function/package.json b/novas/novacore-zephyr/groq-code-cli/node_modules/is-async-function/package.json new file mode 100644 index 0000000000000000000000000000000000000000..15afc527b547ae8df1d4d3f95bd6515bfd31edca --- /dev/null +++ b/novas/novacore-zephyr/groq-code-cli/node_modules/is-async-function/package.json @@ -0,0 +1,110 @@ +{ + "name": "is-async-function", + "version": "2.1.1", + "description": "Determine if a function is a native async function.", + "main": "index.js", + "exports": { + ".": "./index.js", + "./package.json": "./package.json" + }, + "scripts": { + "prepack": "npmignore --auto --commentLines=autogenerated", + "prepublishOnly": "safe-publish-latest", + "prepublish": "not-in-publish || npm run prepublishOnly", + "pretest": "npm run lint", + "test": "npm run tests-only", + "tests-only": "nyc npm run test:all", + "test:all": "npm run test:index && npm run test:uglified", + "test:index": "node test", + "test:uglified": "node test/uglified", + "posttest": "npx npm@\">= 10.2\" audit --production", + "lint": "eslint --ext=js,mjs .", + "postlint": "tsc && attw -P", + "version": "auto-changelog && git add CHANGELOG.md", + "postversion": "auto-changelog && git add CHANGELOG.md && git commit --no-edit --amend && git tag -f \"v$(node -e \"console.log(require('./package.json').version)\")\"" + }, + "repository": { + "type": "git", + "url": "git://github.com/inspect-js/is-async-function.git" + }, + "keywords": [ + "async", + "async function", + "es6", + "es2015", + "yield", + "function", + "function*" + ], + "author": "Jordan Harband ", + "funding": { + "url": "https://github.com/sponsors/ljharb" + }, + "license": "MIT", + "bugs": { + "url": "https://github.com/inspect-js/is-async-function/issues" + }, + "dependencies": { + "async-function": "^1.0.0", + "call-bound": "^1.0.3", + "get-proto": "^1.0.1", + "has-tostringtag": "^1.0.2", + "safe-regex-test": "^1.1.0" + }, + "devDependencies": { + "@arethetypeswrong/cli": "^0.17.3", + "@ljharb/eslint-config": "^21.1.1", + "@ljharb/tsconfig": "^0.2.3", + "@types/for-each": "^0.3.3", + "@types/make-async-function": "^1.0.2", + "@types/make-generator-function": "^2.0.3", + "@types/tape": "^5.8.1", + "auto-changelog": "^2.5.0", + "encoding": "^0.1.13", + "eslint": "=8.8.0", + "for-each": "^0.3.3", + "in-publish": "^2.0.1", + "make-async-function": "^1.0.0", + "make-generator-function": "^2.0.0", + "npmignore": "^0.3.1", + "nyc": "^10.3.2", + "safe-publish-latest": "^2.0.0", + "tape": "^5.9.0", + "typescript": "next", + "uglify-register": "^1.0.1" + }, + "testling": { + "files": "test/index.js", + "browsers": [ + "iexplore/6.0..latest", + "firefox/3.0..6.0", + "firefox/15.0..latest", + "firefox/nightly", + "chrome/4.0..10.0", + "chrome/20.0..latest", + "chrome/canary", + "opera/10.0..latest", + "opera/next", + "safari/4.0..latest", + "ipad/6.0..latest", + "iphone/6.0..latest", + "android-browser/4.2" + ] + }, + "engines": { + "node": ">= 0.4" + }, + "auto-changelog": { + "output": "CHANGELOG.md", + "template": "keepachangelog", + "unreleased": false, + "commitLimit": false, + "backfillLimit": false, + "hideCredit": true + }, + "publishConfig": { + "ignore": [ + ".github/workflows" + ] + } +} diff --git a/novas/novacore-zephyr/groq-code-cli/node_modules/is-async-function/tsconfig.json b/novas/novacore-zephyr/groq-code-cli/node_modules/is-async-function/tsconfig.json new file mode 100644 index 0000000000000000000000000000000000000000..75e48fd29fa1732d39e63e657481e874db00b3eb --- /dev/null +++ b/novas/novacore-zephyr/groq-code-cli/node_modules/is-async-function/tsconfig.json @@ -0,0 +1,10 @@ +{ + "extends": "@ljharb/tsconfig", + "compilerOptions": { + "target": "ES2021", + "maxNodeModuleJsDepth": 0, + }, + "exclude": [ + "coverage", + ], +} diff --git a/novas/novacore-zephyr/groq-code-cli/node_modules/is-bigint/.eslintrc b/novas/novacore-zephyr/groq-code-cli/node_modules/is-bigint/.eslintrc new file mode 100644 index 0000000000000000000000000000000000000000..3b5d9e90ec405f85dd7f9066656efccc51193697 --- /dev/null +++ b/novas/novacore-zephyr/groq-code-cli/node_modules/is-bigint/.eslintrc @@ -0,0 +1,5 @@ +{ + "root": true, + + "extends": "@ljharb", +} diff --git a/novas/novacore-zephyr/groq-code-cli/node_modules/is-bigint/.nycrc b/novas/novacore-zephyr/groq-code-cli/node_modules/is-bigint/.nycrc new file mode 100644 index 0000000000000000000000000000000000000000..bdd626ce91477abbdd489b79988baebadbd3c897 --- /dev/null +++ b/novas/novacore-zephyr/groq-code-cli/node_modules/is-bigint/.nycrc @@ -0,0 +1,9 @@ +{ + "all": true, + "check-coverage": false, + "reporter": ["text-summary", "text", "html", "json"], + "exclude": [ + "coverage", + "test" + ] +} diff --git a/novas/novacore-zephyr/groq-code-cli/node_modules/is-bigint/CHANGELOG.md b/novas/novacore-zephyr/groq-code-cli/node_modules/is-bigint/CHANGELOG.md new file mode 100644 index 0000000000000000000000000000000000000000..e78037860e172a7be32c393c8d3fded7f40a86a5 --- /dev/null +++ b/novas/novacore-zephyr/groq-code-cli/node_modules/is-bigint/CHANGELOG.md @@ -0,0 +1,91 @@ +# Changelog + +All notable changes to this project will be documented in this file. + +The format is based on [Keep a Changelog](https://keepachangelog.com/en/1.0.0/) +and this project adheres to [Semantic Versioning](https://semver.org/spec/v2.0.0.html). + +## [v1.1.0](https://github.com/inspect-js/is-bigint/compare/v1.0.4...v1.1.0) - 2024-12-02 + +### Commits + +- [actions] reuse common workflows [`0e63a44`](https://github.com/inspect-js/is-bigint/commit/0e63a44e5d1f26783bd5a40d7aa32c14b50fd567) +- [meta] use `npmignore` to autogenerate an npmignore file [`47584ee`](https://github.com/inspect-js/is-bigint/commit/47584ee7ac726a5c7f5f2f5f34b97529134cf602) +- [Tests] use `for-each` and `es-value-fixtures` [`f226864`](https://github.com/inspect-js/is-bigint/commit/f22686422b46334c64b3658fba1237751d24460c) +- [New] add types [`78e2c47`](https://github.com/inspect-js/is-bigint/commit/78e2c473ff73d73eef27b7eb27695393667360e1) +- [actions] split out node 10-20, and 20+ [`4395a8d`](https://github.com/inspect-js/is-bigint/commit/4395a8d340b1aa3c4e68b37092fcbcace14de41f) +- [Dev Deps] update `eslint`, `@ljharb/eslint-config`, `aud`, `auto-changelog`, `has-symbols`, `object-inspect`, `tape` [`c188501`](https://github.com/inspect-js/is-bigint/commit/c188501f67f4c220fcdf8d280c99e1f6af5d217e) +- [Dev Deps] update `eslint`, `@ljharb/eslint-config`, `object-inspect`, `safe-publish-latest`, `tape` [`5360d32`](https://github.com/inspect-js/is-bigint/commit/5360d32eee0e29f09b02d3adb51086dc71160939) +- [actions] update rebase action to use reusable workflow [`d5c1775`](https://github.com/inspect-js/is-bigint/commit/d5c1775e437be97099a7e63b9bd68852b28e0ba7) +- [actions] update codecov uploader [`c7478c7`](https://github.com/inspect-js/is-bigint/commit/c7478c74498ab954917bd6a561d0ee7d0ba60a6a) +- [Dev Deps] update `@ljharb/eslint-config`, `auto-changelog`, `npmignore`, `object-inspect`, `tape` [`6fbce66`](https://github.com/inspect-js/is-bigint/commit/6fbce66ebab2ef471bfe841c8436eba3dce118c6) +- [meta] add missing `engines.node` [`6f9ed42`](https://github.com/inspect-js/is-bigint/commit/6f9ed42ed8cb00b3fccdb62d4fcc8e7ab074e194) +- [Tests] replace `aud` with `npm audit` [`21846c3`](https://github.com/inspect-js/is-bigint/commit/21846c305e5d662ec81b4922cbc57e9324ccd222) +- [Dev Deps] remove unused `has-symbols`, add missing `has-tostringtag` [`b378d94`](https://github.com/inspect-js/is-bigint/commit/b378d942933ae97ab9610d83d69b52380d6a137c) +- [Deps] update `has-bigints` [`f46c35b`](https://github.com/inspect-js/is-bigint/commit/f46c35be813c05549865477bd771300c2595496e) +- [Dev Deps] add missing peer dep [`2b9be16`](https://github.com/inspect-js/is-bigint/commit/2b9be16ab6150d588f00d037b55050d8372953a3) + +## [v1.0.4](https://github.com/inspect-js/is-bigint/compare/v1.0.3...v1.0.4) - 2021-08-11 + +### Commits + +- [eslint] remove unnecessary eslintrc file [`7220aa5`](https://github.com/inspect-js/is-bigint/commit/7220aa515c51649b48ba57bb77f92d85e27557d8) +- [readme] add github actions/codecov badges [`053a071`](https://github.com/inspect-js/is-bigint/commit/053a07123511eef5a91fd7889ae2d8323fbcf7d7) +- [Deps] add `has-bigints` as a runtime dependency [`0fc3c9d`](https://github.com/inspect-js/is-bigint/commit/0fc3c9d5165f62500ea9c27943cb302df65432f7) +- [Dev Deps] update `tape` [`145f11d`](https://github.com/inspect-js/is-bigint/commit/145f11d1d285d92b3144f48178fe0fb3b2f828d9) + +## [v1.0.3](https://github.com/inspect-js/is-bigint/compare/v1.0.2...v1.0.3) - 2021-08-06 + +### Commits + +- [Tests] use `has-tostringtag` for easier checking of Symbol.toStringTag [`3b44080`](https://github.com/inspect-js/is-bigint/commit/3b440801b69689d907b33184134f00d7e8a35f9f) +- [Dev Deps] update `auto-changelog`, `eslint`, `object-inspect`, `tape` [`e4d4a6c`](https://github.com/inspect-js/is-bigint/commit/e4d4a6c2ab743b52eda906abd1ed4b0608952533) +- [Fix] use `has-bigints` for more robust BigInt detection [`7bb9d7a`](https://github.com/inspect-js/is-bigint/commit/7bb9d7ab42214c12ce25e9f0cfe2af769388c3bb) + +## [v1.0.2](https://github.com/inspect-js/is-bigint/compare/v1.0.1...v1.0.2) - 2021-05-04 + +### Commits + +- [meta] do not publish github action workflow files [`276d677`](https://github.com/inspect-js/is-bigint/commit/276d677d1eac61e990a2f2b523c7cdef70784865) +- [actions] use `node/install` instead of `node/run`; use `codecov` action [`cea7fb6`](https://github.com/inspect-js/is-bigint/commit/cea7fb6e882ad7e2f550de2bd9317a4409bcd735) +- [readme] fix repo URLs; remove travis badge [`c8e7c36`](https://github.com/inspect-js/is-bigint/commit/c8e7c3651f3303fddafa61cf29cfbb79ea2d5d4b) +- [Dev Deps] update `eslint`, `@ljharb/eslint-config`, `aud`, `has-symbols`, `object-inspect`, `tape` [`32f3d90`](https://github.com/inspect-js/is-bigint/commit/32f3d909363045fe5d40dde9e4db354344ab4d50) +- [Dev Deps] update `eslint`, `@ljharb/eslint-config`, `object-inspect`, `tape` [`c2f20f5`](https://github.com/inspect-js/is-bigint/commit/c2f20f577d84e68b4e3224abb51024fbc4b9b2ba) +- [meta] remove unneeded token; update checkout action [`94e46e9`](https://github.com/inspect-js/is-bigint/commit/94e46e92a1a85ec022c8febf8d5d3c2369b46e97) +- [meta] use `prepublishOnly` script for npm 7+ [`3e663ec`](https://github.com/inspect-js/is-bigint/commit/3e663ecb09bfdc5dbaaa37aaef4adf28b5e49035) + +## [v1.0.1](https://github.com/inspect-js/is-bigint/compare/v1.0.0...v1.0.1) - 2020-11-30 + +### Commits + +- [Tests] use shared travis-ci configs [`28f1211`](https://github.com/inspect-js/is-bigint/commit/28f1211132ad2a6495d816140680fa16c12eb6f3) +- [Tests] migrate tests to Github Actions [`0998c64`](https://github.com/inspect-js/is-bigint/commit/0998c6443d603028f8b988bcdd52d23dbf513031) +- [meta] add `auto-changelog` [`2352de6`](https://github.com/inspect-js/is-bigint/commit/2352de6df8385b256d75ce50c360947243a599f6) +- [Tests] run `nyc` on all tests [`9c16a9a`](https://github.com/inspect-js/is-bigint/commit/9c16a9a5ddaf7c2c578542ab8f00dd4e72eff541) +- [Dev Deps] update `eslint`, `@ljharb/eslint-config`, `auto-changelog`, `object-inspect`, `tape` [`4cd0edd`](https://github.com/inspect-js/is-bigint/commit/4cd0edd1917f789501291315c9eac5f895fd719e) +- [actions] add automatic rebasing / merge commit blocking [`f0f4b91`](https://github.com/inspect-js/is-bigint/commit/f0f4b91dba029dbca5b3cd27ef91c4fb8e3ec51a) +- [actions] add "Allow Edits" workflow [`7f4f46e`](https://github.com/inspect-js/is-bigint/commit/7f4f46ec07679c00e22287ec55b39ff1e4f809cf) +- [meta] create FUNDING.yml [`2d0cb9a`](https://github.com/inspect-js/is-bigint/commit/2d0cb9ae8ddf635f2c472ce49f95f717f2c432bf) +- [Dev Deps] update `eslint`, `@ljharb/eslint-config`, `aud` [`0ee110e`](https://github.com/inspect-js/is-bigint/commit/0ee110effdcaa96d90f21a0ec6e625941f77c45a) +- [Dev Deps] update `eslint`, `@ljharb/eslint-config`, `has-symbols`, `object-inspect`, `tape` [`5bb7f3a`](https://github.com/inspect-js/is-bigint/commit/5bb7f3a8de6ec5ee2aa573c22e41884f3d2d1cc3) +- [Dev Deps] update `eslint`, `@ljharb/eslint-config`, `safe-publish-latest`, `tape` [`d3d67d0`](https://github.com/inspect-js/is-bigint/commit/d3d67d05f8a3f4cb07085811629f56ef872949c3) +- [Dev Deps] update `auto-changelog`, `tape` [`54e270f`](https://github.com/inspect-js/is-bigint/commit/54e270fa29856dba90f86785fa61bffc79a2825d) +- [Dev Deps] update `@ljharb/eslint-config`, `tape` [`d82bfe7`](https://github.com/inspect-js/is-bigint/commit/d82bfe75c63aeda40f7e473c57f26cea8790ba3a) +- [Dev Deps] update `auto-changelog`; add `aud` [`9c34bd1`](https://github.com/inspect-js/is-bigint/commit/9c34bd1873f08d77c82d8e54ad90c5a1a035e7ea) +- [Tests] add missing `posttest` script [`0690bd9`](https://github.com/inspect-js/is-bigint/commit/0690bd9868d4d8b43424b4224cdbb8659a1c6423) +- [meta] add `funding` field [`7ca36d0`](https://github.com/inspect-js/is-bigint/commit/7ca36d06ebcf6b01a592ecd6758bd2b39c0fb0db) +- [actions] switch Automatic Rebase workflow to `pull_request_target` event [`5ffa8da`](https://github.com/inspect-js/is-bigint/commit/5ffa8dad9f634891cf739ee118f1b43142b0f01d) +- [Dev Deps] update `eslint` [`8512c2f`](https://github.com/inspect-js/is-bigint/commit/8512c2f29a9267fe8fe19209bcf77df94f127172) +- [Tests] only audit prod deps [`f2147dc`](https://github.com/inspect-js/is-bigint/commit/f2147dc54e72594985e8f6db3932a4f0819dc4db) +- [readme] fix header [`d6eff75`](https://github.com/inspect-js/is-bigint/commit/d6eff75d00471f465768deb92867e878c27733b3) + +## v1.0.0 - 2018-09-20 + +### Commits + +- [Tests] add tests [`847f12a`](https://github.com/inspect-js/is-bigint/commit/847f12af125fcefb75ed3517550feedf7dd73e88) +- Initial commit [`b53f3c6`](https://github.com/inspect-js/is-bigint/commit/b53f3c6754e7fd7a9982ff5b1466c4dc9799dad9) +- readme [`66c15fe`](https://github.com/inspect-js/is-bigint/commit/66c15fe1a0d965b8c78bf3a3bfc289dcfec53ee1) +- Implementation [`c2c0974`](https://github.com/inspect-js/is-bigint/commit/c2c0974397825a2a56e1ea8af0546171309d4805) +- package.json [`98b174c`](https://github.com/inspect-js/is-bigint/commit/98b174c24b070053f0548e58f9b87bc9dbdf922a) +- Only apps should have lockfiles [`a77c74b`](https://github.com/inspect-js/is-bigint/commit/a77c74bd8ca5f058f1e6165ae7b33bb84adef98c) diff --git a/novas/novacore-zephyr/groq-code-cli/node_modules/is-bigint/LICENSE b/novas/novacore-zephyr/groq-code-cli/node_modules/is-bigint/LICENSE new file mode 100644 index 0000000000000000000000000000000000000000..9dd868f0f9e1cf5cd2d18fe0070c909a9b36cc62 --- /dev/null +++ b/novas/novacore-zephyr/groq-code-cli/node_modules/is-bigint/LICENSE @@ -0,0 +1,21 @@ +MIT License + +Copyright (c) 2018 Jordan Harband + +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. diff --git a/novas/novacore-zephyr/groq-code-cli/node_modules/is-bigint/README.md b/novas/novacore-zephyr/groq-code-cli/node_modules/is-bigint/README.md new file mode 100644 index 0000000000000000000000000000000000000000..d64549fca08940bdbff8c366cea662af9df09d68 --- /dev/null +++ b/novas/novacore-zephyr/groq-code-cli/node_modules/is-bigint/README.md @@ -0,0 +1,44 @@ +# is-bigint [![Version Badge][2]][1] + +[![github actions][actions-image]][actions-url] +[![coverage][codecov-image]][codecov-url] +[![dependency status][5]][6] +[![dev dependency status][7]][8] +[![License][license-image]][license-url] +[![Downloads][downloads-image]][downloads-url] + +[![npm badge][11]][1] + +Is this an ES BigInt value? + +## Example + +```js +var isBigInt = require('is-bigint'); +assert(!isBigInt(function () {})); +assert(!isBigInt(null)); +assert(!isBigInt(function* () { yield 42; return Infinity; }); +assert(!isBigInt(Symbol('foo'))); + +assert(isBigInt(1n)); +assert(isBigInt(Object(1n))); +``` + +## Tests +Simply clone the repo, `npm install`, and run `npm test` + +[1]: https://npmjs.org/package/is-bigint +[2]: https://versionbadg.es/inspect-js/is-bigint.svg +[5]: https://david-dm.org/inspect-js/is-bigint.svg +[6]: https://david-dm.org/inspect-js/is-bigint +[7]: https://david-dm.org/inspect-js/is-bigint/dev-status.svg +[8]: https://david-dm.org/inspect-js/is-bigint#info=devDependencies +[11]: https://nodei.co/npm/is-bigint.png?downloads=true&stars=true +[license-image]: https://img.shields.io/npm/l/is-bigint.svg +[license-url]: LICENSE +[downloads-image]: https://img.shields.io/npm/dm/is-bigint.svg +[downloads-url]: https://npm-stat.com/charts.html?package=is-bigint +[codecov-image]: https://codecov.io/gh/inspect-js/is-bigint/branch/main/graphs/badge.svg +[codecov-url]: https://app.codecov.io/gh/inspect-js/is-bigint/ +[actions-image]: https://img.shields.io/endpoint?url=https://github-actions-badge-u3jn4tfpocch.runkit.sh/inspect-js/is-bigint +[actions-url]: https://github.com/inspect-js/is-bigint/actions diff --git a/novas/novacore-zephyr/groq-code-cli/node_modules/is-bigint/index.d.ts b/novas/novacore-zephyr/groq-code-cli/node_modules/is-bigint/index.d.ts new file mode 100644 index 0000000000000000000000000000000000000000..a2fd1df81182fc31bd659b9bb55bd31e49fe9651 --- /dev/null +++ b/novas/novacore-zephyr/groq-code-cli/node_modules/is-bigint/index.d.ts @@ -0,0 +1,3 @@ +declare function isBigInt(value: unknown): value is (bigint | BigInt); + +export = isBigInt; \ No newline at end of file diff --git a/novas/novacore-zephyr/groq-code-cli/node_modules/is-bigint/index.js b/novas/novacore-zephyr/groq-code-cli/node_modules/is-bigint/index.js new file mode 100644 index 0000000000000000000000000000000000000000..166774d90aac191fd03846a4f65062d240a00ce6 --- /dev/null +++ b/novas/novacore-zephyr/groq-code-cli/node_modules/is-bigint/index.js @@ -0,0 +1,41 @@ +'use strict'; + +var hasBigInts = require('has-bigints')(); + +if (hasBigInts) { + var bigIntValueOf = BigInt.prototype.valueOf; + /** @type {(value: object) => value is BigInt} */ + var tryBigInt = function tryBigIntObject(value) { + try { + bigIntValueOf.call(value); + return true; + } catch (e) { + } + return false; + }; + + /** @type {import('.')} */ + module.exports = function isBigInt(value) { + if ( + value === null + || typeof value === 'undefined' + || typeof value === 'boolean' + || typeof value === 'string' + || typeof value === 'number' + || typeof value === 'symbol' + || typeof value === 'function' + ) { + return false; + } + if (typeof value === 'bigint') { + return true; + } + + return tryBigInt(value); + }; +} else { + /** @type {import('.')} */ + module.exports = function isBigInt(value) { + return false && value; + }; +} diff --git a/novas/novacore-zephyr/groq-code-cli/node_modules/is-bigint/package.json b/novas/novacore-zephyr/groq-code-cli/node_modules/is-bigint/package.json new file mode 100644 index 0000000000000000000000000000000000000000..c060d159d573b9b134207f481ee0a5bb61e83ecb --- /dev/null +++ b/novas/novacore-zephyr/groq-code-cli/node_modules/is-bigint/package.json @@ -0,0 +1,78 @@ +{ + "name": "is-bigint", + "version": "1.1.0", + "description": "Is this value an ES BigInt?", + "main": "index.js", + "scripts": { + "prepack": "npmignore --auto --commentLines=autogenerated", + "prepublishOnly": "safe-publish-latest", + "prepublish": "not-in-publish || npm run prepublishOnly", + "lint": "eslint .", + "postlint": "tsc -p . && attw -P", + "pretest": "npm run lint", + "tests-only": "nyc tape 'test/**/*.js'", + "test": "npm run tests-only", + "posttest": "npx npm@'>=10.2' audit --production", + "version": "auto-changelog && git add CHANGELOG.md", + "postversion": "auto-changelog && git add CHANGELOG.md && git commit --no-edit --amend && git tag -f \"v$(node -e \"console.log(require('./package.json').version)\")\"" + }, + "repository": { + "type": "git", + "url": "git+https://github.com/inspect-js/is-bigint.git" + }, + "keywords": [ + "bigint", + "es", + "integer", + "is" + ], + "author": "Jordan Harband ", + "funding": { + "url": "https://github.com/sponsors/ljharb" + }, + "license": "MIT", + "bugs": { + "url": "https://github.com/inspect-js/is-bigint/issues" + }, + "homepage": "https://github.com/inspect-js/is-bigint#readme", + "dependencies": { + "has-bigints": "^1.0.2" + }, + "devDependencies": { + "@arethetypeswrong/cli": "^0.17.0", + "@ljharb/eslint-config": "^21.1.1", + "@ljharb/tsconfig": "^0.2.0", + "@types/for-each": "^0.3.3", + "@types/object-inspect": "^1.13.0", + "@types/tape": "^5.6.5", + "auto-changelog": "^2.5.0", + "encoding": "^0.1.13", + "es-value-fixtures": "^1.5.0", + "eslint": "=8.8.0", + "for-each": "^0.3.3", + "has-tostringtag": "^1.0.2", + "in-publish": "^2.0.1", + "npmignore": "^0.3.1", + "nyc": "^10.3.2", + "object-inspect": "^1.13.3", + "safe-publish-latest": "^2.0.0", + "tape": "^5.9.0", + "typescript": "next" + }, + "auto-changelog": { + "output": "CHANGELOG.md", + "template": "keepachangelog", + "unreleased": false, + "commitLimit": false, + "backfillLimit": false, + "hideCredit": true + }, + "publishConfig": { + "ignore": [ + ".github/workflows" + ] + }, + "engines": { + "node": ">= 0.4" + } +} diff --git a/novas/novacore-zephyr/groq-code-cli/node_modules/is-bigint/tsconfig.json b/novas/novacore-zephyr/groq-code-cli/node_modules/is-bigint/tsconfig.json new file mode 100644 index 0000000000000000000000000000000000000000..707cf95103eea5754b0141455f421ec38d129dd9 --- /dev/null +++ b/novas/novacore-zephyr/groq-code-cli/node_modules/is-bigint/tsconfig.json @@ -0,0 +1,9 @@ +{ + "extends": "@ljharb/tsconfig", + "compilerOptions": { + "target": "ES2021", + }, + "exclude": [ + "coverage" + ] +} diff --git a/novas/novacore-zephyr/groq-code-cli/node_modules/is-binary-path/index.d.ts b/novas/novacore-zephyr/groq-code-cli/node_modules/is-binary-path/index.d.ts new file mode 100644 index 0000000000000000000000000000000000000000..19dcd4327beddb4d48ffc5a79eb8c306903574b4 --- /dev/null +++ b/novas/novacore-zephyr/groq-code-cli/node_modules/is-binary-path/index.d.ts @@ -0,0 +1,17 @@ +/** +Check if a file path is a binary file. + +@example +``` +import isBinaryPath = require('is-binary-path'); + +isBinaryPath('source/unicorn.png'); +//=> true + +isBinaryPath('source/unicorn.txt'); +//=> false +``` +*/ +declare function isBinaryPath(filePath: string): boolean; + +export = isBinaryPath; diff --git a/novas/novacore-zephyr/groq-code-cli/node_modules/is-binary-path/index.js b/novas/novacore-zephyr/groq-code-cli/node_modules/is-binary-path/index.js new file mode 100644 index 0000000000000000000000000000000000000000..ef7548c8303298520e15e7e680bf99aee21f787a --- /dev/null +++ b/novas/novacore-zephyr/groq-code-cli/node_modules/is-binary-path/index.js @@ -0,0 +1,7 @@ +'use strict'; +const path = require('path'); +const binaryExtensions = require('binary-extensions'); + +const extensions = new Set(binaryExtensions); + +module.exports = filePath => extensions.has(path.extname(filePath).slice(1).toLowerCase()); diff --git a/novas/novacore-zephyr/groq-code-cli/node_modules/is-binary-path/license b/novas/novacore-zephyr/groq-code-cli/node_modules/is-binary-path/license new file mode 100644 index 0000000000000000000000000000000000000000..401b1c731bcd3ed3193b94d7cbb81bd3b4a1dd47 --- /dev/null +++ b/novas/novacore-zephyr/groq-code-cli/node_modules/is-binary-path/license @@ -0,0 +1,9 @@ +MIT License + +Copyright (c) 2019 Sindre Sorhus (https://sindresorhus.com), Paul Miller (https://paulmillr.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. diff --git a/novas/novacore-zephyr/groq-code-cli/node_modules/is-binary-path/package.json b/novas/novacore-zephyr/groq-code-cli/node_modules/is-binary-path/package.json new file mode 100644 index 0000000000000000000000000000000000000000..a8d005aed80f8729749e0302d16bf0a6f2ab7eb6 --- /dev/null +++ b/novas/novacore-zephyr/groq-code-cli/node_modules/is-binary-path/package.json @@ -0,0 +1,40 @@ +{ + "name": "is-binary-path", + "version": "2.1.0", + "description": "Check if a file path is a binary file", + "license": "MIT", + "repository": "sindresorhus/is-binary-path", + "author": { + "name": "Sindre Sorhus", + "email": "sindresorhus@gmail.com", + "url": "sindresorhus.com" + }, + "engines": { + "node": ">=8" + }, + "scripts": { + "test": "xo && ava && tsd" + }, + "files": [ + "index.js", + "index.d.ts" + ], + "keywords": [ + "binary", + "extensions", + "extension", + "file", + "path", + "check", + "detect", + "is" + ], + "dependencies": { + "binary-extensions": "^2.0.0" + }, + "devDependencies": { + "ava": "^1.4.1", + "tsd": "^0.7.2", + "xo": "^0.24.0" + } +} diff --git a/novas/novacore-zephyr/groq-code-cli/node_modules/is-binary-path/readme.md b/novas/novacore-zephyr/groq-code-cli/node_modules/is-binary-path/readme.md new file mode 100644 index 0000000000000000000000000000000000000000..b4ab02519b0fdefb0f64748adcc1d35111a2cf75 --- /dev/null +++ b/novas/novacore-zephyr/groq-code-cli/node_modules/is-binary-path/readme.md @@ -0,0 +1,34 @@ +# is-binary-path [![Build Status](https://travis-ci.org/sindresorhus/is-binary-path.svg?branch=master)](https://travis-ci.org/sindresorhus/is-binary-path) + +> Check if a file path is a binary file + + +## Install + +``` +$ npm install is-binary-path +``` + + +## Usage + +```js +const isBinaryPath = require('is-binary-path'); + +isBinaryPath('source/unicorn.png'); +//=> true + +isBinaryPath('source/unicorn.txt'); +//=> false +``` + + +## Related + +- [binary-extensions](https://github.com/sindresorhus/binary-extensions) - List of binary file extensions +- [is-text-path](https://github.com/sindresorhus/is-text-path) - Check if a filepath is a text file + + +## License + +MIT © [Sindre Sorhus](https://sindresorhus.com), [Paul Miller](https://paulmillr.com) diff --git a/novas/novacore-zephyr/groq-code-cli/node_modules/is-boolean-object/.editorconfig b/novas/novacore-zephyr/groq-code-cli/node_modules/is-boolean-object/.editorconfig new file mode 100644 index 0000000000000000000000000000000000000000..8d93cc1d1bcaedd361a3051817304bda5cb5581a --- /dev/null +++ b/novas/novacore-zephyr/groq-code-cli/node_modules/is-boolean-object/.editorconfig @@ -0,0 +1,22 @@ +root = true + +[*] +indent_style = tab +indent_size = 4 +end_of_line = lf +charset = utf-8 +trim_trailing_whitespace = true +insert_final_newline = true +max_line_length = 150 + +[CHANGELOG.md] +indent_style = space +indent_size = 2 + +[.github/workflows/*.yml] +indent_style = off +indent_size = off +max_line_length = off + +[{CHANGELOG.md,*.json}] +max_line_length = off diff --git a/novas/novacore-zephyr/groq-code-cli/node_modules/is-boolean-object/.eslintrc b/novas/novacore-zephyr/groq-code-cli/node_modules/is-boolean-object/.eslintrc new file mode 100644 index 0000000000000000000000000000000000000000..01449415cf3b21f20d1a21c4d340c146ac1f2163 --- /dev/null +++ b/novas/novacore-zephyr/groq-code-cli/node_modules/is-boolean-object/.eslintrc @@ -0,0 +1,12 @@ +{ + "root": true, + + "extends": "@ljharb", + + "overrides": [ + { + "files": "test-corejs.js", + "extends": "@ljharb/eslint-config/tests", + }, + ], +} diff --git a/novas/novacore-zephyr/groq-code-cli/node_modules/is-boolean-object/.nycrc b/novas/novacore-zephyr/groq-code-cli/node_modules/is-boolean-object/.nycrc new file mode 100644 index 0000000000000000000000000000000000000000..a69aa2d8273d8c598f8e3aa5c8d779e28d63862f --- /dev/null +++ b/novas/novacore-zephyr/groq-code-cli/node_modules/is-boolean-object/.nycrc @@ -0,0 +1,10 @@ +{ + "all": true, + "check-coverage": false, + "reporter": ["text-summary", "text", "html", "json"], + "exclude": [ + "coverage", + "test", + "test-corejs.js" + ] +} diff --git a/novas/novacore-zephyr/groq-code-cli/node_modules/is-boolean-object/CHANGELOG.md b/novas/novacore-zephyr/groq-code-cli/node_modules/is-boolean-object/CHANGELOG.md new file mode 100644 index 0000000000000000000000000000000000000000..360b2f2d689fb5a1cbc54b16a50d3ea6564f3efa --- /dev/null +++ b/novas/novacore-zephyr/groq-code-cli/node_modules/is-boolean-object/CHANGELOG.md @@ -0,0 +1,143 @@ +# Changelog + +All notable changes to this project will be documented in this file. + +The format is based on [Keep a Changelog](https://keepachangelog.com/en/1.0.0/) +and this project adheres to [Semantic Versioning](https://semver.org/spec/v2.0.0.html). + +## [v1.2.2](https://github.com/inspect-js/is-boolean-object/compare/v1.2.1...v1.2.2) - 2025-02-04 + +### Fixed + +- [Fix] do not be tricked by fake Booleans [`#25`](https://github.com/inspect-js/is-boolean-object/issues/25) + +### Commits + +- [Dev Deps] update `@arethetypeswrong/cli`, `@ljharb/tsconfig`, `@types/tape`, `core-js` [`a27608b`](https://github.com/inspect-js/is-boolean-object/commit/a27608b83f154875736bb5e77bf1a70da307b64f) +- [Deps] update `call-bound` [`b19953f`](https://github.com/inspect-js/is-boolean-object/commit/b19953f90f88435a0b0888692f065c959812f710) + +## [v1.2.1](https://github.com/inspect-js/is-boolean-object/compare/v1.2.0...v1.2.1) - 2024-12-12 + +### Commits + +- [Refactor] use `call-bound` directly [`bb5aa26`](https://github.com/inspect-js/is-boolean-object/commit/bb5aa266f9da864b59f58f1f61d807268f00e227) + +## [v1.2.0](https://github.com/inspect-js/is-boolean-object/compare/v1.1.2...v1.2.0) - 2024-12-01 + +### Commits + +- [actions] reuse common workflows [`380fa25`](https://github.com/inspect-js/is-boolean-object/commit/380fa254d963699ba7e1b7bfaee3cd4c50142f1a) +- [meta] use `npmignore` to autogenerate an npmignore file [`befa203`](https://github.com/inspect-js/is-boolean-object/commit/befa203ffa0e94c70d5b35aae407ea93e0bbc117) +- [actions] split out node 10-20, and 20+ [`ca31663`](https://github.com/inspect-js/is-boolean-object/commit/ca31663ef1e4195ffeef125fb337c5e58bf878ca) +- [New] add types [`6d58609`](https://github.com/inspect-js/is-boolean-object/commit/6d58609867b97b832ff5e73941b4164f0a9a78ec) +- [Dev Deps] update `eslint`, `@ljharb/eslint-config`, `core-js`, `safe-publish-latest`, `tape` [`06cc67e`](https://github.com/inspect-js/is-boolean-object/commit/06cc67eed7647dc9094611f03bd2802fb3695e37) +- [actions] update codecov uploader [`0722346`](https://github.com/inspect-js/is-boolean-object/commit/0722346b425c46e50864d76507c3d3a97678273b) +- [Dev Deps] update `eslint`, `@ljharb/eslint-config`, `aud`, `auto-changelog`, `tape` [`100acdf`](https://github.com/inspect-js/is-boolean-object/commit/100acdf9405f8496bdc71b7c383ab9e2119560af) +- [actions] update rebase action to use reusable workflow [`26333ff`](https://github.com/inspect-js/is-boolean-object/commit/26333ffc7bf92b7d751a68721cd7b27f8c59a250) +- [Dev Deps] update `eslint`, `@ljharb/eslint-config`, `aud`, `core-js`, `tape` [`fde97ee`](https://github.com/inspect-js/is-boolean-object/commit/fde97eed23a8caa95beaa6fc710adf9526b99155) +- [Dev Deps] update `@ljharb/eslint-config`, `auto-changelog`, `core-js`, `npmignore`, `tape` [`f5ed3c8`](https://github.com/inspect-js/is-boolean-object/commit/f5ed3c8b871451b5dac2f11e16ba3e35e5fdf82e) +- [Deps] update `call-bind`, `has-tostringtag` [`61912e2`](https://github.com/inspect-js/is-boolean-object/commit/61912e211369447287c5cbba952303e1897440bf) +- [Tests] replace `aud` with `npm audit` [`c6a0db5`](https://github.com/inspect-js/is-boolean-object/commit/c6a0db56cb39bd99255589c13c2dc3dde922c755) +- [meta] better `eccheck` command [`3a59ec6`](https://github.com/inspect-js/is-boolean-object/commit/3a59ec6a40479dd4d742531042797e2b79acb898) +- [Dev Deps] add missing peer dep [`c0e10db`](https://github.com/inspect-js/is-boolean-object/commit/c0e10db845b7e7329e6347d9de5fe0190276433c) + +## [v1.1.2](https://github.com/inspect-js/is-boolean-object/compare/v1.1.1...v1.1.2) - 2021-08-05 + +### Commits + +- [Refactor] use `has-tostringtag` to behave correctly in the presence of symbol shams [`6d319ea`](https://github.com/inspect-js/is-boolean-object/commit/6d319eac0ba237f7ba440a1fc4b32d007b1b0cf3) +- [Dev Deps] update `auto-changelog`, `core-js`, `eslint`, `tape` [`4f85bef`](https://github.com/inspect-js/is-boolean-object/commit/4f85bef244f8fdd9ab99db0afe0b8fa00c853709) + +## [v1.1.1](https://github.com/inspect-js/is-boolean-object/compare/v1.1.0...v1.1.1) - 2021-05-07 + +### Commits + +- [actions] use `node/install` instead of `node/run`; use `codecov` action [`7201c41`](https://github.com/inspect-js/is-boolean-object/commit/7201c41fc1fd9d64b51716b80fc63d95064a4a59) +- [Tests] run tests with core-js as well [`9590e61`](https://github.com/inspect-js/is-boolean-object/commit/9590e6135505e2e3f69c6d8785a539fca1b1e594) +- [meta] do not publish github action workflow files [`341472b`](https://github.com/inspect-js/is-boolean-object/commit/341472bbe9855030c7eda9340ee4284244f0a4ad) +- [readme] update repo URLs; remove travis badge [`9fdbbc6`](https://github.com/inspect-js/is-boolean-object/commit/9fdbbc64b2a70ee93fcfd95fc6c94c7ec2bbedd4) +- [Dev Deps] update `eslint`, `@ljharb/eslint-config`, `aud`, `tape` [`1cd35c9`](https://github.com/inspect-js/is-boolean-object/commit/1cd35c9b9b0b4af203f20bda0d7fd60798e57f99) +- [readme] add actions and codecov badges [`03769fe`](https://github.com/inspect-js/is-boolean-object/commit/03769feb1466f03b1345882ca0e4f8cacbbce9ce) +- [Dev Deps] update `eslint`, `@ljharb/eslint-config`, `tape` [`db6598c`](https://github.com/inspect-js/is-boolean-object/commit/db6598c4cabcd0ffd2ba9b4525b53907f8b2ff1f) +- [Fix] do not use `Object.prototype.toString` when `Symbol.toStringTag` is shammed [`e0b8a9f`](https://github.com/inspect-js/is-boolean-object/commit/e0b8a9f0fc1290a0a29c75967d56bc1c17eb8d2d) +- [readme] remove defunct testling badge [`986a621`](https://github.com/inspect-js/is-boolean-object/commit/986a6217da7385f7063e1d4e4bf5be2892d00c20) +- [meta] use `prepublishOnly` script for npm 7+ [`7bb3b29`](https://github.com/inspect-js/is-boolean-object/commit/7bb3b2902008ca07af4185ca98bc41b3222d579f) +- [Deps] update `call-bind` [`3af6a71`](https://github.com/inspect-js/is-boolean-object/commit/3af6a71e1004c79567630ac9944b9f2cc184ac77) +- [meta] do not publish corejs test file [`d911f03`](https://github.com/inspect-js/is-boolean-object/commit/d911f0368b6922645d15b9e28f3ed92e1badcef4) +- [actions] update workflows [`9bb3d90`](https://github.com/inspect-js/is-boolean-object/commit/9bb3d9015f377280324b162a3062d21936707216) + +## [v1.1.0](https://github.com/inspect-js/is-boolean-object/compare/v1.0.1...v1.1.0) - 2020-12-05 + +### Commits + +- [Tests] migrate tests to Github Actions [`6cdb652`](https://github.com/inspect-js/is-boolean-object/commit/6cdb652add3c6e44c2f7fe07c5ca4c0d14ddc2c1) +- [Tests] run `nyc` on all tests [`9a33076`](https://github.com/inspect-js/is-boolean-object/commit/9a33076d14869bf5120a6ca3903bcb9a008cf2e5) +- [Tests] add .editorconfig [`bb401c0`](https://github.com/inspect-js/is-boolean-object/commit/bb401c084416b010d64e0c5a74465b37addab31f) +- [Dev Deps] update `eslint`, `@ljharb/eslint-config`, `aud`, `auto-changelog`, `tape` [`5cb2405`](https://github.com/inspect-js/is-boolean-object/commit/5cb24052ca84d840e929f05cd1fe6c03b85ec032) +- [Robustness] use `call-bind` to avoid a dependency on `.call` [`76d87ae`](https://github.com/inspect-js/is-boolean-object/commit/76d87ae74235a9995d39bcf5783c04c744c34520) +- [actions] add "Allow Edits" workflow [`337206a`](https://github.com/inspect-js/is-boolean-object/commit/337206af74bd7c340bc938ab6dc0535c08490b3d) +- [Dev Deps] update `eslint`, `@ljharb/eslint-config`, `tape` [`11f0481`](https://github.com/inspect-js/is-boolean-object/commit/11f0481efca28a241a35d384e2a302b1bcdc9a37) +- [Dev Deps] update `eslint`, `@ljharb/eslint-config`, `tape` [`b9602c8`](https://github.com/inspect-js/is-boolean-object/commit/b9602c8ca11be138722187c1fb0a5b25a57a4edc) +- [Dev Deps] update `auto-changelog`, `tape`; add `aud` [`999e9e2`](https://github.com/inspect-js/is-boolean-object/commit/999e9e224d4eec8b20fc9c3431e9ba42caad79c9) +- [actions] switch Automatic Rebase workflow to `pull_request_target` event [`bbb6728`](https://github.com/inspect-js/is-boolean-object/commit/bbb6728b9410f9d3e2d266523a477127e5e4c16f) + +## [v1.0.1](https://github.com/inspect-js/is-boolean-object/compare/v1.0.0...v1.0.1) - 2019-12-18 + +### Commits + +- [Tests] use shared travis-ci configs [`a1778b8`](https://github.com/inspect-js/is-boolean-object/commit/a1778b81ab4fe4479176de854e4e233cc441f183) +- Update `eslint`; use my personal shared `eslint` config. [`2c42c50`](https://github.com/inspect-js/is-boolean-object/commit/2c42c50a0654044b6c7e2a4ab18227e8c275464b) +- [Tests] remove `jscs` [`3807025`](https://github.com/inspect-js/is-boolean-object/commit/380702504fabc47fe22f61c4847379023d31a657) +- [Tests] up to `node` `v8.4`, `v7.10`, `v6.11`, `v5.12`, `v4.8`; improve matrix; newer npm breaks in older node; improve scripts. [`a02b986`](https://github.com/inspect-js/is-boolean-object/commit/a02b98682b285de09e2c5a895627771d6a7f552c) +- [Dev Deps] update `eslint`, `@ljharb/eslint-config`, `is`, `jscs`, `nsp`, `semver`, `tape` [`d9030a9`](https://github.com/inspect-js/is-boolean-object/commit/d9030a99b8e274c76ae5f23f31d9d085a7e25272) +- Update `eslint`, `nsp` [`a1b6388`](https://github.com/inspect-js/is-boolean-object/commit/a1b6388fabd0de51a02c567953826344ef05890c) +- [Tests] up to `node` `v10.0`, `v9.11`, `v8.11`, `v6.14`, `v4.9`; use `nvm install-latest-npm` [`17a0fd3`](https://github.com/inspect-js/is-boolean-object/commit/17a0fd391e32635ec3434baca0d062f8abeeb592) +- [Tests] up to `node` `v12.10`, `v11.15`, `v10.16`, `v8.16`, `v6.17` [`0b1818f`](https://github.com/inspect-js/is-boolean-object/commit/0b1818fdcaebc6133e515dfe3b5a8930b38999b5) +- [meta] remove unused Makefile and associated utilities [`33dc0ae`](https://github.com/inspect-js/is-boolean-object/commit/33dc0ae35a03e91f81b1bb3db5ba763dacadbfa2) +- Update `covert`, `jscs`, `eslint`, `semver` [`7e513c1`](https://github.com/inspect-js/is-boolean-object/commit/7e513c12998a651c14f62b3ecfb7215a5cc5ee8f) +- [Tests] up to `node` `v11.4`, `v10.14`, `v8.14`, `v6.15` [`992b849`](https://github.com/inspect-js/is-boolean-object/commit/992b84933760e0fe6ba2cee74ad7fff507f28128) +- [meta] add `auto-changelog` [`63d71b8`](https://github.com/inspect-js/is-boolean-object/commit/63d71b8beb9aeb77cab3d2db2cf643f1b8b1a55c) +- Update `tape`, `eslint`, `semver` [`76aea69`](https://github.com/inspect-js/is-boolean-object/commit/76aea699fb315ac460799182d707c388b4a4e017) +- Update `tape`, `jscs`, `eslint`, `@ljharb/eslint-config` [`a6cbec0`](https://github.com/inspect-js/is-boolean-object/commit/a6cbec09940b6f2c7cf366526a94c0c4756508f5) +- [Dev Deps] update `eslint`, `@ljharb/eslint-config`, `replace`, `semver`, `tape`; add `safe-publish-latest` [`7cf6bb0`](https://github.com/inspect-js/is-boolean-object/commit/7cf6bb05ba7bac504df680dd9ca625fba6dccb5a) +- [Dev Deps] update `eslint`, `@ljharb/eslint-config`, `safe-publish-latest` [`57d713c`](https://github.com/inspect-js/is-boolean-object/commit/57d713cca2ccbbbf1da1142ee5e8236d12551f76) +- [actions] add automatic rebasing / merge commit blocking [`f7a2bdb`](https://github.com/inspect-js/is-boolean-object/commit/f7a2bdb905e07d75c65593359f81bfeda9fe9826) +- [meta] create FUNDING.yml [`9765e73`](https://github.com/inspect-js/is-boolean-object/commit/9765e738cccdd5ff6c89b21324119a2bf4064fbd) +- [Dev Deps] update `eslint`, `@ljharb/eslint-config`, `is`, `replace`, `semver`, `tape` [`5c16b56`](https://github.com/inspect-js/is-boolean-object/commit/5c16b56a5a2d36c6a70c1bd396b3a6c931f655db) +- [Dev Deps] update `tape`, `jscs`, `eslint`, `@ljharb/eslint-config` [`5717aad`](https://github.com/inspect-js/is-boolean-object/commit/5717aadd8b0e8c76ccb194d1845ad8cc120f29c6) +- [Dev Deps] update `is`, `jscs`, `nsp`, `eslint`, `@ljharb/eslint-config`, `semver` [`80b924d`](https://github.com/inspect-js/is-boolean-object/commit/80b924dd270188e1e928f4141078bee14d810e9b) +- [Dev Deps] update `jscs` [`2e5479e`](https://github.com/inspect-js/is-boolean-object/commit/2e5479e56b6d33288582cfe8c254ca081e79500c) +- Test up to `io.js` `v2.2` [`93379a4`](https://github.com/inspect-js/is-boolean-object/commit/93379a4b48ba719113006ab08bbe6679c8a27293) +- [Tests] remove `nsp`; use `npm audit`; allow to fail for now [`36ae30a`](https://github.com/inspect-js/is-boolean-object/commit/36ae30acffe4a892ea0882a793b8a90f09d08fdf) +- [Tests] up to `io.js` `v3.3`, `node` `v4.1` [`ef76976`](https://github.com/inspect-js/is-boolean-object/commit/ef76976db22f2867fca2ee377fdbc9da81f0d142) +- [Tests] use `npx aud` instead of `nsp` or `npm audit` with hoops [`a1182bd`](https://github.com/inspect-js/is-boolean-object/commit/a1182bd99e5d31e113107241f0d697e71b27bf7b) +- [Dev Deps] update `eslint`, `@ljharb/eslint-config`, `covert`, `tape` [`4f79b47`](https://github.com/inspect-js/is-boolean-object/commit/4f79b474f0643fd2c9dbc863949a61cf01255b6f) +- [Tests] up to `node` `v10.3` [`5e96464`](https://github.com/inspect-js/is-boolean-object/commit/5e96464fc08eacc45f5f58fe7800ddbc45e40cea) +- [Dev Deps] update `eslint`, `nsp`, `semver`, `tape` [`e1eb3fa`](https://github.com/inspect-js/is-boolean-object/commit/e1eb3fad8bad65140db3bd2381bb3bea6a9c6242) +- Only apps should have lockfiles. [`c7f301f`](https://github.com/inspect-js/is-boolean-object/commit/c7f301ff368f9e04f7f64a2ce9b6ae1aec803e69) +- [meta] add `funding` field [`fad0366`](https://github.com/inspect-js/is-boolean-object/commit/fad03662becea5db7cef29d816d173ad771be86a) +- [Dev Deps] update `eslint`, `@ljharb/eslint-config` [`80d39d9`](https://github.com/inspect-js/is-boolean-object/commit/80d39d90205d3bb564acb80b0625e90c267347fd) +- [Tests] use `eclint` instead of `editorconfig-tools` [`980e91b`](https://github.com/inspect-js/is-boolean-object/commit/980e91b186a728f77366ba16b7bebc813b9cc3b0) +- [Dev Deps] Update `tape`, `eslint` [`9960830`](https://github.com/inspect-js/is-boolean-object/commit/9960830876a3672686c569fde3d43bb7983955f1) +- Test up to `io.js` `v3.0` [`a3c3cd0`](https://github.com/inspect-js/is-boolean-object/commit/a3c3cd087d7fcefbf4f3525c05f4cee3b6e5b0ef) +- [Dev Deps] update `tape` [`217fbd6`](https://github.com/inspect-js/is-boolean-object/commit/217fbd6bb2989f9304ad95cd49697da7fe03b8d5) +- [Tests] only audit prod deps [`89284ee`](https://github.com/inspect-js/is-boolean-object/commit/89284ee17dce1d044df0ca9e006072f25742bbaf) +- [Performance] only use toStringTag code path when the value has that property [`2863bc5`](https://github.com/inspect-js/is-boolean-object/commit/2863bc5b72680f05ace8e66fddcf48966b942d55) +- [Dev Deps] update `replace` [`53e72a5`](https://github.com/inspect-js/is-boolean-object/commit/53e72a5ceca5b3a82e6407829f9227df9df6d329) +- [Enhancement] slight optimization for `null` [`a90a3c4`](https://github.com/inspect-js/is-boolean-object/commit/a90a3c4464d0300e23384d96fb4281b55b7fd723) +- [Dev Deps] update `tape` [`9377bd5`](https://github.com/inspect-js/is-boolean-object/commit/9377bd5110e99d8ec550f24ef3f6ead62a8f1f50) +- Switch from vb.teelaun.ch to versionbadg.es for the npm version badge SVG. [`3085530`](https://github.com/inspect-js/is-boolean-object/commit/30855304841854f79e406372f524efe4bc7d8c04) +- Test on `io.js` `v2.4` [`8af335c`](https://github.com/inspect-js/is-boolean-object/commit/8af335ca82a0eeba4a0a593775e4caf744834ec4) +- Test on `io.js` `v2.3` [`1eb3424`](https://github.com/inspect-js/is-boolean-object/commit/1eb3424bef528551f5c99a754281a51d92e40ab1) + +## v1.0.0 - 2015-04-28 + +### Commits + +- Dotfiles [`6b9b998`](https://github.com/inspect-js/is-boolean-object/commit/6b9b998bb238a32d4829c9f9bf274e5ca15023ee) +- `make release` [`d5e50b3`](https://github.com/inspect-js/is-boolean-object/commit/d5e50b33a3cd8d8abe7de8ae36e2944c24ce76ba) +- package.json [`117676a`](https://github.com/inspect-js/is-boolean-object/commit/117676a48609e636d4257c1b35c695ff20939211) +- Read me [`ef327a7`](https://github.com/inspect-js/is-boolean-object/commit/ef327a74c7f73e64cfa3c20a9620ef7accf8b762) +- Initial commit [`2346886`](https://github.com/inspect-js/is-boolean-object/commit/2346886252b9637c1af6851a3fc2cbc98bc986aa) +- Tests [`67211f8`](https://github.com/inspect-js/is-boolean-object/commit/67211f8bff1a49e5df219935765b83573c097353) +- Implementation [`2d88bd6`](https://github.com/inspect-js/is-boolean-object/commit/2d88bd6e1ef0f07f5a639775eb89f3b78e12eb65) diff --git a/novas/novacore-zephyr/groq-code-cli/node_modules/is-boolean-object/LICENSE b/novas/novacore-zephyr/groq-code-cli/node_modules/is-boolean-object/LICENSE new file mode 100644 index 0000000000000000000000000000000000000000..b43df444e518288ceef6eaa9badd33388191b1d3 --- /dev/null +++ b/novas/novacore-zephyr/groq-code-cli/node_modules/is-boolean-object/LICENSE @@ -0,0 +1,22 @@ +The MIT License (MIT) + +Copyright (c) 2015 Jordan Harband + +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. + diff --git a/novas/novacore-zephyr/groq-code-cli/node_modules/is-boolean-object/README.md b/novas/novacore-zephyr/groq-code-cli/node_modules/is-boolean-object/README.md new file mode 100644 index 0000000000000000000000000000000000000000..a77f3e9dfc0525e04d497450f8027c4c444e518c --- /dev/null +++ b/novas/novacore-zephyr/groq-code-cli/node_modules/is-boolean-object/README.md @@ -0,0 +1,57 @@ +# is-boolean-object [![Version Badge][2]][1] + +[![github actions][actions-image]][actions-url] +[![coverage][codecov-image]][codecov-url] +[![dependency status][5]][6] +[![dev dependency status][7]][8] +[![License][license-image]][license-url] +[![Downloads][downloads-image]][downloads-url] + +[![npm badge][11]][1] + +Is this value a JS Boolean? This module works cross-realm/iframe, and despite ES6 @@toStringTag. + +## Example + +```js +var isBoolean = require('is-boolean-object'); +var assert = require('assert'); + +assert.notOk(isBoolean(undefined)); +assert.notOk(isBoolean(null)); +assert.notOk(isBoolean('foo')); +assert.notOk(isBoolean(function () {})); +assert.notOk(isBoolean([])); +assert.notOk(isBoolean({})); +assert.notOk(isBoolean(/a/g)); +assert.notOk(isBoolean(new RegExp('a', 'g'))); +assert.notOk(isBoolean(new Date())); +assert.notOk(isBoolean(42)); +assert.notOk(isBoolean(NaN)); +assert.notOk(isBoolean(Infinity)); + +assert.ok(isBoolean(new Boolean(42))); +assert.ok(isBoolean(false)); +assert.ok(isBoolean(Object(false))); +assert.ok(isBoolean(true)); +assert.ok(isBoolean(Object(true))); +``` + +## Tests +Simply clone the repo, `npm install`, and run `npm test` + +[1]: https://npmjs.org/package/is-boolean-object +[2]: https://versionbadg.es/inspect-js/is-boolean-object.svg +[5]: https://david-dm.org/inspect-js/is-boolean-object.svg +[6]: https://david-dm.org/inspect-js/is-boolean-object +[7]: https://david-dm.org/inspect-js/is-boolean-object/dev-status.svg +[8]: https://david-dm.org/inspect-js/is-boolean-object#info=devDependencies +[11]: https://nodei.co/npm/is-boolean-object.png?downloads=true&stars=true +[license-image]: https://img.shields.io/npm/l/is-boolean-object.svg +[license-url]: LICENSE +[downloads-image]: https://img.shields.io/npm/dm/is-boolean-object.svg +[downloads-url]: https://npm-stat.com/charts.html?package=is-boolean-object +[codecov-image]: https://codecov.io/gh/inspect-js/is-boolean-object/branch/main/graphs/badge.svg +[codecov-url]: https://app.codecov.io/gh/inspect-js/is-boolean-object/ +[actions-image]: https://img.shields.io/endpoint?url=https://github-actions-badge-u3jn4tfpocch.runkit.sh/inspect-js/is-boolean-object +[actions-url]: https://github.com/inspect-js/is-boolean-object/actions diff --git a/novas/novacore-zephyr/groq-code-cli/node_modules/is-boolean-object/index.d.ts b/novas/novacore-zephyr/groq-code-cli/node_modules/is-boolean-object/index.d.ts new file mode 100644 index 0000000000000000000000000000000000000000..285f869a4ca7215312b744bdb5d7c524c69c38fe --- /dev/null +++ b/novas/novacore-zephyr/groq-code-cli/node_modules/is-boolean-object/index.d.ts @@ -0,0 +1,3 @@ +declare function isBooleanObject(value: unknown): value is boolean | Boolean; + +export = isBooleanObject; diff --git a/novas/novacore-zephyr/groq-code-cli/node_modules/is-boolean-object/index.js b/novas/novacore-zephyr/groq-code-cli/node_modules/is-boolean-object/index.js new file mode 100644 index 0000000000000000000000000000000000000000..a53f9faec8286646d162c096951eb411c2251d29 --- /dev/null +++ b/novas/novacore-zephyr/groq-code-cli/node_modules/is-boolean-object/index.js @@ -0,0 +1,28 @@ +'use strict'; + +var callBound = require('call-bound'); +var $boolToStr = callBound('Boolean.prototype.toString'); +var $toString = callBound('Object.prototype.toString'); + +/** @type {import('.')} */ +var tryBooleanObject = function booleanBrandCheck(value) { + try { + $boolToStr(value); + return true; + } catch (e) { + return false; + } +}; +var boolClass = '[object Boolean]'; +var hasToStringTag = require('has-tostringtag/shams')(); + +/** @type {import('.')} */ +module.exports = function isBoolean(value) { + if (typeof value === 'boolean') { + return true; + } + if (value === null || typeof value !== 'object') { + return false; + } + return hasToStringTag ? tryBooleanObject(value) : $toString(value) === boolClass; +}; diff --git a/novas/novacore-zephyr/groq-code-cli/node_modules/is-boolean-object/package.json b/novas/novacore-zephyr/groq-code-cli/node_modules/is-boolean-object/package.json new file mode 100644 index 0000000000000000000000000000000000000000..02cb79a71bde746636630bb41033c5fb6b66f413 --- /dev/null +++ b/novas/novacore-zephyr/groq-code-cli/node_modules/is-boolean-object/package.json @@ -0,0 +1,100 @@ +{ + "name": "is-boolean-object", + "version": "1.2.2", + "author": "Jordan Harband ", + "funding": { + "url": "https://github.com/sponsors/ljharb" + }, + "description": "Is this value a JS Boolean? This module works cross-realm/iframe, and despite ES6 @@toStringTag.", + "license": "MIT", + "main": "index.js", + "scripts": { + "prepack": "npmignore --auto --commentLines=autogenerated", + "prepublishOnly": "safe-publish-latest", + "prepublish": "not-in-publish || npm run prepublishOnly", + "pretest": "npm run lint", + "test": "npm run tests-only && npm run test:harmony && npm run test:corejs", + "tests-only": "nyc tape 'test/**/*.js'", + "test:harmony": "node --harmony --es-staging test", + "test:corejs": "nyc tape test-corejs.js", + "posttest": "npx npm@'>=10.2' audit --production", + "prelint": "eclint check $(git ls-files | xargs find 2> /dev/null | grep -vE 'node_modules|\\.git')", + "lint": "eslint --ext=js,mjs .", + "postlint": "tsc -p . && attw -P", + "version": "auto-changelog && git add CHANGELOG.md", + "postversion": "auto-changelog && git add CHANGELOG.md && git commit --no-edit --amend && git tag -f \"v$(node -e \"console.log(require('./package.json').version)\")\"" + }, + "repository": { + "type": "git", + "url": "git://github.com/inspect-js/is-boolean-object.git" + }, + "keywords": [ + "Boolean", + "ES6", + "toStringTag", + "@@toStringTag", + "Boolean object", + "true", + "false", + "is-boolean" + ], + "dependencies": { + "call-bound": "^1.0.3", + "has-tostringtag": "^1.0.2" + }, + "devDependencies": { + "@arethetypeswrong/cli": "^0.17.3", + "@ljharb/eslint-config": "^21.1.1", + "@ljharb/tsconfig": "^0.2.3", + "@types/core-js": "^2.5.8", + "@types/object-inspect": "^1.13.0", + "@types/tape": "^5.8.1", + "auto-changelog": "^2.5.0", + "core-js": "^3.40.0", + "eclint": "^2.8.1", + "encoding": "^0.1.13", + "eslint": "=8.8.0", + "in-publish": "^2.0.1", + "npmignore": "^0.3.1", + "nyc": "^10.3.2", + "object-inspect": "^1.13.4", + "safe-publish-latest": "^2.0.0", + "tape": "^5.9.0", + "typescript": "next" + }, + "testling": { + "files": "test.js", + "browsers": [ + "iexplore/6.0..latest", + "firefox/3.0..6.0", + "firefox/15.0..latest", + "firefox/nightly", + "chrome/4.0..10.0", + "chrome/20.0..latest", + "chrome/canary", + "opera/10.0..latest", + "opera/next", + "safari/4.0..latest", + "ipad/6.0..latest", + "iphone/6.0..latest", + "android-browser/4.2" + ] + }, + "engines": { + "node": ">= 0.4" + }, + "auto-changelog": { + "output": "CHANGELOG.md", + "template": "keepachangelog", + "unreleased": false, + "commitLimit": false, + "backfillLimit": false, + "hideCredit": true + }, + "publishConfig": { + "ignore": [ + ".github/workflows", + "test-corejs.js" + ] + } +} diff --git a/novas/novacore-zephyr/groq-code-cli/node_modules/is-boolean-object/tsconfig.json b/novas/novacore-zephyr/groq-code-cli/node_modules/is-boolean-object/tsconfig.json new file mode 100644 index 0000000000000000000000000000000000000000..707cf95103eea5754b0141455f421ec38d129dd9 --- /dev/null +++ b/novas/novacore-zephyr/groq-code-cli/node_modules/is-boolean-object/tsconfig.json @@ -0,0 +1,9 @@ +{ + "extends": "@ljharb/tsconfig", + "compilerOptions": { + "target": "ES2021", + }, + "exclude": [ + "coverage" + ] +} diff --git a/novas/novacore-zephyr/groq-code-cli/node_modules/is-callable/.editorconfig b/novas/novacore-zephyr/groq-code-cli/node_modules/is-callable/.editorconfig new file mode 100644 index 0000000000000000000000000000000000000000..f5f56790d4c5e94e056ab7e008c76101f52f8ec8 --- /dev/null +++ b/novas/novacore-zephyr/groq-code-cli/node_modules/is-callable/.editorconfig @@ -0,0 +1,31 @@ +root = true + +[*] +indent_style = tab +indent_size = 4 +end_of_line = lf +charset = utf-8 +trim_trailing_whitespace = true +insert_final_newline = true +max_line_length = 150 + +[CHANGELOG.md] +indent_style = space +indent_size = 2 +max_line_length = off + +[README.md] +indent_style = off +indent_size = off +max_line_length = off + +[*.json] +max_line_length = off + +[Makefile] +max_line_length = off + +[coverage*/**/*] +indent_style = off +indent_size = off +max_line_length = off diff --git a/novas/novacore-zephyr/groq-code-cli/node_modules/is-callable/.eslintrc b/novas/novacore-zephyr/groq-code-cli/node_modules/is-callable/.eslintrc new file mode 100644 index 0000000000000000000000000000000000000000..ce033bfe59fec43add2093f331782862ee639bf3 --- /dev/null +++ b/novas/novacore-zephyr/groq-code-cli/node_modules/is-callable/.eslintrc @@ -0,0 +1,10 @@ +{ + "root": true, + + "extends": "@ljharb", + + "rules": { + "id-length": 0, + "max-statements-per-line": [2, { "max": 2 }], + }, +} diff --git a/novas/novacore-zephyr/groq-code-cli/node_modules/is-callable/.nycrc b/novas/novacore-zephyr/groq-code-cli/node_modules/is-callable/.nycrc new file mode 100644 index 0000000000000000000000000000000000000000..bdd626ce91477abbdd489b79988baebadbd3c897 --- /dev/null +++ b/novas/novacore-zephyr/groq-code-cli/node_modules/is-callable/.nycrc @@ -0,0 +1,9 @@ +{ + "all": true, + "check-coverage": false, + "reporter": ["text-summary", "text", "html", "json"], + "exclude": [ + "coverage", + "test" + ] +} diff --git a/novas/novacore-zephyr/groq-code-cli/node_modules/is-callable/CHANGELOG.md b/novas/novacore-zephyr/groq-code-cli/node_modules/is-callable/CHANGELOG.md new file mode 100644 index 0000000000000000000000000000000000000000..32788cda9349e0182261462437e1593e3430be24 --- /dev/null +++ b/novas/novacore-zephyr/groq-code-cli/node_modules/is-callable/CHANGELOG.md @@ -0,0 +1,158 @@ +# Changelog + +All notable changes to this project will be documented in this file. + +The format is based on [Keep a Changelog](https://keepachangelog.com/en/1.0.0/) +and this project adheres to [Semantic Versioning](https://semver.org/spec/v2.0.0.html). + +## [v1.2.7](https://github.com/inspect-js/is-callable/compare/v1.2.6...v1.2.7) - 2022-09-23 + +### Commits + +- [Fix] recognize `document.all` in IE 6-10 [`06c1db2`](https://github.com/inspect-js/is-callable/commit/06c1db2b9b2e0f28428e1293eb572f8f93871ec7) +- [Tests] improve logic for FF 20-35 [`0f7d9b9`](https://github.com/inspect-js/is-callable/commit/0f7d9b9c7fe149ca87e71f0a125ade251a6a578c) +- [Fix] handle `document.all` in FF 27 (and +, probably) [`696c661`](https://github.com/inspect-js/is-callable/commit/696c661b8c0810c2d05ab172f1607f4e77ddf81e) +- [Tests] fix proxy tests in FF 42-63 [`985df0d`](https://github.com/inspect-js/is-callable/commit/985df0dd36f8cfe6f1993657b7c0f4cfc19dae30) +- [readme] update tested browsers [`389e919`](https://github.com/inspect-js/is-callable/commit/389e919493b1cb2010126b0411e5291bf76169bd) +- [Fix] detect `document.all` in Opera 12.16 [`b9f1022`](https://github.com/inspect-js/is-callable/commit/b9f1022b3d7e466b7f09080bd64c253caf644325) +- [Fix] HTML elements: properly report as callable in Opera 12.16 [`17391fe`](https://github.com/inspect-js/is-callable/commit/17391fe02b895777c4337be28dca3b364b743b34) +- [Tests] fix inverted logic in FF3 test [`056ebd4`](https://github.com/inspect-js/is-callable/commit/056ebd48790f46ca18ff5b12f51b44c08ccc3595) + +## [v1.2.6](https://github.com/inspect-js/is-callable/compare/v1.2.5...v1.2.6) - 2022-09-14 + +### Commits + +- [Fix] work for `document.all` in Firefox 3 and IE 6-8 [`015132a`](https://github.com/inspect-js/is-callable/commit/015132aaef886ec777b5b3593ef4ce461dd0c7d4) +- [Test] skip function toString check for nullish values [`8698116`](https://github.com/inspect-js/is-callable/commit/8698116f95eb59df8b48ec8e4585fc1cdd8cae9f) +- [readme] add "supported engines" section [`0442207`](https://github.com/inspect-js/is-callable/commit/0442207a89a1554d41ba36daf21862ef7ccbd500) +- [Tests] skip one of the fixture objects in FF 3.6 [`a501141`](https://github.com/inspect-js/is-callable/commit/a5011410bc6edb276c6ec8b47ce5c5d83c4bee15) +- [Tests] allow `class` constructor tests to fail in FF v45 - v54, which has undetectable classes [`b12e4a4`](https://github.com/inspect-js/is-callable/commit/b12e4a4d8c438678bd7710f9f896680150766b51) +- [Fix] Safari 4: regexes should not be considered callable [`4b732ff`](https://github.com/inspect-js/is-callable/commit/4b732ffa34346db3f0193ea4e46b7d4e637e6c82) +- [Fix] properly recognize `document.all` in Safari 4 [`3193735`](https://github.com/inspect-js/is-callable/commit/319373525dc4603346661641840cd9a3e0613136) + +## [v1.2.5](https://github.com/inspect-js/is-callable/compare/v1.2.4...v1.2.5) - 2022-09-11 + +### Commits + +- [actions] reuse common workflows [`5bb4b32`](https://github.com/inspect-js/is-callable/commit/5bb4b32dc93987328ab4f396601f751c4a7abd62) +- [meta] better `eccheck` command [`b9bd597`](https://github.com/inspect-js/is-callable/commit/b9bd597322b6e3a24c74c09881ca73e1d9f9f485) +- [meta] use `npmignore` to autogenerate an npmignore file [`3192d38`](https://github.com/inspect-js/is-callable/commit/3192d38527c7fc461d05d5aa93d47628e658bc45) +- [Fix] for HTML constructors, always use `tryFunctionObject` even in pre-toStringTag browsers [`3076ea2`](https://github.com/inspect-js/is-callable/commit/3076ea21d1f6ecc1cb711dcf1da08f257892c72b) +- [Dev Deps] update `eslint`, `@ljharb/eslint-config`, `available-typed-arrays`, `object-inspect`, `safe-publish-latest`, `tape` [`8986746`](https://github.com/inspect-js/is-callable/commit/89867464c42adc5cd375ee074a4574b0295442cb) +- [meta] add `auto-changelog` [`7dda9d0`](https://github.com/inspect-js/is-callable/commit/7dda9d04e670a69ae566c8fa596da4ff4371e615) +- [Fix] properly report `document.all` [`da90b2b`](https://github.com/inspect-js/is-callable/commit/da90b2b68dc4f33702c2e01ad07b4f89bcb60984) +- [actions] update codecov uploader [`c8f847c`](https://github.com/inspect-js/is-callable/commit/c8f847c90e04e54ff73c7cfae86e96e94990e324) +- [Dev Deps] update `eslint`, `@ljharb/eslint-config`, `aud`, `object-inspect`, `tape` [`899ae00`](https://github.com/inspect-js/is-callable/commit/899ae00b6abd10d81fc8bc7f02b345fd885d5f56) +- [Dev Deps] update `eslint`, `@ljharb/eslint-config`, `es-value-fixtures`, `object-inspect`, `tape` [`344e913`](https://github.com/inspect-js/is-callable/commit/344e913b149609bf741aa7345fa32dc0b90d8893) +- [meta] remove greenkeeper config [`737dce5`](https://github.com/inspect-js/is-callable/commit/737dce5590b1abb16183a63cb9d7d26920b3b394) +- [meta] npmignore coverage output [`680a883`](https://github.com/inspect-js/is-callable/commit/680a8839071bf36a419fe66e1ced7a3303c27b28) + + +1.2.4 / 2021-08-05 +================= + * [Fix] use `has-tostringtag` approach to behave correctly in the presence of symbol shams + * [readme] fix repo URLs + * [readme] add actions and codecov badges + * [readme] remove defunct badges + * [meta] ignore eclint checking coverage output + * [meta] use `prepublishOnly` script for npm 7+ + * [actions] use `node/install` instead of `node/run`; use `codecov` action + * [actions] remove unused workflow file + * [Tests] run `nyc` on all tests; use `tape` runner + * [Tests] use `available-typed-arrays`, `for-each`, `has-symbols`, `object-inspect` + * [Dev Deps] update `available-typed-arrays`, `eslint`, `@ljharb/eslint-config`, `aud`, `object-inspect`, `tape` + +1.2.3 / 2021-01-31 +================= + * [Fix] `document.all` is callable (do not use `document.all`!) + * [Dev Deps] update `eslint`, `@ljharb/eslint-config`, `aud`, `tape` + * [Tests] migrate tests to Github Actions + * [actions] add "Allow Edits" workflow + * [actions] switch Automatic Rebase workflow to `pull_request_target` event + +1.2.2 / 2020-09-21 +================= + * [Fix] include actual fix from 579179e + * [Dev Deps] update `eslint` + +1.2.1 / 2020-09-09 +================= + * [Fix] phantomjs‘ Reflect.apply does not throw properly on a bad array-like + * [Dev Deps] update `eslint`, `@ljharb/eslint-config` + * [meta] fix eclint error + +1.2.0 / 2020-06-02 +================= + * [New] use `Reflect.apply`‑based callability detection + * [readme] add install instructions (#55) + * [meta] only run `aud` on prod deps + * [Dev Deps] update `eslint`, `@ljharb/eslint-config`, `tape`, `make-arrow-function`, `make-generator-function`; add `aud`, `safe-publish-latest`, `make-async-function` + * [Tests] add tests for function proxies (#53, #25) + +1.1.5 / 2019-12-18 +================= + * [meta] remove unused Makefile and associated utilities + * [meta] add `funding` field; add FUNDING.yml + * [Dev Deps] update `eslint`, `@ljharb/eslint-config`, `semver`, `tape`, `covert`, `rimraf` + * [Tests] use shared travis configs + * [Tests] use `eccheck` over `editorconfig-tools` + * [Tests] use `npx aud` instead of `nsp` or `npm audit` with hoops + * [Tests] remove `jscs` + * [actions] add automatic rebasing / merge commit blocking + +1.1.4 / 2018-07-02 +================= + * [Fix] improve `class` and arrow function detection (#30, #31) + * [Tests] on all latest node minors; improve matrix + * [Dev Deps] update all dev deps + +1.1.3 / 2016-02-27 +================= + * [Fix] ensure “class “ doesn’t screw up “class” detection + * [Tests] up to `node` `v5.7`, `v4.3` + * [Dev Deps] update to `eslint` v2, `@ljharb/eslint-config`, `jscs` + +1.1.2 / 2016-01-15 +================= + * [Fix] Make sure comments don’t screw up “class” detection (#4) + * [Tests] up to `node` `v5.3` + * [Tests] Add `parallelshell`, run both `--es-staging` and stock tests at once + * [Dev Deps] update `tape`, `jscs`, `nsp`, `eslint`, `@ljharb/eslint-config` + * [Refactor] convert `isNonES6ClassFn` into `isES6ClassFn` + +1.1.1 / 2015-11-30 +================= + * [Fix] do not throw when a non-function has a function in its [[Prototype]] (#2) + * [Dev Deps] update `tape`, `eslint`, `@ljharb/eslint-config`, `jscs`, `nsp`, `semver` + * [Tests] up to `node` `v5.1` + * [Tests] no longer allow node 0.8 to fail. + * [Tests] fix npm upgrades in older nodes + +1.1.0 / 2015-10-02 +================= + * [Fix] Some browsers report TypedArray constructors as `typeof object` + * [New] return false for "class" constructors, when possible. + * [Tests] up to `io.js` `v3.3`, `node` `v4.1` + * [Dev Deps] update `eslint`, `editorconfig-tools`, `nsp`, `tape`, `semver`, `jscs`, `covert`, `make-arrow-function` + * [Docs] Switch from vb.teelaun.ch to versionbadg.es for the npm version badge SVG + +1.0.4 / 2015-01-30 +================= + * If @@toStringTag is not present, use the old-school Object#toString test. + +1.0.3 / 2015-01-29 +================= + * Add tests to ensure arrow functions are callable. + * Refactor to aid optimization of non-try/catch code. + +1.0.2 / 2015-01-29 +================= + * Fix broken package.json + +1.0.1 / 2015-01-29 +================= + * Add early exit for typeof not "function" + +1.0.0 / 2015-01-29 +================= + * Initial release. diff --git a/novas/novacore-zephyr/groq-code-cli/node_modules/is-callable/LICENSE b/novas/novacore-zephyr/groq-code-cli/node_modules/is-callable/LICENSE new file mode 100644 index 0000000000000000000000000000000000000000..b43df444e518288ceef6eaa9badd33388191b1d3 --- /dev/null +++ b/novas/novacore-zephyr/groq-code-cli/node_modules/is-callable/LICENSE @@ -0,0 +1,22 @@ +The MIT License (MIT) + +Copyright (c) 2015 Jordan Harband + +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. + diff --git a/novas/novacore-zephyr/groq-code-cli/node_modules/is-callable/README.md b/novas/novacore-zephyr/groq-code-cli/node_modules/is-callable/README.md new file mode 100644 index 0000000000000000000000000000000000000000..4f2b6d6f43cdfaa8c0cac021522579c2cd1692ea --- /dev/null +++ b/novas/novacore-zephyr/groq-code-cli/node_modules/is-callable/README.md @@ -0,0 +1,83 @@ +# is-callable [![Version Badge][2]][1] + +[![github actions][actions-image]][actions-url] +[![coverage][codecov-image]][codecov-url] +[![dependency status][5]][6] +[![dev dependency status][7]][8] +[![License][license-image]][license-url] +[![Downloads][downloads-image]][downloads-url] + +[![npm badge][11]][1] + +Is this JS value callable? Works with Functions and GeneratorFunctions, despite ES6 @@toStringTag. + +## Supported engines +Automatically tested in every minor version of node. + +Manually tested in: + - Safari: v4 - v15 (4, 5, 5.1, 6.0.5, 6.2, 7.1, 8, 9.1.3, 10.1.2, 11.1.2, 12.1, 13.1.2, 14.1.2, 15.3, 15.6.1) + - Note: Safari 9 has `class`, but `Function.prototype.toString` hides that progeny and makes them look like functions, so `class` constructors will be reported by this package as callable, when they are not in fact callable. + - Chrome: v15 - v81, v83 - v106(every integer version) + - Note: This includes Edge v80+ and Opera v15+, which matches Chrome + - Firefox: v3, v3.6, v4 - v105 (every integer version) + - Note: v45 - v54 has `class`, but `Function.prototype.toString` hides that progeny and makes them look like functions, so `class` constructors will be reported by this package as callable, when they are not in fact callable. + - Note: in v42 - v63, `Function.prototype.toString` throws on HTML element constructors, or a Proxy to a function + - Note: in v20 - v35, HTML element constructors are not callable, despite having typeof `function`. + - Note: in v19, `document.all` is not callable. + - IE: v6 - v11(every integer version + - Opera: v11.1, v11.5, v11.6, v12.1, v12.14, v12.15, v12.16, v15+ v15+ matches Chrome + +## Example + +```js +var isCallable = require('is-callable'); +var assert = require('assert'); + +assert.notOk(isCallable(undefined)); +assert.notOk(isCallable(null)); +assert.notOk(isCallable(false)); +assert.notOk(isCallable(true)); +assert.notOk(isCallable([])); +assert.notOk(isCallable({})); +assert.notOk(isCallable(/a/g)); +assert.notOk(isCallable(new RegExp('a', 'g'))); +assert.notOk(isCallable(new Date())); +assert.notOk(isCallable(42)); +assert.notOk(isCallable(NaN)); +assert.notOk(isCallable(Infinity)); +assert.notOk(isCallable(new Number(42))); +assert.notOk(isCallable('foo')); +assert.notOk(isCallable(Object('foo'))); + +assert.ok(isCallable(function () {})); +assert.ok(isCallable(function* () {})); +assert.ok(isCallable(x => x * x)); +``` + +## Install + +Install with + +``` +npm install is-callable +``` + +## Tests + +Simply clone the repo, `npm install`, and run `npm test` + +[1]: https://npmjs.org/package/is-callable +[2]: https://versionbadg.es/inspect-js/is-callable.svg +[5]: https://david-dm.org/inspect-js/is-callable.svg +[6]: https://david-dm.org/inspect-js/is-callable +[7]: https://david-dm.org/inspect-js/is-callable/dev-status.svg +[8]: https://david-dm.org/inspect-js/is-callable#info=devDependencies +[11]: https://nodei.co/npm/is-callable.png?downloads=true&stars=true +[license-image]: https://img.shields.io/npm/l/is-callable.svg +[license-url]: LICENSE +[downloads-image]: https://img.shields.io/npm/dm/is-callable.svg +[downloads-url]: https://npm-stat.com/charts.html?package=is-callable +[codecov-image]: https://codecov.io/gh/inspect-js/is-callable/branch/main/graphs/badge.svg +[codecov-url]: https://app.codecov.io/gh/inspect-js/is-callable/ +[actions-image]: https://img.shields.io/endpoint?url=https://github-actions-badge-u3jn4tfpocch.runkit.sh/inspect-js/is-callable +[actions-url]: https://github.com/inspect-js/is-callable/actions diff --git a/novas/novacore-zephyr/groq-code-cli/node_modules/is-callable/index.js b/novas/novacore-zephyr/groq-code-cli/node_modules/is-callable/index.js new file mode 100644 index 0000000000000000000000000000000000000000..f2a89f848cbcc5254d9edfb7843ccd49786d0ac3 --- /dev/null +++ b/novas/novacore-zephyr/groq-code-cli/node_modules/is-callable/index.js @@ -0,0 +1,101 @@ +'use strict'; + +var fnToStr = Function.prototype.toString; +var reflectApply = typeof Reflect === 'object' && Reflect !== null && Reflect.apply; +var badArrayLike; +var isCallableMarker; +if (typeof reflectApply === 'function' && typeof Object.defineProperty === 'function') { + try { + badArrayLike = Object.defineProperty({}, 'length', { + get: function () { + throw isCallableMarker; + } + }); + isCallableMarker = {}; + // eslint-disable-next-line no-throw-literal + reflectApply(function () { throw 42; }, null, badArrayLike); + } catch (_) { + if (_ !== isCallableMarker) { + reflectApply = null; + } + } +} else { + reflectApply = null; +} + +var constructorRegex = /^\s*class\b/; +var isES6ClassFn = function isES6ClassFunction(value) { + try { + var fnStr = fnToStr.call(value); + return constructorRegex.test(fnStr); + } catch (e) { + return false; // not a function + } +}; + +var tryFunctionObject = function tryFunctionToStr(value) { + try { + if (isES6ClassFn(value)) { return false; } + fnToStr.call(value); + return true; + } catch (e) { + return false; + } +}; +var toStr = Object.prototype.toString; +var objectClass = '[object Object]'; +var fnClass = '[object Function]'; +var genClass = '[object GeneratorFunction]'; +var ddaClass = '[object HTMLAllCollection]'; // IE 11 +var ddaClass2 = '[object HTML document.all class]'; +var ddaClass3 = '[object HTMLCollection]'; // IE 9-10 +var hasToStringTag = typeof Symbol === 'function' && !!Symbol.toStringTag; // better: use `has-tostringtag` + +var isIE68 = !(0 in [,]); // eslint-disable-line no-sparse-arrays, comma-spacing + +var isDDA = function isDocumentDotAll() { return false; }; +if (typeof document === 'object') { + // Firefox 3 canonicalizes DDA to undefined when it's not accessed directly + var all = document.all; + if (toStr.call(all) === toStr.call(document.all)) { + isDDA = function isDocumentDotAll(value) { + /* globals document: false */ + // in IE 6-8, typeof document.all is "object" and it's truthy + if ((isIE68 || !value) && (typeof value === 'undefined' || typeof value === 'object')) { + try { + var str = toStr.call(value); + return ( + str === ddaClass + || str === ddaClass2 + || str === ddaClass3 // opera 12.16 + || str === objectClass // IE 6-8 + ) && value('') == null; // eslint-disable-line eqeqeq + } catch (e) { /**/ } + } + return false; + }; + } +} + +module.exports = reflectApply + ? function isCallable(value) { + if (isDDA(value)) { return true; } + if (!value) { return false; } + if (typeof value !== 'function' && typeof value !== 'object') { return false; } + try { + reflectApply(value, null, badArrayLike); + } catch (e) { + if (e !== isCallableMarker) { return false; } + } + return !isES6ClassFn(value) && tryFunctionObject(value); + } + : function isCallable(value) { + if (isDDA(value)) { return true; } + if (!value) { return false; } + if (typeof value !== 'function' && typeof value !== 'object') { return false; } + if (hasToStringTag) { return tryFunctionObject(value); } + if (isES6ClassFn(value)) { return false; } + var strClass = toStr.call(value); + if (strClass !== fnClass && strClass !== genClass && !(/^\[object HTML/).test(strClass)) { return false; } + return tryFunctionObject(value); + }; diff --git a/novas/novacore-zephyr/groq-code-cli/node_modules/is-callable/package.json b/novas/novacore-zephyr/groq-code-cli/node_modules/is-callable/package.json new file mode 100644 index 0000000000000000000000000000000000000000..aa3e8df044d5d022abe7c5116d3f90cce73919fd --- /dev/null +++ b/novas/novacore-zephyr/groq-code-cli/node_modules/is-callable/package.json @@ -0,0 +1,106 @@ +{ + "name": "is-callable", + "version": "1.2.7", + "author": { + "name": "Jordan Harband", + "email": "ljharb@gmail.com", + "url": "http://ljharb.codes" + }, + "funding": { + "url": "https://github.com/sponsors/ljharb" + }, + "contributors": [ + { + "name": "Jordan Harband", + "email": "ljharb@gmail.com", + "url": "http://ljharb.codes" + } + ], + "description": "Is this JS value callable? Works with Functions and GeneratorFunctions, despite ES6 @@toStringTag.", + "license": "MIT", + "main": "index.js", + "scripts": { + "prepack": "npmignore --auto --commentLines=autogenerated", + "version": "auto-changelog && git add CHANGELOG.md", + "postversion": "auto-changelog && git add CHANGELOG.md && git commit --no-edit --amend && git tag -f \"v$(node -e \"console.log(require('./package.json').version)\")\"", + "prepublishOnly": "safe-publish-latest", + "prepublish": "not-in-publish || npm run prepublishOnly", + "pretest": "npm run --silent lint", + "test": "npm run tests-only --", + "posttest": "aud --production", + "tests-only": "nyc tape 'test/**/*.js'", + "prelint": "eclint check $(git ls-files | xargs find 2> /dev/null | grep -vE 'node_modules|\\.git')", + "lint": "eslint --ext=js,mjs ." + }, + "repository": { + "type": "git", + "url": "git://github.com/inspect-js/is-callable.git" + }, + "keywords": [ + "Function", + "function", + "callable", + "generator", + "generator function", + "arrow", + "arrow function", + "ES6", + "toStringTag", + "@@toStringTag" + ], + "devDependencies": { + "@ljharb/eslint-config": "^21.0.0", + "aud": "^2.0.0", + "auto-changelog": "^2.4.0", + "available-typed-arrays": "^1.0.5", + "eclint": "^2.8.1", + "es-value-fixtures": "^1.4.2", + "eslint": "=8.8.0", + "for-each": "^0.3.3", + "has-tostringtag": "^1.0.0", + "make-arrow-function": "^1.2.0", + "make-async-function": "^1.0.0", + "make-generator-function": "^2.0.0", + "npmignore": "^0.3.0", + "nyc": "^10.3.2", + "object-inspect": "^1.12.2", + "rimraf": "^2.7.1", + "safe-publish-latest": "^2.0.0", + "tape": "^5.6.0" + }, + "testling": { + "files": "test/index.js", + "browsers": [ + "iexplore/6.0..latest", + "firefox/3.0..6.0", + "firefox/15.0..latest", + "firefox/nightly", + "chrome/4.0..10.0", + "chrome/20.0..latest", + "chrome/canary", + "opera/10.0..latest", + "opera/next", + "safari/4.0..latest", + "ipad/6.0..latest", + "iphone/6.0..latest", + "android-browser/4.2" + ] + }, + "engines": { + "node": ">= 0.4" + }, + "auto-changelog": { + "output": "CHANGELOG.md", + "template": "keepachangelog", + "unreleased": false, + "commitLimit": false, + "backfillLimit": false, + "hideCredit": true, + "startingVersion": "v1.2.5" + }, + "publishConfig": { + "ignore": [ + ".github/workflows" + ] + } +} diff --git a/novas/novacore-zephyr/groq-code-cli/node_modules/is-core-module/.eslintrc b/novas/novacore-zephyr/groq-code-cli/node_modules/is-core-module/.eslintrc new file mode 100644 index 0000000000000000000000000000000000000000..f2e07268154e3e32cb09cb164baf850c7dac9a38 --- /dev/null +++ b/novas/novacore-zephyr/groq-code-cli/node_modules/is-core-module/.eslintrc @@ -0,0 +1,18 @@ +{ + "extends": "@ljharb", + "root": true, + "rules": { + "func-style": 1, + }, + "overrides": [ + { + "files": "test/**", + "rules": { + "global-require": 0, + "max-depth": 0, + "max-lines-per-function": 0, + "no-negated-condition": 0, + }, + }, + ], +} diff --git a/novas/novacore-zephyr/groq-code-cli/node_modules/is-core-module/.nycrc b/novas/novacore-zephyr/groq-code-cli/node_modules/is-core-module/.nycrc new file mode 100644 index 0000000000000000000000000000000000000000..bdd626ce91477abbdd489b79988baebadbd3c897 --- /dev/null +++ b/novas/novacore-zephyr/groq-code-cli/node_modules/is-core-module/.nycrc @@ -0,0 +1,9 @@ +{ + "all": true, + "check-coverage": false, + "reporter": ["text-summary", "text", "html", "json"], + "exclude": [ + "coverage", + "test" + ] +} diff --git a/novas/novacore-zephyr/groq-code-cli/node_modules/is-core-module/CHANGELOG.md b/novas/novacore-zephyr/groq-code-cli/node_modules/is-core-module/CHANGELOG.md new file mode 100644 index 0000000000000000000000000000000000000000..0177c82b763e88745234c7325b231f94feb05fb8 --- /dev/null +++ b/novas/novacore-zephyr/groq-code-cli/node_modules/is-core-module/CHANGELOG.md @@ -0,0 +1,218 @@ +# Changelog + +All notable changes to this project will be documented in this file. + +The format is based on [Keep a Changelog](https://keepachangelog.com/en/1.0.0/) +and this project adheres to [Semantic Versioning](https://semver.org/spec/v2.0.0.html). + +## [v2.16.1](https://github.com/inspect-js/is-core-module/compare/v2.16.0...v2.16.1) - 2024-12-21 + +### Fixed + +- [Fix] `node:sqlite` is available in node ^22.13 [`#17`](https://github.com/inspect-js/is-core-module/issues/17) + +## [v2.16.0](https://github.com/inspect-js/is-core-module/compare/v2.15.1...v2.16.0) - 2024-12-13 + +### Commits + +- [New] add `node:sqlite` [`1ee94d2`](https://github.com/inspect-js/is-core-module/commit/1ee94d20857e22cdb24e9b4bb1a2097f2e03e26f) +- [Dev Deps] update `auto-changelog`, `tape` [`aa84aa3`](https://github.com/inspect-js/is-core-module/commit/aa84aa34face677f14e08ec1c737f0c4bba27260) + +## [v2.15.1](https://github.com/inspect-js/is-core-module/compare/v2.15.0...v2.15.1) - 2024-08-21 + +### Commits + +- [Tests] add `process.getBuiltinModule` tests [`28c7791`](https://github.com/inspect-js/is-core-module/commit/28c7791c196d58c64cfdf638b7e68ed1b62a4da0) +- [Fix] `test/mock_loader` is no longer exposed as of v22.7 [`68b08b0`](https://github.com/inspect-js/is-core-module/commit/68b08b0d7963447dbffa5142e8810dca550383af) +- [Tests] replace `aud` with `npm audit` [`32f8060`](https://github.com/inspect-js/is-core-module/commit/32f806026dac14f9016be4401a643851240c76b9) +- [Dev Deps] update `mock-property` [`f7d3c8f`](https://github.com/inspect-js/is-core-module/commit/f7d3c8f01e922be49621683eb41477c4f50522e1) +- [Dev Deps] add missing peer dep [`eaee885`](https://github.com/inspect-js/is-core-module/commit/eaee885b67238819e9c8ed5bd2098766e1d05331) + +## [v2.15.0](https://github.com/inspect-js/is-core-module/compare/v2.14.0...v2.15.0) - 2024-07-17 + +### Commits + +- [New] add `node:sea` [`2819fb3`](https://github.com/inspect-js/is-core-module/commit/2819fb3eae312fa64643bc5430ebd06ec0f3fb88) + +## [v2.14.0](https://github.com/inspect-js/is-core-module/compare/v2.13.1...v2.14.0) - 2024-06-20 + +### Commits + +- [Dev Deps] update `@ljharb/eslint-config`, `aud`, `mock-property`, `npmignore`, `tape` [`0e43200`](https://github.com/inspect-js/is-core-module/commit/0e432006d97237cc082d41e6a593e87c81068364) +- [meta] add missing `engines.node` [`4ea3af8`](https://github.com/inspect-js/is-core-module/commit/4ea3af88891a1d4f96026f0ec0ef08c67cd1bd24) +- [New] add `test/mock_loader` [`e9fbd29`](https://github.com/inspect-js/is-core-module/commit/e9fbd2951383be070aeffb9ebbf3715237282610) +- [Deps] update `hasown` [`57f1940`](https://github.com/inspect-js/is-core-module/commit/57f1940947b3e368abdf529232d2f17d88909358) + +## [v2.13.1](https://github.com/inspect-js/is-core-module/compare/v2.13.0...v2.13.1) - 2023-10-20 + +### Commits + +- [Refactor] use `hasown` instead of `has` [`0e52096`](https://github.com/inspect-js/is-core-module/commit/0e520968b0a725276b67420ab4b877486b243ae0) +- [Dev Deps] update `mock-property`, `tape` [`8736b35`](https://github.com/inspect-js/is-core-module/commit/8736b35464d0f297b55da2c6b30deee04b8303c5) + +## [v2.13.0](https://github.com/inspect-js/is-core-module/compare/v2.12.1...v2.13.0) - 2023-08-05 + +### Commits + +- [Dev Deps] update `@ljharb/eslint-config`, `aud`, `semver`, `tape` [`c75b263`](https://github.com/inspect-js/is-core-module/commit/c75b263d047cb53430c3970107e5eb64d6cd6c0c) +- [New] `node:test/reporters` and `wasi`/`node:wasi` are in v18.17 [`d76cbf8`](https://github.com/inspect-js/is-core-module/commit/d76cbf8e9b208acfd98913fed5a5f45cb15fe5dc) + +## [v2.12.1](https://github.com/inspect-js/is-core-module/compare/v2.12.0...v2.12.1) - 2023-05-16 + +### Commits + +- [Fix] `test/reporters` now requires the `node:` prefix as of v20.2 [`12183d0`](https://github.com/inspect-js/is-core-module/commit/12183d0d8e4edf56b6ce18a1b3be54bfce10175b) + +## [v2.12.0](https://github.com/inspect-js/is-core-module/compare/v2.11.0...v2.12.0) - 2023-04-10 + +### Commits + +- [actions] update rebase action to use reusable workflow [`c0a7251`](https://github.com/inspect-js/is-core-module/commit/c0a7251f734f3c621932c5fcdfd1bf966b42ca32) +- [Dev Deps] update `@ljharb/eslint-config`, `aud`, `tape` [`9ae8b7f`](https://github.com/inspect-js/is-core-module/commit/9ae8b7fac03c369861d0991b4a2ce8d4848e6a7d) +- [New] `test/reporters` added in v19.9, `wasi` added in v20 [`9d5341a`](https://github.com/inspect-js/is-core-module/commit/9d5341ab32053f25b7fa7db3c0e18461db24a79c) +- [Dev Deps] add missing `in-publish` dep [`5980245`](https://github.com/inspect-js/is-core-module/commit/59802456e9ac919fa748f53be9d8fbf304a197df) + +## [v2.11.0](https://github.com/inspect-js/is-core-module/compare/v2.10.0...v2.11.0) - 2022-10-18 + +### Commits + +- [meta] use `npmignore` to autogenerate an npmignore file [`3360011`](https://github.com/inspect-js/is-core-module/commit/33600118857b46177178072fba2affcdeb009d12) +- [Dev Deps] update `aud`, `tape` [`651c6b0`](https://github.com/inspect-js/is-core-module/commit/651c6b0cc2799d4130866cf43ad333dcade3d26c) +- [New] `inspector/promises` and `node:inspector/promises` is now available in node 19 [`22d332f`](https://github.com/inspect-js/is-core-module/commit/22d332fe22ac050305444e0781ff85af819abcb0) + +## [v2.10.0](https://github.com/inspect-js/is-core-module/compare/v2.9.0...v2.10.0) - 2022-08-03 + +### Commits + +- [New] `node:test` is now available in node ^16.17 [`e8fd36e`](https://github.com/inspect-js/is-core-module/commit/e8fd36e9b86c917775a07cc473b62a3294f459f2) +- [Tests] improve skip message [`c014a4c`](https://github.com/inspect-js/is-core-module/commit/c014a4c0cd6eb15fff573ae4709191775e70cab4) + +## [v2.9.0](https://github.com/inspect-js/is-core-module/compare/v2.8.1...v2.9.0) - 2022-04-19 + +### Commits + +- [New] add `node:test`, in node 18+ [`f853eca`](https://github.com/inspect-js/is-core-module/commit/f853eca801d0a7d4e1dbb670f1b6d9837d9533c5) +- [Tests] use `mock-property` [`03b3644`](https://github.com/inspect-js/is-core-module/commit/03b3644dff4417f4ba5a7d0aa0138f5f6b3e5c46) +- [Dev Deps] update `eslint`, `@ljharb/eslint-config`, `aud`, `auto-changelog`, `tape` [`7c0e2d0`](https://github.com/inspect-js/is-core-module/commit/7c0e2d06ed2a89acf53abe2ab34d703ed5b03455) +- [meta] simplify "exports" [`d6ed201`](https://github.com/inspect-js/is-core-module/commit/d6ed201eba7fbba0e59814a9050fc49a6e9878c8) + +## [v2.8.1](https://github.com/inspect-js/is-core-module/compare/v2.8.0...v2.8.1) - 2022-01-05 + +### Commits + +- [actions] reuse common workflows [`cd2cf9b`](https://github.com/inspect-js/is-core-module/commit/cd2cf9b3b66c8d328f65610efe41e9325db7716d) +- [Fix] update node 0.4 results [`062195d`](https://github.com/inspect-js/is-core-module/commit/062195d89f0876a88b95d378b43f7fcc1205bc5b) +- [Dev Deps] update `eslint`, `@ljharb/eslint-config`, `safe-publish-latest`, `tape` [`0790b62`](https://github.com/inspect-js/is-core-module/commit/0790b6222848c6167132f9f73acc3520fa8d1298) +- [Dev Deps] update `eslint`, `@ljharb/eslint-config`, `tape` [`7d139a6`](https://github.com/inspect-js/is-core-module/commit/7d139a6d767709eabf0a0251e074ec1fb230c06e) +- [Tests] run `nyc` in `tests-only`, not `test` [`780e8a0`](https://github.com/inspect-js/is-core-module/commit/780e8a049951c71cf78b1707f0871c48a28bde14) + +## [v2.8.0](https://github.com/inspect-js/is-core-module/compare/v2.7.0...v2.8.0) - 2021-10-14 + +### Commits + +- [actions] update codecov uploader [`0cfe94e`](https://github.com/inspect-js/is-core-module/commit/0cfe94e106a7d005ea03e008c0a21dec13a77904) +- [New] add `readline/promises` to node v17+ [`4f78c30`](https://github.com/inspect-js/is-core-module/commit/4f78c3008b1b58b4db6dc91d99610b1bc859da7e) +- [Tests] node ^14.18 supports `node:` prefixes for CJS [`43e2f17`](https://github.com/inspect-js/is-core-module/commit/43e2f177452cea2f0eaf34f61b5407217bbdb6f4) + +## [v2.7.0](https://github.com/inspect-js/is-core-module/compare/v2.6.0...v2.7.0) - 2021-09-27 + +### Commits + +- [New] node `v14.18` added `node:`-prefixed core modules to `require` [`6d943ab`](https://github.com/inspect-js/is-core-module/commit/6d943abe81382b9bbe344384d80fbfebe1cc0526) +- [Tests] add coverage for Object.prototype pollution [`c6baf5f`](https://github.com/inspect-js/is-core-module/commit/c6baf5f942311a1945c1af41167bb80b84df2af7) +- [Dev Deps] update `@ljharb/eslint-config` [`6717f00`](https://github.com/inspect-js/is-core-module/commit/6717f000d063ea57beb772bded36c2f056ac404c) +- [eslint] fix linter warning [`594c10b`](https://github.com/inspect-js/is-core-module/commit/594c10bb7d39d7eb00925c90924199ff596184b2) +- [meta] add `sideEffects` flag [`c32cfa5`](https://github.com/inspect-js/is-core-module/commit/c32cfa5195632944c4dd4284a142b8476e75be13) + +## [v2.6.0](https://github.com/inspect-js/is-core-module/compare/v2.5.0...v2.6.0) - 2021-08-17 + +### Commits + +- [Dev Deps] update `eslint`, `tape` [`6cc928f`](https://github.com/inspect-js/is-core-module/commit/6cc928f8a4bba66aeeccc4f6beeac736d4bd3081) +- [New] add `stream/consumers` to node `>= 16.7` [`a1a423e`](https://github.com/inspect-js/is-core-module/commit/a1a423e467e4cc27df180234fad5bab45943e67d) +- [Refactor] Remove duplicated `&&` operand [`86faea7`](https://github.com/inspect-js/is-core-module/commit/86faea738213a2433c62d1098488dc9314dca832) +- [Tests] include prereleases [`a4da7a6`](https://github.com/inspect-js/is-core-module/commit/a4da7a6abf7568e2aa4fd98e69452179f1850963) + +## [v2.5.0](https://github.com/inspect-js/is-core-module/compare/v2.4.0...v2.5.0) - 2021-07-12 + +### Commits + +- [Dev Deps] update `auto-changelog`, `eslint` [`6334cc9`](https://github.com/inspect-js/is-core-module/commit/6334cc94f3af7469685bd8f236740991baaf2705) +- [New] add `stream/web` to node v16.5+ [`17ac59b`](https://github.com/inspect-js/is-core-module/commit/17ac59b662d63e220a2e5728625f005c24f177b2) + +## [v2.4.0](https://github.com/inspect-js/is-core-module/compare/v2.3.0...v2.4.0) - 2021-05-09 + +### Commits + +- [readme] add actions and codecov badges [`82b7faa`](https://github.com/inspect-js/is-core-module/commit/82b7faa12b56dbe47fbea67e1a5b9e447027ba40) +- [Dev Deps] update `@ljharb/eslint-config`, `aud` [`8096868`](https://github.com/inspect-js/is-core-module/commit/8096868c024a161ccd4d44110b136763e92eace8) +- [Dev Deps] update `eslint` [`6726824`](https://github.com/inspect-js/is-core-module/commit/67268249b88230018c510f6532a8046d7326346f) +- [New] add `diagnostics_channel` to node `^14.17` [`86c6563`](https://github.com/inspect-js/is-core-module/commit/86c65634201b8ff9b3e48a9a782594579c7f5c3c) +- [meta] fix prepublish script [`697a01e`](https://github.com/inspect-js/is-core-module/commit/697a01e3c9c0be074066520954f30fb28532ec57) + +## [v2.3.0](https://github.com/inspect-js/is-core-module/compare/v2.2.0...v2.3.0) - 2021-04-24 + +### Commits + +- [meta] do not publish github action workflow files [`060d4bb`](https://github.com/inspect-js/is-core-module/commit/060d4bb971a29451c19ff336eb56bee27f9fa95a) +- [New] add support for `node:` prefix, in node 16+ [`7341223`](https://github.com/inspect-js/is-core-module/commit/73412230a769f6e81c05eea50b6520cebf54ed2f) +- [actions] use `node/install` instead of `node/run`; use `codecov` action [`016269a`](https://github.com/inspect-js/is-core-module/commit/016269abae9f6657a5254adfbb813f09a05067f9) +- [patch] remove unneeded `.0` in version ranges [`cb466a6`](https://github.com/inspect-js/is-core-module/commit/cb466a6d89e52b8389e5c12715efcd550c41cea3) +- [Dev Deps] update `eslint`, `@ljharb/eslint-config`, `aud`, `tape` [`c9f9c39`](https://github.com/inspect-js/is-core-module/commit/c9f9c396ace60ef81906f98059c064e6452473ed) +- [actions] update workflows [`3ee4a89`](https://github.com/inspect-js/is-core-module/commit/3ee4a89fd5a02fccd43882d905448ea6a98e9a3c) +- [Dev Deps] update `eslint`, `@ljharb/eslint-config` [`dee4fed`](https://github.com/inspect-js/is-core-module/commit/dee4fed79690c1d43a22f7fa9426abebdc6d727f) +- [Dev Deps] update `eslint`, `@ljharb/eslint-config` [`7d046ba`](https://github.com/inspect-js/is-core-module/commit/7d046ba07ae8c9292e43652694ca808d7b309de8) +- [meta] use `prepublishOnly` script for npm 7+ [`149e677`](https://github.com/inspect-js/is-core-module/commit/149e6771a5ede6d097e71785b467a9c4b4977cc7) +- [readme] remove travis badge [`903b51d`](https://github.com/inspect-js/is-core-module/commit/903b51d6b69b98abeabfbc3695c345b02646f19c) + +## [v2.2.0](https://github.com/inspect-js/is-core-module/compare/v2.1.0...v2.2.0) - 2020-11-26 + +### Commits + +- [Tests] migrate tests to Github Actions [`c919f57`](https://github.com/inspect-js/is-core-module/commit/c919f573c0a92d10a0acad0b650b5aecb033d426) +- [patch] `core.json`: %s/ /\t/g [`db3f685`](https://github.com/inspect-js/is-core-module/commit/db3f68581f53e73cc09cd675955eb1bdd6a5a39b) +- [Tests] run `nyc` on all tests [`b2f925f`](https://github.com/inspect-js/is-core-module/commit/b2f925f8866f210ef441f39fcc8cc42692ab89b1) +- [Dev Deps] update `eslint`, `@ljharb/eslint-config`, `aud`; add `safe-publish-latest` [`89f02a2`](https://github.com/inspect-js/is-core-module/commit/89f02a2b4162246dea303a6ee31bb9a550b05c72) +- [New] add `path/posix`, `path/win32`, `util/types` [`77f94f1`](https://github.com/inspect-js/is-core-module/commit/77f94f1e90ffd7c0be2a3f1aa8574ebf7fd981b3) + +## [v2.1.0](https://github.com/inspect-js/is-core-module/compare/v2.0.0...v2.1.0) - 2020-11-04 + +### Commits + +- [Dev Deps] update `eslint` [`5e0034e`](https://github.com/inspect-js/is-core-module/commit/5e0034eae57c09c8f1bd769f502486a00f56c6e4) +- [New] Add `diagnostics_channel` [`c2d83d0`](https://github.com/inspect-js/is-core-module/commit/c2d83d0a0225a1a658945d9bab7036ea347d29ec) + +## [v2.0.0](https://github.com/inspect-js/is-core-module/compare/v1.0.2...v2.0.0) - 2020-09-29 + +### Commits + +- v2 implementation [`865aeb5`](https://github.com/inspect-js/is-core-module/commit/865aeb5ca0e90248a3dfff5d7622e4751fdeb9cd) +- Only apps should have lockfiles [`5a5e660`](https://github.com/inspect-js/is-core-module/commit/5a5e660d568e37eb44e17fb1ebb12a105205fc2b) +- Initial commit for v2 [`5a51524`](https://github.com/inspect-js/is-core-module/commit/5a51524e06f92adece5fbb138c69b7b9748a2348) +- Tests [`116eae4`](https://github.com/inspect-js/is-core-module/commit/116eae4fccd01bc72c1fd3cc4b7561c387afc496) +- [meta] add `auto-changelog` [`c24388b`](https://github.com/inspect-js/is-core-module/commit/c24388bee828d223040519d1f5b226ca35beee63) +- [actions] add "Automatic Rebase" and "require allow edits" actions [`34292db`](https://github.com/inspect-js/is-core-module/commit/34292dbcbadae0868aff03c22dbd8b7b8a11558a) +- [Tests] add `npm run lint` [`4f9eeee`](https://github.com/inspect-js/is-core-module/commit/4f9eeee7ddff10698bbf528620f4dc8d4fa3e697) +- [readme] fix travis badges, https all URLs [`e516a73`](https://github.com/inspect-js/is-core-module/commit/e516a73b0dccce20938c432b1ba512eae8eff9e9) +- [meta] create FUNDING.yml [`1aabebc`](https://github.com/inspect-js/is-core-module/commit/1aabebca98d01f8a04e46bc2e2520fa93cf21ac6) +- [Fix] `domain`: domain landed sometime > v0.7.7 and <= v0.7.12 [`2df7d37`](https://github.com/inspect-js/is-core-module/commit/2df7d37595d41b15eeada732b706b926c2771655) +- [Fix] `sys`: worked in 0.6, not 0.7, and 0.8+ [`a75c134`](https://github.com/inspect-js/is-core-module/commit/a75c134229e1e9441801f6b73f6a52489346eb65) + +## [v1.0.2](https://github.com/inspect-js/is-core-module/compare/v1.0.1...v1.0.2) - 2014-09-28 + +### Commits + +- simpler [`66fe90f`](https://github.com/inspect-js/is-core-module/commit/66fe90f9771581b9adc0c3900baa52c21b5baea2) + +## [v1.0.1](https://github.com/inspect-js/is-core-module/compare/v1.0.0...v1.0.1) - 2014-09-28 + +### Commits + +- remove stupid [`f21f906`](https://github.com/inspect-js/is-core-module/commit/f21f906f882c2bd656a5fc5ed6fbe48ddaffb2ac) +- update readme [`1eff0ec`](https://github.com/inspect-js/is-core-module/commit/1eff0ec69798d1ec65771552d1562911e90a8027) + +## v1.0.0 - 2014-09-28 + +### Commits + +- init [`48e5e76`](https://github.com/inspect-js/is-core-module/commit/48e5e76cac378fddb8c1f7d4055b8dfc943d6b96) diff --git a/novas/novacore-zephyr/groq-code-cli/node_modules/is-core-module/LICENSE b/novas/novacore-zephyr/groq-code-cli/node_modules/is-core-module/LICENSE new file mode 100644 index 0000000000000000000000000000000000000000..2e502872a742346343b1fd9d68a28d28c50ab178 --- /dev/null +++ b/novas/novacore-zephyr/groq-code-cli/node_modules/is-core-module/LICENSE @@ -0,0 +1,20 @@ +The MIT License (MIT) + +Copyright (c) 2014 Dave Justice + +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. \ No newline at end of file diff --git a/novas/novacore-zephyr/groq-code-cli/node_modules/is-core-module/README.md b/novas/novacore-zephyr/groq-code-cli/node_modules/is-core-module/README.md new file mode 100644 index 0000000000000000000000000000000000000000..062d9068eb57e8de261862eb4fd1d3b39f5afa46 --- /dev/null +++ b/novas/novacore-zephyr/groq-code-cli/node_modules/is-core-module/README.md @@ -0,0 +1,40 @@ +# is-core-module [![Version Badge][2]][1] + +[![github actions][actions-image]][actions-url] +[![coverage][codecov-image]][codecov-url] +[![dependency status][5]][6] +[![dev dependency status][7]][8] +[![License][license-image]][license-url] +[![Downloads][downloads-image]][downloads-url] + +[![npm badge][11]][1] + +Is this specifier a node.js core module? Optionally provide a node version to check; defaults to the current node version. + +## Example + +```js +var isCore = require('is-core-module'); +var assert = require('assert'); +assert(isCore('fs')); +assert(!isCore('butts')); +``` + +## Tests +Clone the repo, `npm install`, and run `npm test` + +[1]: https://npmjs.org/package/is-core-module +[2]: https://versionbadg.es/inspect-js/is-core-module.svg +[5]: https://david-dm.org/inspect-js/is-core-module.svg +[6]: https://david-dm.org/inspect-js/is-core-module +[7]: https://david-dm.org/inspect-js/is-core-module/dev-status.svg +[8]: https://david-dm.org/inspect-js/is-core-module#info=devDependencies +[11]: https://nodei.co/npm/is-core-module.png?downloads=true&stars=true +[license-image]: https://img.shields.io/npm/l/is-core-module.svg +[license-url]: LICENSE +[downloads-image]: https://img.shields.io/npm/dm/is-core-module.svg +[downloads-url]: https://npm-stat.com/charts.html?package=is-core-module +[codecov-image]: https://codecov.io/gh/inspect-js/is-core-module/branch/main/graphs/badge.svg +[codecov-url]: https://app.codecov.io/gh/inspect-js/is-core-module/ +[actions-image]: https://img.shields.io/endpoint?url=https://github-actions-badge-u3jn4tfpocch.runkit.sh/inspect-js/is-core-module +[actions-url]: https://github.com/inspect-js/is-core-module/actions diff --git a/novas/novacore-zephyr/groq-code-cli/node_modules/is-core-module/core.json b/novas/novacore-zephyr/groq-code-cli/node_modules/is-core-module/core.json new file mode 100644 index 0000000000000000000000000000000000000000..930ec682569d00580746bfb86cd18a2c7225cb8b --- /dev/null +++ b/novas/novacore-zephyr/groq-code-cli/node_modules/is-core-module/core.json @@ -0,0 +1,162 @@ +{ + "assert": true, + "node:assert": [">= 14.18 && < 15", ">= 16"], + "assert/strict": ">= 15", + "node:assert/strict": ">= 16", + "async_hooks": ">= 8", + "node:async_hooks": [">= 14.18 && < 15", ">= 16"], + "buffer_ieee754": ">= 0.5 && < 0.9.7", + "buffer": true, + "node:buffer": [">= 14.18 && < 15", ">= 16"], + "child_process": true, + "node:child_process": [">= 14.18 && < 15", ">= 16"], + "cluster": ">= 0.5", + "node:cluster": [">= 14.18 && < 15", ">= 16"], + "console": true, + "node:console": [">= 14.18 && < 15", ">= 16"], + "constants": true, + "node:constants": [">= 14.18 && < 15", ">= 16"], + "crypto": true, + "node:crypto": [">= 14.18 && < 15", ">= 16"], + "_debug_agent": ">= 1 && < 8", + "_debugger": "< 8", + "dgram": true, + "node:dgram": [">= 14.18 && < 15", ">= 16"], + "diagnostics_channel": [">= 14.17 && < 15", ">= 15.1"], + "node:diagnostics_channel": [">= 14.18 && < 15", ">= 16"], + "dns": true, + "node:dns": [">= 14.18 && < 15", ">= 16"], + "dns/promises": ">= 15", + "node:dns/promises": ">= 16", + "domain": ">= 0.7.12", + "node:domain": [">= 14.18 && < 15", ">= 16"], + "events": true, + "node:events": [">= 14.18 && < 15", ">= 16"], + "freelist": "< 6", + "fs": true, + "node:fs": [">= 14.18 && < 15", ">= 16"], + "fs/promises": [">= 10 && < 10.1", ">= 14"], + "node:fs/promises": [">= 14.18 && < 15", ">= 16"], + "_http_agent": ">= 0.11.1", + "node:_http_agent": [">= 14.18 && < 15", ">= 16"], + "_http_client": ">= 0.11.1", + "node:_http_client": [">= 14.18 && < 15", ">= 16"], + "_http_common": ">= 0.11.1", + "node:_http_common": [">= 14.18 && < 15", ">= 16"], + "_http_incoming": ">= 0.11.1", + "node:_http_incoming": [">= 14.18 && < 15", ">= 16"], + "_http_outgoing": ">= 0.11.1", + "node:_http_outgoing": [">= 14.18 && < 15", ">= 16"], + "_http_server": ">= 0.11.1", + "node:_http_server": [">= 14.18 && < 15", ">= 16"], + "http": true, + "node:http": [">= 14.18 && < 15", ">= 16"], + "http2": ">= 8.8", + "node:http2": [">= 14.18 && < 15", ">= 16"], + "https": true, + "node:https": [">= 14.18 && < 15", ">= 16"], + "inspector": ">= 8", + "node:inspector": [">= 14.18 && < 15", ">= 16"], + "inspector/promises": [">= 19"], + "node:inspector/promises": [">= 19"], + "_linklist": "< 8", + "module": true, + "node:module": [">= 14.18 && < 15", ">= 16"], + "net": true, + "node:net": [">= 14.18 && < 15", ">= 16"], + "node-inspect/lib/_inspect": ">= 7.6 && < 12", + "node-inspect/lib/internal/inspect_client": ">= 7.6 && < 12", + "node-inspect/lib/internal/inspect_repl": ">= 7.6 && < 12", + "os": true, + "node:os": [">= 14.18 && < 15", ">= 16"], + "path": true, + "node:path": [">= 14.18 && < 15", ">= 16"], + "path/posix": ">= 15.3", + "node:path/posix": ">= 16", + "path/win32": ">= 15.3", + "node:path/win32": ">= 16", + "perf_hooks": ">= 8.5", + "node:perf_hooks": [">= 14.18 && < 15", ">= 16"], + "process": ">= 1", + "node:process": [">= 14.18 && < 15", ">= 16"], + "punycode": ">= 0.5", + "node:punycode": [">= 14.18 && < 15", ">= 16"], + "querystring": true, + "node:querystring": [">= 14.18 && < 15", ">= 16"], + "readline": true, + "node:readline": [">= 14.18 && < 15", ">= 16"], + "readline/promises": ">= 17", + "node:readline/promises": ">= 17", + "repl": true, + "node:repl": [">= 14.18 && < 15", ">= 16"], + "node:sea": [">= 20.12 && < 21", ">= 21.7"], + "smalloc": ">= 0.11.5 && < 3", + "node:sqlite": [">= 22.13 && < 23", ">= 23.4"], + "_stream_duplex": ">= 0.9.4", + "node:_stream_duplex": [">= 14.18 && < 15", ">= 16"], + "_stream_transform": ">= 0.9.4", + "node:_stream_transform": [">= 14.18 && < 15", ">= 16"], + "_stream_wrap": ">= 1.4.1", + "node:_stream_wrap": [">= 14.18 && < 15", ">= 16"], + "_stream_passthrough": ">= 0.9.4", + "node:_stream_passthrough": [">= 14.18 && < 15", ">= 16"], + "_stream_readable": ">= 0.9.4", + "node:_stream_readable": [">= 14.18 && < 15", ">= 16"], + "_stream_writable": ">= 0.9.4", + "node:_stream_writable": [">= 14.18 && < 15", ">= 16"], + "stream": true, + "node:stream": [">= 14.18 && < 15", ">= 16"], + "stream/consumers": ">= 16.7", + "node:stream/consumers": ">= 16.7", + "stream/promises": ">= 15", + "node:stream/promises": ">= 16", + "stream/web": ">= 16.5", + "node:stream/web": ">= 16.5", + "string_decoder": true, + "node:string_decoder": [">= 14.18 && < 15", ">= 16"], + "sys": [">= 0.4 && < 0.7", ">= 0.8"], + "node:sys": [">= 14.18 && < 15", ">= 16"], + "test/reporters": ">= 19.9 && < 20.2", + "node:test/reporters": [">= 18.17 && < 19", ">= 19.9", ">= 20"], + "test/mock_loader": ">= 22.3 && < 22.7", + "node:test/mock_loader": ">= 22.3 && < 22.7", + "node:test": [">= 16.17 && < 17", ">= 18"], + "timers": true, + "node:timers": [">= 14.18 && < 15", ">= 16"], + "timers/promises": ">= 15", + "node:timers/promises": ">= 16", + "_tls_common": ">= 0.11.13", + "node:_tls_common": [">= 14.18 && < 15", ">= 16"], + "_tls_legacy": ">= 0.11.3 && < 10", + "_tls_wrap": ">= 0.11.3", + "node:_tls_wrap": [">= 14.18 && < 15", ">= 16"], + "tls": true, + "node:tls": [">= 14.18 && < 15", ">= 16"], + "trace_events": ">= 10", + "node:trace_events": [">= 14.18 && < 15", ">= 16"], + "tty": true, + "node:tty": [">= 14.18 && < 15", ">= 16"], + "url": true, + "node:url": [">= 14.18 && < 15", ">= 16"], + "util": true, + "node:util": [">= 14.18 && < 15", ">= 16"], + "util/types": ">= 15.3", + "node:util/types": ">= 16", + "v8/tools/arguments": ">= 10 && < 12", + "v8/tools/codemap": [">= 4.4 && < 5", ">= 5.2 && < 12"], + "v8/tools/consarray": [">= 4.4 && < 5", ">= 5.2 && < 12"], + "v8/tools/csvparser": [">= 4.4 && < 5", ">= 5.2 && < 12"], + "v8/tools/logreader": [">= 4.4 && < 5", ">= 5.2 && < 12"], + "v8/tools/profile_view": [">= 4.4 && < 5", ">= 5.2 && < 12"], + "v8/tools/splaytree": [">= 4.4 && < 5", ">= 5.2 && < 12"], + "v8": ">= 1", + "node:v8": [">= 14.18 && < 15", ">= 16"], + "vm": true, + "node:vm": [">= 14.18 && < 15", ">= 16"], + "wasi": [">= 13.4 && < 13.5", ">= 18.17 && < 19", ">= 20"], + "node:wasi": [">= 18.17 && < 19", ">= 20"], + "worker_threads": ">= 11.7", + "node:worker_threads": [">= 14.18 && < 15", ">= 16"], + "zlib": ">= 0.5", + "node:zlib": [">= 14.18 && < 15", ">= 16"] +} diff --git a/novas/novacore-zephyr/groq-code-cli/node_modules/is-core-module/index.js b/novas/novacore-zephyr/groq-code-cli/node_modules/is-core-module/index.js new file mode 100644 index 0000000000000000000000000000000000000000..423e20c0d99db50f5a1238674a4420b8bad6c9fb --- /dev/null +++ b/novas/novacore-zephyr/groq-code-cli/node_modules/is-core-module/index.js @@ -0,0 +1,69 @@ +'use strict'; + +var hasOwn = require('hasown'); + +function specifierIncluded(current, specifier) { + var nodeParts = current.split('.'); + var parts = specifier.split(' '); + var op = parts.length > 1 ? parts[0] : '='; + var versionParts = (parts.length > 1 ? parts[1] : parts[0]).split('.'); + + for (var i = 0; i < 3; ++i) { + var cur = parseInt(nodeParts[i] || 0, 10); + var ver = parseInt(versionParts[i] || 0, 10); + if (cur === ver) { + continue; // eslint-disable-line no-restricted-syntax, no-continue + } + if (op === '<') { + return cur < ver; + } + if (op === '>=') { + return cur >= ver; + } + return false; + } + return op === '>='; +} + +function matchesRange(current, range) { + var specifiers = range.split(/ ?&& ?/); + if (specifiers.length === 0) { + return false; + } + for (var i = 0; i < specifiers.length; ++i) { + if (!specifierIncluded(current, specifiers[i])) { + return false; + } + } + return true; +} + +function versionIncluded(nodeVersion, specifierValue) { + if (typeof specifierValue === 'boolean') { + return specifierValue; + } + + var current = typeof nodeVersion === 'undefined' + ? process.versions && process.versions.node + : nodeVersion; + + if (typeof current !== 'string') { + throw new TypeError(typeof nodeVersion === 'undefined' ? 'Unable to determine current node version' : 'If provided, a valid node version is required'); + } + + if (specifierValue && typeof specifierValue === 'object') { + for (var i = 0; i < specifierValue.length; ++i) { + if (matchesRange(current, specifierValue[i])) { + return true; + } + } + return false; + } + return matchesRange(current, specifierValue); +} + +var data = require('./core.json'); + +module.exports = function isCore(x, nodeVersion) { + return hasOwn(data, x) && versionIncluded(nodeVersion, data[x]); +}; diff --git a/novas/novacore-zephyr/groq-code-cli/node_modules/is-core-module/package.json b/novas/novacore-zephyr/groq-code-cli/node_modules/is-core-module/package.json new file mode 100644 index 0000000000000000000000000000000000000000..2668256462acba8e14a91c713b8e6fc5bcc058f8 --- /dev/null +++ b/novas/novacore-zephyr/groq-code-cli/node_modules/is-core-module/package.json @@ -0,0 +1,76 @@ +{ + "name": "is-core-module", + "version": "2.16.1", + "description": "Is this specifier a node.js core module?", + "main": "index.js", + "sideEffects": false, + "exports": { + ".": "./index.js", + "./package.json": "./package.json" + }, + "scripts": { + "prepack": "npmignore --auto --commentLines=autogenerated", + "prepublish": "not-in-publish || npm run prepublishOnly", + "prepublishOnly": "safe-publish-latest", + "lint": "eslint .", + "pretest": "npm run lint", + "tests-only": "nyc tape 'test/**/*.js'", + "test": "npm run tests-only", + "posttest": "npx npm@'>=10.2' audit --production", + "version": "auto-changelog && git add CHANGELOG.md", + "postversion": "auto-changelog && git add CHANGELOG.md && git commit --no-edit --amend && git tag -f \"v$(node -e \"console.log(require('./package.json').version)\")\"" + }, + "repository": { + "type": "git", + "url": "git+https://github.com/inspect-js/is-core-module.git" + }, + "keywords": [ + "core", + "modules", + "module", + "npm", + "node", + "dependencies" + ], + "author": "Jordan Harband ", + "funding": { + "url": "https://github.com/sponsors/ljharb" + }, + "license": "MIT", + "bugs": { + "url": "https://github.com/inspect-js/is-core-module/issues" + }, + "homepage": "https://github.com/inspect-js/is-core-module", + "dependencies": { + "hasown": "^2.0.2" + }, + "devDependencies": { + "@ljharb/eslint-config": "^21.1.1", + "auto-changelog": "^2.5.0", + "encoding": "^0.1.13", + "eslint": "=8.8.0", + "in-publish": "^2.0.1", + "mock-property": "^1.1.0", + "npmignore": "^0.3.1", + "nyc": "^10.3.2", + "safe-publish-latest": "^2.0.0", + "semver": "^6.3.1", + "tape": "^5.9.0" + }, + "auto-changelog": { + "output": "CHANGELOG.md", + "template": "keepachangelog", + "unreleased": false, + "commitLimit": false, + "backfillLimit": false, + "hideCredit": true + }, + "publishConfig": { + "ignore": [ + ".github" + ] + }, + "engines": { + "node": ">= 0.4" + } +} diff --git a/novas/novacore-zephyr/groq-code-cli/node_modules/is-data-view/.editorconfig b/novas/novacore-zephyr/groq-code-cli/node_modules/is-data-view/.editorconfig new file mode 100644 index 0000000000000000000000000000000000000000..bc228f8269443bf772b437890dde7756a3e8a894 --- /dev/null +++ b/novas/novacore-zephyr/groq-code-cli/node_modules/is-data-view/.editorconfig @@ -0,0 +1,20 @@ +root = true + +[*] +indent_style = tab +indent_size = 4 +end_of_line = lf +charset = utf-8 +trim_trailing_whitespace = true +insert_final_newline = true +max_line_length = 150 + +[CHANGELOG.md] +indent_style = space +indent_size = 2 + +[*.json] +max_line_length = off + +[Makefile] +max_line_length = off diff --git a/novas/novacore-zephyr/groq-code-cli/node_modules/is-data-view/.eslintrc b/novas/novacore-zephyr/groq-code-cli/node_modules/is-data-view/.eslintrc new file mode 100644 index 0000000000000000000000000000000000000000..73e9ac8ab76909b1a616f619f9b880664d247133 --- /dev/null +++ b/novas/novacore-zephyr/groq-code-cli/node_modules/is-data-view/.eslintrc @@ -0,0 +1,17 @@ +{ + "root": true, + + "extends": "@ljharb", + + "globals": { + "DataView": false + }, + + "rules": { + "new-cap": ["error", { + "capIsNewExceptions": [ + "GetIntrinsic", + ], + }], + }, +} diff --git a/novas/novacore-zephyr/groq-code-cli/node_modules/is-data-view/.nycrc b/novas/novacore-zephyr/groq-code-cli/node_modules/is-data-view/.nycrc new file mode 100644 index 0000000000000000000000000000000000000000..bdd626ce91477abbdd489b79988baebadbd3c897 --- /dev/null +++ b/novas/novacore-zephyr/groq-code-cli/node_modules/is-data-view/.nycrc @@ -0,0 +1,9 @@ +{ + "all": true, + "check-coverage": false, + "reporter": ["text-summary", "text", "html", "json"], + "exclude": [ + "coverage", + "test" + ] +} diff --git a/novas/novacore-zephyr/groq-code-cli/node_modules/is-data-view/CHANGELOG.md b/novas/novacore-zephyr/groq-code-cli/node_modules/is-data-view/CHANGELOG.md new file mode 100644 index 0000000000000000000000000000000000000000..b36fc3cb6f26db0e66638d13c6d4ab59501b7da0 --- /dev/null +++ b/novas/novacore-zephyr/groq-code-cli/node_modules/is-data-view/CHANGELOG.md @@ -0,0 +1,35 @@ +# Changelog + +All notable changes to this project will be documented in this file. + +The format is based on [Keep a Changelog](https://keepachangelog.com/en/1.0.0/) +and this project adheres to [Semantic Versioning](https://semver.org/spec/v2.0.0.html). + +## [v1.0.2](https://github.com/inspect-js/is-data-view/compare/v1.0.1...v1.0.2) - 2024-12-11 + +### Commits + +- [types] use shared config [`3a80072`](https://github.com/inspect-js/is-data-view/commit/3a800720dd322ea4656f29d28f1d28117fb94537) +- [actions] split out node 10-20, and 20+ [`e2f37fd`](https://github.com/inspect-js/is-data-view/commit/e2f37fdf421c4629730406c2b61d5481dce4e448) +- [Dev Deps] update `@ljharb/eslint-config`, `@ljharb/tsconfig`, `@types/node`, `@types/object-inspect`, `@types/tape`, `auto-changelog`, `es-value-fixtures`, `object-inspect`, `tape` [`6f8e9dd`](https://github.com/inspect-js/is-data-view/commit/6f8e9dda376e421d30dd94e891bea3fbae7967ee) +- [Dev Deps] update `@types/node`, `available-typed-arrays`, `tape` [`37be591`](https://github.com/inspect-js/is-data-view/commit/37be59163c8df9abb016bbb4c7d76f3af549f1d2) +- [Fix] add missing dependencies; use `call-bound` directly [`34de4b5`](https://github.com/inspect-js/is-data-view/commit/34de4b5f5448ca1bb95c34686c51b5351904a317) +- [Tests] replace `aud` with `npm audit` [`aa7060a`](https://github.com/inspect-js/is-data-view/commit/aa7060ad77c9ba2d500b124b73662c3b069fc721) +- [Dev Deps] add missing peer dep [`3d302d7`](https://github.com/inspect-js/is-data-view/commit/3d302d7dbf99d75fcf4a3de14687e423ec88728f) + +## [v1.0.1](https://github.com/inspect-js/is-data-view/compare/v1.0.0...v1.0.1) - 2024-02-02 + +### Commits + +- [patch] add types [`c2728ef`](https://github.com/inspect-js/is-data-view/commit/c2728ef20064bba2588eed503a0c2e36985b638a) +- [Dev Deps] update `aud`, `available-typed-arrays`, `has-tostringtag`, `npmignore`, `object-inspect`, `tape` [`e7f9ebc`](https://github.com/inspect-js/is-data-view/commit/e7f9ebccf9aacdc112dd4f665271c96417ddfa64) +- [Deps] update `is-typed-array` [`2ca9333`](https://github.com/inspect-js/is-data-view/commit/2ca9333516afac321431ddae02d6791d50e8d5c2) + +## v1.0.0 - 2024-01-31 + +### Commits + +- Initial implementation, tests, readme [`6f7e424`](https://github.com/inspect-js/is-data-view/commit/6f7e4244ae9d766309b8f050c0b786e9c0692825) +- Initial commit [`4b7ea57`](https://github.com/inspect-js/is-data-view/commit/4b7ea57d6942dd268bcda990a96b8cd663b19eb8) +- npm init [`25130e2`](https://github.com/inspect-js/is-data-view/commit/25130e2dbecc91d398cf74c39878aa89f5e604ab) +- Only apps should have lockfiles [`18cde47`](https://github.com/inspect-js/is-data-view/commit/18cde474201a292ebdaa704d232127c814cb1d0e) diff --git a/novas/novacore-zephyr/groq-code-cli/node_modules/is-data-view/LICENSE b/novas/novacore-zephyr/groq-code-cli/node_modules/is-data-view/LICENSE new file mode 100644 index 0000000000000000000000000000000000000000..870f86180afaad4bcf497a89e2a60daf56d625e4 --- /dev/null +++ b/novas/novacore-zephyr/groq-code-cli/node_modules/is-data-view/LICENSE @@ -0,0 +1,21 @@ +MIT License + +Copyright (c) 2024 Inspect JS + +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. diff --git a/novas/novacore-zephyr/groq-code-cli/node_modules/is-data-view/README.md b/novas/novacore-zephyr/groq-code-cli/node_modules/is-data-view/README.md new file mode 100644 index 0000000000000000000000000000000000000000..23d9f734dc66b6cec003c5197a922dfc02196c7a --- /dev/null +++ b/novas/novacore-zephyr/groq-code-cli/node_modules/is-data-view/README.md @@ -0,0 +1,69 @@ +# is-data-view [![Version Badge][npm-version-svg]][package-url] + +[![github actions][actions-image]][actions-url] +[![coverage][codecov-image]][codecov-url] +[![License][license-image]][license-url] +[![Downloads][downloads-image]][downloads-url] + +[![npm badge][npm-badge-png]][package-url] + +Is this value a JS DataView? This module works cross-realm/iframe, does not depend on `instanceof` or mutable properties, and despite ES6 Symbol.toStringTag. + +## Example + +```js +var isDataView = require('is-data-view'); +var assert = require('assert'); + +assert.equal(false, isDataView(undefined)); +assert.equal(false, isDataView(null)); +assert.equal(false, isDataView(false)); +assert.equal(false, isDataView(true)); +assert.equal(false, isDataView([])); +assert.equal(false, isDataView({})); +assert.equal(false, isDataView(/a/g)); +assert.equal(false, isDataView(new RegExp('a', 'g'))); +assert.equal(false, isDataView(new Date())); +assert.equal(false, isDataView(42)); +assert.equal(false, isDataView(NaN)); +assert.equal(false, isDataView(Infinity)); +assert.equal(false, isDataView(new Number(42))); +assert.equal(false, isDataView('foo')); +assert.equal(false, isDataView(Object('foo'))); +assert.equal(false, isDataView(function () {})); +assert.equal(false, isDataView(function* () {})); +assert.equal(false, isDataView(x => x * x)); +assert.equal(false, isDataView([])); +assert.equal(false, isDataView(new Int8Array())); +assert.equal(false, isDataView(new Uint8Array())); +assert.equal(false, isDataView(new Uint8ClampedArray())); +assert.equal(false, isDataView(new Int16Array())); +assert.equal(false, isDataView(new Uint16Array())); +assert.equal(false, isDataView(new Int32Array())); +assert.equal(false, isDataView(new Uint32Array())); +assert.equal(false, isDataView(new Float32Array())); +assert.equal(false, isDataView(new Float64Array())); +assert.equal(false, isDataView(new BigInt64Array())); +assert.equal(false, isDataView(new BigUint64Array())); + +assert.ok(isDataView(new DataView(new ArrayBuffer(0)))); +``` + +## Tests +Simply clone the repo, `npm install`, and run `npm test` + +[package-url]: https://npmjs.org/package/is-data-view +[npm-version-svg]: https://versionbadg.es/inspect-js/is-data-view.svg +[deps-svg]: https://david-dm.org/inspect-js/is-data-view.svg +[deps-url]: https://david-dm.org/inspect-js/is-data-view +[dev-deps-svg]: https://david-dm.org/inspect-js/is-data-view/dev-status.svg +[dev-deps-url]: https://david-dm.org/inspect-js/is-data-view#info=devDependencies +[npm-badge-png]: https://nodei.co/npm/is-data-view.png?downloads=true&stars=true +[license-image]: https://img.shields.io/npm/l/is-data-view.svg +[license-url]: LICENSE +[downloads-image]: https://img.shields.io/npm/dm/is-data-view.svg +[downloads-url]: https://npm-stat.com/charts.html?package=is-data-view +[codecov-image]: https://codecov.io/gh/inspect-js/is-data-view/branch/main/graphs/badge.svg +[codecov-url]: https://app.codecov.io/gh/inspect-js/is-data-view/ +[actions-image]: https://img.shields.io/endpoint?url=https://github-actions-badge-u3jn4tfpocch.runkit.sh/inspect-js/is-data-view +[actions-url]: https://github.com/inspect-js/is-data-view/actions diff --git a/novas/novacore-zephyr/groq-code-cli/node_modules/is-data-view/index.d.ts b/novas/novacore-zephyr/groq-code-cli/node_modules/is-data-view/index.d.ts new file mode 100644 index 0000000000000000000000000000000000000000..103118129a8d43a66105231d4d7ff78e3b6d2c63 --- /dev/null +++ b/novas/novacore-zephyr/groq-code-cli/node_modules/is-data-view/index.d.ts @@ -0,0 +1,3 @@ +declare function isDataView(value: unknown): value is DataView; + +export = isDataView; \ No newline at end of file diff --git a/novas/novacore-zephyr/groq-code-cli/node_modules/is-data-view/index.js b/novas/novacore-zephyr/groq-code-cli/node_modules/is-data-view/index.js new file mode 100644 index 0000000000000000000000000000000000000000..220c7cf7df57c97fb122c002d07258af219ca53d --- /dev/null +++ b/novas/novacore-zephyr/groq-code-cli/node_modules/is-data-view/index.js @@ -0,0 +1,39 @@ +'use strict'; + +var GetIntrinsic = require('get-intrinsic'); + +var $ArrayBuffer = GetIntrinsic('%ArrayBuffer%'); +var $DataView = GetIntrinsic('%DataView%', true); + +var callBound = require('call-bound'); + +// node <= 0.10, < 0.11.4 has a nonconfigurable own property instead of a prototype getter +var $dataViewBuffer = callBound('DataView.prototype.buffer', true); + +var isTypedArray = require('is-typed-array'); + +/** @type {import('.')} */ +module.exports = function isDataView(x) { + if (!x || typeof x !== 'object' || !$DataView || isTypedArray(x)) { + return false; + } + + if ($dataViewBuffer) { + try { + $dataViewBuffer(x); + return true; + } catch (e) { + return false; + } + } + + if ( + ('getInt8' in x) + && typeof x.getInt8 === 'function' + && x.getInt8 === new $DataView(new $ArrayBuffer(1)).getInt8 + ) { + return true; + } + + return false; +}; diff --git a/novas/novacore-zephyr/groq-code-cli/node_modules/is-data-view/package.json b/novas/novacore-zephyr/groq-code-cli/node_modules/is-data-view/package.json new file mode 100644 index 0000000000000000000000000000000000000000..396752361d3b85961b0f1bf603600020bcd7e3de --- /dev/null +++ b/novas/novacore-zephyr/groq-code-cli/node_modules/is-data-view/package.json @@ -0,0 +1,100 @@ +{ + "name": "is-data-view", + "version": "1.0.2", + "description": "Is this value a JS DataView? This module works cross-realm/iframe, does not depend on `instanceof` or mutable properties, and despite ES6 Symbol.toStringTag.", + "main": "index.js", + "exports": { + ".": "./index.js", + "./package.json": "./package.json" + }, + "types": "./index.d.ts", + "scripts": { + "prepack": "npmignore --auto --commentLines=autogenerated", + "prepublishOnly": "safe-publish-latest", + "prepublish": "not-in-publish || npm run prepublishOnly", + "prelint": "evalmd README.md", + "lint": "eslint --ext=js,mjs .", + "postlint": "tsc -p .", + "pretest": "npm run lint", + "tests-only": "nyc tape 'test/**/*.js'", + "test": "npm run tests-only", + "posttest": "npx npm@'>= 10.2' audit --production", + "version": "auto-changelog && git add CHANGELOG.md", + "postversion": "auto-changelog && git add CHANGELOG.md && git commit --no-edit --amend && git tag -f \"v$(node -e \"console.log(require('./package.json').version)\")\"" + }, + "funding": { + "url": "https://github.com/sponsors/ljharb" + }, + "repository": { + "type": "git", + "url": "git+https://github.com/inspect-js/is-data-view.git" + }, + "keywords": [ + "javascript", + "ecmascript", + "dataview", + "data", + "view", + "typedarray", + "typedarrays" + ], + "author": "Jordan Harband ", + "license": "MIT", + "bugs": { + "url": "https://github.com/inspect-js/is-data-view/issues" + }, + "homepage": "https://github.com/inspect-js/is-data-view#readme", + "dependencies": { + "call-bound": "^1.0.2", + "get-intrinsic": "^1.2.6", + "is-typed-array": "^1.1.13" + }, + "devDependencies": { + "@ljharb/eslint-config": "^21.1.1", + "@ljharb/tsconfig": "^0.2.2", + "@types/call-bind": "^1.0.5", + "@types/es-value-fixtures": "^1.4.4", + "@types/for-each": "^0.3.3", + "@types/make-arrow-function": "^1.2.2", + "@types/make-generator-function": "^2.0.3", + "@types/node": "^20.17.10", + "@types/object-inspect": "^1.13.0", + "@types/tape": "^5.6.5", + "auto-changelog": "^2.5.0", + "available-typed-arrays": "^1.0.7", + "encoding": "^0.1.13", + "es-value-fixtures": "^1.5.0", + "eslint": "=8.8.0", + "evalmd": "^0.0.19", + "for-each": "^0.3.3", + "has-tostringtag": "^1.0.2", + "in-publish": "^2.0.1", + "make-arrow-function": "^1.2.0", + "make-generator-function": "^2.0.0", + "npmignore": "^0.3.1", + "nyc": "^10.3.2", + "object-inspect": "^1.13.3", + "safe-publish-latest": "^2.0.0", + "tape": "^5.9.0", + "typescript": "next" + }, + "testling": { + "files": "test/index.js" + }, + "engines": { + "node": ">= 0.4" + }, + "auto-changelog": { + "output": "CHANGELOG.md", + "template": "keepachangelog", + "unreleased": false, + "commitLimit": false, + "backfillLimit": false, + "hideCredit": true + }, + "publishConfig": { + "ignore": [ + ".github/workflows" + ] + } +} diff --git a/novas/novacore-zephyr/groq-code-cli/node_modules/is-data-view/tsconfig.json b/novas/novacore-zephyr/groq-code-cli/node_modules/is-data-view/tsconfig.json new file mode 100644 index 0000000000000000000000000000000000000000..dabbe230d74beb5962f67a6da7da18c707441ad5 --- /dev/null +++ b/novas/novacore-zephyr/groq-code-cli/node_modules/is-data-view/tsconfig.json @@ -0,0 +1,9 @@ +{ + "extends": "@ljharb/tsconfig", + "compilerOptions": { + "target": "ES2021", + }, + "exclude": [ + "coverage", + ], +} diff --git a/novas/novacore-zephyr/groq-code-cli/node_modules/is-date-object/.editorconfig b/novas/novacore-zephyr/groq-code-cli/node_modules/is-date-object/.editorconfig new file mode 100644 index 0000000000000000000000000000000000000000..bc228f8269443bf772b437890dde7756a3e8a894 --- /dev/null +++ b/novas/novacore-zephyr/groq-code-cli/node_modules/is-date-object/.editorconfig @@ -0,0 +1,20 @@ +root = true + +[*] +indent_style = tab +indent_size = 4 +end_of_line = lf +charset = utf-8 +trim_trailing_whitespace = true +insert_final_newline = true +max_line_length = 150 + +[CHANGELOG.md] +indent_style = space +indent_size = 2 + +[*.json] +max_line_length = off + +[Makefile] +max_line_length = off diff --git a/novas/novacore-zephyr/groq-code-cli/node_modules/is-date-object/.eslintrc b/novas/novacore-zephyr/groq-code-cli/node_modules/is-date-object/.eslintrc new file mode 100644 index 0000000000000000000000000000000000000000..30b3fe155ca7c9bd23fdb5ca91631bc7df95f957 --- /dev/null +++ b/novas/novacore-zephyr/groq-code-cli/node_modules/is-date-object/.eslintrc @@ -0,0 +1,9 @@ +{ + "root": true, + + "extends": "@ljharb", + + "rules": { + //"max-statements": [2, 12] + } +} diff --git a/novas/novacore-zephyr/groq-code-cli/node_modules/is-date-object/.nycrc b/novas/novacore-zephyr/groq-code-cli/node_modules/is-date-object/.nycrc new file mode 100644 index 0000000000000000000000000000000000000000..a69aa2d8273d8c598f8e3aa5c8d779e28d63862f --- /dev/null +++ b/novas/novacore-zephyr/groq-code-cli/node_modules/is-date-object/.nycrc @@ -0,0 +1,10 @@ +{ + "all": true, + "check-coverage": false, + "reporter": ["text-summary", "text", "html", "json"], + "exclude": [ + "coverage", + "test", + "test-corejs.js" + ] +} diff --git a/novas/novacore-zephyr/groq-code-cli/node_modules/is-date-object/CHANGELOG.md b/novas/novacore-zephyr/groq-code-cli/node_modules/is-date-object/CHANGELOG.md new file mode 100644 index 0000000000000000000000000000000000000000..b3787ce547dfceed40c1236a28eef17ed049b999 --- /dev/null +++ b/novas/novacore-zephyr/groq-code-cli/node_modules/is-date-object/CHANGELOG.md @@ -0,0 +1,134 @@ +# Changelog + +All notable changes to this project will be documented in this file. + +The format is based on [Keep a Changelog](https://keepachangelog.com/en/1.0.0/) +and this project adheres to [Semantic Versioning](https://semver.org/spec/v2.0.0.html). + +## [v1.1.0](https://github.com/inspect-js/is-date-object/compare/v1.0.5...v1.1.0) - 2024-12-12 + +### Commits + +- [actions] reuse common workflows [`35c5af0`](https://github.com/inspect-js/is-date-object/commit/35c5af06344e8707b82f0ae24821e0a2a0cfb02d) +- [meta] use `npmignore` to autogenerate an npmignore file [`db6113c`](https://github.com/inspect-js/is-date-object/commit/db6113c3b98c9be87038d9b11a39166554f6c2b0) +- [New] add types [`4f1d9b3`](https://github.com/inspect-js/is-date-object/commit/4f1d9b3d1908d5bfd536128fe8fa49e16fd48761) +- [actions] split out node 10-20, and 20+ [`c9a1e4f`](https://github.com/inspect-js/is-date-object/commit/c9a1e4f1fd50277ef85f04ee293795e433436f8c) +- [Dev Deps] update `eslint`, `@ljharb/eslint-config`, `core-js`, `safe-publish-latest`, `tape` [`35a2864`](https://github.com/inspect-js/is-date-object/commit/35a2864ac5913ae6d14d80398cc5910abf4c528d) +- [Dev Deps] update `eslint`, `@ljharb/eslint-config`, `aud`, `auto-changelog`, `tape` [`b670bca`](https://github.com/inspect-js/is-date-object/commit/b670bcafec01141b5f2ba6e3ea22bde4124d0a2e) +- [actions] update rebase action to use reusable workflow [`d6bb341`](https://github.com/inspect-js/is-date-object/commit/d6bb34105613962581bfd7509ee7cc02110b6890) +- [actions] update codecov uploader [`f850678`](https://github.com/inspect-js/is-date-object/commit/f8506786159dc9072c62c77e6609ad7db14551af) +- [Robustness] use `call-bound` [`18ed326`](https://github.com/inspect-js/is-date-object/commit/18ed326470e86ffc66ea3cd3e642f44a7036948e) +- [Dev Deps] update `@ljharb/eslint-config`, `auto-changelog`, `core-js`, `npmignore`, `tape` [`f0e792f`](https://github.com/inspect-js/is-date-object/commit/f0e792f7b13b0f9567fbb607fc90278e52377a0f) +- [meta] add `exports` field [`342351f`](https://github.com/inspect-js/is-date-object/commit/342351f37f3ed823ea7d7da2aa32099e6eb00852) +- [Tests] replace `aud` with `npm audit` [`9b9b9cf`](https://github.com/inspect-js/is-date-object/commit/9b9b9cf665114a211b682402e10486bf2c89bdfa) +- [Deps] update `has-tostringtag` [`1bc37ab`](https://github.com/inspect-js/is-date-object/commit/1bc37ab6e8122aecc2a4283e1b3920c61c8d272e) +- [meta] add `sideEffects` flag [`86d3a16`](https://github.com/inspect-js/is-date-object/commit/86d3a16d65376ac84d98c8aa55ff7b01cfd01ee9) +- [Dev Deps] add missing peer dep [`fee274d`](https://github.com/inspect-js/is-date-object/commit/fee274dc177e09823cb69dbcb805cbd4be7a386e) + +## [v1.0.5](https://github.com/inspect-js/is-date-object/compare/v1.0.4...v1.0.5) - 2021-08-05 + +### Commits + +- [meta] remove `.jscs.json` [`31c731c`](https://github.com/inspect-js/is-date-object/commit/31c731c5efc5b1b86e6426d904373dc6225b929f) +- [Fix] use `has-tostringtag` to behave correctly in the presence of symbol shams [`17a6df4`](https://github.com/inspect-js/is-date-object/commit/17a6df4a3ab9bcb1395a638ced14f571f9549427) +- [Dev Deps] update `eslint`, `auto-changelog`, `tape` [`79db3af`](https://github.com/inspect-js/is-date-object/commit/79db3af1a745042a0a11e03c7dd7db910b5e0d01) + +## [v1.0.4](https://github.com/inspect-js/is-date-object/compare/v1.0.3...v1.0.4) - 2021-05-07 + +### Commits + +- [Fix] do not use `Object.prototype.toString` when `Symbol.toStringTag` is shammed [`8943a4a`](https://github.com/inspect-js/is-date-object/commit/8943a4a5035b3f2c8cee9a5edabb55579c16983d) +- [readme] make all URLs https [`1d4d6cd`](https://github.com/inspect-js/is-date-object/commit/1d4d6cd37365c3a36f98e3f82cfe6262227437db) +- [Dev Deps] update `eslint` [`a7abeaa`](https://github.com/inspect-js/is-date-object/commit/a7abeaa2409d3a34fccebcb5b362e0b90d0a8883) + +## [v1.0.3](https://github.com/inspect-js/is-date-object/compare/v1.0.2...v1.0.3) - 2021-05-05 + +### Commits + +- [Tests] migrate tests to Github Actions [`023504f`](https://github.com/inspect-js/is-date-object/commit/023504f4d48fc8788ff52ee525a1d9ec74fa7df5) +- [readme] add actions and codecov badges [`e63305f`](https://github.com/inspect-js/is-date-object/commit/e63305f2fb9ff3eb0dab7e0716585507a4f95a75) +- [meta] do not publish github action workflow files [`017d906`](https://github.com/inspect-js/is-date-object/commit/017d90679b6b1c16b398c0157904f91f56160219) +- [Tests] run `nyc` on all tests [`0376b6f`](https://github.com/inspect-js/is-date-object/commit/0376b6fb7a0ffcc42107c3c579ba0b3ab635b9e4) +- [readme] fix repo URLs; remove defunct badges [`1c148c6`](https://github.com/inspect-js/is-date-object/commit/1c148c6cb6eb0892b3186e814df3367dabb9732d) +- [Dev Deps] update `eslint`, `@ljharb/eslint-config`, `aud`, `auto-changelog`, `tape` [`c7a3f54`](https://github.com/inspect-js/is-date-object/commit/c7a3f54a207a6056ffafaa58178889ea1b1b77f7) +- [actions] add "Allow Edits" workflow [`e79b5b2`](https://github.com/inspect-js/is-date-object/commit/e79b5b25c173c3201e8b42a614d5f12c48b74a86) +- [Dev Deps] update `eslint`, `@ljharb/eslint-config`, `aud`, `tape` [`da28980`](https://github.com/inspect-js/is-date-object/commit/da28980c5fe86528585b2a420319ca8fc35f763a) +- [Dev Deps] update `eslint`, `@ljharb/eslint-config`, `aud`, `auto-changelog` [`5cabae9`](https://github.com/inspect-js/is-date-object/commit/5cabae9f00bf458a470bde68b734540b8ab78c3b) +- [readme] add actions and codecov badges [`33dfb88`](https://github.com/inspect-js/is-date-object/commit/33dfb881b7abf668cd3bf956e2947a1ece552f25) +- [Dev Deps] update `eslint`, `@ljharb/eslint-config`, `tape` [`745eb04`](https://github.com/inspect-js/is-date-object/commit/745eb0462ef3838df65f41f4a95453cc4f0aa06e) +- [Dev Deps] update `eslint`, `@ljharb/eslint-config`, `tape` [`466c62b`](https://github.com/inspect-js/is-date-object/commit/466c62b45af5a5a83963f6ef8617da887b0ab272) +- [actions] use checkout v2; remove unneeded env [`ff87a16`](https://github.com/inspect-js/is-date-object/commit/ff87a161e36d76d081d70933bf801a357c3b25fe) +- [Dev Deps] update `auto-changelog`, `tape` [`93188f5`](https://github.com/inspect-js/is-date-object/commit/93188f58e4b2c2b5e978a61a45380101d01f9838) +- [meta] use `prepublishOnly` script for npm 7+ [`1d0e3ea`](https://github.com/inspect-js/is-date-object/commit/1d0e3ea672971f02bb48c88b49079789ab41f574) +- [actions] update workflows [`4d1a235`](https://github.com/inspect-js/is-date-object/commit/4d1a2358de35a9fbe23a1dee10735748ed276301) +- [Dev Deps] update `auto-changelog`; add `aud` [`67be59a`](https://github.com/inspect-js/is-date-object/commit/67be59aa3c0ba44b982aaefb7e42adfb14eb279b) +- [actions] switch Automatic Rebase workflow to `pull_request_target` event [`a6661c2`](https://github.com/inspect-js/is-date-object/commit/a6661c26af701a7782f6e06ad1b34587ce2b09bc) +- [Tests] only audit prod deps [`dd4a47f`](https://github.com/inspect-js/is-date-object/commit/dd4a47f8bcf82c3090826d890a7766f50d6f7af9) + +## [v1.0.2](https://github.com/inspect-js/is-date-object/compare/v1.0.1...v1.0.2) - 2019-12-18 + +### Commits + +- [Tests] use shared travis-ci configs [`8a378b8`](https://github.com/inspect-js/is-date-object/commit/8a378b8fd6a4202fffc9ec193aca02efe937bc35) +- [Tests] on all node minors; use `nvm install-latest-npm`; fix scripts; improve matrix [`6e97a21`](https://github.com/inspect-js/is-date-object/commit/6e97a21276cf448ce424fb9ea13edd4587f289f1) +- [Dev Deps] update `eslint`, `@ljharb/eslint-config`, `is`, `jscs`, `nsp`, `semver`, `tape` [`8472b90`](https://github.com/inspect-js/is-date-object/commit/8472b90f82e5153c22e7a8a7726a5cc6110e93d7) +- [Tests] up to `node` `v10.0`, `v9.11`, `v8.11`, `v6.14`, `v4.9` [`ae73e38`](https://github.com/inspect-js/is-date-object/commit/ae73e3890df7da0bc4449088e30340cb4df3294d) +- [meta] add `auto-changelog` [`82f8f47`](https://github.com/inspect-js/is-date-object/commit/82f8f473a6ee45e2b66810cb743e0122c18381c5) +- [meta] remove unused Makefile and associated utilities [`788a2cd`](https://github.com/inspect-js/is-date-object/commit/788a2cdfd0bc8f1903967219897f6d00c4c6a26b) +- [Tests] up to `node` `v11.4`, `v10.14`, `v8.14`, `v6.15` [`b9caf7c`](https://github.com/inspect-js/is-date-object/commit/b9caf7c814e5e2549454cb444f8b739f9ce1a388) +- [Tests] up to `node` `v12.4`, `v11.15`, `v10.15`, `v8.15`, `v6.17`; use `nvm install-latest-npm` [`cda0abc`](https://github.com/inspect-js/is-date-object/commit/cda0abc04a21c9b5ec72eabd010155c988032056) +- [Tests] up to `node` `v12.10`, `v10.16`, `v8.16` [`49bc482`](https://github.com/inspect-js/is-date-object/commit/49bc482fd9f71436b663c07144083a8423697299) +- [Dev Deps] update `eslint`, `@ljharb/eslint-config`, `semver`, `tape`; add `safe-publish-latest` [`f77fec4`](https://github.com/inspect-js/is-date-object/commit/f77fec48057e156b2276b4c14cf303306116b9f6) +- [actions] add automatic rebasing / merge commit blocking [`68605fc`](https://github.com/inspect-js/is-date-object/commit/68605fcb6bc0341ff0aae14a94bf5d18e1bc73be) +- [meta] create FUNDING.yml [`4f82d88`](https://github.com/inspect-js/is-date-object/commit/4f82d88e1e6ac1b97f0ce96aa0aa057ad758a581) +- [Dev Deps] update `tape`, `jscs`, `eslint`, `@ljharb/eslint-config` [`3cbf28a`](https://github.com/inspect-js/is-date-object/commit/3cbf28a185ced940cfce8a09fa8479cc83575876) +- [Dev Deps] update `eslint`, `@ljharb/eslint-config@`, `is`, `semver`, `tape` [`abf9fb0`](https://github.com/inspect-js/is-date-object/commit/abf9fb0d55ef0697e64e888d74f2e5fe53d7cdcb) +- [Tests] switch from `nsp` to `npm audit` [`6543c7d`](https://github.com/inspect-js/is-date-object/commit/6543c7d559d1fb79215b46c8b79e0e3e2a83f5de) +- [Dev Deps] update `eslint`, `@ljharb/eslint-config`, `covert`, `tape` [`ba5d2d7`](https://github.com/inspect-js/is-date-object/commit/ba5d2d7fc0975d7c03b8f2b7f43a09af93e365ba) +- [Dev Deps] update `eslint`, `nsp`, `semver`, `tape` [`c1e3525`](https://github.com/inspect-js/is-date-object/commit/c1e3525afa76a696f7cf1b58aab7f55d220b2c20) +- [Tests] use `npx aud` instead of `nsp` or `npm audit` with hoops [`14e4824`](https://github.com/inspect-js/is-date-object/commit/14e4824188c85207ed3b86627b09e9f64b135db7) +- [Dev Deps] update `eslint`, `@ljharb/eslint-config`, `safe-publish-latest` [`68ead64`](https://github.com/inspect-js/is-date-object/commit/68ead64a07e0de282ea3cd38e12cc8b0e0f6d3cd) +- [Dev Deps] update `eslint`, semver`, `tape`, `semver` [`f55453f`](https://github.com/inspect-js/is-date-object/commit/f55453f200903277465d7e9307a9c49120a4f419) +- Only apps should have lockfiles [`6c848eb`](https://github.com/inspect-js/is-date-object/commit/6c848eba982cc58053d4cca08c01f12a433f3695) +- [Tests] remove `jscs` [`3fd3a62`](https://github.com/inspect-js/is-date-object/commit/3fd3a62121607ad074b7fc977f3fc6575b66f755) +- [Dev Deps] update `eslint`, `tape` [`77d3130`](https://github.com/inspect-js/is-date-object/commit/77d3130a0039e5dae24c17de790dd510c265edc6) +- [meta] add `funding` field [`9ef6d58`](https://github.com/inspect-js/is-date-object/commit/9ef6d5888bf829a5812b3b091dc99839d48c355e) + +## [v1.0.1](https://github.com/inspect-js/is-date-object/compare/v1.0.0...v1.0.1) - 2015-09-27 + +### Commits + +- Update `tape`, `semver`, `eslint`; use my personal shared `eslint` config. [`731aa13`](https://github.com/inspect-js/is-date-object/commit/731aa134b0b8dc84e302d0b2264a415cb456ccab) +- Update `is`, `tape`, `covert`, `jscs`, `editorconfig-tools`, `nsp`, `eslint`, `semver` [`53e43a6`](https://github.com/inspect-js/is-date-object/commit/53e43a627dd01757cf3d469599f3dffd9d72b150) +- Update `eslint` [`d2fc304`](https://github.com/inspect-js/is-date-object/commit/d2fc3046f087b0026448ffde0cf46b1f741cbd4e) +- Update `tape`, `jscs`, `eslint`, `@ljharb/eslint-config` [`c9568df`](https://github.com/inspect-js/is-date-object/commit/c9568df228fa698dc6fcc9553b5d612e7ee427aa) +- Test on latest `node` and `io.js` versions. [`a21d537`](https://github.com/inspect-js/is-date-object/commit/a21d537562166ebd18bde3a262fd157dd774ae17) +- Update `nsp`, `eslint`, `semver` [`9e1d908`](https://github.com/inspect-js/is-date-object/commit/9e1d9087c0c79c34fcb2abfc701cdfa1efcb327c) +- Update `covert`, `jscs`, `eslint`, `semver` [`f198f6b`](https://github.com/inspect-js/is-date-object/commit/f198f6b997912da10a3d821a089e1581edc730a0) +- [Dev Deps] update `tape`, `jscs`, `eslint` [`ab9bdbb`](https://github.com/inspect-js/is-date-object/commit/ab9bdbbc189cef033346508db47cd1feb04a69d3) +- If `@@toStringTag` is not present, use the old-school `Object#toString` test. [`c03afce`](https://github.com/inspect-js/is-date-object/commit/c03afce001368b29eb929900075749b113a252c8) +- [Dev Deps] update `jscs`, `nsp`, `tape`, `eslint`, `@ljharb/eslint-config` [`9d94ccb`](https://github.com/inspect-js/is-date-object/commit/9d94ccbab4160d2fa649123e37951d86b69a8b15) +- [Dev Deps] update `is`, `eslint`, `@ljharb/eslint-config`, `semver` [`35cbff7`](https://github.com/inspect-js/is-date-object/commit/35cbff7f7c8216fbb79c799f74b2336eaf0d726a) +- Test up to `io.js` `v2.3` [`be5d11e`](https://github.com/inspect-js/is-date-object/commit/be5d11e7ebd9473d7ae554179b3769082485f6f4) +- [Tests] on `io.js` `v3.3`, up to `node` `v4.1` [`20221a3`](https://github.com/inspect-js/is-date-object/commit/20221a34858d2b21e23bdc2c08df23f0bc08d11e) +- [Tests] up to `io.js` `v3.2 ` [`7009b4a`](https://github.com/inspect-js/is-date-object/commit/7009b4a9999e14eacbdf6068afd82f478473f007) +- Test on `io.js` `v2.1` [`68b29b1`](https://github.com/inspect-js/is-date-object/commit/68b29b19a07e6589a7ca37ab764be28f144ac88e) +- Remove `editorconfig-tools` [`8d3972c`](https://github.com/inspect-js/is-date-object/commit/8d3972c1795fdcfd337680e11ab610e4885fb079) +- [Dev Deps] update `tape` [`204945d`](https://github.com/inspect-js/is-date-object/commit/204945d8658a3513ca6315ddf795e4034adb4545) +- Switch from vb.teelaun.ch to versionbadg.es for the npm version badge SVG. [`7bff214`](https://github.com/inspect-js/is-date-object/commit/7bff214dcb2317b96219921476f990814afbb401) +- Test on `io.js` `v2.5` [`92f7bd6`](https://github.com/inspect-js/is-date-object/commit/92f7bd6747e3259b0ddc9c287876f46a9cd4c270) +- Test on `io.js` `v2.4` [`ebb34bf`](https://github.com/inspect-js/is-date-object/commit/ebb34bf1f58949768063f86ac012f1ca5d7cf6d9) +- Fix tests for faked @@toStringTag [`3b9c26c`](https://github.com/inspect-js/is-date-object/commit/3b9c26c15040af6a87f8d77ce6c85a7bef7a4304) +- Test on `io.js` `v3.0` [`5eedf4b`](https://github.com/inspect-js/is-date-object/commit/5eedf4bea76380a08813fd0977469c2480302a82) + +## v1.0.0 - 2015-01-28 + +### Commits + +- Dotfiles. [`5b6a929`](https://github.com/inspect-js/is-date-object/commit/5b6a9298c6f70882e78e66d64c9c019f85790f52) +- `make release` [`e8d40ce`](https://github.com/inspect-js/is-date-object/commit/e8d40ceca85acd0aa4b2753faa6e41c0c54cf6c3) +- package.json [`a107259`](https://github.com/inspect-js/is-date-object/commit/a1072591ea510a2998298be6cef827b123f4643f) +- Read me [`eb92695`](https://github.com/inspect-js/is-date-object/commit/eb92695664bdee8fc49891cd73aa2f41075f53cb) +- Initial commit [`4fc7755`](https://github.com/inspect-js/is-date-object/commit/4fc7755ff12f1d7a55cf841d486bf6b2350fe5a0) +- Tests. [`b6f432f`](https://github.com/inspect-js/is-date-object/commit/b6f432fb6801c5ff8d89cfec7601d59478e23dd1) +- Implementation. [`dd0fd96`](https://github.com/inspect-js/is-date-object/commit/dd0fd96c4016a66cec7cd59db0fde37c2ef3cdb5) diff --git a/novas/novacore-zephyr/groq-code-cli/node_modules/is-date-object/LICENSE b/novas/novacore-zephyr/groq-code-cli/node_modules/is-date-object/LICENSE new file mode 100644 index 0000000000000000000000000000000000000000..b43df444e518288ceef6eaa9badd33388191b1d3 --- /dev/null +++ b/novas/novacore-zephyr/groq-code-cli/node_modules/is-date-object/LICENSE @@ -0,0 +1,22 @@ +The MIT License (MIT) + +Copyright (c) 2015 Jordan Harband + +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. + diff --git a/novas/novacore-zephyr/groq-code-cli/node_modules/is-date-object/README.md b/novas/novacore-zephyr/groq-code-cli/node_modules/is-date-object/README.md new file mode 100644 index 0000000000000000000000000000000000000000..1c084add99ae5b39a8d3c333cac94ff7ee894a6b --- /dev/null +++ b/novas/novacore-zephyr/groq-code-cli/node_modules/is-date-object/README.md @@ -0,0 +1,52 @@ +# is-date-object [![Version Badge][2]][1] + +[![github actions][actions-image]][actions-url] +[![coverage][codecov-image]][codecov-url] +[![dependency status][5]][6] +[![dev dependency status][7]][8] +[![License][license-image]][license-url] +[![Downloads][downloads-image]][downloads-url] + +[![npm badge][11]][1] + +Is this value a JS Date object? This module works cross-realm/iframe, and despite ES6 @@toStringTag. + +## Example + +```js +var isDate = require('is-date-object'); +var assert = require('assert'); + +assert.notOk(isDate(undefined)); +assert.notOk(isDate(null)); +assert.notOk(isDate(false)); +assert.notOk(isDate(true)); +assert.notOk(isDate(42)); +assert.notOk(isDate('foo')); +assert.notOk(isDate(function () {})); +assert.notOk(isDate([])); +assert.notOk(isDate({})); +assert.notOk(isDate(/a/g)); +assert.notOk(isDate(new RegExp('a', 'g'))); + +assert.ok(isDate(new Date())); +``` + +## Tests +Simply clone the repo, `npm install`, and run `npm test` + +[1]: https://npmjs.org/package/is-date-object +[2]: https://versionbadg.es/inspect-js/is-date-object.svg +[5]: https://david-dm.org/inspect-js/is-date-object.svg +[6]: https://david-dm.org/inspect-js/is-date-object +[7]: https://david-dm.org/inspect-js/is-date-object/dev-status.svg +[8]: https://david-dm.org/inspect-js/is-date-object#info=devDependencies +[11]: https://nodei.co/npm/is-date-object.png?downloads=true&stars=true +[license-image]: https://img.shields.io/npm/l/is-date-object.svg +[license-url]: LICENSE +[downloads-image]: https://img.shields.io/npm/dm/is-date-object.svg +[downloads-url]: https://npm-stat.com/charts.html?package=is-date-object +[codecov-image]: https://codecov.io/gh/inspect-js/is-date-object/branch/main/graphs/badge.svg +[codecov-url]: https://app.codecov.io/gh/inspect-js/is-date-object/ +[actions-image]: https://img.shields.io/endpoint?url=https://github-actions-badge-u3jn4tfpocch.runkit.sh/inspect-js/is-date-object +[actions-url]: https://github.com/inspect-js/is-date-object/actions diff --git a/novas/novacore-zephyr/groq-code-cli/node_modules/is-date-object/index.d.ts b/novas/novacore-zephyr/groq-code-cli/node_modules/is-date-object/index.d.ts new file mode 100644 index 0000000000000000000000000000000000000000..3de15e55c67e1eb6e506a817639946b11fd736c5 --- /dev/null +++ b/novas/novacore-zephyr/groq-code-cli/node_modules/is-date-object/index.d.ts @@ -0,0 +1,3 @@ +declare function isDateObject(value: unknown): value is Date; + +export = isDateObject; diff --git a/novas/novacore-zephyr/groq-code-cli/node_modules/is-date-object/index.js b/novas/novacore-zephyr/groq-code-cli/node_modules/is-date-object/index.js new file mode 100644 index 0000000000000000000000000000000000000000..5489c6cc2dd3ab9a14ad82cb8ad6918a3a63b042 --- /dev/null +++ b/novas/novacore-zephyr/groq-code-cli/node_modules/is-date-object/index.js @@ -0,0 +1,27 @@ +'use strict'; + +var callBound = require('call-bound'); + +var getDay = callBound('Date.prototype.getDay'); +/** @type {import('.')} */ +var tryDateObject = function tryDateGetDayCall(value) { + try { + getDay(value); + return true; + } catch (e) { + return false; + } +}; + +/** @type {(value: unknown) => string} */ +var toStr = callBound('Object.prototype.toString'); +var dateClass = '[object Date]'; +var hasToStringTag = require('has-tostringtag/shams')(); + +/** @type {import('.')} */ +module.exports = function isDateObject(value) { + if (typeof value !== 'object' || value === null) { + return false; + } + return hasToStringTag ? tryDateObject(value) : toStr(value) === dateClass; +}; diff --git a/novas/novacore-zephyr/groq-code-cli/node_modules/is-date-object/package.json b/novas/novacore-zephyr/groq-code-cli/node_modules/is-date-object/package.json new file mode 100644 index 0000000000000000000000000000000000000000..cba42d8123665d9088f964b7d279e793602630bd --- /dev/null +++ b/novas/novacore-zephyr/groq-code-cli/node_modules/is-date-object/package.json @@ -0,0 +1,99 @@ +{ + "name": "is-date-object", + "version": "1.1.0", + "author": "Jordan Harband", + "funding": { + "url": "https://github.com/sponsors/ljharb" + }, + "description": "Is this value a JS Date object? This module works cross-realm/iframe, and despite ES6 @@toStringTag.", + "license": "MIT", + "main": "index.js", + "exports": { + ".": "./index.js", + "./package.json": "./package.json" + }, + "sideEffects": false, + "scripts": { + "prepack": "npmignore --auto --commentLines=autogenerated", + "prepublishOnly": "safe-publish-latest", + "prepublish": "not-in-publish || npm run prepublishOnly", + "pretest": "npm run lint", + "test": "npm run tests-only && npm run test:corejs", + "tests-only": "nyc tape 'test/**/*.js'", + "test:corejs": "nyc tape test-corejs.js", + "posttest": "npx npm@'>= 10.2' audit --production", + "lint": "eslint --ext=js,mjs .", + "postlint": "tsc && attw -P", + "version": "auto-changelog && git add CHANGELOG.md", + "postversion": "auto-changelog && git add CHANGELOG.md && git commit --no-edit --amend && git tag -f \"v$(node -e \"console.log(require('./package.json').version)\")\"" + }, + "repository": { + "type": "git", + "url": "git://github.com/inspect-js/is-date-object.git" + }, + "keywords": [ + "Date", + "ES6", + "toStringTag", + "@@toStringTag", + "Date object" + ], + "dependencies": { + "call-bound": "^1.0.2", + "has-tostringtag": "^1.0.2" + }, + "devDependencies": { + "@arethetypeswrong/cli": "^0.17.1", + "@ljharb/eslint-config": "^21.1.1", + "@ljharb/tsconfig": "^0.2.2", + "@types/core-js": "^2.5.8", + "@types/tape": "^5.6.5", + "auto-changelog": "^2.5.0", + "core-js": "^3.39.0", + "encoding": "^0.1.13", + "eslint": "=8.8.0", + "in-publish": "^2.0.1", + "indexof": "^0.0.1", + "is": "^3.3.0", + "npmignore": "^0.3.1", + "nyc": "^10.3.2", + "safe-publish-latest": "^2.0.0", + "tape": "^5.9.0", + "typescript": "^5.8.0-dev.20241212" + }, + "testling": { + "files": "test/index.js", + "browsers": [ + "iexplore/6.0..latest", + "firefox/3.0..6.0", + "firefox/15.0..latest", + "firefox/nightly", + "chrome/4.0..10.0", + "chrome/20.0..latest", + "chrome/canary", + "opera/10.0..latest", + "opera/next", + "safari/4.0..latest", + "ipad/6.0..latest", + "iphone/6.0..latest", + "android-browser/4.2" + ] + }, + "engines": { + "node": ">= 0.4" + }, + "auto-changelog": { + "output": "CHANGELOG.md", + "template": "keepachangelog", + "unreleased": false, + "commitLimit": false, + "backfillLimit": false, + "hideCredit": true + }, + "publishConfig": { + "ignore": [ + ".github/workflows", + "test-corejs.js" + ] + } +} diff --git a/novas/novacore-zephyr/groq-code-cli/node_modules/is-date-object/tsconfig.json b/novas/novacore-zephyr/groq-code-cli/node_modules/is-date-object/tsconfig.json new file mode 100644 index 0000000000000000000000000000000000000000..cb2e93946b5a8e8bad4a0fb42d55dd9266635e58 --- /dev/null +++ b/novas/novacore-zephyr/groq-code-cli/node_modules/is-date-object/tsconfig.json @@ -0,0 +1,6 @@ +{ + "extends": "@ljharb/tsconfig", + "exclude": [ + "coverage" + ], +} diff --git a/novas/novacore-zephyr/groq-code-cli/node_modules/is-docker/cli.js b/novas/novacore-zephyr/groq-code-cli/node_modules/is-docker/cli.js new file mode 100644 index 0000000000000000000000000000000000000000..3b200aa51bb5befe93e7ff525246d3ac47bae52c --- /dev/null +++ b/novas/novacore-zephyr/groq-code-cli/node_modules/is-docker/cli.js @@ -0,0 +1,5 @@ +#!/usr/bin/env node +import process from 'node:process'; +import isDocker from './index.js'; + +process.exitCode = isDocker() ? 0 : 2; diff --git a/novas/novacore-zephyr/groq-code-cli/node_modules/is-docker/index.d.ts b/novas/novacore-zephyr/groq-code-cli/node_modules/is-docker/index.d.ts new file mode 100644 index 0000000000000000000000000000000000000000..80ee82191fc43779c83f3b104ca86747c88110e4 --- /dev/null +++ b/novas/novacore-zephyr/groq-code-cli/node_modules/is-docker/index.d.ts @@ -0,0 +1,13 @@ +/** +Check if the process is running inside a Docker container. + +@example +``` +import isDocker from 'is-docker'; + +if (isDocker()) { + console.log('Running inside a Docker container'); +} +``` +*/ +export default function isDocker(): boolean; diff --git a/novas/novacore-zephyr/groq-code-cli/node_modules/is-docker/index.js b/novas/novacore-zephyr/groq-code-cli/node_modules/is-docker/index.js new file mode 100644 index 0000000000000000000000000000000000000000..2a3d8b65d5cf8736ae1090621848fac81dbb610a --- /dev/null +++ b/novas/novacore-zephyr/groq-code-cli/node_modules/is-docker/index.js @@ -0,0 +1,29 @@ +import fs from 'node:fs'; + +let isDockerCached; + +function hasDockerEnv() { + try { + fs.statSync('/.dockerenv'); + return true; + } catch { + return false; + } +} + +function hasDockerCGroup() { + try { + return fs.readFileSync('/proc/self/cgroup', 'utf8').includes('docker'); + } catch { + return false; + } +} + +export default function isDocker() { + // TODO: Use `??=` when targeting Node.js 16. + if (isDockerCached === undefined) { + isDockerCached = hasDockerEnv() || hasDockerCGroup(); + } + + return isDockerCached; +} diff --git a/novas/novacore-zephyr/groq-code-cli/node_modules/is-docker/license b/novas/novacore-zephyr/groq-code-cli/node_modules/is-docker/license new file mode 100644 index 0000000000000000000000000000000000000000..fa7ceba3eb4a9657a9db7f3ffca4e4e97a9019de --- /dev/null +++ b/novas/novacore-zephyr/groq-code-cli/node_modules/is-docker/license @@ -0,0 +1,9 @@ +MIT License + +Copyright (c) Sindre Sorhus (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. diff --git a/novas/novacore-zephyr/groq-code-cli/node_modules/is-docker/package.json b/novas/novacore-zephyr/groq-code-cli/node_modules/is-docker/package.json new file mode 100644 index 0000000000000000000000000000000000000000..5c70b034226fc9190597077ac58aefad9cc37108 --- /dev/null +++ b/novas/novacore-zephyr/groq-code-cli/node_modules/is-docker/package.json @@ -0,0 +1,44 @@ +{ + "name": "is-docker", + "version": "3.0.0", + "description": "Check if the process is running inside a Docker container", + "license": "MIT", + "repository": "sindresorhus/is-docker", + "funding": "https://github.com/sponsors/sindresorhus", + "author": { + "name": "Sindre Sorhus", + "email": "sindresorhus@gmail.com", + "url": "https://sindresorhus.com" + }, + "type": "module", + "exports": "./index.js", + "bin": "./cli.js", + "engines": { + "node": "^12.20.0 || ^14.13.1 || >=16.0.0" + }, + "scripts": { + "test": "xo && ava && tsd" + }, + "files": [ + "index.js", + "index.d.ts", + "cli.js" + ], + "keywords": [ + "detect", + "docker", + "dockerized", + "container", + "inside", + "is", + "env", + "environment", + "process" + ], + "devDependencies": { + "ava": "^3.15.0", + "sinon": "^11.1.2", + "tsd": "^0.17.0", + "xo": "^0.44.0" + } +} diff --git a/novas/novacore-zephyr/groq-code-cli/node_modules/is-docker/readme.md b/novas/novacore-zephyr/groq-code-cli/node_modules/is-docker/readme.md new file mode 100644 index 0000000000000000000000000000000000000000..236e6f01db6a0b6eee480ed5679b418ba0f51bc9 --- /dev/null +++ b/novas/novacore-zephyr/groq-code-cli/node_modules/is-docker/readme.md @@ -0,0 +1,27 @@ +# is-docker + +> Check if the process is running inside a Docker container + +## Install + +``` +$ npm install is-docker +``` + +## Usage + +```js +import isDocker from 'is-docker'; + +if (isDocker()) { + console.log('Running inside a Docker container'); +} +``` + +## CLI + +``` +$ is-docker +``` + +Exits with code 0 if inside a Docker container and 2 if not. diff --git a/novas/novacore-zephyr/groq-code-cli/node_modules/is-error/.jshintrc b/novas/novacore-zephyr/groq-code-cli/node_modules/is-error/.jshintrc new file mode 100644 index 0000000000000000000000000000000000000000..ac38a067e748685e5594af6f6c0e46de0a0b41d9 --- /dev/null +++ b/novas/novacore-zephyr/groq-code-cli/node_modules/is-error/.jshintrc @@ -0,0 +1,35 @@ +{ + "bitwise": false, + "camelcase": true, + "curly": false, + "eqeqeq": true, + "forin": true, + "immed": true, + "indent": 4, + "latedef": "nofunc", + "newcap": true, + "noarg": true, + "nonew": true, + "plusplus": false, + "quotmark": false, + "regexp": false, + "undef": true, + "unused": true, + "strict": false, + "trailing": true, + "node": true, + "noempty": true, + "maxdepth": 4, + "maxparams": 4, + "newcap": false, + "globalstrict": true, + "shadow": "outer", + "globals": { + "console": true, + "Buffer": true, + "setTimeout": true, + "clearTimeout": true, + "setInterval": true, + "clearInterval": true + } +} diff --git a/novas/novacore-zephyr/groq-code-cli/node_modules/is-error/.travis.yml b/novas/novacore-zephyr/groq-code-cli/node_modules/is-error/.travis.yml new file mode 100644 index 0000000000000000000000000000000000000000..c6314e120af2dbea2d9eaf0c6b4b0b7ad8910289 --- /dev/null +++ b/novas/novacore-zephyr/groq-code-cli/node_modules/is-error/.travis.yml @@ -0,0 +1,7 @@ +language: node_js +node_js: + - "0.8" + - "0.10" + - "0.11" +before_install: npm i npm@latest -g +script: npm run travis diff --git a/novas/novacore-zephyr/groq-code-cli/node_modules/is-error/LICENSE b/novas/novacore-zephyr/groq-code-cli/node_modules/is-error/LICENSE new file mode 100644 index 0000000000000000000000000000000000000000..57dcbe348ad58e5086c59b7636c54a1ad0ca57e3 --- /dev/null +++ b/novas/novacore-zephyr/groq-code-cli/node_modules/is-error/LICENSE @@ -0,0 +1,19 @@ +Copyright (c) 2015 is-error. + +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. diff --git a/novas/novacore-zephyr/groq-code-cli/node_modules/is-error/README.md b/novas/novacore-zephyr/groq-code-cli/node_modules/is-error/README.md new file mode 100644 index 0000000000000000000000000000000000000000..a16c59ac3bffb48267b36862bf6a29e1fae5f99c --- /dev/null +++ b/novas/novacore-zephyr/groq-code-cli/node_modules/is-error/README.md @@ -0,0 +1,54 @@ +# is-error + + + + + +Detect whether a value is an error + +## Example + +```js +var isError = require("is-error"); + +console.log(isError(new Error('hi'))) // true +console.log(isError({ message: 'hi' })) // false +``` + +## Docs + +### `var bool = isError(maybeErr)` + +```hs +is-error := (maybeErr: Any) => Boolean +``` + +`isError` returns a boolean. it will detect whether the argument +is an error or not. + +## Installation + +`npm install is-error` + +## Tests + +`npm test` + +## Contributors + + - Raynos + +## MIT Licensed + + [build-png]: https://secure.travis-ci.org/Raynos/is-error.png + [build]: https://travis-ci.org/Raynos/is-error + [cover-png]: https://coveralls.io/repos/Raynos/is-error/badge.png + [cover]: https://coveralls.io/r/Raynos/is-error + [dep-png]: https://david-dm.org/Raynos/is-error.png + [dep]: https://david-dm.org/Raynos/is-error + [npm-png]: https://nodei.co/npm/is-error.png?stars&downloads + [npm]: https://nodei.co/npm/is-error diff --git a/novas/novacore-zephyr/groq-code-cli/node_modules/is-error/index.js b/novas/novacore-zephyr/groq-code-cli/node_modules/is-error/index.js new file mode 100644 index 0000000000000000000000000000000000000000..c0b4dbeabd3f2576ffecdb31099822c1a624c7ea --- /dev/null +++ b/novas/novacore-zephyr/groq-code-cli/node_modules/is-error/index.js @@ -0,0 +1,23 @@ +'use strict'; + +var objectToString = Object.prototype.toString; +var getPrototypeOf = Object.getPrototypeOf; +var ERROR_TYPE = '[object Error]'; + +module.exports = function isError(err) { + if (typeof err !== 'object') { + return false; + } + if (err instanceof Error) { + // Accept `AssertionError`s from the `assert` module that ships + // with Node.js v6.1.0, compare issue #4. + return true; + } + while (err) { + if (objectToString.call(err) === ERROR_TYPE) { + return true; + } + err = getPrototypeOf(err); + } + return false; +}; diff --git a/novas/novacore-zephyr/groq-code-cli/node_modules/is-error/package.json b/novas/novacore-zephyr/groq-code-cli/node_modules/is-error/package.json new file mode 100644 index 0000000000000000000000000000000000000000..2b6761efa4bd7e6d7fff2aa4e924794f4410a326 --- /dev/null +++ b/novas/novacore-zephyr/groq-code-cli/node_modules/is-error/package.json @@ -0,0 +1,44 @@ +{ "name": "is-error", + "version": "2.2.2", + "description": "Detect whether a value is an error", + "keywords": [], + "author": "Raynos ", + "repository": "git://github.com/mk-pmb/is-error-js.git", + "main": "index", + "homepage": "https://github.com/mk-pmb/is-error-js", + "bugs": { + "url": "https://github.com/mk-pmb/is-error-js/issues" + }, + "contributors": [ + "Raynos", + "M.K. (https://github.com/mk-pmb)" + ], + "dependencies": {}, + "devDependencies": { + "coveralls": "^2.10.0", + "istanbul": "^0.3.5", + "lint-trap": "^1.0.0", + "opn": "^1.0.1", + "pre-commit": "0.0.11", + "tap-spec": "^2.1.1", + "tape": "^3.4.0" + }, + "license": "MIT", + "scripts": { + "test": "npm run jshint -s && npm run cover -s", + "unit-test": "node test/index.js | tap-spec", + "jshint": "lint-trap .", + "cover": "istanbul cover --report html --print detail -- test/index.js && npm run check-cover -s", + "check-cover": "istanbul check-coverage --branches=100 --lines=100 --functions=100", + "view-cover": "opn ./coverage/index.html", + "travis": "npm run cover -s && istanbul report lcov && ((cat coverage/lcov.info | coveralls) || true)" + }, + "engine": { + "node": ">= 0.8.x" + }, + "pre-commit": [ + "test" + ], + "pre-commit.silent": true, + "ngen-version": "5.1.0" +} diff --git a/novas/novacore-zephyr/groq-code-cli/node_modules/is-extglob/LICENSE b/novas/novacore-zephyr/groq-code-cli/node_modules/is-extglob/LICENSE new file mode 100644 index 0000000000000000000000000000000000000000..842218cf09a20282e926305e01162174ab371a52 --- /dev/null +++ b/novas/novacore-zephyr/groq-code-cli/node_modules/is-extglob/LICENSE @@ -0,0 +1,21 @@ +The MIT License (MIT) + +Copyright (c) 2014-2016, Jon Schlinkert + +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. diff --git a/novas/novacore-zephyr/groq-code-cli/node_modules/is-extglob/README.md b/novas/novacore-zephyr/groq-code-cli/node_modules/is-extglob/README.md new file mode 100644 index 0000000000000000000000000000000000000000..0416af5c326983f8817331b7a08f1cbbe22490e5 --- /dev/null +++ b/novas/novacore-zephyr/groq-code-cli/node_modules/is-extglob/README.md @@ -0,0 +1,107 @@ +# is-extglob [![NPM version](https://img.shields.io/npm/v/is-extglob.svg?style=flat)](https://www.npmjs.com/package/is-extglob) [![NPM downloads](https://img.shields.io/npm/dm/is-extglob.svg?style=flat)](https://npmjs.org/package/is-extglob) [![Build Status](https://img.shields.io/travis/jonschlinkert/is-extglob.svg?style=flat)](https://travis-ci.org/jonschlinkert/is-extglob) + +> Returns true if a string has an extglob. + +## Install + +Install with [npm](https://www.npmjs.com/): + +```sh +$ npm install --save is-extglob +``` + +## Usage + +```js +var isExtglob = require('is-extglob'); +``` + +**True** + +```js +isExtglob('?(abc)'); +isExtglob('@(abc)'); +isExtglob('!(abc)'); +isExtglob('*(abc)'); +isExtglob('+(abc)'); +``` + +**False** + +Escaped extglobs: + +```js +isExtglob('\\?(abc)'); +isExtglob('\\@(abc)'); +isExtglob('\\!(abc)'); +isExtglob('\\*(abc)'); +isExtglob('\\+(abc)'); +``` + +Everything else... + +```js +isExtglob('foo.js'); +isExtglob('!foo.js'); +isExtglob('*.js'); +isExtglob('**/abc.js'); +isExtglob('abc/*.js'); +isExtglob('abc/(aaa|bbb).js'); +isExtglob('abc/[a-z].js'); +isExtglob('abc/{a,b}.js'); +isExtglob('abc/?.js'); +isExtglob('abc.js'); +isExtglob('abc/def/ghi.js'); +``` + +## History + +**v2.0** + +Adds support for escaping. Escaped exglobs no longer return true. + +## About + +### Related projects + +* [has-glob](https://www.npmjs.com/package/has-glob): Returns `true` if an array has a glob pattern. | [homepage](https://github.com/jonschlinkert/has-glob "Returns `true` if an array has a glob pattern.") +* [is-glob](https://www.npmjs.com/package/is-glob): Returns `true` if the given string looks like a glob pattern or an extglob pattern… [more](https://github.com/jonschlinkert/is-glob) | [homepage](https://github.com/jonschlinkert/is-glob "Returns `true` if the given string looks like a glob pattern or an extglob pattern. This makes it easy to create code that only uses external modules like node-glob when necessary, resulting in much faster code execution and initialization time, and a bet") +* [micromatch](https://www.npmjs.com/package/micromatch): Glob matching for javascript/node.js. A drop-in replacement and faster alternative to minimatch and multimatch. | [homepage](https://github.com/jonschlinkert/micromatch "Glob matching for javascript/node.js. A drop-in replacement and faster alternative to minimatch and multimatch.") + +### Contributing + +Pull requests and stars are always welcome. For bugs and feature requests, [please create an issue](../../issues/new). + +### Building docs + +_(This document was generated by [verb-generate-readme](https://github.com/verbose/verb-generate-readme) (a [verb](https://github.com/verbose/verb) generator), please don't edit the readme directly. Any changes to the readme must be made in [.verb.md](.verb.md).)_ + +To generate the readme and API documentation with [verb](https://github.com/verbose/verb): + +```sh +$ npm install -g verb verb-generate-readme && verb +``` + +### Running tests + +Install dev dependencies: + +```sh +$ npm install -d && npm test +``` + +### Author + +**Jon Schlinkert** + +* [github/jonschlinkert](https://github.com/jonschlinkert) +* [twitter/jonschlinkert](http://twitter.com/jonschlinkert) + +### License + +Copyright © 2016, [Jon Schlinkert](https://github.com/jonschlinkert). +Released under the [MIT license](https://github.com/jonschlinkert/is-extglob/blob/master/LICENSE). + +*** + +_This file was generated by [verb-generate-readme](https://github.com/verbose/verb-generate-readme), v0.1.31, on October 12, 2016._ \ No newline at end of file diff --git a/novas/novacore-zephyr/groq-code-cli/node_modules/is-extglob/index.js b/novas/novacore-zephyr/groq-code-cli/node_modules/is-extglob/index.js new file mode 100644 index 0000000000000000000000000000000000000000..c1d986fc5120301c654f87ee329241190b6e1987 --- /dev/null +++ b/novas/novacore-zephyr/groq-code-cli/node_modules/is-extglob/index.js @@ -0,0 +1,20 @@ +/*! + * is-extglob + * + * Copyright (c) 2014-2016, Jon Schlinkert. + * Licensed under the MIT License. + */ + +module.exports = function isExtglob(str) { + if (typeof str !== 'string' || str === '') { + return false; + } + + var match; + while ((match = /(\\).|([@?!+*]\(.*\))/g.exec(str))) { + if (match[2]) return true; + str = str.slice(match.index + match[0].length); + } + + return false; +}; diff --git a/novas/novacore-zephyr/groq-code-cli/node_modules/is-extglob/package.json b/novas/novacore-zephyr/groq-code-cli/node_modules/is-extglob/package.json new file mode 100644 index 0000000000000000000000000000000000000000..7a908369d39f558028f5345dd89b27c62d4d693c --- /dev/null +++ b/novas/novacore-zephyr/groq-code-cli/node_modules/is-extglob/package.json @@ -0,0 +1,69 @@ +{ + "name": "is-extglob", + "description": "Returns true if a string has an extglob.", + "version": "2.1.1", + "homepage": "https://github.com/jonschlinkert/is-extglob", + "author": "Jon Schlinkert (https://github.com/jonschlinkert)", + "repository": "jonschlinkert/is-extglob", + "bugs": { + "url": "https://github.com/jonschlinkert/is-extglob/issues" + }, + "license": "MIT", + "files": [ + "index.js" + ], + "main": "index.js", + "engines": { + "node": ">=0.10.0" + }, + "scripts": { + "test": "mocha" + }, + "devDependencies": { + "gulp-format-md": "^0.1.10", + "mocha": "^3.0.2" + }, + "keywords": [ + "bash", + "braces", + "check", + "exec", + "expression", + "extglob", + "glob", + "globbing", + "globstar", + "is", + "match", + "matches", + "pattern", + "regex", + "regular", + "string", + "test" + ], + "verb": { + "toc": false, + "layout": "default", + "tasks": [ + "readme" + ], + "plugins": [ + "gulp-format-md" + ], + "related": { + "list": [ + "has-glob", + "is-glob", + "micromatch" + ] + }, + "reflinks": [ + "verb", + "verb-generate-readme" + ], + "lint": { + "reflinks": true + } + } +} diff --git a/novas/novacore-zephyr/groq-code-cli/node_modules/is-finalizationregistry/.eslintrc b/novas/novacore-zephyr/groq-code-cli/node_modules/is-finalizationregistry/.eslintrc new file mode 100644 index 0000000000000000000000000000000000000000..def9231adfc4e1317a1a54a6fd1f150d15f89081 --- /dev/null +++ b/novas/novacore-zephyr/groq-code-cli/node_modules/is-finalizationregistry/.eslintrc @@ -0,0 +1,9 @@ +{ + "root": true, + + "extends": "@ljharb", + + "rules": { + "id-length": 0, + }, +} diff --git a/novas/novacore-zephyr/groq-code-cli/node_modules/is-finalizationregistry/.nycrc b/novas/novacore-zephyr/groq-code-cli/node_modules/is-finalizationregistry/.nycrc new file mode 100644 index 0000000000000000000000000000000000000000..bdd626ce91477abbdd489b79988baebadbd3c897 --- /dev/null +++ b/novas/novacore-zephyr/groq-code-cli/node_modules/is-finalizationregistry/.nycrc @@ -0,0 +1,9 @@ +{ + "all": true, + "check-coverage": false, + "reporter": ["text-summary", "text", "html", "json"], + "exclude": [ + "coverage", + "test" + ] +} diff --git a/novas/novacore-zephyr/groq-code-cli/node_modules/is-finalizationregistry/CHANGELOG.md b/novas/novacore-zephyr/groq-code-cli/node_modules/is-finalizationregistry/CHANGELOG.md new file mode 100644 index 0000000000000000000000000000000000000000..db513627a592d8aa663ff3084cd0cca82f32b2bc --- /dev/null +++ b/novas/novacore-zephyr/groq-code-cli/node_modules/is-finalizationregistry/CHANGELOG.md @@ -0,0 +1,78 @@ +# Changelog + +All notable changes to this project will be documented in this file. + +The format is based on [Keep a Changelog](https://keepachangelog.com/en/1.0.0/) +and this project adheres to [Semantic Versioning](https://semver.org/spec/v2.0.0.html). + +## [v1.1.1](https://github.com/inspect-js/is-finalizationregistry/compare/v1.1.0...v1.1.1) - 2024-12-16 + +### Commits + +- [actions] re-add finishers [`0f41639`](https://github.com/inspect-js/is-finalizationregistry/commit/0f41639657eb79da783ab99246ffbab97ce52785) +- [Dev Deps] update `@arethetypeswrong/cli`, `@ljharb/tsconfig`, `@types/tape` [`1467f11`](https://github.com/inspect-js/is-finalizationregistry/commit/1467f11d2b638ae72ab5fff33a72c88143ed9546) +- [meta] sort package.json [`bd48b68`](https://github.com/inspect-js/is-finalizationregistry/commit/bd48b686cf499ae590404729b4d3a6fca9c9d0f3) +- [Refactor] use `call-bound` directly [`ce9dcd4`](https://github.com/inspect-js/is-finalizationregistry/commit/ce9dcd4abea4d17ca63b2d46385d78bebaf05d84) +- [Deps] update `call-bind` [`9b8daac`](https://github.com/inspect-js/is-finalizationregistry/commit/9b8daac5237a420ec8de65222d1b14e56de55b50) +- [meta] add `sideEffects` flag [`c5cb18b`](https://github.com/inspect-js/is-finalizationregistry/commit/c5cb18b51f22a52dcdc17afc3ce02a1ace41d418) + +## [v1.1.0](https://github.com/inspect-js/is-finalizationregistry/compare/v1.0.2...v1.1.0) - 2024-11-23 + +### Commits + +- [actions] reuse common workflows [`b9b56fe`](https://github.com/inspect-js/is-finalizationregistry/commit/b9b56fe405d0385fcbcc587abcf7b6f0c5b4e7be) +- [meta] use `npmignore` to autogenerate an npmignore file [`4b65c3d`](https://github.com/inspect-js/is-finalizationregistry/commit/4b65c3dfe532ba3d1130f9bd7d36d674790b836d) +- [New] add TS types [`22c7c81`](https://github.com/inspect-js/is-finalizationregistry/commit/22c7c81612a906c787432a0c70df27c2a278f370) +- [actions] split out node 10-20, and 20+ [`b4bc95a`](https://github.com/inspect-js/is-finalizationregistry/commit/b4bc95a923323b9064965442f2a5646c1ec4b99b) +- [Dev Deps] update `eslint`, `@ljharb/eslint-config`, `object-inspect`, `safe-publish-latest`, `tape` [`25d2e81`](https://github.com/inspect-js/is-finalizationregistry/commit/25d2e815627d5549bbd366fd95dcd134f99fc16d) +- [Dev Deps] update `eslint`, `@ljharb/eslint-config`, `aud`, `auto-changelog`, `object-inspect`, `tape` [`a045ec6`](https://github.com/inspect-js/is-finalizationregistry/commit/a045ec6d56106561232bd7dbd95c058d195cd3d9) +- [actions] update rebase action to use reusable workflow [`14ee45b`](https://github.com/inspect-js/is-finalizationregistry/commit/14ee45b34361a4a14cfc444a71601e55ddd98a6e) +- [actions] update codecov uploader [`d37bfcb`](https://github.com/inspect-js/is-finalizationregistry/commit/d37bfcb43695e56c06829b05051f5b5f4cdbcd6b) +- [Dev Deps] update `@ljharb/eslint-config`, `auto-changelog`, `npmignore`, `object-inspect`, `tape` [`a36b69c`](https://github.com/inspect-js/is-finalizationregistry/commit/a36b69c8f1a43beb07416658609b9950e58bb615) +- [meta] clean up `exports` [`35b3562`](https://github.com/inspect-js/is-finalizationregistry/commit/35b35627f8234e76a92e72669f7c5041e2c4074b) +- [meta] add missing `engines.node` [`0603193`](https://github.com/inspect-js/is-finalizationregistry/commit/06031931c5f4e672f47463da2c7b43b45a629819) +- [Tests] replace `aud` with `npm audit` [`05b4596`](https://github.com/inspect-js/is-finalizationregistry/commit/05b459606f22cebe6a42101438bfcdae68313786) +- [Deps] update `call-bind` [`6482025`](https://github.com/inspect-js/is-finalizationregistry/commit/6482025cba84cff2b51db51768ed6d391f01335d) +- [Dev Deps] add missing peer dep [`90f97dd`](https://github.com/inspect-js/is-finalizationregistry/commit/90f97ddc8998ead46f26d8b2fa0fd8be17ea48bb) + +## [v1.0.2](https://github.com/inspect-js/is-finalizationregistry/compare/v1.0.1...v1.0.2) - 2021-10-05 + +### Commits + +- [meta] do not publish Github Actions workflows [`5509e8c`](https://github.com/inspect-js/is-finalizationregistry/commit/5509e8c13173a128244fc306d304c9be958b62f3) +- [actions] use `node/install` instead of `node/run`; use `codecov` action [`b566204`](https://github.com/inspect-js/is-finalizationregistry/commit/b5662048c9824089baf6fe3e0c408d6297635b2c) +- [readme] fix markdown [`02602dd`](https://github.com/inspect-js/is-finalizationregistry/commit/02602dda3176944f6681b97fb0d26e43bf2accc8) +- [Fix] use `call-bind` and obviate missing `es-abstract` dep [`9d71846`](https://github.com/inspect-js/is-finalizationregistry/commit/9d718467ef713e10242c28e48d82947d108ed5ef) +- [readme] add actions and codecov badges [`75381a7`](https://github.com/inspect-js/is-finalizationregistry/commit/75381a76ad373fd4bea0f032e8593dec60785332) +- [Dev Deps] update `eslint`, `@ljharb/eslint-config`, `auto-changelog`, `object-inspect`, `tape` [`7a0f9d8`](https://github.com/inspect-js/is-finalizationregistry/commit/7a0f9d8befeee03f578cf9184190e4a143a05abf) +- [Dev Deps] update `eslint`, `@ljharb/eslint-config`, `aud`, `object-inspect`, `tape` [`962689f`](https://github.com/inspect-js/is-finalizationregistry/commit/962689f01c33d06eadb4456004d231b56cb13825) +- [Dev Deps] update `eslint`, `@ljharb/eslint-config`, `tape` [`762ebf2`](https://github.com/inspect-js/is-finalizationregistry/commit/762ebf2f8d06597029b794053f0630b6ddeb7cc2) +- [meta] add `safe-publish-latest`; use `prepublishOnly` script for npm 7+ [`fe0b226`](https://github.com/inspect-js/is-finalizationregistry/commit/fe0b2268e0eaa4fd56418aba87d2e761c04917e6) + +## [v1.0.1](https://github.com/inspect-js/is-finalizationregistry/compare/v1.0.0...v1.0.1) - 2020-12-04 + +### Commits + +- [Tests] migrate tests to Github Actions [`b697250`](https://github.com/inspect-js/is-finalizationregistry/commit/b69725063681eeb9179d9945512a62112b360cd2) +- [Tests] run `nyc` on all tests [`9091806`](https://github.com/inspect-js/is-finalizationregistry/commit/9091806c8cc05340dc964fb3c566e650c1bff947) +- [actions] add "Allow Edits" workflow [`5d8c4f5`](https://github.com/inspect-js/is-finalizationregistry/commit/5d8c4f5e5ca4f001f6a16744c2cce5d32bdae39b) +- [Dev Deps] update `eslint`, `@ljharb/eslint-config`, `aud`, `auto-changelog`, `object-inspect` [`3af34c1`](https://github.com/inspect-js/is-finalizationregistry/commit/3af34c194a8dfb41e773f7e1647e1e1cf05ec98d) +- [actions] switch Automatic Rebase workflow to `pull_request_target` event [`d0720ff`](https://github.com/inspect-js/is-finalizationregistry/commit/d0720ff2d07308ec3e90f13c7a15affa05339fe7) +- [readme] remove travis badge [`2757b27`](https://github.com/inspect-js/is-finalizationregistry/commit/2757b27db4cbb93d712bd85c1741f3071a720dc7) +- [meta] add `package.json` to `exports` [`c680142`](https://github.com/inspect-js/is-finalizationregistry/commit/c680142dcd73d3f3c8ec75c0ab1c9281edaeb91f) + +## v1.0.0 - 2020-08-02 + +### Commits + +- Initial commit [`094a595`](https://github.com/inspect-js/is-finalizationregistry/commit/094a59522ab29b1701ad2f1cb67ee01f1e68cae2) +- readme [`38d75fd`](https://github.com/inspect-js/is-finalizationregistry/commit/38d75fd9d38106b6a4d09bdb4ac5c5ca186c62de) +- Tests [`1052cd2`](https://github.com/inspect-js/is-finalizationregistry/commit/1052cd21bfa90e83e5fbf656ce67f3c038aa9336) +- npm init [`307016d`](https://github.com/inspect-js/is-finalizationregistry/commit/307016d5228e184a22a1ee2992f24ed208c3cec6) +- Implementation [`48df57a`](https://github.com/inspect-js/is-finalizationregistry/commit/48df57a25d3cde99f43a46fe458e878f79179520) +- [meta] add auto-changelog [`cd1c8e1`](https://github.com/inspect-js/is-finalizationregistry/commit/cd1c8e1f97a499a0ea7edc6e7afde3b522fb8329) +- [actions] add automatic rebasing / merge commit blocking [`d6c9220`](https://github.com/inspect-js/is-finalizationregistry/commit/d6c92207d7f76785dada19e09b937326dc3b499d) +- [meta] add "funding"; create `FUNDING.yml` [`0e74e10`](https://github.com/inspect-js/is-finalizationregistry/commit/0e74e10f3667b1f8c9ea2a7a3dba67b373a17902) +- [Tests] add `npm run lint` [`edb8d13`](https://github.com/inspect-js/is-finalizationregistry/commit/edb8d138a6350b0fb7f398657125c74f218c547f) +- [Tests] use shared travis-ci configs [`8eb7a3a`](https://github.com/inspect-js/is-finalizationregistry/commit/8eb7a3a0a45e5aab60edb385ddee2e7bd1e22d81) +- Only apps should have lockfiles [`566b021`](https://github.com/inspect-js/is-finalizationregistry/commit/566b021e66bc2325e12f88324174413348cb987d) diff --git a/novas/novacore-zephyr/groq-code-cli/node_modules/is-finalizationregistry/LICENSE b/novas/novacore-zephyr/groq-code-cli/node_modules/is-finalizationregistry/LICENSE new file mode 100644 index 0000000000000000000000000000000000000000..707437b5750a24d0ed2dd693ce221283ff4508a0 --- /dev/null +++ b/novas/novacore-zephyr/groq-code-cli/node_modules/is-finalizationregistry/LICENSE @@ -0,0 +1,21 @@ +MIT License + +Copyright (c) 2020 Inspect JS + +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. diff --git a/novas/novacore-zephyr/groq-code-cli/node_modules/is-finalizationregistry/README.md b/novas/novacore-zephyr/groq-code-cli/node_modules/is-finalizationregistry/README.md new file mode 100644 index 0000000000000000000000000000000000000000..48ca8b103895f22841d86cd17ddea00229f1da09 --- /dev/null +++ b/novas/novacore-zephyr/groq-code-cli/node_modules/is-finalizationregistry/README.md @@ -0,0 +1,54 @@ +# is-finalizationregistry [![Version Badge][npm-version-svg]][package-url] + +[![github actions][actions-image]][actions-url] +[![coverage][codecov-image]][codecov-url] +[![dependency status][deps-svg]][deps-url] +[![dev dependency status][dev-deps-svg]][dev-deps-url] +[![License][license-image]][license-url] +[![Downloads][downloads-image]][downloads-url] + +[![npm badge][npm-badge-png]][package-url] + +Is this value a JS FinalizationRegistry? This module works cross-realm/iframe, and despite ES6 @@toStringTag. + +## Example + +```js +var isFinalizationRegistry = require('is-finalizationregistry'); +assert(!isFinalizationRegistry(function () {})); +assert(!isFinalizationRegistry(null)); +assert(!isFinalizationRegistry(function* () { yield 42; return Infinity; }); +assert(!isFinalizationRegistry(Symbol('foo'))); +assert(!isFinalizationRegistry(1n)); +assert(!isFinalizationRegistry(Object(1n))); + +assert(!isFinalizationRegistry(new Set())); +assert(!isFinalizationRegistry(new WeakSet())); +assert(!isFinalizationRegistry(new Map())); +assert(!isFinalizationRegistry(new WeakMap())); +assert(!isFinalizationRegistry(new WeakRef({}))); + +assert(isFinalizationRegistry(new FinalizationRegistry(function () {}))); + +class MyFinalizationRegistry extends FinalizationRegistry {} +assert(isFinalizationRegistry(new MyFinalizationRegistry(function () {}))); +``` + +## Tests +Simply clone the repo, `npm install`, and run `npm test` + +[package-url]: https://npmjs.org/package/is-finalizationregistry +[npm-version-svg]: https://versionbadg.es/inspect-js/is-finalizationregistry.svg +[deps-svg]: https://david-dm.org/inspect-js/is-finalizationregistry.svg +[deps-url]: https://david-dm.org/inspect-js/is-finalizationregistry +[dev-deps-svg]: https://david-dm.org/inspect-js/is-finalizationregistry/dev-status.svg +[dev-deps-url]: https://david-dm.org/inspect-js/is-finalizationregistry#info=devDependencies +[npm-badge-png]: https://nodei.co/npm/is-finalizationregistry.png?downloads=true&stars=true +[license-image]: https://img.shields.io/npm/l/is-finalizationregistry.svg +[license-url]: LICENSE +[downloads-image]: https://img.shields.io/npm/dm/is-finalizationregistry.svg +[downloads-url]: https://npm-stat.com/charts.html?package=is-finalizationregistry +[codecov-image]: https://codecov.io/gh/inspect-js/is-finalizationregistry/branch/main/graphs/badge.svg +[codecov-url]: https://app.codecov.io/gh/inspect-js/is-finalizationregistry/ +[actions-image]: https://img.shields.io/endpoint?url=https://github-actions-badge-u3jn4tfpocch.runkit.sh/inspect-js/is-finalizationregistry +[actions-url]: https://github.com/inspect-js/is-finalizationregistry/actions diff --git a/novas/novacore-zephyr/groq-code-cli/node_modules/is-finalizationregistry/index.d.ts b/novas/novacore-zephyr/groq-code-cli/node_modules/is-finalizationregistry/index.d.ts new file mode 100644 index 0000000000000000000000000000000000000000..05a36fb4707ac44f14bf4b1196ffcfcd1fce9a45 --- /dev/null +++ b/novas/novacore-zephyr/groq-code-cli/node_modules/is-finalizationregistry/index.d.ts @@ -0,0 +1,3 @@ +declare function isFinalizationRegistry(value: unknown): value is FinalizationRegistry; + +export = isFinalizationRegistry; diff --git a/novas/novacore-zephyr/groq-code-cli/node_modules/is-finalizationregistry/index.js b/novas/novacore-zephyr/groq-code-cli/node_modules/is-finalizationregistry/index.js new file mode 100644 index 0000000000000000000000000000000000000000..a7a43110241b6402a4e868286df8d1d20a187c59 --- /dev/null +++ b/novas/novacore-zephyr/groq-code-cli/node_modules/is-finalizationregistry/index.js @@ -0,0 +1,25 @@ +'use strict'; + +var callBound = require('call-bound'); + +/** @type {undefined | ((value: ThisParameterType, ...args: Parameters) => ReturnType)} */ +var $register = callBound('FinalizationRegistry.prototype.register', true); + +/** @type {import('.')} */ +module.exports = $register + ? function isFinalizationRegistry(value) { + if (!value || typeof value !== 'object') { + return false; + } + try { + // @ts-expect-error TS can't figure out that it's always truthy here + $register(value, {}, null); + return true; + } catch (e) { + return false; + } + } + // @ts-ignore unused var + : function isFinalizationRegistry(value) { // eslint-disable-line no-unused-vars + return false; + }; diff --git a/novas/novacore-zephyr/groq-code-cli/node_modules/is-finalizationregistry/package.json b/novas/novacore-zephyr/groq-code-cli/node_modules/is-finalizationregistry/package.json new file mode 100644 index 0000000000000000000000000000000000000000..2ea38b072b6c7c98394080f95b968be09e66e8f0 --- /dev/null +++ b/novas/novacore-zephyr/groq-code-cli/node_modules/is-finalizationregistry/package.json @@ -0,0 +1,82 @@ +{ + "name": "is-finalizationregistry", + "version": "1.1.1", + "description": "Is this value a JS FinalizationRegistry? This module works cross-realm/iframe, and despite ES6 @@toStringTag.", + "main": "index.js", + "types": "index.d.ts", + "exports": { + ".": "./index.js", + "./package.json": "./package.json" + }, + "sideEffects": true, + "scripts": { + "prepack": "npmignore --auto --commentLines=autogenerated", + "prepublishOnly": "safe-publish-latest", + "prepublish": "not-in-publish || npm run prepublishOnly", + "version": "auto-changelog && git add CHANGELOG.md", + "postversion": "auto-changelog && git add CHANGELOG.md && git commit --no-edit --amend && git tag -f \"v$(node -e \"console.log(require('./package.json').version)\")\"", + "lint": "eslint --ext=.js,.mjs .", + "postlint": "tsc -P . && attw -P", + "pretest": "npm run lint", + "tests-only": "nyc tape 'test/**/*.js'", + "test": "npm run tests-only", + "posttest": "npx npm@'>=10.2' audit --production" + }, + "repository": { + "type": "git", + "url": "git+https://github.com/inspect-js/is-finalizationregistry.git" + }, + "keywords": [ + "weakref", + "finalization", + "finalizationregistry", + "finalization registry" + ], + "author": "Jordan Harband ", + "funding": { + "url": "https://github.com/sponsors/ljharb" + }, + "license": "MIT", + "bugs": { + "url": "https://github.com/inspect-js/is-finalizationregistry/issues" + }, + "homepage": "https://github.com/inspect-js/is-finalizationregistry#readme", + "dependencies": { + "call-bound": "^1.0.3" + }, + "devDependencies": { + "@arethetypeswrong/cli": "^0.17.1", + "@ljharb/eslint-config": "^21.1.1", + "@ljharb/tsconfig": "^0.2.2", + "@types/for-each": "^0.3.3", + "@types/object-inspect": "^1.13.0", + "@types/tape": "^5.7.0", + "auto-changelog": "^2.5.0", + "encoding": "^0.1.13", + "eslint": "=8.8.0", + "for-each": "^0.3.3", + "in-publish": "^2.0.1", + "npmignore": "^0.3.1", + "nyc": "^10.3.2", + "object-inspect": "^1.13.3", + "safe-publish-latest": "^2.0.0", + "tape": "^5.9.0", + "typescript": "next" + }, + "auto-changelog": { + "output": "CHANGELOG.md", + "template": "keepachangelog", + "unreleased": false, + "commitLimit": false, + "backfillLimit": false, + "hideCredit": true + }, + "publishConfig": { + "ignore": [ + ".github/workflows" + ] + }, + "engines": { + "node": ">= 0.4" + } +} diff --git a/novas/novacore-zephyr/groq-code-cli/node_modules/is-finalizationregistry/tsconfig.json b/novas/novacore-zephyr/groq-code-cli/node_modules/is-finalizationregistry/tsconfig.json new file mode 100644 index 0000000000000000000000000000000000000000..6716d81ce28cf3af2a23d2d9237c7a3d53114217 --- /dev/null +++ b/novas/novacore-zephyr/groq-code-cli/node_modules/is-finalizationregistry/tsconfig.json @@ -0,0 +1,9 @@ +{ + "extends": "@ljharb/tsconfig", + "compilerOptions": { + "target": "ES2021", + }, + "exclude": [ + "coverage" + ] +} diff --git a/novas/novacore-zephyr/groq-code-cli/node_modules/is-fullwidth-code-point/index.d.ts b/novas/novacore-zephyr/groq-code-cli/node_modules/is-fullwidth-code-point/index.d.ts new file mode 100644 index 0000000000000000000000000000000000000000..729d2020516f0b64dbcb8cb3443b7777b3c04769 --- /dev/null +++ b/novas/novacore-zephyr/groq-code-cli/node_modules/is-fullwidth-code-point/index.d.ts @@ -0,0 +1,17 @@ +/** +Check if the character represented by a given [Unicode code point](https://en.wikipedia.org/wiki/Code_point) is [fullwidth](https://en.wikipedia.org/wiki/Halfwidth_and_fullwidth_forms). + +@param codePoint - The [code point](https://en.wikipedia.org/wiki/Code_point) of a character. + +@example +``` +import isFullwidthCodePoint from 'is-fullwidth-code-point'; + +isFullwidthCodePoint('谢'.codePointAt(0)); +//=> true + +isFullwidthCodePoint('a'.codePointAt(0)); +//=> false +``` +*/ +export default function isFullwidthCodePoint(codePoint: number): boolean; diff --git a/novas/novacore-zephyr/groq-code-cli/node_modules/is-fullwidth-code-point/index.js b/novas/novacore-zephyr/groq-code-cli/node_modules/is-fullwidth-code-point/index.js new file mode 100644 index 0000000000000000000000000000000000000000..d6d7ab29bb437f0a63841504b2698d22d5736a66 --- /dev/null +++ b/novas/novacore-zephyr/groq-code-cli/node_modules/is-fullwidth-code-point/index.js @@ -0,0 +1,40 @@ +/* eslint-disable yoda */ + +export default function isFullwidthCodePoint(codePoint) { + if (!Number.isInteger(codePoint)) { + return false; + } + + // Code points are derived from: + // https://unicode.org/Public/UNIDATA/EastAsianWidth.txt + return codePoint >= 0x1100 && ( + codePoint <= 0x115F || // Hangul Jamo + codePoint === 0x2329 || // LEFT-POINTING ANGLE BRACKET + codePoint === 0x232A || // RIGHT-POINTING ANGLE BRACKET + // CJK Radicals Supplement .. Enclosed CJK Letters and Months + (0x2E80 <= codePoint && codePoint <= 0x3247 && codePoint !== 0x303F) || + // Enclosed CJK Letters and Months .. CJK Unified Ideographs Extension A + (0x3250 <= codePoint && codePoint <= 0x4DBF) || + // CJK Unified Ideographs .. Yi Radicals + (0x4E00 <= codePoint && codePoint <= 0xA4C6) || + // Hangul Jamo Extended-A + (0xA960 <= codePoint && codePoint <= 0xA97C) || + // Hangul Syllables + (0xAC00 <= codePoint && codePoint <= 0xD7A3) || + // CJK Compatibility Ideographs + (0xF900 <= codePoint && codePoint <= 0xFAFF) || + // Vertical Forms + (0xFE10 <= codePoint && codePoint <= 0xFE19) || + // CJK Compatibility Forms .. Small Form Variants + (0xFE30 <= codePoint && codePoint <= 0xFE6B) || + // Halfwidth and Fullwidth Forms + (0xFF01 <= codePoint && codePoint <= 0xFF60) || + (0xFFE0 <= codePoint && codePoint <= 0xFFE6) || + // Kana Supplement + (0x1B000 <= codePoint && codePoint <= 0x1B001) || + // Enclosed Ideographic Supplement + (0x1F200 <= codePoint && codePoint <= 0x1F251) || + // CJK Unified Ideographs Extension B .. Tertiary Ideographic Plane + (0x20000 <= codePoint && codePoint <= 0x3FFFD) + ); +} diff --git a/novas/novacore-zephyr/groq-code-cli/node_modules/is-fullwidth-code-point/license b/novas/novacore-zephyr/groq-code-cli/node_modules/is-fullwidth-code-point/license new file mode 100644 index 0000000000000000000000000000000000000000..fa7ceba3eb4a9657a9db7f3ffca4e4e97a9019de --- /dev/null +++ b/novas/novacore-zephyr/groq-code-cli/node_modules/is-fullwidth-code-point/license @@ -0,0 +1,9 @@ +MIT License + +Copyright (c) Sindre Sorhus (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. diff --git a/novas/novacore-zephyr/groq-code-cli/node_modules/is-fullwidth-code-point/package.json b/novas/novacore-zephyr/groq-code-cli/node_modules/is-fullwidth-code-point/package.json new file mode 100644 index 0000000000000000000000000000000000000000..e923efaf335382f064a3c1868eef827f45b11f27 --- /dev/null +++ b/novas/novacore-zephyr/groq-code-cli/node_modules/is-fullwidth-code-point/package.json @@ -0,0 +1,45 @@ +{ + "name": "is-fullwidth-code-point", + "version": "4.0.0", + "description": "Check if the character represented by a given Unicode code point is fullwidth", + "license": "MIT", + "repository": "sindresorhus/is-fullwidth-code-point", + "funding": "https://github.com/sponsors/sindresorhus", + "author": { + "name": "Sindre Sorhus", + "email": "sindresorhus@gmail.com", + "url": "https://sindresorhus.com" + }, + "type": "module", + "exports": "./index.js", + "engines": { + "node": ">=12" + }, + "scripts": { + "test": "xo && ava && tsd" + }, + "files": [ + "index.js", + "index.d.ts" + ], + "keywords": [ + "fullwidth", + "full-width", + "full", + "width", + "unicode", + "character", + "string", + "codepoint", + "code", + "point", + "is", + "detect", + "check" + ], + "devDependencies": { + "ava": "^3.15.0", + "tsd": "^0.14.0", + "xo": "^0.38.2" + } +} diff --git a/novas/novacore-zephyr/groq-code-cli/node_modules/is-fullwidth-code-point/readme.md b/novas/novacore-zephyr/groq-code-cli/node_modules/is-fullwidth-code-point/readme.md new file mode 100644 index 0000000000000000000000000000000000000000..9ef0fb3b46fa807690ebc14de1f2c6f8eb282643 --- /dev/null +++ b/novas/novacore-zephyr/groq-code-cli/node_modules/is-fullwidth-code-point/readme.md @@ -0,0 +1,43 @@ +# is-fullwidth-code-point + +> Check if the character represented by a given [Unicode code point](https://en.wikipedia.org/wiki/Code_point) is [fullwidth](https://en.wikipedia.org/wiki/Halfwidth_and_fullwidth_forms) + +## Install + +``` +$ npm install is-fullwidth-code-point +``` + +## Usage + +```js +import isFullwidthCodePoint from 'is-fullwidth-code-point'; + +isFullwidthCodePoint('谢'.codePointAt(0)); +//=> true + +isFullwidthCodePoint('a'.codePointAt(0)); +//=> false +``` + +## API + +### isFullwidthCodePoint(codePoint) + +#### codePoint + +Type: `number` + +The [code point](https://en.wikipedia.org/wiki/Code_point) of a character. + +--- + +
+ + Get professional support for this package with a Tidelift subscription + +
+ + Tidelift helps make open source sustainable for maintainers while giving companies
assurances about security, maintenance, and licensing for their dependencies. +
+
diff --git a/novas/novacore-zephyr/groq-code-cli/node_modules/is-generator-function/.eslintrc b/novas/novacore-zephyr/groq-code-cli/node_modules/is-generator-function/.eslintrc new file mode 100644 index 0000000000000000000000000000000000000000..c885fa335fdae0fbef7b2771d426b1bf348eb356 --- /dev/null +++ b/novas/novacore-zephyr/groq-code-cli/node_modules/is-generator-function/.eslintrc @@ -0,0 +1,9 @@ +{ + "root": true, + + "extends": "@ljharb", + + "rules": { + "no-new-func": 1, + }, +} diff --git a/novas/novacore-zephyr/groq-code-cli/node_modules/is-generator-function/.nvmrc b/novas/novacore-zephyr/groq-code-cli/node_modules/is-generator-function/.nvmrc new file mode 100644 index 0000000000000000000000000000000000000000..64f5a0a6813a4fa89a84ea60143f4e14b0e264a8 --- /dev/null +++ b/novas/novacore-zephyr/groq-code-cli/node_modules/is-generator-function/.nvmrc @@ -0,0 +1 @@ +node diff --git a/novas/novacore-zephyr/groq-code-cli/node_modules/is-generator-function/.nycrc b/novas/novacore-zephyr/groq-code-cli/node_modules/is-generator-function/.nycrc new file mode 100644 index 0000000000000000000000000000000000000000..bdd626ce91477abbdd489b79988baebadbd3c897 --- /dev/null +++ b/novas/novacore-zephyr/groq-code-cli/node_modules/is-generator-function/.nycrc @@ -0,0 +1,9 @@ +{ + "all": true, + "check-coverage": false, + "reporter": ["text-summary", "text", "html", "json"], + "exclude": [ + "coverage", + "test" + ] +} diff --git a/novas/novacore-zephyr/groq-code-cli/node_modules/is-generator-function/CHANGELOG.md b/novas/novacore-zephyr/groq-code-cli/node_modules/is-generator-function/CHANGELOG.md new file mode 100644 index 0000000000000000000000000000000000000000..998e50487841f3787a23da03d99427d303f04f9b --- /dev/null +++ b/novas/novacore-zephyr/groq-code-cli/node_modules/is-generator-function/CHANGELOG.md @@ -0,0 +1,237 @@ +# Changelog + +All notable changes to this project will be documented in this file. + +The format is based on [Keep a Changelog](https://keepachangelog.com/en/1.0.0/) +and this project adheres to [Semantic Versioning](https://semver.org/spec/v2.0.0.html). + +## [v1.1.0](https://github.com/inspect-js/is-generator-function/compare/v1.0.10...v1.1.0) - 2025-01-02 + +### Commits + +- [actions] reuse common workflows [`7301651`](https://github.com/inspect-js/is-generator-function/commit/7301651ad24468ab17aee7a86a2dd2a6fcd58637) +- [actions] split out node 10-20, and 20+ [`40f30a5`](https://github.com/inspect-js/is-generator-function/commit/40f30a5dee3e26cad236ce0afbd0567b6075af54) +- [meta] use `npmignore` to autogenerate an npmignore file [`ec843a4`](https://github.com/inspect-js/is-generator-function/commit/ec843a4501d238fcde254c7e33c137ec997abfaa) +- [New] add types [`6dd27c4`](https://github.com/inspect-js/is-generator-function/commit/6dd27c4b6a3ebaa42ddbf4e93c20e2b4d90bad07) +- [actions] update codecov uploader [`717f85e`](https://github.com/inspect-js/is-generator-function/commit/717f85e8b080cdbdb160558b289ec9f043410bd2) +- [Dev Deps] update `eslint`, `@ljharb/eslint-config`, `safe-publish-latest`, `tape` [`4280e62`](https://github.com/inspect-js/is-generator-function/commit/4280e6260029ccdae8b299faadacafd0f8a2de78) +- [actions] update rebase action to use reusable workflow [`895c2d0`](https://github.com/inspect-js/is-generator-function/commit/895c2d06a914b82913d3fae2df3071bde72cb584) +- [Tests] use `for-each` [`3caee87`](https://github.com/inspect-js/is-generator-function/commit/3caee870b0509b91ad37e6a0562f261d7b5f4523) +- [Robustness] use `call-bound` [`1eb55de`](https://github.com/inspect-js/is-generator-function/commit/1eb55def663c335222d970c5e62459f73aee20db) +- [Dev Deps] update `eslint`, `@ljharb/eslint-config`, `aud`, `auto-changelog`, `object-inspect`, `tape` [`5bbd4cd`](https://github.com/inspect-js/is-generator-function/commit/5bbd4cd8bcbd167a05ddf1cd285fd1fd2802801a) +- [Robustness] use `safe-regex-test` [`5f8b992`](https://github.com/inspect-js/is-generator-function/commit/5f8b9921e4cf53c3cb4185a0f30a170fa2e0722f) +- [Dev Deps] update `@ljharb/eslint-config`, `auto-changelog`, `npmignore`, `tape` [`c730f4c`](https://github.com/inspect-js/is-generator-function/commit/c730f4c056697653ba935b37b44bf9bfe1017331) +- [Robustness] use `get-proto` [`6dfff38`](https://github.com/inspect-js/is-generator-function/commit/6dfff3821b8a42d0b0f70651abfe1d2e90afbb10) +- [Tests] replace `aud` with `npm audit` [`725db70`](https://github.com/inspect-js/is-generator-function/commit/725db703352200f7400fa4b2b2058e2220a4c42b) +- [Deps] update `has-tostringtag` [`5cc3c2d`](https://github.com/inspect-js/is-generator-function/commit/5cc3c2d34b77c3d7d50588225d4d4afa20aa3df2) +- [Dev Deps] add missing peer dep [`869a507`](https://github.com/inspect-js/is-generator-function/commit/869a507790e8cf1452b355719a6c00efadbe4965) + +## [v1.0.10](https://github.com/inspect-js/is-generator-function/compare/v1.0.9...v1.0.10) - 2021-08-05 + +### Commits + +- [Dev Deps] update `eslint`, `auto-changelog`, `core-js`, `tape` [`63cd935`](https://github.com/inspect-js/is-generator-function/commit/63cd9353eead5ad5eb8cf581fc4129841641bb43) +- [Fix] use `has-tostringtag` to behave correctly in the presence of symbol shams [`8c3fe76`](https://github.com/inspect-js/is-generator-function/commit/8c3fe76b546fbc5085381df65800e4fc67e25ede) +- [Dev Deps] unpin `core-js` v3 [`ebf2885`](https://github.com/inspect-js/is-generator-function/commit/ebf2885bc202b59f37e074f28951639873c6f38e) + +## [v1.0.9](https://github.com/inspect-js/is-generator-function/compare/v1.0.8...v1.0.9) - 2021-05-05 + +### Fixed + +- [Fix] avoid calling `Function` until absolutely necessary [`#41`](https://github.com/inspect-js/is-generator-function/issues/41) + +### Commits + +- [actions] use `node/install` instead of `node/run`; use `codecov` action [`612862b`](https://github.com/inspect-js/is-generator-function/commit/612862b5fefc2dc1c7e1f5e7478563a5b53f7b23) +- [meta] do not publish github action workflow files [`c13855d`](https://github.com/inspect-js/is-generator-function/commit/c13855dc11947589ed7314840a9cc5ae04db90f4) +- [readme] fix repo URLs; remove travis badge [`bd11a2a`](https://github.com/inspect-js/is-generator-function/commit/bd11a2af1b644cfa352346dcbf6f4cec48b00b78) +- [Dev Deps] update `eslint`, `@ljharb/eslint-config`, `aud`, `tape` [`23f54d4`](https://github.com/inspect-js/is-generator-function/commit/23f54d49da035c1ca79227faee9bacfde2d46884) +- [readme] add actions and codecov badges [`9e759ef`](https://github.com/inspect-js/is-generator-function/commit/9e759ef8e8f098fe1fa3cd9cca98f79f9e8b8b22) +- [Dev Deps] update `eslint`, `@ljharb/eslint-config`, `tape` [`6305f8d`](https://github.com/inspect-js/is-generator-function/commit/6305f8d71ccfa4656bdd280c2616e88fc5ca184b) +- [meta] remove explicit audit level config [`db4391c`](https://github.com/inspect-js/is-generator-function/commit/db4391c68cf8162245d32734685be7c73c2f03c7) +- [meta] use `prepublishOnly` script for npm 7+ [`82c5b18`](https://github.com/inspect-js/is-generator-function/commit/82c5b183a605f1d25af15ec8242c8a8f88a26bfa) +- [Dev Deps] pin `core-js` v3 to < v3.9 [`5f6cc2a`](https://github.com/inspect-js/is-generator-function/commit/5f6cc2ac94a65d7d592775bac6dce573220ccea2) +- [Tests] avoid running harmony tests on node 16+ [`c41526b`](https://github.com/inspect-js/is-generator-function/commit/c41526b8cd1d376f9ca73b56a5ee076db0f9f1c1) +- [actions] update workflows [`a348c5d`](https://github.com/inspect-js/is-generator-function/commit/a348c5d6d4b06041ae0ece9f3765dc13ec9df354) + +## [v1.0.8](https://github.com/inspect-js/is-generator-function/compare/v1.0.7...v1.0.8) - 2020-12-02 + +### Fixed + +- [Refactor] improve performance in non-toStringTag envs [`#9`](https://github.com/inspect-js/is-generator-function/issues/9) + +### Commits + +- [Tests] use shared travis-ci configs [`98c84ec`](https://github.com/inspect-js/is-generator-function/commit/98c84ecd38d7d64b2aa070fa2c240be4373be131) +- [Tests] migrate tests to Github Actions [`52ea2e2`](https://github.com/inspect-js/is-generator-function/commit/52ea2e2e14da2278c7844a18af4aaef1cc8bb3bb) +- [meta] add `auto-changelog` [`a31c8d9`](https://github.com/inspect-js/is-generator-function/commit/a31c8d9e8fe4f397e1f8da5b1297050542cd00c3) +- [Tests] remove `jscs` [`c30694e`](https://github.com/inspect-js/is-generator-function/commit/c30694e5e1739a37c455b8bfae4cc7c4347292de) +- [meta] remove unused Makefile and associated utilities [`23a8dd7`](https://github.com/inspect-js/is-generator-function/commit/23a8dd75ea554642aadb1313c1cbbd11fe69eb1d) +- [Tests] up to `node` `v11.4`, `v10.14`, `v8.14`, `v6.15` [`9711495`](https://github.com/inspect-js/is-generator-function/commit/9711495e58fa9477167d7dbc582749981c3f5ee5) +- [Dev Deps] update `eslint`, `@ljharb/eslint-config`, `tape`, `make-generator-function`; add `safe-publish-latest` [`3afb4d0`](https://github.com/inspect-js/is-generator-function/commit/3afb4d033587eeddfd2dc840ff98c10f3abea48e) +- [Tests] up to `node` `v10.0`, `v9.11`, `v8.11`, `v6.14`, `v4.9` [`f1e9b0f`](https://github.com/inspect-js/is-generator-function/commit/f1e9b0f150e77357ecd4afac5873a3bd3ada7b02) +- [Tests] up to `node` `v11.13`, `v10.15`, `v8.15`, `v6.17` [`433ca64`](https://github.com/inspect-js/is-generator-function/commit/433ca64d5500371516598bebb19fc00370e7c9c7) +- [Tests] run `nyc` on all tests [`84d8e18`](https://github.com/inspect-js/is-generator-function/commit/84d8e18c441c4c181e51a339559040f95adc4d94) +- [Dev Deps] update `eslint`, `@ljharb/eslint-config`, `aud`, `auto-changelog`, `tape` [`ec51a9f`](https://github.com/inspect-js/is-generator-function/commit/ec51a9f2e6f5da5ae5e8b446e0112eeaa0853954) +- [Dev Deps] update `eslint`, `@ljharb/eslint-config`, `replace`, `semver`, `tape` [`180fb0d`](https://github.com/inspect-js/is-generator-function/commit/180fb0dbd1a9d6975344d2deb4338c9071e865b1) +- [actions] add automatic rebasing / merge commit blocking [`7e0f94b`](https://github.com/inspect-js/is-generator-function/commit/7e0f94b055308abc8469e526980991a12a87cfaf) +- [Dev Deps] update `eslint`, `@ljharb/eslint-config`, `covert`, `tape`, `replace`, `semver`, `core-js` [`75768b3`](https://github.com/inspect-js/is-generator-function/commit/75768b30b7d4c92231ed53ec72d2f4ae81274d4c) +- [Dev Deps] update `eslint`, `@ljharb/eslint-config`, `core-js`, `replace`, `semver`, `tape` [`d6413cd`](https://github.com/inspect-js/is-generator-function/commit/d6413cd0bfc27c924619200efe39d9956d6fb638) +- [actions] add "Allow Edits" workflow [`e73fec7`](https://github.com/inspect-js/is-generator-function/commit/e73fec71e5d1c99246a6f905091e133860931245) +- [Dev Deps] update `core-js`, `eslint`, `nsp`, `semver`, `tape` [`6746c73`](https://github.com/inspect-js/is-generator-function/commit/6746c733fa535f724700726356a9156d491b54ae) +- [Tests] switch from `nsp` to `npm audit`; allow it to fail for now [`301aa25`](https://github.com/inspect-js/is-generator-function/commit/301aa2557b4b99962a0e48191c4719c5a95eb69b) +- [Dev Deps] update `eslint`, `@ljharb/eslint-config`, `aud`, `auto-changelog` [`d978937`](https://github.com/inspect-js/is-generator-function/commit/d978937e3c86b3e239e0ceecc2324134806e0a32) +- Revert "[Refactor] improve performance in non-toStringTag envs" [`3892c18`](https://github.com/inspect-js/is-generator-function/commit/3892c18f95a8b5ea57f9893e6d8dce89fec4af30) +- [Tests] test on both core-js 3 and 2 [`fac5447`](https://github.com/inspect-js/is-generator-function/commit/fac54476693d1b8573cbd36bc3c6eb74cbeb7468) +- [Tests] use `npx aud` instead of `npm audit` with hoops [`e12897f`](https://github.com/inspect-js/is-generator-function/commit/e12897feae0185f89592dfe1a02a2a4520180313) +- [meta] add `funding` field [`60711d1`](https://github.com/inspect-js/is-generator-function/commit/60711d122a4ef7ab6a9bee6044a26352ba7f86bd) +- [Fix] `Object.getPrototypeOf` does not exist in all engines [`7484531`](https://github.com/inspect-js/is-generator-function/commit/7484531c55a61fdb7e8d819ce9aa363f29b2c704) +- [Dev Deps] update `auto-changelog`, `tape` [`fe92b74`](https://github.com/inspect-js/is-generator-function/commit/fe92b743baaf206e3ee849c551171f0a56b7fa23) +- [Dev Deps] update `eslint`, `tape` [`2f16f77`](https://github.com/inspect-js/is-generator-function/commit/2f16f77aae4c9aafe65fb29854f46b783d853c58) +- [Dev Deps] update `core-js`, `replace` [`c67825a`](https://github.com/inspect-js/is-generator-function/commit/c67825a62b7bad7911a1bdb5af237d86229aa4bc) +- [Tests] on `node` `v10.1` [`b00dbcc`](https://github.com/inspect-js/is-generator-function/commit/b00dbcce7a9f6df4fb35e99fac79560389a9a272) +- [actions] update rebase action to use checkout v2 [`85c7947`](https://github.com/inspect-js/is-generator-function/commit/85c7947d7474468a5e6dd30b00f632e43f45c21d) +- [actions] switch Automatic Rebase workflow to `pull_request_target` event [`d2fd827`](https://github.com/inspect-js/is-generator-function/commit/d2fd827cf87a90d647d93185f6d5e332fb7b1bb4) +- [Dev Deps] update `@ljharb/eslint-config` [`791766e`](https://github.com/inspect-js/is-generator-function/commit/791766e4f12a96d3b9949128f813dadd428d0891) + +## [v1.0.7](https://github.com/inspect-js/is-generator-function/compare/v1.0.6...v1.0.7) - 2017-12-27 + +### Fixed + +- [Tests] run tests with uglify-register [`#16`](https://github.com/inspect-js/is-generator-function/issues/16) +- Exclude `testling.html` from npm package. [`#8`](https://github.com/inspect-js/is-generator-function/issues/8) + +### Commits + +- [Tests] up to `node` `v8.4`; use `nvm install-latest-npm` to ensure new npm doesn’t break old node; remove osx builds [`365004b`](https://github.com/inspect-js/is-generator-function/commit/365004b20b302dceb7bd2cee91814f0a55ae3253) +- [Tests] up to `node` `v9.2`, `v8.9`, `v6.12`; pin included builds to LTS [`33916ea`](https://github.com/inspect-js/is-generator-function/commit/33916eadddccf2a39c8cf0160f82c9a5d4a20ecb) +- [Dev Deps] update `core-js`, `eslint`, `nsp` [`b4ce014`](https://github.com/inspect-js/is-generator-function/commit/b4ce0144a8b56fc3089b96f1b8818c6e793e552f) +- [Dev Deps] update `eslint`, `@ljharb/eslint-config`, `core-js`, `nsp`, `semver`, `tape` [`e4b499f`](https://github.com/inspect-js/is-generator-function/commit/e4b499fbe2e5e24593eb25bd63dfc2a1520aaa04) +- [Tests] up to `node` `v7.4`, `v4.7` [`ce642b6`](https://github.com/inspect-js/is-generator-function/commit/ce642b63f0f9c4f56ca3daefbf8b0d4cbda8c0a4) +- Only apps should have lockfiles. [`ea4dfb1`](https://github.com/inspect-js/is-generator-function/commit/ea4dfb15554de3a22656415cda985ceaf449be00) +- [Tests] on `node` `v9.3` [`307d9c1`](https://github.com/inspect-js/is-generator-function/commit/307d9c144fed8a4aec412d3e9ccc117d1c08e167) +- fix: example code missing ) after argument list [`05f62c7`](https://github.com/inspect-js/is-generator-function/commit/05f62c712a9ca08b0efcabe883affd7c0734f51c) +- [Tests] update `uglify-register` [`7376bec`](https://github.com/inspect-js/is-generator-function/commit/7376bec6c3c8ee16cf16feb285798be23e6c2c89) +- [Dev Deps] update `eslint` [`c3f5895`](https://github.com/inspect-js/is-generator-function/commit/c3f58952033c93918aa5b5ac527520b26c2460f8) + +## [v1.0.6](https://github.com/inspect-js/is-generator-function/compare/v1.0.5...v1.0.6) - 2016-12-20 + +### Fixed + +- [Fix] fix `is-generator-function` in an env without native generators, with core-js. [`#33`](https://github.com/ljharb/is-equal/issues/33) + +### Commits + +- [Tests] fix linting errors. [`9d12cdb`](https://github.com/inspect-js/is-generator-function/commit/9d12cdb4bb43c63801173635a7db92ced8f720d8) + +## [v1.0.5](https://github.com/inspect-js/is-generator-function/compare/v1.0.4...v1.0.5) - 2016-12-19 + +### Commits + +- Update `tape`, `semver`, `eslint`; use my personal shared `eslint` config. [`3a1192c`](https://github.com/inspect-js/is-generator-function/commit/3a1192cbf25ee5a1ca64e64c20d169c643ceb860) +- Add `npm run eslint` [`ae191b6`](https://github.com/inspect-js/is-generator-function/commit/ae191b61d3ec65de63bcd7b2c1ab08f2f9a94ead) +- [Tests] improve test matrix [`0d0837f`](https://github.com/inspect-js/is-generator-function/commit/0d0837fe00bed00ced94ef5a7bfdbd7e8e295656) +- [Dev Deps] update `tape`, `jscs`, `eslint`, `@ljharb/eslint-config`, `semver`, `nsp` [`6523655`](https://github.com/inspect-js/is-generator-function/commit/652365556b5f8eea69b4612a183b5026c952e776) +- Update `jscs`, `tape`, `semver` [`c185388`](https://github.com/inspect-js/is-generator-function/commit/c185388111ee6c0df1498a76d9c565167b5d20cd) +- Update `eslint` [`9959dbc`](https://github.com/inspect-js/is-generator-function/commit/9959dbc1450214658dc4789574b68de826ec33a7) +- Update `tape`, `jscs`, `eslint`, `@ljharb/eslint-config` [`5945497`](https://github.com/inspect-js/is-generator-function/commit/5945497bc564655ed5ea1bb6f12610a9afc33a33) +- [Dev Deps] update `tape`, `jscs`, `eslint`, `@ljharb/eslint-config` [`1754eae`](https://github.com/inspect-js/is-generator-function/commit/1754eaec79e43835bd154c81fba064b558f7ad1b) +- Update `eslint`, `semver`, `nsp` [`a40f7af`](https://github.com/inspect-js/is-generator-function/commit/a40f7afab3f6ba43193e5464faf51692f6f2199d) +- Update `covert`, `jscs`, `eslint`, `semver` [`f7c3504`](https://github.com/inspect-js/is-generator-function/commit/f7c35049406adc784b23b6b0fbfdd34b4ca8c183) +- [Fix] account for Safari 10 which reports the wrong toString on generator functions. [`3a3a52b`](https://github.com/inspect-js/is-generator-function/commit/3a3a52bdba46e03ae333af9519bf471207bf6cec) +- [Dev Deps] update `tape`, `jscs`, `eslint`, `@ljharb/eslint-config`, `semver`, `nsp` [`aaab6c3`](https://github.com/inspect-js/is-generator-function/commit/aaab6c3a331c8c8793f8f43aa1d452cc12b92c0d) +- [Dev Deps] update `jscs` [`e24641c`](https://github.com/inspect-js/is-generator-function/commit/e24641ca69ae3ee232837e9153c8b43b046cfe69) +- [Tests] up to `io.js` `v3.3`, `node` `v4.1` [`c43c5ad`](https://github.com/inspect-js/is-generator-function/commit/c43c5ade8b3b62fa27fac3e5104ab3df93278878) +- Add `npm run security` via `nsp` [`24256ca`](https://github.com/inspect-js/is-generator-function/commit/24256ca5f5308930e86c3dc75b70bbfe1033e9b6) +- Test up to `io.js` `v2.3` [`730233f`](https://github.com/inspect-js/is-generator-function/commit/730233f0ca376887c698c01799b60ee54424bf9f) +- [Tests] use pretest/posttest for linting/security [`3e6b860`](https://github.com/inspect-js/is-generator-function/commit/3e6b8603453e4d127cd1acef720f1ce214d8f69a) +- [Refactor] remove useless `Object#toString` check. [`9d4d7ac`](https://github.com/inspect-js/is-generator-function/commit/9d4d7ac23f6f2f75098903b4fe4f74e1d39a2226) +- [Dev Deps] Update `tape`, `eslint` [`34673b8`](https://github.com/inspect-js/is-generator-function/commit/34673b86aecddf149284bd8bbca5ab54e6e59694) +- Test up to `io.js` `v2.1` [`1e91585`](https://github.com/inspect-js/is-generator-function/commit/1e915850246cbd691606567850f35665a650e490) +- Test on two latest `io.js` versions. [`8702608`](https://github.com/inspect-js/is-generator-function/commit/87026087a1e3b43ba9f8dc7a5b6c2b58d572ff25) +- Test on `iojs-v1.5` and `iojs-v1.6` [`c74935e`](https://github.com/inspect-js/is-generator-function/commit/c74935ec9c187e9640f862607873aa096ddcf9fc) +- Latest `node` now supports generators. [`beb3bfe`](https://github.com/inspect-js/is-generator-function/commit/beb3bfe3d425cc0ece9a02e286727e36d53f5050) +- [Dev Deps] update `tape` [`c6e6587`](https://github.com/inspect-js/is-generator-function/commit/c6e658765c94b9edc282848f13e7bce882711c8c) +- Switch from vb.teelaun.ch to versionbadg.es for the npm version badge SVG. [`0039875`](https://github.com/inspect-js/is-generator-function/commit/0039875e6c587255470088c7867cfa314713626b) +- Test on `io.js` `v2.5` [`0017408`](https://github.com/inspect-js/is-generator-function/commit/001740801d2a29f9a25a8824b064286910601e8c) +- Test on `io.js` `v2.4` [`bc013e2`](https://github.com/inspect-js/is-generator-function/commit/bc013e20b99a89b3f592038196d69f871b39caf0) +- Test on `io.js` `v3.0` [`e195030`](https://github.com/inspect-js/is-generator-function/commit/e1950306f4e0a107101e9aeae89cfac2c18e33de) + +## [v1.0.4](https://github.com/inspect-js/is-generator-function/compare/v1.0.3...v1.0.4) - 2015-03-03 + +### Fixed + +- Add support for detecting concise generator methods. [`#2`](https://github.com/inspect-js/is-generator-function/issues/2) + +### Commits + +- All grade A-supported `node`/`iojs` versions now ship with an `npm` that understands `^`. [`6562e80`](https://github.com/inspect-js/is-generator-function/commit/6562e8015cf318056522a39d7a8e6ad121f9cf4c) +- Run `travis-ci` tests on `iojs` and `node` v0.12; speed up builds; allow 0.8 failures. [`592f768`](https://github.com/inspect-js/is-generator-function/commit/592f76853bcc5b46351d8842df7fd1483214d870) +- Test on latest `io.js` [`edca329`](https://github.com/inspect-js/is-generator-function/commit/edca329a4b3ddc19b5ac9491f7678240a73f4e0b) +- Forgot to add `replace` in 209fac444b4bd90eaa8df279457c4a15e6bba6d2 [`3ebfb38`](https://github.com/inspect-js/is-generator-function/commit/3ebfb380c73e29447689f0924248a5c801260371) +- Update `semver` [`c21baa5`](https://github.com/inspect-js/is-generator-function/commit/c21baa5acfe51e6bbe324c13ce5d4b6770ecfb27) +- Update `jscs` [`71a68f4`](https://github.com/inspect-js/is-generator-function/commit/71a68f47044af23ed2cd819d122202a59c2e6967) +- Update `tape` [`32c03cf`](https://github.com/inspect-js/is-generator-function/commit/32c03cf5701634f47c8d47fc383c97365adb3bb3) + +## [v1.0.3](https://github.com/inspect-js/is-generator-function/compare/v1.0.2...v1.0.3) - 2015-01-31 + +### Commits + +- `make release` [`209fac4`](https://github.com/inspect-js/is-generator-function/commit/209fac444b4bd90eaa8df279457c4a15e6bba6d2) +- Run tests against a faked @@toStringTag [`c9ba1ea`](https://github.com/inspect-js/is-generator-function/commit/c9ba1ea8163bd2e7a0f537da8fbaead0efa96a24) +- Add `sudo: false` to speed up travis-ci tests. [`a4b41e1`](https://github.com/inspect-js/is-generator-function/commit/a4b41e1b9c3856c671922f64bf5b7b41eb9ec0d6) +- Bail out early when typeof is not "function" [`a62e7a5`](https://github.com/inspect-js/is-generator-function/commit/a62e7a547307f5ba62a39e374f2cc2f46705eabc) + +## [v1.0.2](https://github.com/inspect-js/is-generator-function/compare/v1.0.1...v1.0.2) - 2015-01-20 + +### Commits + +- Update `tape`, `jscs` [`354d343`](https://github.com/inspect-js/is-generator-function/commit/354d3437426c274221ad21a2a580e9f31bfb07e3) +- Update `jscs` [`e0b6203`](https://github.com/inspect-js/is-generator-function/commit/e0b620323be47b3925fe3cd660c063a06cfde4aa) +- Fix tests in newer v8 (and io.js) [`36f0545`](https://github.com/inspect-js/is-generator-function/commit/36f054590d4f5fa994af5f2e7d592840bf9f9d27) + +## [v1.0.1](https://github.com/inspect-js/is-generator-function/compare/v1.0.0...v1.0.1) - 2014-12-14 + +### Commits + +- Use my standard jscs.json file. [`7624ca3`](https://github.com/inspect-js/is-generator-function/commit/7624ca3053cacec69d9a58e40c54e6635d8f980b) +- Use `make-generator-function` instead of a local module. [`9234a57`](https://github.com/inspect-js/is-generator-function/commit/9234a5771a3237baf3fe609540e74ce982fe6932) +- Adding license and downloads badges [`9463b6a`](https://github.com/inspect-js/is-generator-function/commit/9463b6a0c6bf254e213a2f5306f37e9849c8bb1a) +- Using single quotes exclusively. [`4b4d71f`](https://github.com/inspect-js/is-generator-function/commit/4b4d71f9e0d3753b6f2bd764ae910601352ff19e) +- Use SVG badges instead of PNG [`eaaaf41`](https://github.com/inspect-js/is-generator-function/commit/eaaaf41900c2e69c801062e8c7bb247bd3d2e402) +- Updating jscs. [`780758e`](https://github.com/inspect-js/is-generator-function/commit/780758ef1ae5e6a7a422fc8e3ac1265f53e33135) +- Update `tape`, `jscs` [`6b8f959`](https://github.com/inspect-js/is-generator-function/commit/6b8f95928274d770e9b66359e38c982a2b161e74) +- Update `tape`, `jscs` [`6e1334d`](https://github.com/inspect-js/is-generator-function/commit/6e1334d12899bed116ab3c4e82994fdfc8f8c279) +- Lock covert to v1.0.0. [`3dd5c74`](https://github.com/inspect-js/is-generator-function/commit/3dd5c74921a59481d5a699444a879ef0f80ef7c5) +- Updating `tape` [`99f61a3`](https://github.com/inspect-js/is-generator-function/commit/99f61a30692b7c00d06a6d29ac3022b242d4f1d4) +- Updating jscs [`171d96d`](https://github.com/inspect-js/is-generator-function/commit/171d96deef2bff8a840b0ef9563ad9366c8fcd98) +- Updating jscs [`847795e`](https://github.com/inspect-js/is-generator-function/commit/847795e9f951f5d28195f0bdb85ec26b427d2d33) +- Updating jscs [`cad09d8`](https://github.com/inspect-js/is-generator-function/commit/cad09d88873f2595545977f0ce9ed8ccde78b625) +- Updating covert [`8617860`](https://github.com/inspect-js/is-generator-function/commit/86178604dccea5b73ad2b386b275657366735529) +- Adding an .nvmrc file. [`1fa3ea4`](https://github.com/inspect-js/is-generator-function/commit/1fa3ea4f04139fdc28e2c0e553efd917be1f5744) + +## [v1.0.0](https://github.com/inspect-js/is-generator-function/compare/v0.0.0...v1.0.0) - 2014-08-09 + +### Commits + +- Adding `npm run lint` [`ed9cf0a`](https://github.com/inspect-js/is-generator-function/commit/ed9cf0a240ae8b3c4bf682e5ff37757d9eb6cffc) +- Make sure old and unstable nodes don't break Travis [`80a7ee7`](https://github.com/inspect-js/is-generator-function/commit/80a7ee782dc832869bccf857213ef76685303738) +- Updating tape [`d5f141f`](https://github.com/inspect-js/is-generator-function/commit/d5f141f0017aefb003911a1eb9c9b615069f1cf0) +- Fix npm upgrading on node 0.8 [`2ee0f08`](https://github.com/inspect-js/is-generator-function/commit/2ee0f08a56f493fb5d4299c7bda9cd52c41a98a2) +- Updating dependencies [`accf688`](https://github.com/inspect-js/is-generator-function/commit/accf688e8c20f05d0f24c1ff8efdaa24def0882c) +- Updating covert [`38d22e6`](https://github.com/inspect-js/is-generator-function/commit/38d22e6cdc939bb3f2cbfc5fff41473a694d4fe5) +- Updating tape [`49c1f00`](https://github.com/inspect-js/is-generator-function/commit/49c1f00cf5c66c87a8678d9c78a6b411cf1af986) +- Updating tape [`75cb7df`](https://github.com/inspect-js/is-generator-function/commit/75cb7dfef5254f4a9941a3bd77471cb783bb6fbd) +- Updating tape [`4142cc0`](https://github.com/inspect-js/is-generator-function/commit/4142cc092e157b92a6107112b2c3f3dc9b154367) +- Better code coverage [`1831d64`](https://github.com/inspect-js/is-generator-function/commit/1831d64d859ae8d45cc9aea30248d8cabc3d1e1d) + +## v0.0.0 - 2014-02-09 + +### Commits + +- Tests. [`f46e936`](https://github.com/inspect-js/is-generator-function/commit/f46e9368db04e0725a56e2bd0a246ab52123ed35) +- package.json [`189db32`](https://github.com/inspect-js/is-generator-function/commit/189db324e627257de94b68d1e6005c21ba74ebad) +- Initial commit [`8096cee`](https://github.com/inspect-js/is-generator-function/commit/8096ceedf7c9caece9acfd0ff4a0bd6eafa5dfdf) +- README. [`9eda97f`](https://github.com/inspect-js/is-generator-function/commit/9eda97fbc33113a519121a6515e777985730f3f7) +- Implementation. [`c5c3a8d`](https://github.com/inspect-js/is-generator-function/commit/c5c3a8d5dccae465c69958fc38c4ceba8b1354cc) +- Adding Travis CI [`9a6503e`](https://github.com/inspect-js/is-generator-function/commit/9a6503ebce8c9521c82e8ed1ec1b79bc856d0c5c) diff --git a/novas/novacore-zephyr/groq-code-cli/node_modules/is-generator-function/LICENSE b/novas/novacore-zephyr/groq-code-cli/node_modules/is-generator-function/LICENSE new file mode 100644 index 0000000000000000000000000000000000000000..47b7b5078fce38783c58381828d9a7f762db7866 --- /dev/null +++ b/novas/novacore-zephyr/groq-code-cli/node_modules/is-generator-function/LICENSE @@ -0,0 +1,20 @@ +The MIT License (MIT) + +Copyright (c) 2014 Jordan Harband + +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. diff --git a/novas/novacore-zephyr/groq-code-cli/node_modules/is-generator-function/README.md b/novas/novacore-zephyr/groq-code-cli/node_modules/is-generator-function/README.md new file mode 100644 index 0000000000000000000000000000000000000000..519a4235726a8d94f3c1c03dbd2cf16fe1636acd --- /dev/null +++ b/novas/novacore-zephyr/groq-code-cli/node_modules/is-generator-function/README.md @@ -0,0 +1,40 @@ +# is-generator-function [![Version Badge][2]][1] + +[![github actions][actions-image]][actions-url] +[![coverage][codecov-image]][codecov-url] +[![dependency status][5]][6] +[![dev dependency status][7]][8] +[![License][license-image]][license-url] +[![Downloads][downloads-image]][downloads-url] + +[![npm badge][11]][1] + +Is this a native generator function? + +## Example + +```js +var isGeneratorFunction = require('is-generator-function'); +assert(!isGeneratorFunction(function () {})); +assert(!isGeneratorFunction(null)); +assert(isGeneratorFunction(function* () { yield 42; return Infinity; })); +``` + +## Tests +Simply clone the repo, `npm install`, and run `npm test` + +[1]: https://npmjs.org/package/is-generator-function +[2]: https://versionbadg.es/inspect-js/is-generator-function.svg +[5]: https://david-dm.org/inspect-js/is-generator-function.svg +[6]: https://david-dm.org/inspect-js/is-generator-function +[7]: https://david-dm.org/inspect-js/is-generator-function/dev-status.svg +[8]: https://david-dm.org/inspect-js/is-generator-function#info=devDependencies +[11]: https://nodei.co/npm/is-generator-function.png?downloads=true&stars=true +[license-image]: https://img.shields.io/npm/l/is-generator-function.svg +[license-url]: LICENSE +[downloads-image]: https://img.shields.io/npm/dm/is-generator-function.svg +[downloads-url]: https://npm-stat.com/charts.html?package=is-generator-function +[codecov-image]: https://codecov.io/gh/inspect-js/is-generator-function/branch/main/graphs/badge.svg +[codecov-url]: https://app.codecov.io/gh/inspect-js/is-generator-function/ +[actions-image]: https://img.shields.io/endpoint?url=https://github-actions-badge-u3jn4tfpocch.runkit.sh/inspect-js/is-generator-function +[actions-url]: https://github.com/inspect-js/is-generator-function/actions diff --git a/novas/novacore-zephyr/groq-code-cli/node_modules/is-generator-function/index.d.ts b/novas/novacore-zephyr/groq-code-cli/node_modules/is-generator-function/index.d.ts new file mode 100644 index 0000000000000000000000000000000000000000..38eec07ee2f101cffcbd5bc75b29e69b2b61ed92 --- /dev/null +++ b/novas/novacore-zephyr/groq-code-cli/node_modules/is-generator-function/index.d.ts @@ -0,0 +1,3 @@ +declare function isGeneratorFunction(fn: unknown): fn is GeneratorFunction; + +export = isGeneratorFunction; \ No newline at end of file diff --git a/novas/novacore-zephyr/groq-code-cli/node_modules/is-generator-function/index.js b/novas/novacore-zephyr/groq-code-cli/node_modules/is-generator-function/index.js new file mode 100644 index 0000000000000000000000000000000000000000..01abeae02d7a50990e05438ce3daf4cdfe42feb7 --- /dev/null +++ b/novas/novacore-zephyr/groq-code-cli/node_modules/is-generator-function/index.js @@ -0,0 +1,47 @@ +'use strict'; + +var callBound = require('call-bound'); +var safeRegexTest = require('safe-regex-test'); +var isFnRegex = safeRegexTest(/^\s*(?:function)?\*/); +var hasToStringTag = require('has-tostringtag/shams')(); +var getProto = require('get-proto'); + +var toStr = callBound('Object.prototype.toString'); +var fnToStr = callBound('Function.prototype.toString'); + +var getGeneratorFunc = function () { // eslint-disable-line consistent-return + if (!hasToStringTag) { + return false; + } + try { + return Function('return function*() {}')(); + } catch (e) { + } +}; +/** @type {undefined | false | null | GeneratorFunctionConstructor} */ +var GeneratorFunction; + +/** @type {import('.')} */ +module.exports = function isGeneratorFunction(fn) { + if (typeof fn !== 'function') { + return false; + } + if (isFnRegex(fnToStr(fn))) { + return true; + } + if (!hasToStringTag) { + var str = toStr(fn); + return str === '[object GeneratorFunction]'; + } + if (!getProto) { + return false; + } + if (typeof GeneratorFunction === 'undefined') { + var generatorFunc = getGeneratorFunc(); + GeneratorFunction = generatorFunc + // eslint-disable-next-line no-extra-parens + ? /** @type {GeneratorFunctionConstructor} */ (getProto(generatorFunc)) + : false; + } + return getProto(fn) === GeneratorFunction; +}; diff --git a/novas/novacore-zephyr/groq-code-cli/node_modules/is-generator-function/package.json b/novas/novacore-zephyr/groq-code-cli/node_modules/is-generator-function/package.json new file mode 100644 index 0000000000000000000000000000000000000000..fd928a52e843ee2de84bfd3db544ba162afceba4 --- /dev/null +++ b/novas/novacore-zephyr/groq-code-cli/node_modules/is-generator-function/package.json @@ -0,0 +1,106 @@ +{ + "name": "is-generator-function", + "version": "1.1.0", + "description": "Determine if a function is a native generator function.", + "main": "index.js", + "scripts": { + "prepack": "npmignore --auto --commentLines=autogenerated", + "prepublishOnly": "safe-publish-latest", + "prepublish": "not-in-publish || npm run prepublishOnly", + "pretest": "npm run lint", + "test": "npm run tests-only", + "tests-only": "nyc npm run test:all", + "test:all": "npm run test:index && npm run test:corejs && npm run test:uglified", + "test:harmony": "node --es-staging --harmony test && node --es-staging --harmony test/corejs && node --es-staging --harmony test/uglified", + "test:index": "node test", + "test:corejs": "node test/corejs", + "test:uglified": "node test/uglified", + "posttest": "npx npm@\">= 10.2\" audit --production", + "lint": "eslint --ext=js,mjs .", + "postlint": "tsc && attw -P", + "version": "auto-changelog && git add CHANGELOG.md", + "postversion": "auto-changelog && git add CHANGELOG.md && git commit --no-edit --amend && git tag -f \"v$(node -e \"console.log(require('./package.json').version)\")\"" + }, + "repository": { + "type": "git", + "url": "git://github.com/inspect-js/is-generator-function.git" + }, + "keywords": [ + "generator", + "generator function", + "es6", + "es2015", + "yield", + "function", + "function*" + ], + "author": "Jordan Harband ", + "funding": { + "url": "https://github.com/sponsors/ljharb" + }, + "license": "MIT", + "bugs": { + "url": "https://github.com/inspect-js/is-generator-function/issues" + }, + "dependencies": { + "call-bound": "^1.0.3", + "get-proto": "^1.0.0", + "has-tostringtag": "^1.0.2", + "safe-regex-test": "^1.1.0" + }, + "devDependencies": { + "@arethetypeswrong/cli": "^0.17.2", + "@ljharb/eslint-config": "^21.1.1", + "@ljharb/tsconfig": "^0.2.3", + "@types/for-each": "^0.3.3", + "@types/make-generator-function": "^2.0.3", + "@types/tape": "^5.8.0", + "auto-changelog": "^2.5.0", + "core-js": "^2.6.5 || ^3.20.0", + "encoding": "^0.1.13", + "eslint": "=8.8.0", + "for-each": "^0.3.3", + "in-publish": "^2.0.1", + "make-generator-function": "^2.0.0", + "npmignore": "^0.3.1", + "nyc": "^10.3.2", + "safe-publish-latest": "^2.0.0", + "tape": "^5.9.0", + "typescript": "next", + "uglify-register": "^1.0.1" + }, + "testling": { + "files": "test/index.js", + "browsers": [ + "iexplore/6.0..latest", + "firefox/3.0..6.0", + "firefox/15.0..latest", + "firefox/nightly", + "chrome/4.0..10.0", + "chrome/20.0..latest", + "chrome/canary", + "opera/10.0..latest", + "opera/next", + "safari/4.0..latest", + "ipad/6.0..latest", + "iphone/6.0..latest", + "android-browser/4.2" + ] + }, + "engines": { + "node": ">= 0.4" + }, + "auto-changelog": { + "output": "CHANGELOG.md", + "template": "keepachangelog", + "unreleased": false, + "commitLimit": false, + "backfillLimit": false, + "hideCredit": true + }, + "publishConfig": { + "ignore": [ + ".github/workflows" + ] + } +} diff --git a/novas/novacore-zephyr/groq-code-cli/node_modules/is-generator-function/tsconfig.json b/novas/novacore-zephyr/groq-code-cli/node_modules/is-generator-function/tsconfig.json new file mode 100644 index 0000000000000000000000000000000000000000..4bd35288f0b1765769d5ce88f5f87149cf3cc636 --- /dev/null +++ b/novas/novacore-zephyr/groq-code-cli/node_modules/is-generator-function/tsconfig.json @@ -0,0 +1,9 @@ +{ + "extends": "@ljharb/tsconfig", + "compilerOptions": { + "maxNodeModuleJsDepth": 0 + }, + "exclude": [ + "coverage" + ] +} diff --git a/novas/novacore-zephyr/groq-code-cli/node_modules/is-glob/LICENSE b/novas/novacore-zephyr/groq-code-cli/node_modules/is-glob/LICENSE new file mode 100644 index 0000000000000000000000000000000000000000..3f2eca18f1bc0f3117748e2cea9251e5182db2f7 --- /dev/null +++ b/novas/novacore-zephyr/groq-code-cli/node_modules/is-glob/LICENSE @@ -0,0 +1,21 @@ +The MIT License (MIT) + +Copyright (c) 2014-2017, Jon Schlinkert. + +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. diff --git a/novas/novacore-zephyr/groq-code-cli/node_modules/is-glob/README.md b/novas/novacore-zephyr/groq-code-cli/node_modules/is-glob/README.md new file mode 100644 index 0000000000000000000000000000000000000000..740724b276e289aec14ee6ce99d42ab9a6eb4b48 --- /dev/null +++ b/novas/novacore-zephyr/groq-code-cli/node_modules/is-glob/README.md @@ -0,0 +1,206 @@ +# is-glob [![NPM version](https://img.shields.io/npm/v/is-glob.svg?style=flat)](https://www.npmjs.com/package/is-glob) [![NPM monthly downloads](https://img.shields.io/npm/dm/is-glob.svg?style=flat)](https://npmjs.org/package/is-glob) [![NPM total downloads](https://img.shields.io/npm/dt/is-glob.svg?style=flat)](https://npmjs.org/package/is-glob) [![Build Status](https://img.shields.io/github/workflow/status/micromatch/is-glob/dev)](https://github.com/micromatch/is-glob/actions) + +> Returns `true` if the given string looks like a glob pattern or an extglob pattern. This makes it easy to create code that only uses external modules like node-glob when necessary, resulting in much faster code execution and initialization time, and a better user experience. + +Please consider following this project's author, [Jon Schlinkert](https://github.com/jonschlinkert), and consider starring the project to show your :heart: and support. + +## Install + +Install with [npm](https://www.npmjs.com/): + +```sh +$ npm install --save is-glob +``` + +You might also be interested in [is-valid-glob](https://github.com/jonschlinkert/is-valid-glob) and [has-glob](https://github.com/jonschlinkert/has-glob). + +## Usage + +```js +var isGlob = require('is-glob'); +``` + +### Default behavior + +**True** + +Patterns that have glob characters or regex patterns will return `true`: + +```js +isGlob('!foo.js'); +isGlob('*.js'); +isGlob('**/abc.js'); +isGlob('abc/*.js'); +isGlob('abc/(aaa|bbb).js'); +isGlob('abc/[a-z].js'); +isGlob('abc/{a,b}.js'); +//=> true +``` + +Extglobs + +```js +isGlob('abc/@(a).js'); +isGlob('abc/!(a).js'); +isGlob('abc/+(a).js'); +isGlob('abc/*(a).js'); +isGlob('abc/?(a).js'); +//=> true +``` + +**False** + +Escaped globs or extglobs return `false`: + +```js +isGlob('abc/\\@(a).js'); +isGlob('abc/\\!(a).js'); +isGlob('abc/\\+(a).js'); +isGlob('abc/\\*(a).js'); +isGlob('abc/\\?(a).js'); +isGlob('\\!foo.js'); +isGlob('\\*.js'); +isGlob('\\*\\*/abc.js'); +isGlob('abc/\\*.js'); +isGlob('abc/\\(aaa|bbb).js'); +isGlob('abc/\\[a-z].js'); +isGlob('abc/\\{a,b}.js'); +//=> false +``` + +Patterns that do not have glob patterns return `false`: + +```js +isGlob('abc.js'); +isGlob('abc/def/ghi.js'); +isGlob('foo.js'); +isGlob('abc/@.js'); +isGlob('abc/+.js'); +isGlob('abc/?.js'); +isGlob(); +isGlob(null); +//=> false +``` + +Arrays are also `false` (If you want to check if an array has a glob pattern, use [has-glob](https://github.com/jonschlinkert/has-glob)): + +```js +isGlob(['**/*.js']); +isGlob(['foo.js']); +//=> false +``` + +### Option strict + +When `options.strict === false` the behavior is less strict in determining if a pattern is a glob. Meaning that +some patterns that would return `false` may return `true`. This is done so that matching libraries like [micromatch](https://github.com/micromatch/micromatch) have a chance at determining if the pattern is a glob or not. + +**True** + +Patterns that have glob characters or regex patterns will return `true`: + +```js +isGlob('!foo.js', {strict: false}); +isGlob('*.js', {strict: false}); +isGlob('**/abc.js', {strict: false}); +isGlob('abc/*.js', {strict: false}); +isGlob('abc/(aaa|bbb).js', {strict: false}); +isGlob('abc/[a-z].js', {strict: false}); +isGlob('abc/{a,b}.js', {strict: false}); +//=> true +``` + +Extglobs + +```js +isGlob('abc/@(a).js', {strict: false}); +isGlob('abc/!(a).js', {strict: false}); +isGlob('abc/+(a).js', {strict: false}); +isGlob('abc/*(a).js', {strict: false}); +isGlob('abc/?(a).js', {strict: false}); +//=> true +``` + +**False** + +Escaped globs or extglobs return `false`: + +```js +isGlob('\\!foo.js', {strict: false}); +isGlob('\\*.js', {strict: false}); +isGlob('\\*\\*/abc.js', {strict: false}); +isGlob('abc/\\*.js', {strict: false}); +isGlob('abc/\\(aaa|bbb).js', {strict: false}); +isGlob('abc/\\[a-z].js', {strict: false}); +isGlob('abc/\\{a,b}.js', {strict: false}); +//=> false +``` + +## About + +
+Contributing + +Pull requests and stars are always welcome. For bugs and feature requests, [please create an issue](../../issues/new). + +
+ +
+Running Tests + +Running and reviewing unit tests is a great way to get familiarized with a library and its API. You can install dependencies and run tests with the following command: + +```sh +$ npm install && npm test +``` + +
+ +
+Building docs + +_(This project's readme.md is generated by [verb](https://github.com/verbose/verb-generate-readme), please don't edit the readme directly. Any changes to the readme must be made in the [.verb.md](.verb.md) readme template.)_ + +To generate the readme, run the following command: + +```sh +$ npm install -g verbose/verb#dev verb-generate-readme && verb +``` + +
+ +### Related projects + +You might also be interested in these projects: + +* [assemble](https://www.npmjs.com/package/assemble): Get the rocks out of your socks! Assemble makes you fast at creating web projects… [more](https://github.com/assemble/assemble) | [homepage](https://github.com/assemble/assemble "Get the rocks out of your socks! Assemble makes you fast at creating web projects. Assemble is used by thousands of projects for rapid prototyping, creating themes, scaffolds, boilerplates, e-books, UI components, API documentation, blogs, building websit") +* [base](https://www.npmjs.com/package/base): Framework for rapidly creating high quality, server-side node.js applications, using plugins like building blocks | [homepage](https://github.com/node-base/base "Framework for rapidly creating high quality, server-side node.js applications, using plugins like building blocks") +* [update](https://www.npmjs.com/package/update): Be scalable! Update is a new, open source developer framework and CLI for automating updates… [more](https://github.com/update/update) | [homepage](https://github.com/update/update "Be scalable! Update is a new, open source developer framework and CLI for automating updates of any kind in code projects.") +* [verb](https://www.npmjs.com/package/verb): Documentation generator for GitHub projects. Verb is extremely powerful, easy to use, and is used… [more](https://github.com/verbose/verb) | [homepage](https://github.com/verbose/verb "Documentation generator for GitHub projects. Verb is extremely powerful, easy to use, and is used on hundreds of projects of all sizes to generate everything from API docs to readmes.") + +### Contributors + +| **Commits** | **Contributor** | +| --- | --- | +| 47 | [jonschlinkert](https://github.com/jonschlinkert) | +| 5 | [doowb](https://github.com/doowb) | +| 1 | [phated](https://github.com/phated) | +| 1 | [danhper](https://github.com/danhper) | +| 1 | [paulmillr](https://github.com/paulmillr) | + +### Author + +**Jon Schlinkert** + +* [GitHub Profile](https://github.com/jonschlinkert) +* [Twitter Profile](https://twitter.com/jonschlinkert) +* [LinkedIn Profile](https://linkedin.com/in/jonschlinkert) + +### License + +Copyright © 2019, [Jon Schlinkert](https://github.com/jonschlinkert). +Released under the [MIT License](LICENSE). + +*** + +_This file was generated by [verb-generate-readme](https://github.com/verbose/verb-generate-readme), v0.8.0, on March 27, 2019._ \ No newline at end of file diff --git a/novas/novacore-zephyr/groq-code-cli/node_modules/is-glob/index.js b/novas/novacore-zephyr/groq-code-cli/node_modules/is-glob/index.js new file mode 100644 index 0000000000000000000000000000000000000000..620f563eccf081ce0d2db2dda5c9989baf778183 --- /dev/null +++ b/novas/novacore-zephyr/groq-code-cli/node_modules/is-glob/index.js @@ -0,0 +1,150 @@ +/*! + * is-glob + * + * Copyright (c) 2014-2017, Jon Schlinkert. + * Released under the MIT License. + */ + +var isExtglob = require('is-extglob'); +var chars = { '{': '}', '(': ')', '[': ']'}; +var strictCheck = function(str) { + if (str[0] === '!') { + return true; + } + var index = 0; + var pipeIndex = -2; + var closeSquareIndex = -2; + var closeCurlyIndex = -2; + var closeParenIndex = -2; + var backSlashIndex = -2; + while (index < str.length) { + if (str[index] === '*') { + return true; + } + + if (str[index + 1] === '?' && /[\].+)]/.test(str[index])) { + return true; + } + + if (closeSquareIndex !== -1 && str[index] === '[' && str[index + 1] !== ']') { + if (closeSquareIndex < index) { + closeSquareIndex = str.indexOf(']', index); + } + if (closeSquareIndex > index) { + if (backSlashIndex === -1 || backSlashIndex > closeSquareIndex) { + return true; + } + backSlashIndex = str.indexOf('\\', index); + if (backSlashIndex === -1 || backSlashIndex > closeSquareIndex) { + return true; + } + } + } + + if (closeCurlyIndex !== -1 && str[index] === '{' && str[index + 1] !== '}') { + closeCurlyIndex = str.indexOf('}', index); + if (closeCurlyIndex > index) { + backSlashIndex = str.indexOf('\\', index); + if (backSlashIndex === -1 || backSlashIndex > closeCurlyIndex) { + return true; + } + } + } + + if (closeParenIndex !== -1 && str[index] === '(' && str[index + 1] === '?' && /[:!=]/.test(str[index + 2]) && str[index + 3] !== ')') { + closeParenIndex = str.indexOf(')', index); + if (closeParenIndex > index) { + backSlashIndex = str.indexOf('\\', index); + if (backSlashIndex === -1 || backSlashIndex > closeParenIndex) { + return true; + } + } + } + + if (pipeIndex !== -1 && str[index] === '(' && str[index + 1] !== '|') { + if (pipeIndex < index) { + pipeIndex = str.indexOf('|', index); + } + if (pipeIndex !== -1 && str[pipeIndex + 1] !== ')') { + closeParenIndex = str.indexOf(')', pipeIndex); + if (closeParenIndex > pipeIndex) { + backSlashIndex = str.indexOf('\\', pipeIndex); + if (backSlashIndex === -1 || backSlashIndex > closeParenIndex) { + return true; + } + } + } + } + + if (str[index] === '\\') { + var open = str[index + 1]; + index += 2; + var close = chars[open]; + + if (close) { + var n = str.indexOf(close, index); + if (n !== -1) { + index = n + 1; + } + } + + if (str[index] === '!') { + return true; + } + } else { + index++; + } + } + return false; +}; + +var relaxedCheck = function(str) { + if (str[0] === '!') { + return true; + } + var index = 0; + while (index < str.length) { + if (/[*?{}()[\]]/.test(str[index])) { + return true; + } + + if (str[index] === '\\') { + var open = str[index + 1]; + index += 2; + var close = chars[open]; + + if (close) { + var n = str.indexOf(close, index); + if (n !== -1) { + index = n + 1; + } + } + + if (str[index] === '!') { + return true; + } + } else { + index++; + } + } + return false; +}; + +module.exports = function isGlob(str, options) { + if (typeof str !== 'string' || str === '') { + return false; + } + + if (isExtglob(str)) { + return true; + } + + var check = strictCheck; + + // optionally relax check + if (options && options.strict === false) { + check = relaxedCheck; + } + + return check(str); +}; diff --git a/novas/novacore-zephyr/groq-code-cli/node_modules/is-glob/package.json b/novas/novacore-zephyr/groq-code-cli/node_modules/is-glob/package.json new file mode 100644 index 0000000000000000000000000000000000000000..858af0378e9d36813353b51271aec88ee0d3328b --- /dev/null +++ b/novas/novacore-zephyr/groq-code-cli/node_modules/is-glob/package.json @@ -0,0 +1,81 @@ +{ + "name": "is-glob", + "description": "Returns `true` if the given string looks like a glob pattern or an extglob pattern. This makes it easy to create code that only uses external modules like node-glob when necessary, resulting in much faster code execution and initialization time, and a better user experience.", + "version": "4.0.3", + "homepage": "https://github.com/micromatch/is-glob", + "author": "Jon Schlinkert (https://github.com/jonschlinkert)", + "contributors": [ + "Brian Woodward (https://twitter.com/doowb)", + "Daniel Perez (https://tuvistavie.com)", + "Jon Schlinkert (http://twitter.com/jonschlinkert)" + ], + "repository": "micromatch/is-glob", + "bugs": { + "url": "https://github.com/micromatch/is-glob/issues" + }, + "license": "MIT", + "files": [ + "index.js" + ], + "main": "index.js", + "engines": { + "node": ">=0.10.0" + }, + "scripts": { + "test": "mocha && node benchmark.js" + }, + "dependencies": { + "is-extglob": "^2.1.1" + }, + "devDependencies": { + "gulp-format-md": "^0.1.10", + "mocha": "^3.0.2" + }, + "keywords": [ + "bash", + "braces", + "check", + "exec", + "expression", + "extglob", + "glob", + "globbing", + "globstar", + "is", + "match", + "matches", + "pattern", + "regex", + "regular", + "string", + "test" + ], + "verb": { + "layout": "default", + "plugins": [ + "gulp-format-md" + ], + "related": { + "list": [ + "assemble", + "base", + "update", + "verb" + ] + }, + "reflinks": [ + "assemble", + "bach", + "base", + "composer", + "gulp", + "has-glob", + "is-valid-glob", + "micromatch", + "npm", + "scaffold", + "verb", + "vinyl" + ] + } +} diff --git a/novas/novacore-zephyr/groq-code-cli/node_modules/is-in-ci/cli.js b/novas/novacore-zephyr/groq-code-cli/node_modules/is-in-ci/cli.js new file mode 100644 index 0000000000000000000000000000000000000000..b86403c899f102c621fd3e34c9a697874a263524 --- /dev/null +++ b/novas/novacore-zephyr/groq-code-cli/node_modules/is-in-ci/cli.js @@ -0,0 +1,5 @@ +#!/usr/bin/env node +import process from 'node:process'; +import isInCi from './index.js'; + +process.exit(isInCi ? 0 : 1); diff --git a/novas/novacore-zephyr/groq-code-cli/node_modules/is-in-ci/index.d.ts b/novas/novacore-zephyr/groq-code-cli/node_modules/is-in-ci/index.d.ts new file mode 100644 index 0000000000000000000000000000000000000000..bb1357a2088d28e980122dbf92264220684f80f5 --- /dev/null +++ b/novas/novacore-zephyr/groq-code-cli/node_modules/is-in-ci/index.d.ts @@ -0,0 +1,15 @@ +/** +Check if the process is running in a Continuous Integration (CI) environment. + +@example +``` +import isInCi from 'is-in-ci'; + +if (isInCi) { + console.log('Running in a CI environment'); +} +``` +*/ +declare const isInCi: boolean; + +export default isInCi; diff --git a/novas/novacore-zephyr/groq-code-cli/node_modules/is-in-ci/index.js b/novas/novacore-zephyr/groq-code-cli/node_modules/is-in-ci/index.js new file mode 100644 index 0000000000000000000000000000000000000000..eac237a6834caeba53a3d5e0b439cba79658ed11 --- /dev/null +++ b/novas/novacore-zephyr/groq-code-cli/node_modules/is-in-ci/index.js @@ -0,0 +1,11 @@ +import {env} from 'node:process'; + +const isInCi = env.CI !== '0' + && env.CI !== 'false' + && ( + 'CI' in env + || 'CONTINUOUS_INTEGRATION' in env + || Object.keys(env).some(key => key.startsWith('CI_')) + ); + +export default isInCi; diff --git a/novas/novacore-zephyr/groq-code-cli/node_modules/is-in-ci/license b/novas/novacore-zephyr/groq-code-cli/node_modules/is-in-ci/license new file mode 100644 index 0000000000000000000000000000000000000000..fa7ceba3eb4a9657a9db7f3ffca4e4e97a9019de --- /dev/null +++ b/novas/novacore-zephyr/groq-code-cli/node_modules/is-in-ci/license @@ -0,0 +1,9 @@ +MIT License + +Copyright (c) Sindre Sorhus (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. diff --git a/novas/novacore-zephyr/groq-code-cli/node_modules/is-in-ci/package.json b/novas/novacore-zephyr/groq-code-cli/node_modules/is-in-ci/package.json new file mode 100644 index 0000000000000000000000000000000000000000..8fd00e1f33b0586abcb04e084ca7086076ed368a --- /dev/null +++ b/novas/novacore-zephyr/groq-code-cli/node_modules/is-in-ci/package.json @@ -0,0 +1,49 @@ +{ + "name": "is-in-ci", + "version": "1.0.0", + "description": "Check if the process is running in a Continuous Integration (CI) environment", + "license": "MIT", + "repository": "sindresorhus/is-in-ci", + "funding": "https://github.com/sponsors/sindresorhus", + "author": { + "name": "Sindre Sorhus", + "email": "sindresorhus@gmail.com", + "url": "https://sindresorhus.com" + }, + "type": "module", + "bin": "./cli.js", + "exports": { + "types": "./index.d.ts", + "default": "./index.js" + }, + "sideEffects": false, + "engines": { + "node": ">=18" + }, + "scripts": { + "test": "xo && CI=1 ava && tsc index.d.ts" + }, + "files": [ + "index.js", + "index.d.ts", + "cli.js" + ], + "keywords": [ + "ci", + "continuous", + "integration", + "environment", + "server", + "check", + "detect", + "determine", + "test", + "cli", + "cli-app" + ], + "devDependencies": { + "ava": "^5.3.1", + "typescript": "^5.2.2", + "xo": "^0.56.0" + } +} diff --git a/novas/novacore-zephyr/groq-code-cli/node_modules/is-in-ci/readme.md b/novas/novacore-zephyr/groq-code-cli/node_modules/is-in-ci/readme.md new file mode 100644 index 0000000000000000000000000000000000000000..6eeffb7b0927fbab9c88c043f905f22a36644a96 --- /dev/null +++ b/novas/novacore-zephyr/groq-code-cli/node_modules/is-in-ci/readme.md @@ -0,0 +1,44 @@ +# is-in-ci + +> Check if the process is running in a [Continuous Integration](https://en.wikipedia.org/wiki/Continuous_integration) (CI) environment + +## Install + +```sh +npm install is-in-ci +``` + +## Usage + +```js +import isInCi from 'is-in-ci'; + +if (isInCi) { + console.log('Running in a CI environment'); +} +``` + +It looks for these environment variables: `CI`, `CONTINUOUS_INTEGRATION`, or any with a `CI_` prefix. + +## CLI + +```sh +is-in-ci && echo 'Running in a CI environment' +``` + +Exits with code `0` in CI environments and `1` otherwise. + +## FAQ + +### How can I add a CI service? + +Request the CI service to include the `CI` environment variable. Most already do. + +### How is this different from [`is-ci`](https://github.com/watson/is-ci)? + +The `is-ci` package attempts to detect every CI service, which is unsustainable. It also has a higher risk of false-positives. For example, it detects the environment variable `RUN_ID` as CI-specific, although other services could use it. Constant updates for new CIs create version fragmentation, resulting in inconsistent behavior across dependent packages. Pushing for CI services to use a standardized CI environment variable is a more robust solution. + +## Related + +- [is-inside-container](https://github.com/sindresorhus/is-inside-container) - Check if the process is running inside a container +- [is-interactive](https://github.com/sindresorhus/is-interactive) - Check if stdout or stderr is interactive diff --git a/novas/novacore-zephyr/groq-code-cli/node_modules/is-inside-container/cli.js b/novas/novacore-zephyr/groq-code-cli/node_modules/is-inside-container/cli.js new file mode 100644 index 0000000000000000000000000000000000000000..b39acaca64e822f0e4b206e7f9fe760e66926e26 --- /dev/null +++ b/novas/novacore-zephyr/groq-code-cli/node_modules/is-inside-container/cli.js @@ -0,0 +1,5 @@ +#!/usr/bin/env node +import process from 'node:process'; +import isInsideContainer from './index.js'; + +process.exitCode = isInsideContainer() ? 0 : 2; diff --git a/novas/novacore-zephyr/groq-code-cli/node_modules/is-inside-container/index.d.ts b/novas/novacore-zephyr/groq-code-cli/node_modules/is-inside-container/index.d.ts new file mode 100644 index 0000000000000000000000000000000000000000..3bfc2caf7d29f41e2d1bead8e26fe39a37412270 --- /dev/null +++ b/novas/novacore-zephyr/groq-code-cli/node_modules/is-inside-container/index.d.ts @@ -0,0 +1,13 @@ +/** +Check if the process is running inside a container. + +@example +``` +import isInsideContainer from 'is-inside-container'; + +if (isInsideContainer()) { + console.log('Running inside a container'); +} +``` +*/ +export default function isInsideContainer(): boolean; diff --git a/novas/novacore-zephyr/groq-code-cli/node_modules/is-inside-container/index.js b/novas/novacore-zephyr/groq-code-cli/node_modules/is-inside-container/index.js new file mode 100644 index 0000000000000000000000000000000000000000..2c806d2cff7b697c10a1c1d8e7b02f2b74fe8488 --- /dev/null +++ b/novas/novacore-zephyr/groq-code-cli/node_modules/is-inside-container/index.js @@ -0,0 +1,23 @@ +import fs from 'node:fs'; +import isDocker from 'is-docker'; + +let cachedResult; + +// Podman detection +const hasContainerEnv = () => { + try { + fs.statSync('/run/.containerenv'); + return true; + } catch { + return false; + } +}; + +export default function isInsideContainer() { + // TODO: Use `??=` when targeting Node.js 16. + if (cachedResult === undefined) { + cachedResult = hasContainerEnv() || isDocker(); + } + + return cachedResult; +} diff --git a/novas/novacore-zephyr/groq-code-cli/node_modules/is-inside-container/license b/novas/novacore-zephyr/groq-code-cli/node_modules/is-inside-container/license new file mode 100644 index 0000000000000000000000000000000000000000..fa7ceba3eb4a9657a9db7f3ffca4e4e97a9019de --- /dev/null +++ b/novas/novacore-zephyr/groq-code-cli/node_modules/is-inside-container/license @@ -0,0 +1,9 @@ +MIT License + +Copyright (c) Sindre Sorhus (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. diff --git a/novas/novacore-zephyr/groq-code-cli/node_modules/is-inside-container/package.json b/novas/novacore-zephyr/groq-code-cli/node_modules/is-inside-container/package.json new file mode 100644 index 0000000000000000000000000000000000000000..7d47e23ce3e27290878bc5f07d63c05e7ff26600 --- /dev/null +++ b/novas/novacore-zephyr/groq-code-cli/node_modules/is-inside-container/package.json @@ -0,0 +1,51 @@ +{ + "name": "is-inside-container", + "version": "1.0.0", + "description": "Check if the process is running inside a container (Docker/Podman)", + "license": "MIT", + "repository": "sindresorhus/is-inside-container", + "funding": "https://github.com/sponsors/sindresorhus", + "author": { + "name": "Sindre Sorhus", + "email": "sindresorhus@gmail.com", + "url": "https://sindresorhus.com" + }, + "type": "module", + "exports": { + "types": "./index.d.ts", + "default": "./index.js" + }, + "bin": "./cli.js", + "engines": { + "node": ">=14.16" + }, + "scripts": { + "test": "xo && NODE_OPTIONS='--loader=esmock --no-warnings' ava && tsd" + }, + "files": [ + "index.js", + "index.d.ts", + "cli.js" + ], + "keywords": [ + "detect", + "inside", + "container", + "docker", + "dockerized", + "podman", + "is", + "env", + "environment", + "process" + ], + "dependencies": { + "is-docker": "^3.0.0" + }, + "devDependencies": { + "ava": "^5.2.0", + "esmock": "^2.1.0", + "tsd": "^0.25.0", + "xo": "^0.53.1" + } +} diff --git a/novas/novacore-zephyr/groq-code-cli/node_modules/is-inside-container/readme.md b/novas/novacore-zephyr/groq-code-cli/node_modules/is-inside-container/readme.md new file mode 100644 index 0000000000000000000000000000000000000000..c2a580d04113de8525846b5857a37da4703fbde5 --- /dev/null +++ b/novas/novacore-zephyr/groq-code-cli/node_modules/is-inside-container/readme.md @@ -0,0 +1,36 @@ +# is-inside-container + +> Check if the process is running inside a container + +## Install + +```sh +npm install is-inside-container +``` + +## Usage + +```js +import isInsideContainer from 'is-inside-container'; + +if (isInsideContainer()) { + console.log('Running inside a container'); +} +``` + +## CLI + +```sh +is-inside-container +``` + +Exits with code 0 if inside a container and 2 if not. + +## Supported containers + +- Docker +- Podman + +## Related + +- [is-docker](https://github.com/sindresorhus/is-docker) - Check if the process is running inside a Docker container diff --git a/novas/novacore-zephyr/groq-code-cli/node_modules/is-map/.editorconfig b/novas/novacore-zephyr/groq-code-cli/node_modules/is-map/.editorconfig new file mode 100644 index 0000000000000000000000000000000000000000..8f9d77e2dc2ccfe65326efc167617a2f85fd5e30 --- /dev/null +++ b/novas/novacore-zephyr/groq-code-cli/node_modules/is-map/.editorconfig @@ -0,0 +1,15 @@ +root = true + +[*] +indent_style = tab +end_of_line = lf +charset = utf-8 +trim_trailing_whitespace = true +insert_final_newline = true + +[{package.json,*.yml}] +indent_style = space +indent_size = 2 + +[*.md] +trim_trailing_whitespace = false diff --git a/novas/novacore-zephyr/groq-code-cli/node_modules/is-map/.eslintrc b/novas/novacore-zephyr/groq-code-cli/node_modules/is-map/.eslintrc new file mode 100644 index 0000000000000000000000000000000000000000..3b5d9e90ec405f85dd7f9066656efccc51193697 --- /dev/null +++ b/novas/novacore-zephyr/groq-code-cli/node_modules/is-map/.eslintrc @@ -0,0 +1,5 @@ +{ + "root": true, + + "extends": "@ljharb", +} diff --git a/novas/novacore-zephyr/groq-code-cli/node_modules/is-map/.gitattributes b/novas/novacore-zephyr/groq-code-cli/node_modules/is-map/.gitattributes new file mode 100644 index 0000000000000000000000000000000000000000..176a458f94e0ea5272ce67c36bf30b6be9caf623 --- /dev/null +++ b/novas/novacore-zephyr/groq-code-cli/node_modules/is-map/.gitattributes @@ -0,0 +1 @@ +* text=auto diff --git a/novas/novacore-zephyr/groq-code-cli/node_modules/is-map/.nycrc b/novas/novacore-zephyr/groq-code-cli/node_modules/is-map/.nycrc new file mode 100644 index 0000000000000000000000000000000000000000..bdd626ce91477abbdd489b79988baebadbd3c897 --- /dev/null +++ b/novas/novacore-zephyr/groq-code-cli/node_modules/is-map/.nycrc @@ -0,0 +1,9 @@ +{ + "all": true, + "check-coverage": false, + "reporter": ["text-summary", "text", "html", "json"], + "exclude": [ + "coverage", + "test" + ] +} diff --git a/novas/novacore-zephyr/groq-code-cli/node_modules/is-map/CHANGELOG.md b/novas/novacore-zephyr/groq-code-cli/node_modules/is-map/CHANGELOG.md new file mode 100644 index 0000000000000000000000000000000000000000..db726ef4abe2409453b17b28f575e976ebc6b6d4 --- /dev/null +++ b/novas/novacore-zephyr/groq-code-cli/node_modules/is-map/CHANGELOG.md @@ -0,0 +1,89 @@ +# Changelog + +All notable changes to this project will be documented in this file. + +The format is based on [Keep a Changelog](https://keepachangelog.com/en/1.0.0/) +and this project adheres to [Semantic Versioning](https://semver.org/spec/v2.0.0.html). + +## [v2.0.3](https://github.com/inspect-js/is-map/compare/v2.0.2...v2.0.3) - 2024-03-08 + +### Commits + +- [actions] reuse common workflows [`ce10d0f`](https://github.com/inspect-js/is-map/commit/ce10d0f82fcec150b5d283202c1988887d618895) +- [meta] use `npmignore` to autogenerate an npmignore file [`e07e23a`](https://github.com/inspect-js/is-map/commit/e07e23affca99f469937dade44abc02e05a26739) +- add types [`cd13cfb`](https://github.com/inspect-js/is-map/commit/cd13cfb54647def94a0df9a276a92298891f7bdd) +- [actions] use `node/install` instead of `node/run`; use `codecov` action [`1e055f9`](https://github.com/inspect-js/is-map/commit/1e055f9ea79c6c7cb6f8182e644c08ae167d358b) +- [Dev Deps] update `eslint`, `@ljharb/eslint-config`, `object-inspect`, `safe-publish-latest`, `tape` [`12d125e`](https://github.com/inspect-js/is-map/commit/12d125ef5bd4d6cf0468f406bf3dd3b873aa3af9) +- [Dev Deps] update `eslint`, `@ljharb/eslint-config`, `aud`, `auto-changelog`, `es5-shim`, `object-inspect`, `tape` [`adfb18e`](https://github.com/inspect-js/is-map/commit/adfb18ee26fa3ecadfdb16657a5423dda4248ca3) +- [actions] remove redundant finisher [`c5511b7`](https://github.com/inspect-js/is-map/commit/c5511b79c739a08f7da40b9cae2391d10b4b613c) +- [Dev Deps] update `@ljharb/eslint-config`, `aud`, `es6-shim`, `npmignore`, `object-inspect`, `tape` [`b2c7d67`](https://github.com/inspect-js/is-map/commit/b2c7d674d2e78f5fb67a7e69b83ae177255fb8da) +- [actions] update rebase action to use reusable workflow [`bbad644`](https://github.com/inspect-js/is-map/commit/bbad64428c5b777070ed86130669211ec1645714) +- [actions] update codecov uploader [`8f57f98`](https://github.com/inspect-js/is-map/commit/8f57f98d3e3897fa82e87a155f05b7fdb174c222) +- [Dev Deps] update `eslint`, `@ljharb/eslint-config`, `auto-changelog`, `es5-shim`, `object-inspect`, `tape` [`d330ff4`](https://github.com/inspect-js/is-map/commit/d330ff4cbdbbce8402da928cab040e2c85126506) +- [Dev Deps] update `eslint`, `@ljharb/eslint-config`, `aud`, `object-inspect`, `tape` [`454e31c`](https://github.com/inspect-js/is-map/commit/454e31ccecaa2ac78c7397afe2b0101576ad5b11) +- [Dev Deps] update `eslint`, `@ljharb/eslint-config`, `es5-shim`, `tape` [`b43283d`](https://github.com/inspect-js/is-map/commit/b43283dcd906d2024d2b78448bf8b679922d791b) +- [readme] add actions and codecov badges [`0fc119e`](https://github.com/inspect-js/is-map/commit/0fc119ed01da39b3444478f7912447f6f298339f) +- [Dev Deps] update `eslint`, `object-inspect` [`e2311f8`](https://github.com/inspect-js/is-map/commit/e2311f8984f2e2efda5011b4636275bfa7b17e8d) +- [meta] add missing `engines.node` [`9bddaf2`](https://github.com/inspect-js/is-map/commit/9bddaf20a47fc5f359d171c8a7d43ac667d4680d) +- [meta] use `prepublishOnly` script for npm 7+ [`d3b7661`](https://github.com/inspect-js/is-map/commit/d3b76613fcd34381a1ccdf17f4ab6e3e892dfc5f) +- [Dev Deps] update `safe-publish-latest` [`00d7b69`](https://github.com/inspect-js/is-map/commit/00d7b69c315b9404b49c8d0ca85774f739f25a61) +- [meta] add `sideEffects` flag [`bab4457`](https://github.com/inspect-js/is-map/commit/bab445707d11d590f2650f43b58bf9fa8dd664d1) + +## [v2.0.2](https://github.com/inspect-js/is-map/compare/v2.0.1...v2.0.2) - 2020-12-13 + +### Commits + +- [Tests] migrate tests to Github Actions [`349a036`](https://github.com/inspect-js/is-map/commit/349a0362a744d024937a4356134389cbebf0c1a7) +- [meta] do not publish github action workflow files [`f473ae7`](https://github.com/inspect-js/is-map/commit/f473ae777d15c5d247002f5aaa52ed4ada3a5dd4) +- [Dev Deps] update `eslint`, `@ljharb/eslint-config`, `aud`, `auto-changelog`, `es6-shim`, `object-inspect`, `tape` [`12dbda3`](https://github.com/inspect-js/is-map/commit/12dbda37a97c0dab0a3874a6cff086cd44f1c94c) +- [Tests] run `nyc` on all tests; use `tape` runner; add `core-js` tests [`b280737`](https://github.com/inspect-js/is-map/commit/b280737c513588fef4b88c16328627744c8ab946) +- [actions] add "Allow Edits" workflow [`d8dcf17`](https://github.com/inspect-js/is-map/commit/d8dcf17dd6b1cc09b8de369aa87188f469297b7c) +- [readme] remove travis badge [`eab86f9`](https://github.com/inspect-js/is-map/commit/eab86f94cca4941861784e5eb8b7ca05e847e0b5) +- [Dev Deps] update `eslint`, `@ljharb/eslint-config`, `tape` [`9c87af5`](https://github.com/inspect-js/is-map/commit/9c87af5008a4ff79bffc3a6de55bf2d65979db6d) +- [actions] switch Automatic Rease workflow to `pull_request_tarbget` event [`71647b8`](https://github.com/inspect-js/is-map/commit/71647b805066ecbc096d5742fd69046d22f2b5c4) +- [Dev Deps] update `es5-shim`, `tape` [`3a91230`](https://github.com/inspect-js/is-map/commit/3a912305d7d836e8d6e4f80e9047e3beff8ea887) +- [Dev Deps] update `auto-changelog`; add `aud` [`d3cd3da`](https://github.com/inspect-js/is-map/commit/d3cd3da9008756a02c2b26b45292c477bf9594a9) +- [Tests] only audit prod deps [`83ef327`](https://github.com/inspect-js/is-map/commit/83ef327c62d54a48193bf95ed8cb6c4dff0a2035) +- [meta] normalize line endings [`81a9eec`](https://github.com/inspect-js/is-map/commit/81a9eec713f8e309fa1f0ffb7e4b154c359b367b) + +## [v2.0.1](https://github.com/inspect-js/is-map/compare/v2.0.0...v2.0.1) - 2019-12-17 + +### Fixed + +- [Refactor] avoid top-level return, because babel and webpack are broken [`#5`](https://github.com/inspect-js/is-map/issues/5) [`#4`](https://github.com/inspect-js/is-map/issues/4) [`#3`](https://github.com/inspect-js/is-map/issues/3) [`#78`](https://github.com/inspect-js/node-deep-equal/issues/78) [`#7`](https://github.com/es-shims/Promise.allSettled/issues/7) [`#12`](https://github.com/airbnb/js-shims/issues/12) + +### Commits + +- [actions] add automatic rebasing / merge commit blocking [`743f29f`](https://github.com/inspect-js/is-map/commit/743f29fc527b4a8a56a7045ad3d56ecfc798b1a3) +- [Dev Deps] update `eslint`, `@ljharb/eslint-config`, `tape` [`8ced854`](https://github.com/inspect-js/is-map/commit/8ced854c842c86cb126b86618cb4f90ef6a04f2b) + +## [v2.0.0](https://github.com/inspect-js/is-map/compare/v1.0.1...v2.0.0) - 2019-11-12 + +### Commits + +- Initial commit [`38592bc`](https://github.com/inspect-js/is-map/commit/38592bcb928d97b244cca6cee91142a44bcf5ab1) +- Tests [`ca54632`](https://github.com/inspect-js/is-map/commit/ca546326943385052e8b5a04377f1f8b110b7306) +- readme [`9ad8bb6`](https://github.com/inspect-js/is-map/commit/9ad8bb6bc2fb295ada21e1cd901c89aa55acad37) +- implementation [`03e1dbc`](https://github.com/inspect-js/is-map/commit/03e1dbc64eb09e6caba919c9ae5662992f0a9b52) +- npm init [`d05ce8b`](https://github.com/inspect-js/is-map/commit/d05ce8b0ad797c97ed23a7730a9e211e5fe0fe92) +- [meta] add `funding` field; create `FUNDING.yml` [`2d56b4e`](https://github.com/inspect-js/is-map/commit/2d56b4e2a44e6eb4557d9d192a863c92b68c6597) +- [meta] add `safe-publish-latest`, `auto-changelog` [`2ebecb5`](https://github.com/inspect-js/is-map/commit/2ebecb5a3fe5fa682d5d04d1cd87f4d88ba22ec9) +- [Tests] add `npm run lint` [`ddc3e32`](https://github.com/inspect-js/is-map/commit/ddc3e320c3d181b9111dd3a86df486604710e08c) +- [Tests] use shared travis-ci configs [`69f6d9c`](https://github.com/inspect-js/is-map/commit/69f6d9c52a06dda27419eb41572b8db6009f6d49) +- Only apps should have lockfiles [`408cccd`](https://github.com/inspect-js/is-map/commit/408cccdc824c017547573d816b2201e9cfb9a292) +- [Tests] add `npx aud` in `posttest` [`5eadb02`](https://github.com/inspect-js/is-map/commit/5eadb02075754732df3532bc2e98ca6307c46537) + +## [v1.0.1](https://github.com/inspect-js/is-map/compare/v1.0.0...v1.0.1) - 2015-07-02 + +### Commits + +- small tweaks [`2bd7622`](https://github.com/inspect-js/is-map/commit/2bd762263930d4f72eedd3a54678e1692062d53f) +- Add `related` section to readme [`3231e74`](https://github.com/inspect-js/is-map/commit/3231e748fbf1d4d7d1662b8a559e73cc1e69468b) +- Update license info in `readme.md` [`3a03b38`](https://github.com/inspect-js/is-map/commit/3a03b387b798d5eda09965dcf63e0c9fb9c7ddac) +- editorconfig: indent yml using 2 spaces [`d724177`](https://github.com/inspect-js/is-map/commit/d724177b7eb103174cd9ca1dce4a914e3dfdb1cd) + +## v1.0.0 - 2015-02-18 + +### Commits + +- init [`73b9f38`](https://github.com/inspect-js/is-map/commit/73b9f38e3d3c0435e639a7e054714d71b6ddae9b) diff --git a/novas/novacore-zephyr/groq-code-cli/node_modules/is-map/LICENSE b/novas/novacore-zephyr/groq-code-cli/node_modules/is-map/LICENSE new file mode 100644 index 0000000000000000000000000000000000000000..c05eb206bdf4955213919987028657acd99ed92c --- /dev/null +++ b/novas/novacore-zephyr/groq-code-cli/node_modules/is-map/LICENSE @@ -0,0 +1,21 @@ +MIT License + +Copyright (c) 2019 Inspect JS + +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. diff --git a/novas/novacore-zephyr/groq-code-cli/node_modules/is-map/README.md b/novas/novacore-zephyr/groq-code-cli/node_modules/is-map/README.md new file mode 100644 index 0000000000000000000000000000000000000000..c5fd9dd492021dc0f0dac82699746aacaff3b85d --- /dev/null +++ b/novas/novacore-zephyr/groq-code-cli/node_modules/is-map/README.md @@ -0,0 +1,52 @@ +# is-map [![Version Badge][2]][1] + +[![github actions][actions-image]][actions-url] +[![coverage][codecov-image]][codecov-url] +[![dependency status][5]][6] +[![dev dependency status][7]][8] +[![License][license-image]][license-url] +[![Downloads][downloads-image]][downloads-url] + +[![npm badge][11]][1] + +Is this value a JS Map? This module works cross-realm/iframe, and despite ES6 @@toStringTag. + +## Example + +```js +var isMap = require('is-map'); +assert(!isMap(function () {})); +assert(!isMap(null)); +assert(!isMap(function* () { yield 42; return Infinity; }); +assert(!isMap(Symbol('foo'))); +assert(!isMap(1n)); +assert(!isMap(Object(1n))); + +assert(!isMap(new Set())); +assert(!isMap(new WeakSet())); +assert(!isMap(new WeakMap())); + +assert(isMap(new Map())); + +class MyMap extends Map {} +assert(isMap(new MyMap())); +``` + +## Tests +Simply clone the repo, `npm install`, and run `npm test` + +[1]: https://npmjs.org/package/is-map +[2]: https://versionbadg.es/inspect-js/is-map.svg +[5]: https://david-dm.org/inspect-js/is-map.svg +[6]: https://david-dm.org/inspect-js/is-map +[7]: https://david-dm.org/inspect-js/is-map/dev-status.svg +[8]: https://david-dm.org/inspect-js/is-map#info=devDependencies +[11]: https://nodei.co/npm/is-map.png?downloads=true&stars=true +[license-image]: https://img.shields.io/npm/l/is-map.svg +[license-url]: LICENSE +[downloads-image]: https://img.shields.io/npm/dm/is-map.svg +[downloads-url]: https://npm-stat.com/charts.html?package=is-map +[codecov-image]: https://codecov.io/gh/inspect-js/is-map/branch/main/graphs/badge.svg +[codecov-url]: https://app.codecov.io/gh/inspect-js/is-map/ +[actions-image]: https://img.shields.io/endpoint?url=https://github-actions-badge-u3jn4tfpocch.runkit.sh/inspect-js/is-map +[actions-url]: https://github.com/inspect-js/is-map/actions diff --git a/novas/novacore-zephyr/groq-code-cli/node_modules/is-map/index.d.ts b/novas/novacore-zephyr/groq-code-cli/node_modules/is-map/index.d.ts new file mode 100644 index 0000000000000000000000000000000000000000..650f08ff72cb1c086b89f2547ef00fe3ab6ecff9 --- /dev/null +++ b/novas/novacore-zephyr/groq-code-cli/node_modules/is-map/index.d.ts @@ -0,0 +1,3 @@ +declare function isMap(x: unknown): x is Map; + +export = isMap; \ No newline at end of file diff --git a/novas/novacore-zephyr/groq-code-cli/node_modules/is-map/index.js b/novas/novacore-zephyr/groq-code-cli/node_modules/is-map/index.js new file mode 100644 index 0000000000000000000000000000000000000000..44063d0c8da1b11669701d3f1b7e7e9c4a311035 --- /dev/null +++ b/novas/novacore-zephyr/groq-code-cli/node_modules/is-map/index.js @@ -0,0 +1,47 @@ +'use strict'; + +/** @const */ +var $Map = typeof Map === 'function' && Map.prototype ? Map : null; +var $Set = typeof Set === 'function' && Set.prototype ? Set : null; + +var exported; + +if (!$Map) { + /** @type {import('.')} */ + // eslint-disable-next-line no-unused-vars + exported = function isMap(x) { + // `Map` is not present in this environment. + return false; + }; +} + +var $mapHas = $Map ? Map.prototype.has : null; +var $setHas = $Set ? Set.prototype.has : null; +if (!exported && !$mapHas) { + /** @type {import('.')} */ + // eslint-disable-next-line no-unused-vars + exported = function isMap(x) { + // `Map` does not have a `has` method + return false; + }; +} + +/** @type {import('.')} */ +module.exports = exported || function isMap(x) { + if (!x || typeof x !== 'object') { + return false; + } + try { + $mapHas.call(x); + if ($setHas) { + try { + $setHas.call(x); + } catch (e) { + return true; + } + } + // @ts-expect-error TS can't figure out that $Map is always truthy here + return x instanceof $Map; // core-js workaround, pre-v2.5.0 + } catch (e) {} + return false; +}; diff --git a/novas/novacore-zephyr/groq-code-cli/node_modules/is-map/package.json b/novas/novacore-zephyr/groq-code-cli/node_modules/is-map/package.json new file mode 100644 index 0000000000000000000000000000000000000000..09db80769479c2bc594a19bd897707bf4f48faaf --- /dev/null +++ b/novas/novacore-zephyr/groq-code-cli/node_modules/is-map/package.json @@ -0,0 +1,79 @@ +{ + "name": "is-map", + "version": "2.0.3", + "description": "Is this value a JS Map? This module works cross-realm/iframe, and despite ES6 @@toStringTag.", + "main": "index.js", + "sideEffects": false, + "scripts": { + "prepack": "npmignore --auto --commentLines=autogenerated", + "version": "auto-changelog && git add CHANGELOG.md", + "postversion": "auto-changelog && git add CHANGELOG.md && git commit --no-edit --amend && git tag -f \"v$(node -e \"console.log(require('./package.json').version)\")\"", + "prepublishOnly": "safe-publish-latest", + "prepublish": "not-in-publish || npm run prepublishOnly", + "pretest": "npm run lint", + "lint": "eslint --ext=js,mjs .", + "postlint": "tsc -p . && attw -P", + "tests-only": "nyc tape 'test/**/*.js'", + "tests:shims": "nyc tape --require=es5-shim --require=es5-shim 'test/**/*.js'", + "tests:corejs": "nyc tape --require=core-js 'test/**/*.js'", + "test": "npm run tests-only && npm run tests:shims && npm run tests:corejs", + "posttest": "aud --production" + }, + "repository": { + "type": "git", + "url": "git+https://github.com/inspect-js/is-map.git" + }, + "keywords": [ + "map", + "set", + "collection", + "is", + "robust" + ], + "author": "Jordan Harband ", + "funding": { + "url": "https://github.com/sponsors/ljharb" + }, + "license": "MIT", + "bugs": { + "url": "https://github.com/inspect-js/is-map/issues" + }, + "homepage": "https://github.com/inspect-js/is-map#readme", + "devDependencies": { + "@arethetypeswrong/cli": "^0.15.0", + "@ljharb/eslint-config": "^21.1.0", + "@types/for-each": "^0.3.3", + "@types/object-inspect": "^1.8.4", + "@types/tape": "^5.6.4", + "aud": "^2.0.4", + "auto-changelog": "^2.4.0", + "core-js": "^2.6.12", + "es5-shim": "^4.6.7", + "es6-shim": "^0.35.8", + "eslint": "=8.8.0", + "for-each": "^0.3.3", + "in-publish": "^2.0.1", + "npmignore": "^0.3.1", + "nyc": "^10.3.2", + "object-inspect": "^1.13.1", + "safe-publish-latest": "^2.0.0", + "tape": "^5.7.5", + "typescript": "^5.5.0-dev.20240308" + }, + "auto-changelog": { + "output": "CHANGELOG.md", + "template": "keepachangelog", + "unreleased": false, + "commitLimit": false, + "backfillLimit": false, + "hideCredit": true + }, + "publishConfig": { + "ignore": [ + ".github/workflows" + ] + }, + "engines": { + "node": ">= 0.4" + } +} diff --git a/novas/novacore-zephyr/groq-code-cli/node_modules/is-map/tsconfig.json b/novas/novacore-zephyr/groq-code-cli/node_modules/is-map/tsconfig.json new file mode 100644 index 0000000000000000000000000000000000000000..2002ce5a53532769b9b5bc561dac11518c384d13 --- /dev/null +++ b/novas/novacore-zephyr/groq-code-cli/node_modules/is-map/tsconfig.json @@ -0,0 +1,49 @@ +{ + "compilerOptions": { + /* Visit https://aka.ms/tsconfig to read more about this file */ + + /* Projects */ + + /* Language and Environment */ + "target": "ESNext", /* Set the JavaScript language version for emitted JavaScript and include compatible library declarations. */ + // "lib": [], /* Specify a set of bundled library declaration files that describe the target runtime environment. */ + // "noLib": true, /* Disable including any library files, including the default lib.d.ts. */ + "useDefineForClassFields": true, /* Emit ECMAScript-standard-compliant class fields. */ + // "moduleDetection": "auto", /* Control what method is used to detect module-format JS files. */ + + /* Modules */ + "module": "commonjs", /* Specify what module code is generated. */ + // "rootDir": "./", /* Specify the root folder within your source files. */ + // "moduleResolution": "node10", /* Specify how TypeScript looks up a file from a given module specifier. */ + // "baseUrl": "./", /* Specify the base directory to resolve non-relative module names. */ + // "paths": {}, /* Specify a set of entries that re-map imports to additional lookup locations. */ + // "rootDirs": [], /* Allow multiple folders to be treated as one when resolving modules. */ + "typeRoots": ["types"], /* Specify multiple folders that act like './node_modules/@types'. */ + "resolveJsonModule": true, /* Enable importing .json files. */ + // "allowArbitraryExtensions": true, /* Enable importing files with any extension, provided a declaration file is present. */ + + /* JavaScript Support */ + "allowJs": true, /* Allow JavaScript files to be a part of your program. Use the 'checkJS' option to get errors from these files. */ + "checkJs": true, /* Enable error reporting in type-checked JavaScript files. */ + "maxNodeModuleJsDepth": 0, /* Specify the maximum folder depth used for checking JavaScript files from 'node_modules'. Only applicable with 'allowJs'. */ + + /* Emit */ + "declaration": true, /* Generate .d.ts files from TypeScript and JavaScript files in your project. */ + "declarationMap": true, /* Create sourcemaps for d.ts files. */ + "noEmit": true, /* Disable emitting files from a compilation. */ + + /* Interop Constraints */ + "allowSyntheticDefaultImports": true, /* Allow 'import x from y' when a module doesn't have a default export. */ + "esModuleInterop": true, /* Emit additional JavaScript to ease support for importing CommonJS modules. This enables 'allowSyntheticDefaultImports' for type compatibility. */ + "forceConsistentCasingInFileNames": true, /* Ensure that casing is correct in imports. */ + + /* Type Checking */ + "strict": true, /* Enable all strict type-checking options. */ + + /* Completeness */ + //"skipLibCheck": true /* Skip type checking all .d.ts files. */ + }, + "exclude": [ + "coverage" + ] +} diff --git a/novas/novacore-zephyr/groq-code-cli/node_modules/is-negative-zero/.editorconfig b/novas/novacore-zephyr/groq-code-cli/node_modules/is-negative-zero/.editorconfig new file mode 100644 index 0000000000000000000000000000000000000000..aaac3258bea46fa996fd8aceb2386575c4ed8001 --- /dev/null +++ b/novas/novacore-zephyr/groq-code-cli/node_modules/is-negative-zero/.editorconfig @@ -0,0 +1,8 @@ +root = true + +[*] +indent_style = tab +end_of_line = lf +charset = utf-8 +trim_trailing_whitespace = true +insert_final_newline = true diff --git a/novas/novacore-zephyr/groq-code-cli/node_modules/is-negative-zero/.eslintrc b/novas/novacore-zephyr/groq-code-cli/node_modules/is-negative-zero/.eslintrc new file mode 100644 index 0000000000000000000000000000000000000000..f858c0ab1bfe1ae45fdc1161524594e17f4ed1b2 --- /dev/null +++ b/novas/novacore-zephyr/groq-code-cli/node_modules/is-negative-zero/.eslintrc @@ -0,0 +1,9 @@ +{ + "root": true, + + "extends": "@ljharb", + + "rules": { + "no-magic-numbers": 0 + } +} diff --git a/novas/novacore-zephyr/groq-code-cli/node_modules/is-negative-zero/.nycrc b/novas/novacore-zephyr/groq-code-cli/node_modules/is-negative-zero/.nycrc new file mode 100644 index 0000000000000000000000000000000000000000..bdd626ce91477abbdd489b79988baebadbd3c897 --- /dev/null +++ b/novas/novacore-zephyr/groq-code-cli/node_modules/is-negative-zero/.nycrc @@ -0,0 +1,9 @@ +{ + "all": true, + "check-coverage": false, + "reporter": ["text-summary", "text", "html", "json"], + "exclude": [ + "coverage", + "test" + ] +} diff --git a/novas/novacore-zephyr/groq-code-cli/node_modules/is-negative-zero/CHANGELOG.md b/novas/novacore-zephyr/groq-code-cli/node_modules/is-negative-zero/CHANGELOG.md new file mode 100644 index 0000000000000000000000000000000000000000..a3a2dedd8ca8fc8ba2c6b7be910735682130db63 --- /dev/null +++ b/novas/novacore-zephyr/groq-code-cli/node_modules/is-negative-zero/CHANGELOG.md @@ -0,0 +1,147 @@ +# Changelog + +All notable changes to this project will be documented in this file. + +The format is based on [Keep a Changelog](https://keepachangelog.com/en/1.0.0/) +and this project adheres to [Semantic Versioning](https://semver.org/spec/v2.0.0.html). + +## [v2.0.3](https://github.com/inspect-js/is-negative-zero/compare/v2.0.2...v2.0.3) - 2024-02-19 + +### Commits + +- add types [`e28f0d5`](https://github.com/inspect-js/is-negative-zero/commit/e28f0d59cffc61bd3d41c10563105e8adb868e59) +- [meta] use `npmignore` to autogenerate an npmignore file [`f68ec13`](https://github.com/inspect-js/is-negative-zero/commit/f68ec13c1d04a2ef1e1c72506ae9c2ac0567bcdd) +- [Dev Deps] update `eslint`, `@ljharb/eslint-config`, `aud`, `auto-changelog`, `tape` [`70abff7`](https://github.com/inspect-js/is-negative-zero/commit/70abff788bb0156f300a09c2f5cc7d30d5618184) +- [actions] update rebase action to use reusable workflow [`6e1356e`](https://github.com/inspect-js/is-negative-zero/commit/6e1356e9fc5fee1bcae20b365c7d71b14ecf876d) +- [Dev Deps] update `@ljharb/eslint-config`, `aud`, `npmignore`, `tape` [`c00d4ab`](https://github.com/inspect-js/is-negative-zero/commit/c00d4ab5c381d22ac3e6d89180b3e012c479f13f) +- [meta] add `sideEffects` flag [`9c45539`](https://github.com/inspect-js/is-negative-zero/commit/9c455398988d2db940fe6644541d09d510b6661f) + +## [v2.0.2](https://github.com/inspect-js/is-negative-zero/compare/v2.0.1...v2.0.2) - 2021-12-10 + +### Commits + +- [actions] reuse common workflows [`ece923d`](https://github.com/inspect-js/is-negative-zero/commit/ece923d6b50820b7832150957774047da43d1743) +- [actions] use `node/install` instead of `node/run`; use `codecov` action [`3a26f43`](https://github.com/inspect-js/is-negative-zero/commit/3a26f435434bbfb8a254ddd32d6079bf50263121) +- [meta] do not publish workflow files [`2cea0c2`](https://github.com/inspect-js/is-negative-zero/commit/2cea0c20c7f8b167bb6064f916f3285642bf5ab1) +- [readme] add github actions/codecov badges; update URLs [`0c0be3e`](https://github.com/inspect-js/is-negative-zero/commit/0c0be3eb148ccf9d764e8ed515ef0e1d0ffeed9d) +- [Dev Deps] update `eslint`, `@ljharb/eslint-config`, `safe-publish-latest`, `tape` [`a93d16e`](https://github.com/inspect-js/is-negative-zero/commit/a93d16eddf46cad6bc9b71a92968ce758e6f4ea4) +- [meta] create FUNDING.yml [`b4f425e`](https://github.com/inspect-js/is-negative-zero/commit/b4f425e49edb8c4aa1efa6ba34c2d5c1150b2a26) +- [actions] update codecov uploader [`7999db3`](https://github.com/inspect-js/is-negative-zero/commit/7999db3bff3f0f9cc729529940b9077a586822e2) +- [Dev Deps] update `eslint`, `@ljharb/eslint-config`, `auto-changelog`, `safe-publish-latest`, `tape` [`140e4d9`](https://github.com/inspect-js/is-negative-zero/commit/140e4d95eda9ad821608c28a5f705d84a906096d) +- [Dev Deps] update `eslint`, `@ljharb/eslint-config`, `aud`, `tape` [`23a8b6d`](https://github.com/inspect-js/is-negative-zero/commit/23a8b6d257cea0b8a608b2319739562ecbc6ba75) +- [readme] add actions and codecov badges [`fe92126`](https://github.com/inspect-js/is-negative-zero/commit/fe9212634346ced7a45905d958cb85d129e4c10b) +- [readme] fix repo URLs [`50c428e`](https://github.com/inspect-js/is-negative-zero/commit/50c428e423e5861a6c231440b8b3e746cbf6230f) +- [Dev Deps] update `eslint`, `@ljharb/eslint-config`, `tape` [`688155f`](https://github.com/inspect-js/is-negative-zero/commit/688155ff0214da72cbafa4c438c3b9629265d82b) +- [meta] use `prepublishOnly` script for npm 7+ [`83171f9`](https://github.com/inspect-js/is-negative-zero/commit/83171f9131aed266f475d7a3283d9c2fc77e1436) +- [actions] update workflows [`e9823db`](https://github.com/inspect-js/is-negative-zero/commit/e9823db3054887d8bb5b3f2c8f698b93cdce7d82) + +## [v2.0.1](https://github.com/inspect-js/is-negative-zero/compare/v2.0.0...v2.0.1) - 2020-12-04 + +### Commits + +- [Tests] use shared travis-ci configs [`5b92482`](https://github.com/inspect-js/is-negative-zero/commit/5b92482ed26e55e1aafcc6b6310d279958af8204) +- [Tests] up to `node` `v11.7`, `v10.15`, `v9.11`, `v8.15`, `v7.10`, `v6.16`, `v5.12`, `v4.9`; use `nvm install-latest-npm`; fix test scripts [`0f5d2f8`](https://github.com/inspect-js/is-negative-zero/commit/0f5d2f85ea7fe83de47f39b6b35e489b866d88a7) +- [Tests] migrate tests to Github Actions [`b80f05a`](https://github.com/inspect-js/is-negative-zero/commit/b80f05adb11a6a3232860fb50272b101aacb504f) +- [Tests] remove `jscs` [`7ccaf41`](https://github.com/inspect-js/is-negative-zero/commit/7ccaf4100281b614d61d7c9122e6f87943a89295) +- [meta] add missing changelog [`992bdde`](https://github.com/inspect-js/is-negative-zero/commit/992bddee362cbae71f2cdfd8666f4774b252412e) +- [readme] fix repo URLs; remove defunct badges [`80fd18d`](https://github.com/inspect-js/is-negative-zero/commit/80fd18d2b0191321afe0e1b572200e4c025eb664) +- [Tests] run `nyc` on all tests [`df26f14`](https://github.com/inspect-js/is-negative-zero/commit/df26f14b0b854d82b0d3ca7b4949811c9f151357) +- Update `tape`, `jscs`, `eslint`, `@ljharb/eslint-config` [`d7723aa`](https://github.com/inspect-js/is-negative-zero/commit/d7723aa70e5b478adc36d98e1338abe741c1906a) +- [Dev Deps] update `eslint`, `@ljharb/eslint-config`, `aud`, `auto-changelog`, `tape` [`9fdaabe`](https://github.com/inspect-js/is-negative-zero/commit/9fdaabecfdb25e6e860e5007a91b60ee0f20734f) +- [Dev Deps] update `eslint`, `@ljharb/eslint-config`, `covert`, `tape` [`f07eeb2`](https://github.com/inspect-js/is-negative-zero/commit/f07eeb2740037c53f270e95d2f62edc051cafc56) +- [Dev Deps] update `tape`, `jscs`, `eslint`, `@ljharb/eslint-config` [`bd5c751`](https://github.com/inspect-js/is-negative-zero/commit/bd5c751fa4850ba8726dc1c197ed6c843a227b05) +- [actions] add automatic rebasing / merge commit blocking [`5666a91`](https://github.com/inspect-js/is-negative-zero/commit/5666a917db6bdcee63c0a3e28e5e281359975abc) +- [meta] add `auto-changelog` [`f70fb2b`](https://github.com/inspect-js/is-negative-zero/commit/f70fb2b5b9ea53dc52729310717553648292189e) +- [actions] add "Allow Edits" workflow [`2b040a8`](https://github.com/inspect-js/is-negative-zero/commit/2b040a87d362f17d8cab2b0d48058b80e426ad4e) +- [Dev Deps] update `eslint`, `@ljharb/eslint-config`, `tape`; add `safe-publish-latest` [`09e2e53`](https://github.com/inspect-js/is-negative-zero/commit/09e2e537390225c1d1a6912be64267eaec6ea367) +- [Tests] use `npm audit` instead of `nsp` [`7df2669`](https://github.com/inspect-js/is-negative-zero/commit/7df2669013ac9328d424e9d8c82a53a0458f0888) +- [Tests] up to `io.js` `v3.3`, `node` `v4.1` [`4ff97c5`](https://github.com/inspect-js/is-negative-zero/commit/4ff97c5891c7a241a91c03fb54bd83e78570ef22) +- [Dev Deps] update `eslint`, `@ljharb/eslint-config`, `aud`, `auto-changelog` [`9e8cb7b`](https://github.com/inspect-js/is-negative-zero/commit/9e8cb7bca46d325ecf202187c0fde7da8722bcab) +- [Dev Deps] update `jscs`, `eslint`, `@ljharb/eslint-config`, `nsp` [`70b9888`](https://github.com/inspect-js/is-negative-zero/commit/70b988802a99c84ab7eb8da287bb8ff0efc5c055) +- [Dev Deps] update `jscs` [`59d0c42`](https://github.com/inspect-js/is-negative-zero/commit/59d0c42131020b74e68fd444798b9a3bf247fb2d) +- Add `npm run security` [`eb418ed`](https://github.com/inspect-js/is-negative-zero/commit/eb418ed7e79216808c206388fbd360cc7a75655f) +- [Dev Deps] update `eslint`, `@ljharb/eslint-config`, `tape` [`86a758d`](https://github.com/inspect-js/is-negative-zero/commit/86a758d42eb7d17a18f7f584c337d8820b842758) +- Only apps should have lockfiles [`a0ab621`](https://github.com/inspect-js/is-negative-zero/commit/a0ab6215590bf6adb3eaf1ff9e7c036d72e807ec) +- [Tests] use `npx aud` instead of `nsp` or `npm audit` with hoops [`5c51349`](https://github.com/inspect-js/is-negative-zero/commit/5c513498fc5a8b2fd06f5e0c1b38b8e93c3477ac) +- [meta] add `funding` field [`1d0b2f4`](https://github.com/inspect-js/is-negative-zero/commit/1d0b2f43bf5bf75176859a440346b3e338ee510e) +- [actions] switch Automatic Rebase workflow to `pull_request_target` event [`9b12367`](https://github.com/inspect-js/is-negative-zero/commit/9b12367706f1c269a3df406c8e2c211558671a15) +- [Dev Deps] update `auto-changelog`, `tape` [`6d98b8d`](https://github.com/inspect-js/is-negative-zero/commit/6d98b8d1f512c3844d4062215c793070084d1164) +- [Dev Deps] Update `tape`, `eslint` [`a258cdb`](https://github.com/inspect-js/is-negative-zero/commit/a258cdb86691725482d1d43a1f9e7953c3c6733f) +- [Dev Deps] update `auto-changelog`; add `aud` [`2ca2afb`](https://github.com/inspect-js/is-negative-zero/commit/2ca2afb9efef4ebc8b3c19046ab1ab3ad516ea9a) +- Test up to `io.js` `v3.0` [`1254ae8`](https://github.com/inspect-js/is-negative-zero/commit/1254ae80b7706616331ac914654d7a17bff31039) +- [Dev Deps] update `auto-changelog` [`4b54722`](https://github.com/inspect-js/is-negative-zero/commit/4b547228fceaae8f9eccabc9ad8a49046492348d) +- [Tests] only audit prod deps [`86d298b`](https://github.com/inspect-js/is-negative-zero/commit/86d298b56db90f81617ee5d942476eda34afb374) +- [Dev Deps] update `tape` [`3a47e27`](https://github.com/inspect-js/is-negative-zero/commit/3a47e2730f889539f666ef0eb09a93fb9c80bfd1) +- Switch from vb.teelaun.ch to versionbadg.es for the npm version badge SVG. [`128d9bd`](https://github.com/inspect-js/is-negative-zero/commit/128d9bd4c12385fb5e478ac3dd3138fa4360a777) + +## [v2.0.0](https://github.com/inspect-js/is-negative-zero/compare/v1.0.0...v2.0.0) - 2015-07-24 + +### Commits + +- Update `tape`, `eslint`; use my personal shared `eslint` config. [`648d002`](https://github.com/inspect-js/is-negative-zero/commit/648d0029b177886428a11b07307f233ae2d3175b) +- Add `npm run eslint` [`5a52d80`](https://github.com/inspect-js/is-negative-zero/commit/5a52d80ab052e377044b9b181991a32afaaa3090) +- Using my standard jscs.json file [`5a667d9`](https://github.com/inspect-js/is-negative-zero/commit/5a667d9f8b7402ca3bd134080cd4435b5c7f1462) +- Adding `npm run lint` [`9a85ed9`](https://github.com/inspect-js/is-negative-zero/commit/9a85ed934da65d8733a38bf6ad3c89fd62115194) +- Update `tape`, `covert`, `jscs` [`c6cd3a6`](https://github.com/inspect-js/is-negative-zero/commit/c6cd3a64ea5b98100e10537549f50a9eeadc30ec) +- Update `eslint` [`e9c9b6e`](https://github.com/inspect-js/is-negative-zero/commit/e9c9b6e9623f021b7f3ae4091bf9ea2571ab02b4) +- Test on latest `io.js` [`2f7c8a9`](https://github.com/inspect-js/is-negative-zero/commit/2f7c8a9d174066400c072841d7bcf02cf90f8ebf) +- Adding license and downloads badges [`717087a`](https://github.com/inspect-js/is-negative-zero/commit/717087a013b4cfc9dc7847d3d4a64faf19341be4) +- Remove Number type coercion. [`481295d`](https://github.com/inspect-js/is-negative-zero/commit/481295dbd09dbf81d196dc77382f1b92f534de3f) +- Test up to `io.js` `v2.1` [`139a84a`](https://github.com/inspect-js/is-negative-zero/commit/139a84a3dbdec29682044c6e7ac884a7382ae6e1) +- Update `eslint` [`2f5fbfb`](https://github.com/inspect-js/is-negative-zero/commit/2f5fbfbc436ccd8676fc36fcd9f0edcdda33a1e7) +- Update `eslint` [`53cb4c5`](https://github.com/inspect-js/is-negative-zero/commit/53cb4c5eccecdf2d874e78e5c38cca762ed76a9d) +- Test on `io.js` `v2.2` [`98a1824`](https://github.com/inspect-js/is-negative-zero/commit/98a1824c86366f8a03cf303f46acecd67409f94b) +- All grade A-supported `node`/`iojs` versions now ship with an `npm` that understands `^`. [`772d6cd`](https://github.com/inspect-js/is-negative-zero/commit/772d6cdf397e6fc1b26e5ed5f279d07a5ead6df8) +- Run `travis-ci` tests on `iojs` and `node` v0.12; speed up builds; allow 0.8 failures. [`3e6147e`](https://github.com/inspect-js/is-negative-zero/commit/3e6147ebb5ecdfda4a2bffa441572fe017c7bb73) +- Use SVG badges instead of PNG [`d986cb4`](https://github.com/inspect-js/is-negative-zero/commit/d986cb450e5bd4f373041255b69e18f47c252a1e) +- Update `tape`, `jscs` [`9f9d7e7`](https://github.com/inspect-js/is-negative-zero/commit/9f9d7e751bcf4ceeed8e36e75e31d29c76326b3f) +- Update `jscs` [`079eaf6`](https://github.com/inspect-js/is-negative-zero/commit/079eaf699d53e7e32c54e5233259a00f5f494d9a) +- Update `tape`, `jscs` [`cffe3fc`](https://github.com/inspect-js/is-negative-zero/commit/cffe3fc17c6bfaa6996bf7402446b160631a04b3) +- Update `tape`, `jscs` [`3a16616`](https://github.com/inspect-js/is-negative-zero/commit/3a166165ae8770d59c296794d28547379cebec58) +- Use consistent quotes [`9509a81`](https://github.com/inspect-js/is-negative-zero/commit/9509a8110027b12c5762ba48d03b649a921847d5) +- Test on `io.js` `v2.4` [`a9150a3`](https://github.com/inspect-js/is-negative-zero/commit/a9150a3397db339d992e9e4e6ddb52d1237fd617) +- Test on `io.js` `v2.3` [`36d7acf`](https://github.com/inspect-js/is-negative-zero/commit/36d7acf5bb9193a2b35585e2c49ae8be9f45a55e) +- Lock covert to v1.0.0. [`29d8917`](https://github.com/inspect-js/is-negative-zero/commit/29d89171c3aad69ace372edbf641ec3a5468c760) +- Updating jscs [`fe09c8a`](https://github.com/inspect-js/is-negative-zero/commit/fe09c8a6d16c637ecd83a9a8a7f6192faef0754a) +- Updating jscs [`5877bc7`](https://github.com/inspect-js/is-negative-zero/commit/5877bc7c2ed44c1ecc5d31e1c484c523450722d8) +- Running linter as part of tests [`9e77756`](https://github.com/inspect-js/is-negative-zero/commit/9e777563905f511d915ec7257e2637811b911bd6) +- Updating covert [`520a695`](https://github.com/inspect-js/is-negative-zero/commit/520a695164465b88c76860a638baafd4192bce5c) + +## [v1.0.0](https://github.com/inspect-js/is-negative-zero/compare/v0.1.1...v1.0.0) - 2014-08-08 + +### Commits + +- Updating tape [`31d1942`](https://github.com/inspect-js/is-negative-zero/commit/31d19422ecd9d453677851a9d5a8d9372a16fb39) +- Updating tape [`e7143bf`](https://github.com/inspect-js/is-negative-zero/commit/e7143bf3b67d8881b1b6ee0444637647d7bb1d2b) + +## [v0.1.1](https://github.com/inspect-js/is-negative-zero/compare/v0.1.0...v0.1.1) - 2014-05-13 + +### Merged + +- Simplify code [`#1`](https://github.com/inspect-js/is-negative-zero/pull/1) + +### Commits + +- Adding a trailing newline [`61fb37f`](https://github.com/inspect-js/is-negative-zero/commit/61fb37f677e871cca53d9309e765d808ddddfd5a) + +## [v0.1.0](https://github.com/inspect-js/is-negative-zero/compare/v0.0.0...v0.1.0) - 2014-05-13 + +### Commits + +- Make sure old and unstable nodes don't break Travis [`f627215`](https://github.com/inspect-js/is-negative-zero/commit/f627215527a95dc1ca014600650e00f15fe122c5) +- Updating deps [`b502f48`](https://github.com/inspect-js/is-negative-zero/commit/b502f48e807d7671cb07e2ca247ae2daa62e4165) +- Oops, negative numbers were negative zero! [`746cb97`](https://github.com/inspect-js/is-negative-zero/commit/746cb975d82c0fa0c5058e8e031807f9afcfd6db) +- Updating covert [`99ef4ed`](https://github.com/inspect-js/is-negative-zero/commit/99ef4ed97d2f76f2a5afbef029bf794f1b5bcffa) +- Updating tape [`ee9cfc2`](https://github.com/inspect-js/is-negative-zero/commit/ee9cfc2fd0039bdb65b6493ce0b8e47d18aa17cd) +- Testing on node 0.6 again [`6a9bf0a`](https://github.com/inspect-js/is-negative-zero/commit/6a9bf0a09e210cca09c7a8a225d08ef1e6789b5a) + +## v0.0.0 - 2014-01-19 + +### Commits + +- package.json [`8411d92`](https://github.com/inspect-js/is-negative-zero/commit/8411d92ec787fd522a1b5e65154ae88e9024a23f) +- read me [`5c8bf3c`](https://github.com/inspect-js/is-negative-zero/commit/5c8bf3ce4867dbf2997ef01ea6b712aa294ec959) +- Initial commit [`c06f7dc`](https://github.com/inspect-js/is-negative-zero/commit/c06f7dcf926f5b35ba678787a0f16cdd7b544054) +- Tests. [`5c554d4`](https://github.com/inspect-js/is-negative-zero/commit/5c554d405bfb323a7413fde395d8dc39c5316356) +- Travis CI [`334d000`](https://github.com/inspect-js/is-negative-zero/commit/334d000941fc926493cc7dbdb4e5f7ae481a311b) +- Implementation. [`4ef4491`](https://github.com/inspect-js/is-negative-zero/commit/4ef449189c36d471d283e40aa20a8ebfa4985882) diff --git a/novas/novacore-zephyr/groq-code-cli/node_modules/is-negative-zero/LICENSE b/novas/novacore-zephyr/groq-code-cli/node_modules/is-negative-zero/LICENSE new file mode 100644 index 0000000000000000000000000000000000000000..47b7b5078fce38783c58381828d9a7f762db7866 --- /dev/null +++ b/novas/novacore-zephyr/groq-code-cli/node_modules/is-negative-zero/LICENSE @@ -0,0 +1,20 @@ +The MIT License (MIT) + +Copyright (c) 2014 Jordan Harband + +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. diff --git a/novas/novacore-zephyr/groq-code-cli/node_modules/is-negative-zero/README.md b/novas/novacore-zephyr/groq-code-cli/node_modules/is-negative-zero/README.md new file mode 100644 index 0000000000000000000000000000000000000000..e8193a48873bbfcc88d5a352600c4f03348e5d88 --- /dev/null +++ b/novas/novacore-zephyr/groq-code-cli/node_modules/is-negative-zero/README.md @@ -0,0 +1,54 @@ +# is-negative-zero [![Version Badge][npm-version-svg]][package-url] + +[![github actions][actions-image]][actions-url] +[![coverage][codecov-image]][codecov-url] +[![dependency status][deps-svg]][deps-url] +[![dev dependency status][dev-deps-svg]][dev-deps-url] +[![License][license-image]][license-url] +[![Downloads][downloads-image]][downloads-url] + +[![npm badge][npm-badge-png]][package-url] + +Is this value negative zero? === will lie to you. + +## Example + +```js +var isNegativeZero = require('is-negative-zero'); +var assert = require('assert'); + +assert.notOk(isNegativeZero(undefined)); +assert.notOk(isNegativeZero(null)); +assert.notOk(isNegativeZero(false)); +assert.notOk(isNegativeZero(true)); +assert.notOk(isNegativeZero(0)); +assert.notOk(isNegativeZero(42)); +assert.notOk(isNegativeZero(Infinity)); +assert.notOk(isNegativeZero(-Infinity)); +assert.notOk(isNegativeZero(NaN)); +assert.notOk(isNegativeZero('foo')); +assert.notOk(isNegativeZero(function () {})); +assert.notOk(isNegativeZero([])); +assert.notOk(isNegativeZero({})); + +assert.ok(isNegativeZero(-0)); +``` + +## Tests +Simply clone the repo, `npm install`, and run `npm test` + +[package-url]: https://npmjs.org/package/is-negative-zero +[npm-version-svg]: https://versionbadg.es/inspect-js/is-negative-zero.svg +[deps-svg]: https://david-dm.org/inspect-js/is-negative-zero.svg +[deps-url]: https://david-dm.org/inspect-js/is-negative-zero +[dev-deps-svg]: https://david-dm.org/inspect-js/is-negative-zero/dev-status.svg +[dev-deps-url]: https://david-dm.org/inspect-js/is-negative-zero#info=devDependencies +[npm-badge-png]: https://nodei.co/npm/is-negative-zero.png?downloads=true&stars=true +[license-image]: https://img.shields.io/npm/l/is-negative-zero.svg +[license-url]: LICENSE +[downloads-image]: https://img.shields.io/npm/dm/is-negative-zero.svg +[downloads-url]: https://npm-stat.com/charts.html?package=is-negative-zero +[codecov-image]: https://codecov.io/gh/inspect-js/is-negative-zero/branch/main/graphs/badge.svg +[codecov-url]: https://app.codecov.io/gh/inspect-js/is-negative-zero/ +[actions-image]: https://img.shields.io/endpoint?url=https://github-actions-badge-u3jn4tfpocch.runkit.sh/inspect-js/is-negative-zero +[actions-url]: https://github.com/inspect-js/is-negative-zero/actions diff --git a/novas/novacore-zephyr/groq-code-cli/node_modules/is-negative-zero/index.d.ts b/novas/novacore-zephyr/groq-code-cli/node_modules/is-negative-zero/index.d.ts new file mode 100644 index 0000000000000000000000000000000000000000..7147b5070ceed1ce61a505b9b63c997bed512c76 --- /dev/null +++ b/novas/novacore-zephyr/groq-code-cli/node_modules/is-negative-zero/index.d.ts @@ -0,0 +1,3 @@ +declare function isNegativeZero(number: unknown): number is -0; + +export = isNegativeZero; \ No newline at end of file diff --git a/novas/novacore-zephyr/groq-code-cli/node_modules/is-negative-zero/index.js b/novas/novacore-zephyr/groq-code-cli/node_modules/is-negative-zero/index.js new file mode 100644 index 0000000000000000000000000000000000000000..bd5222ed79d32c17f7084952fd5b70b6bd238a5c --- /dev/null +++ b/novas/novacore-zephyr/groq-code-cli/node_modules/is-negative-zero/index.js @@ -0,0 +1,7 @@ +'use strict'; + +/** @type {import('.')} */ +module.exports = function isNegativeZero(number) { + return number === 0 && (1 / number) === -Infinity; +}; + diff --git a/novas/novacore-zephyr/groq-code-cli/node_modules/is-negative-zero/package.json b/novas/novacore-zephyr/groq-code-cli/node_modules/is-negative-zero/package.json new file mode 100644 index 0000000000000000000000000000000000000000..3ed79ab01ee60166d85c775d58ce08d8486022c4 --- /dev/null +++ b/novas/novacore-zephyr/groq-code-cli/node_modules/is-negative-zero/package.json @@ -0,0 +1,92 @@ +{ + "name": "is-negative-zero", + "version": "2.0.3", + "description": "Is this value negative zero? === will lie to you", + "author": "Jordan Harband ", + "funding": { + "url": "https://github.com/sponsors/ljharb" + }, + "license": "MIT", + "main": "index.js", + "types": "./index.d.ts", + "sideEffects": false, + "scripts": { + "prepack": "npmignore --auto --commentLines=autogenerated", + "prepublishOnly": "safe-publish-latest", + "prepublish": "not-in-publish || npm run prepublishOnly", + "pretest": "npm run lint", + "test": "npm run tests-only", + "tests-only": "nyc tape 'test/**/*.js'", + "posttest": "aud --production", + "lint": "eslint --ext=js,mjs .", + "postlint": "tsc -p .", + "version": "auto-changelog && git add CHANGELOG.md", + "postversion": "auto-changelog && git add CHANGELOG.md && git commit --no-edit --amend && git tag -f \"v$(node -e \"console.log(require('./package.json').version)\")\"" + }, + "repository": { + "type": "git", + "url": "git://github.com/inspect-js/is-negative-zero.git" + }, + "bugs": { + "url": "https://github.com/inspect-js/is-negative-zero/issues" + }, + "homepage": "https://github.com/inspect-js/is-negative-zero", + "keywords": [ + "is", + "negative", + "zero", + "negative zero", + "number", + "positive", + "0", + "-0" + ], + "devDependencies": { + "@ljharb/eslint-config": "^21.1.0", + "@types/tape": "^5.6.4", + "aud": "^2.0.4", + "auto-changelog": "^2.4.0", + "eslint": "=8.8.0", + "in-publish": "^2.0.1", + "npmignore": "^0.3.1", + "nyc": "^10.3.2", + "safe-publish-latest": "^2.0.0", + "tape": "^5.7.5", + "typescript": "next" + }, + "testling": { + "files": "test/index.js", + "browsers": [ + "iexplore/6.0..latest", + "firefox/3.0..6.0", + "firefox/15.0..latest", + "firefox/nightly", + "chrome/4.0..10.0", + "chrome/20.0..latest", + "chrome/canary", + "opera/10.0..12.0", + "opera/15.0..latest", + "opera/next", + "safari/4.0..latest", + "ipad/6.0..latest", + "iphone/6.0..latest", + "android-browser/4.2" + ] + }, + "engines": { + "node": ">= 0.4" + }, + "auto-changelog": { + "output": "CHANGELOG.md", + "template": "keepachangelog", + "unreleased": false, + "commitLimit": false, + "backfillLimit": false, + "hideCredit": true + }, + "publishConfig": { + "ignore": [ + ".github/workflows" + ] + } +} diff --git a/novas/novacore-zephyr/groq-code-cli/node_modules/is-negative-zero/tsconfig.json b/novas/novacore-zephyr/groq-code-cli/node_modules/is-negative-zero/tsconfig.json new file mode 100644 index 0000000000000000000000000000000000000000..2002ce5a53532769b9b5bc561dac11518c384d13 --- /dev/null +++ b/novas/novacore-zephyr/groq-code-cli/node_modules/is-negative-zero/tsconfig.json @@ -0,0 +1,49 @@ +{ + "compilerOptions": { + /* Visit https://aka.ms/tsconfig to read more about this file */ + + /* Projects */ + + /* Language and Environment */ + "target": "ESNext", /* Set the JavaScript language version for emitted JavaScript and include compatible library declarations. */ + // "lib": [], /* Specify a set of bundled library declaration files that describe the target runtime environment. */ + // "noLib": true, /* Disable including any library files, including the default lib.d.ts. */ + "useDefineForClassFields": true, /* Emit ECMAScript-standard-compliant class fields. */ + // "moduleDetection": "auto", /* Control what method is used to detect module-format JS files. */ + + /* Modules */ + "module": "commonjs", /* Specify what module code is generated. */ + // "rootDir": "./", /* Specify the root folder within your source files. */ + // "moduleResolution": "node10", /* Specify how TypeScript looks up a file from a given module specifier. */ + // "baseUrl": "./", /* Specify the base directory to resolve non-relative module names. */ + // "paths": {}, /* Specify a set of entries that re-map imports to additional lookup locations. */ + // "rootDirs": [], /* Allow multiple folders to be treated as one when resolving modules. */ + "typeRoots": ["types"], /* Specify multiple folders that act like './node_modules/@types'. */ + "resolveJsonModule": true, /* Enable importing .json files. */ + // "allowArbitraryExtensions": true, /* Enable importing files with any extension, provided a declaration file is present. */ + + /* JavaScript Support */ + "allowJs": true, /* Allow JavaScript files to be a part of your program. Use the 'checkJS' option to get errors from these files. */ + "checkJs": true, /* Enable error reporting in type-checked JavaScript files. */ + "maxNodeModuleJsDepth": 0, /* Specify the maximum folder depth used for checking JavaScript files from 'node_modules'. Only applicable with 'allowJs'. */ + + /* Emit */ + "declaration": true, /* Generate .d.ts files from TypeScript and JavaScript files in your project. */ + "declarationMap": true, /* Create sourcemaps for d.ts files. */ + "noEmit": true, /* Disable emitting files from a compilation. */ + + /* Interop Constraints */ + "allowSyntheticDefaultImports": true, /* Allow 'import x from y' when a module doesn't have a default export. */ + "esModuleInterop": true, /* Emit additional JavaScript to ease support for importing CommonJS modules. This enables 'allowSyntheticDefaultImports' for type compatibility. */ + "forceConsistentCasingInFileNames": true, /* Ensure that casing is correct in imports. */ + + /* Type Checking */ + "strict": true, /* Enable all strict type-checking options. */ + + /* Completeness */ + //"skipLibCheck": true /* Skip type checking all .d.ts files. */ + }, + "exclude": [ + "coverage" + ] +} diff --git a/novas/novacore-zephyr/groq-code-cli/node_modules/is-number-object/.editorconfig b/novas/novacore-zephyr/groq-code-cli/node_modules/is-number-object/.editorconfig new file mode 100644 index 0000000000000000000000000000000000000000..4e36aeeec4a662c78fd99c3a0cd7a8f71f9d1331 --- /dev/null +++ b/novas/novacore-zephyr/groq-code-cli/node_modules/is-number-object/.editorconfig @@ -0,0 +1,23 @@ +root = true + +[*] +indent_style = tab +indent_size = 4 +end_of_line = lf +charset = utf-8 +trim_trailing_whitespace = true +insert_final_newline = true +max_line_length = 150 + +[CHANGELOG.md] +indent_style = space +indent_size = 2 + +[*.json] +max_line_length = off + +[Makefile] +max_line_length = off + +[CHANGELOG.md] +max_line_length = off diff --git a/novas/novacore-zephyr/groq-code-cli/node_modules/is-number-object/.eslintrc b/novas/novacore-zephyr/groq-code-cli/node_modules/is-number-object/.eslintrc new file mode 100644 index 0000000000000000000000000000000000000000..c7933f4d718ed0a9d9f19f4fca1d3718fe71bc7f --- /dev/null +++ b/novas/novacore-zephyr/groq-code-cli/node_modules/is-number-object/.eslintrc @@ -0,0 +1,16 @@ +{ + "root": true, + + "extends": "@ljharb", + + "rules": { + "func-name-matching": 0, + }, + + "overrides": [ + { + "files": "test-core-js.js", + "extends": "@ljharb/eslint-config/tests", + }, + ], +} diff --git a/novas/novacore-zephyr/groq-code-cli/node_modules/is-number-object/.nycrc b/novas/novacore-zephyr/groq-code-cli/node_modules/is-number-object/.nycrc new file mode 100644 index 0000000000000000000000000000000000000000..a69aa2d8273d8c598f8e3aa5c8d779e28d63862f --- /dev/null +++ b/novas/novacore-zephyr/groq-code-cli/node_modules/is-number-object/.nycrc @@ -0,0 +1,10 @@ +{ + "all": true, + "check-coverage": false, + "reporter": ["text-summary", "text", "html", "json"], + "exclude": [ + "coverage", + "test", + "test-corejs.js" + ] +} diff --git a/novas/novacore-zephyr/groq-code-cli/node_modules/is-number-object/CHANGELOG.md b/novas/novacore-zephyr/groq-code-cli/node_modules/is-number-object/CHANGELOG.md new file mode 100644 index 0000000000000000000000000000000000000000..2670f164bd1740876d80462a10e79f4bd3413242 --- /dev/null +++ b/novas/novacore-zephyr/groq-code-cli/node_modules/is-number-object/CHANGELOG.md @@ -0,0 +1,149 @@ +# Changelog + +All notable changes to this project will be documented in this file. + +The format is based on [Keep a Changelog](https://keepachangelog.com/en/1.0.0/) +and this project adheres to [Semantic Versioning](https://semver.org/spec/v2.0.0.html). + +## [v1.1.1](https://github.com/inspect-js/is-number-object/compare/v1.1.0...v1.1.1) - 2024-12-15 + +### Commits + +- [Dev Deps] update `@arethetypeswrong/cli`,` @ljharb/tsconfig`, `@types/tape` [`00d566d`](https://github.com/inspect-js/is-number-object/commit/00d566d869ee316c896aa6f3cd694996bab6f482) +- [Refactor] use `call-bound` directly [`073d5df`](https://github.com/inspect-js/is-number-object/commit/073d5df97278ab54e32750f24d4eeee1d94965d4) +- [Deps] update `call-bind` [`36c84af`](https://github.com/inspect-js/is-number-object/commit/36c84afd5553a538cceb3da56a8721b597f540bc) + +## [v1.1.0](https://github.com/inspect-js/is-number-object/compare/v1.0.7...v1.1.0) - 2024-12-01 + +### Commits + +- [meta] use `npmignore` to autogenerate an npmignore file [`cb8423c`](https://github.com/inspect-js/is-number-object/commit/cb8423cd42bded7c9321e785a97c5305c2706b02) +- [New] add types [`273e406`](https://github.com/inspect-js/is-number-object/commit/273e4063e786210ce135237f1232630eecc22a88) +- [actions] split out node 10-20, and 20+ [`3da6267`](https://github.com/inspect-js/is-number-object/commit/3da6267437bbc8d8322abc231f6fbcdbdce1b9b4) +- [Robustness] use `call-bind` [`834c098`](https://github.com/inspect-js/is-number-object/commit/834c09801d923ddf638585a94020b7c3b3cec3dc) +- [actions] update rebase action to use reusable workflow [`84a8a9f`](https://github.com/inspect-js/is-number-object/commit/84a8a9f61b1e098cba7d2603d98c06fc96b60d60) +- [Dev Deps] update `@ljharb/eslint-config`, `auto-changelog`, `core-js`, `npmignore`, `tape` [`7275bca`](https://github.com/inspect-js/is-number-object/commit/7275bcad3910fe3073ca960fdb8018904f4eb5a0) +- [Dev Deps] update `eslint`, `@ljharb/eslint-config`, `aud`, `core-js`, `tape` [`49a83aa`](https://github.com/inspect-js/is-number-object/commit/49a83aa830081afcbeae32adcd853f19202acc89) +- [Tests] replace `aud` with `npm audit` [`061492b`](https://github.com/inspect-js/is-number-object/commit/061492b782012e0d58714bdf8a1423910d6ea49a) +- [Refactor] avoid an expensive check, for null [`08d29a8`](https://github.com/inspect-js/is-number-object/commit/08d29a8442f5340eedc3817eddd8d1f4bfd02be2) +- [Deps] update `has-tostringtag` [`4e2ad65`](https://github.com/inspect-js/is-number-object/commit/4e2ad656b23fcfdc3fe8979c7865f501f49c4704) +- [Dev Deps] add missing peer dep [`8228bfa`](https://github.com/inspect-js/is-number-object/commit/8228bfa94317d0cd5a5e880991cb3c0f0c5e119b) + +## [v1.0.7](https://github.com/inspect-js/is-number-object/compare/v1.0.6...v1.0.7) - 2022-04-01 + +### Commits + +- [actions] reuse common workflows [`8f9a1b0`](https://github.com/inspect-js/is-number-object/commit/8f9a1b040a435a5c5d12150952d0e6f96d4f713a) +- [meta] better `eccheck` command [`9dc8dff`](https://github.com/inspect-js/is-number-object/commit/9dc8dff273e4d0b954fd4f2a2eacc849d321b646) +- [Dev Deps] update `eslint`, `@ljharb/eslint-config`, `core-js`, `safe-publish-latest`, `tape` [`c50ecbf`](https://github.com/inspect-js/is-number-object/commit/c50ecbfc7577c69324fca4d2b40dd354c5156be9) +- [actions] update codecov uploader [`f1a2560`](https://github.com/inspect-js/is-number-object/commit/f1a2560d4a996abea90f7a792069a35359869b67) +- [Dev Deps] update `eslint`, `@ljharb/eslint-config`, `aud`, `core-js`, `tape` [`4b06ace`](https://github.com/inspect-js/is-number-object/commit/4b06aceeba2ebf0887af020aa89caad8950e5f47) +- [Dev Deps] update `eslint`, `@ljharb/eslint-config`, `auto-changelog`, `core-js`, `tape` [`3dc0e8b`](https://github.com/inspect-js/is-number-object/commit/3dc0e8b0fcc96a9bc9936e9a62a523fe67bafca5) +- [meta] add `bugs`/`homepage` package.json fields [`d7e0bcf`](https://github.com/inspect-js/is-number-object/commit/d7e0bcf1fe1b4a48d6500266c8b4058c854fecba) + +## [v1.0.6](https://github.com/inspect-js/is-number-object/compare/v1.0.5...v1.0.6) - 2021-08-05 + +### Commits + +- [Tests] run tests with core-js as well [`5177312`](https://github.com/inspect-js/is-number-object/commit/51773120b18e27bfe8a3bd228ef2e21f5802f338) +- [Refactor] use `has-tostringtag` to behave correctly in the presence of symbol shams [`ca2b31d`](https://github.com/inspect-js/is-number-object/commit/ca2b31d81c5d7d9b11e812dee58cd627a6d634e2) +- [Dev Deps] update `auto-changelog`, `core-js`, `eslint`, `tape` [`50950f9`](https://github.com/inspect-js/is-number-object/commit/50950f962a4b1188c478f6034194d7eb4314c884) + +## [v1.0.5](https://github.com/inspect-js/is-number-object/compare/v1.0.4...v1.0.5) - 2021-05-07 + +### Commits + +- [Tests] migrate tests to Github Actions [`9666737`](https://github.com/inspect-js/is-number-object/commit/96667372f8e36f70516218f86318f957f8c175ad) +- [actions] use `node/install` instead of `node/run`; use `codecov` action [`7815ce2`](https://github.com/inspect-js/is-number-object/commit/7815ce21cb5662c2d1651b3ec302f186aa8a016b) +- [meta] do not publish github action workflow files [`80ccb75`](https://github.com/inspect-js/is-number-object/commit/80ccb7509f91732675b018cc1a636d649a92889e) +- [Tests] run `nyc` on all tests [`c9ffb74`](https://github.com/inspect-js/is-number-object/commit/c9ffb74443690ef22f9aa7dd35855fd1e3be5184) +- [Dev Deps] update `eslint`, `@ljharb/eslint-config`, `aud`, `auto-changelog`, `tape` [`7e84161`](https://github.com/inspect-js/is-number-object/commit/7e84161d089c87ef42e3639ac1889642624ebd28) +- [readme] add actions and codecov badges [`0c5ec7a`](https://github.com/inspect-js/is-number-object/commit/0c5ec7aa87dac27bdcda2365124c3aa0ccf9c278) +- [actions] add Require Allow Edits workflow [`dd0fb74`](https://github.com/inspect-js/is-number-object/commit/dd0fb74b2ecb630ea7778a6f06dcc017323a3c1d) +- [Dev Deps] update `eslint`, `@ljharb/eslint-config`, `aud`, `has-symbols`, `tape` [`2d36f80`](https://github.com/inspect-js/is-number-object/commit/2d36f809a7b9896958b0b0f3b69be0067caedb45) +- [Dev Deps] update `eslint`, `@ljharb/eslint-config`, `aud`, `auto-changelog` [`77d3140`](https://github.com/inspect-js/is-number-object/commit/77d3140557d483e467ce070b21bf384e9a7562d5) +- [Dev Deps] update `eslint`, `@ljharb/eslint-config`, `tape` [`75d4abf`](https://github.com/inspect-js/is-number-object/commit/75d4abf34168e69d73f621c696a16179ddc0873c) +- [Dev Deps] update `eslint`, `@ljharb/eslint-config`, `tape` [`0c2a917`](https://github.com/inspect-js/is-number-object/commit/0c2a917e4802b102888759fad912bd9faa5587f7) +- [Fix] do not use `Object.prototype.toString` when `Symbol.toStringTag` is shammed [`8b6ebc4`](https://github.com/inspect-js/is-number-object/commit/8b6ebc489db14a0c369214e081413f326fc0d598) +- [Dev Deps] update `auto-changelog`, `tape`; add `aud` [`62045fc`](https://github.com/inspect-js/is-number-object/commit/62045fcaddb9e4d3ef81068e99d07d21cd62023b) +- [actions] use checkout v2; remove unneeded env [`d48cd06`](https://github.com/inspect-js/is-number-object/commit/d48cd06720ea71f278a6d35c6f0a8ec04242a58f) +- [meta] use `prepublishOnly` script for npm 7+ [`827ab0d`](https://github.com/inspect-js/is-number-object/commit/827ab0d52d25f46d232ae7442ece270dec2de1df) +- [actions] switch Automatic Rebase workflow to `pull_request_target` event [`bfed500`](https://github.com/inspect-js/is-number-object/commit/bfed500e6cc3cd3b9e7ffea78429c59857035791) +- [meta] remove explicit audit level config [`ce23e5e`](https://github.com/inspect-js/is-number-object/commit/ce23e5e49fbebe190267d8c99ddfd880a963b7ee) +- [meta] gitignore coverage output [`f1ad981`](https://github.com/inspect-js/is-number-object/commit/f1ad98106549c1c88322d8cb206068ea4c5bd424) + +## [v1.0.4](https://github.com/inspect-js/is-number-object/compare/v1.0.3...v1.0.4) - 2019-12-18 + +### Commits + +- [Tests] use shared travis-ci configs [`792b5aa`](https://github.com/inspect-js/is-number-object/commit/792b5aa5e7313ddf5507f7283bb7d5d5c646b11b) +- [Tests] up to `node` `v12.4`, `v11.15`, `v10.15`, `v9.11`, `v8.15`, `v7.10`, `v6.17`, `v5.12`, `v4.9`; use `nvm install-latest-npm` [`dc66db7`](https://github.com/inspect-js/is-number-object/commit/dc66db7dd1eca0263f6602597eb40601519e912e) +- Update `eslint`, `tape`, `semver`; use my personal shared `eslint` config [`7660fed`](https://github.com/inspect-js/is-number-object/commit/7660fed03a7060eb5c91e74b9a17303d4fac1056) +- [Tests] remove `jscs` [`f1fee97`](https://github.com/inspect-js/is-number-object/commit/f1fee97423478bcc653c844fadda55138d9b9a54) +- [meta] add `auto-changelog` [`4b1c225`](https://github.com/inspect-js/is-number-object/commit/4b1c2253770eb18761a1e8b157772028d6f742c4) +- [meta] remove unused Makefile and associated utilities [`379b979`](https://github.com/inspect-js/is-number-object/commit/379b9793d9c61d7889e53bd9de9578dca9964ebc) +- Update `covert`, `jscs`, `eslint`, `semver` [`16d2af8`](https://github.com/inspect-js/is-number-object/commit/16d2af82a6c93aee614f7a4b2c468411c743e95f) +- [Dev Deps] update `eslint`, `@ljharb/eslint-config`, `covert`, `is`, `replace`, `semver`, `tape` [`21c0f04`](https://github.com/inspect-js/is-number-object/commit/21c0f0431984b87443c6acb9f003368feb7b4368) +- Update `is`, `tape`, `covert`, `jscs`, `editorconfig-tools`, `nsp`, `eslint`, `semver`. Add `replace`. Use `^` instead of `~`. [`19d6ee3`](https://github.com/inspect-js/is-number-object/commit/19d6ee3a3d4a87764d57316804fd8b882ba5197c) +- Update `eslint` [`d32754b`](https://github.com/inspect-js/is-number-object/commit/d32754bcca0033e01eba531c4353d1239e992203) +- [Dev Deps] update `eslint`, `@ljharb/eslint-config`, `replace` [`1df8165`](https://github.com/inspect-js/is-number-object/commit/1df8165dd63d9f2f78ccb78e905d0a6b3e302884) +- Update `tape`, `jscs`, `eslint`, `@ljharb/eslint-config` [`675372b`](https://github.com/inspect-js/is-number-object/commit/675372b115fb20b5034f40bcbb5560c6c0512746) +- [readme] clean up readme; remove testling; fix repo URLs [`80e29c4`](https://github.com/inspect-js/is-number-object/commit/80e29c4d6d0811fc361e95ee83b81280bf3ae3f5) +- [Tests] up to `node` `v12.7`, `v10.16`, `v8.16` [`287a968`](https://github.com/inspect-js/is-number-object/commit/287a9687b1fc3d091ec231c06f19a19ff7b0e8f6) +- Test on latest `iojs` and `node` versions. [`11c98a2`](https://github.com/inspect-js/is-number-object/commit/11c98a23b232cb21c7daab797fd63875c2970681) +- [actions] add automatic rebasing / merge commit blocking [`022d026`](https://github.com/inspect-js/is-number-object/commit/022d026129df445f239ba2ecd8d47a2786242d75) +- [meta] create FUNDING.yml [`7f52710`](https://github.com/inspect-js/is-number-object/commit/7f527107168aad7108b7c262d295dcf44e03214d) +- [Dev Deps] update `is`, `jscs`, `nsp`, `eslint`, `@ljharb/eslint-config`, `semver` [`bc8cd50`](https://github.com/inspect-js/is-number-object/commit/bc8cd508fe4440168f9b049be3ddf93c56c06c49) +- [Tests] use `npx aud` instead of `nsp` or `npm audit` with hoops [`1f9200b`](https://github.com/inspect-js/is-number-object/commit/1f9200b7c56840dc23eeeca5d0ee4f64a0446e08) +- [Tests] up to `node` `v12.11` [`706d50a`](https://github.com/inspect-js/is-number-object/commit/706d50a779b90feb3f4d2ae88d8189d19b913073) +- [Dev Deps] update `jscs` [`e3591a4`](https://github.com/inspect-js/is-number-object/commit/e3591a445b1af25d46632eafea51efa07b4eb6dc) +- [Tests] up to `io.js` `v3.3`, `node` `v4.1` [`baf4ee7`](https://github.com/inspect-js/is-number-object/commit/baf4ee749fb65ec12e9cab102e77aa0e14312109) +- Update `nsp`, `eslint` [`61b18d5`](https://github.com/inspect-js/is-number-object/commit/61b18d5b44542fddf4950534d506b20d8c8b1f44) +- Update `eslint`, `semver` [`52e61bd`](https://github.com/inspect-js/is-number-object/commit/52e61bd4334c0a1afacd147fd0bc1e2c1be10df5) +- [Dev Deps] update `eslint`, `@ljharb/eslint-config`, `has-symbols`; add `safe-publish-latest` [`79db7f6`](https://github.com/inspect-js/is-number-object/commit/79db7f610d2bcf5f0d6e8ca834f7402504101072) +- Only apps should have lockfiles [`677b9b4`](https://github.com/inspect-js/is-number-object/commit/677b9b4fb6ad9d7b984cb0f89c8b5a6df143b29a) +- Test on `io.js` `v2.2` [`e8a38b2`](https://github.com/inspect-js/is-number-object/commit/e8a38b2fe73b841b0ed55d9f60573d460a4f2a62) +- [meta] add `funding` field [`85315e7`](https://github.com/inspect-js/is-number-object/commit/85315e75c119a2aef70a766f2ddc1079b64d006b) +- [Dev Deps] update `eslint`, `tape` [`f3581aa`](https://github.com/inspect-js/is-number-object/commit/f3581aaea310546f6ee4612990468d39f058d320) +- [Tests] use `eclint` instead of `editorconfig-tools` [`7b53680`](https://github.com/inspect-js/is-number-object/commit/7b5368071000eb1c715aeeee5ff47ffdbee9fe5c) +- [Dev Deps] update `semver`, `tape` [`d6b524a`](https://github.com/inspect-js/is-number-object/commit/d6b524ac2e8c0240c436cbe8828671e383d51fd5) +- [Dev Deps] Update `tape`, `eslint` [`be19203`](https://github.com/inspect-js/is-number-object/commit/be19203dee0aa70ff8f09823bf880a38b824e1ed) +- Test up to `io.js` `v2.1` [`feb7ba6`](https://github.com/inspect-js/is-number-object/commit/feb7ba63a0816f1d36419ce240f96e9b4e4c90ba) +- Test up to `io.js` `v3.0` [`7be1f0a`](https://github.com/inspect-js/is-number-object/commit/7be1f0a25dc59b6606be9ee1ace38cb7039a59d2) +- [Dev Deps] update `tape` [`d9a2318`](https://github.com/inspect-js/is-number-object/commit/d9a2318bc82477e9321e961def11e28d364e5562) +- Switch from vb.teelaun.ch to versionbadg.es for the npm version badge SVG. [`a6cd411`](https://github.com/inspect-js/is-number-object/commit/a6cd411c6bd92691a48b52683afce584c2c6b21b) +- Test on `io.js` `v2.4` [`46c2e7f`](https://github.com/inspect-js/is-number-object/commit/46c2e7f2ce8ad7f8ab3c1da827d93fc2780eff06) +- Test on `io.js` `v2.3` [`9c344b0`](https://github.com/inspect-js/is-number-object/commit/9c344b0df83628908a1f776a3f2e5fc4fae1d4d2) +- Fix tests for faked @@toStringTag [`f8c446e`](https://github.com/inspect-js/is-number-object/commit/f8c446e9fc320c23807717356e259529f494b9f3) + +## [v1.0.3](https://github.com/inspect-js/is-number-object/compare/v1.0.2...v1.0.3) - 2015-01-29 + +### Commits + +- If @@toStringTag is not present, use the old-school Object#toString test. [`9b2a4df`](https://github.com/inspect-js/is-number-object/commit/9b2a4df6ccf903e89198d4244eeb7f47a7056327) + +## [v1.0.2](https://github.com/inspect-js/is-number-object/compare/v1.0.1...v1.0.2) - 2015-01-29 + +### Commits + +- Improve optimizability of the non-try/catch part. [`7e6be2f`](https://github.com/inspect-js/is-number-object/commit/7e6be2fd2346557fc81bd544ac8745021c50e266) +- Fix package.json [`4f2ebea`](https://github.com/inspect-js/is-number-object/commit/4f2ebeae09c45e1eefeb2c10a011ff2ef0aca921) + +## [v1.0.1](https://github.com/inspect-js/is-number-object/compare/v1.0.0...v1.0.1) - 2015-01-29 + +### Commits + +- Use Object() instead of new Number() [`1aaa746`](https://github.com/inspect-js/is-number-object/commit/1aaa746c26878a0f698aabea4d88215311f2a38d) +- Add early exits for typeof number, or typeof not "object". [`eae4337`](https://github.com/inspect-js/is-number-object/commit/eae43375d3f88e04bb10eabd954e5a6b66ad5305) + +## v1.0.0 - 2015-01-28 + +### Commits + +- Dotfiles. [`9c74e3e`](https://github.com/inspect-js/is-number-object/commit/9c74e3eb2b10398d4022de7c4015531e874f06c8) +- `make release` [`a99e5ae`](https://github.com/inspect-js/is-number-object/commit/a99e5aeb3995a7d543fc5833722bc02011fabad6) +- package.json [`4fed9ef`](https://github.com/inspect-js/is-number-object/commit/4fed9ef7c35ccfc45ca8acd3c92c9cb91c7daa6d) +- Read me [`c91d6ba`](https://github.com/inspect-js/is-number-object/commit/c91d6ba00de79eaaac5fec7c9d8866d61d0abb62) +- Initial commit [`629fb96`](https://github.com/inspect-js/is-number-object/commit/629fb969f076e0802c799b368c7b02556bb0750e) +- Tests. [`a39de62`](https://github.com/inspect-js/is-number-object/commit/a39de624785cc204ed7c0ea5518f1c878870ceb1) +- Implementation. [`aedd91e`](https://github.com/inspect-js/is-number-object/commit/aedd91e6fc23f00852ad1266b6c19f32b7f93a22) diff --git a/novas/novacore-zephyr/groq-code-cli/node_modules/is-number-object/LICENSE b/novas/novacore-zephyr/groq-code-cli/node_modules/is-number-object/LICENSE new file mode 100644 index 0000000000000000000000000000000000000000..b43df444e518288ceef6eaa9badd33388191b1d3 --- /dev/null +++ b/novas/novacore-zephyr/groq-code-cli/node_modules/is-number-object/LICENSE @@ -0,0 +1,22 @@ +The MIT License (MIT) + +Copyright (c) 2015 Jordan Harband + +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. + diff --git a/novas/novacore-zephyr/groq-code-cli/node_modules/is-number-object/README.md b/novas/novacore-zephyr/groq-code-cli/node_modules/is-number-object/README.md new file mode 100644 index 0000000000000000000000000000000000000000..a5f1e5b1f001aba4bf7a462746d247c85ce2a712 --- /dev/null +++ b/novas/novacore-zephyr/groq-code-cli/node_modules/is-number-object/README.md @@ -0,0 +1,55 @@ +# is-number-object [![Version Badge][2]][1] + +[![github actions][actions-image]][actions-url] +[![coverage][codecov-image]][codecov-url] +[![dependency status][5]][6] +[![dev dependency status][7]][8] +[![License][license-image]][license-url] +[![Downloads][downloads-image]][downloads-url] + +[![npm badge][11]][1] + +Is this value a JS Number object? This module works cross-realm/iframe, and despite ES6 @@toStringTag. + +## Example + +```js +var isNumber = require('is-number-object'); +var assert = require('assert'); + +assert.notOk(isNumber(undefined)); +assert.notOk(isNumber(null)); +assert.notOk(isNumber(false)); +assert.notOk(isNumber(true)); +assert.notOk(isNumber('foo')); +assert.notOk(isNumber(function () {})); +assert.notOk(isNumber([])); +assert.notOk(isNumber({})); +assert.notOk(isNumber(/a/g)); +assert.notOk(isNumber(new RegExp('a', 'g'))); +assert.notOk(isNumber(new Date())); + +assert.ok(isNumber(42)); +assert.ok(isNumber(NaN)); +assert.ok(isNumber(Infinity)); +assert.ok(isNumber(new Number(42))); +``` + +## Tests +Simply clone the repo, `npm install`, and run `npm test` + +[1]: https://npmjs.org/package/is-number-object +[2]: https://versionbadg.es/inspect-js/is-number-object.svg +[5]: https://david-dm.org/inspect-js/is-number-object.svg +[6]: https://david-dm.org/inspect-js/is-number-object +[7]: https://david-dm.org/inspect-js/is-number-object/dev-status.svg +[8]: https://david-dm.org/inspect-js/is-number-object#info=devDependencies +[11]: https://nodei.co/npm/is-number-object.png?downloads=true&stars=true +[license-image]: https://img.shields.io/npm/l/is-number-object.svg +[license-url]: LICENSE +[downloads-image]: https://img.shields.io/npm/dm/is-number-object.svg +[downloads-url]: https://npm-stat.com/charts.html?package=is-number-object +[codecov-image]: https://codecov.io/gh/inspect-js/is-number-object/branch/main/graphs/badge.svg +[codecov-url]: https://app.codecov.io/gh/inspect-js/is-number-object/ +[actions-image]: https://img.shields.io/endpoint?url=https://github-actions-badge-u3jn4tfpocch.runkit.sh/inspect-js/is-number-object +[actions-url]: https://github.com/inspect-js/is-number-object/actions diff --git a/novas/novacore-zephyr/groq-code-cli/node_modules/is-number-object/index.d.ts b/novas/novacore-zephyr/groq-code-cli/node_modules/is-number-object/index.d.ts new file mode 100644 index 0000000000000000000000000000000000000000..6cd3c35a8c57e1475302cb1c5e240b111339e76f --- /dev/null +++ b/novas/novacore-zephyr/groq-code-cli/node_modules/is-number-object/index.d.ts @@ -0,0 +1,3 @@ +declare function isNumberObject(value: unknown): value is (number | Number); + +export = isNumberObject; diff --git a/novas/novacore-zephyr/groq-code-cli/node_modules/is-number-object/index.js b/novas/novacore-zephyr/groq-code-cli/node_modules/is-number-object/index.js new file mode 100644 index 0000000000000000000000000000000000000000..b4bd53d49bc020e18d17518706b4053ee4e5bcb5 --- /dev/null +++ b/novas/novacore-zephyr/groq-code-cli/node_modules/is-number-object/index.js @@ -0,0 +1,29 @@ +'use strict'; + +var callBound = require('call-bound'); + +var $numToStr = callBound('Number.prototype.toString'); + +/** @type {import('.')} */ +var tryNumberObject = function tryNumberObject(value) { + try { + $numToStr(value); + return true; + } catch (e) { + return false; + } +}; +var $toString = callBound('Object.prototype.toString'); +var numClass = '[object Number]'; +var hasToStringTag = require('has-tostringtag/shams')(); + +/** @type {import('.')} */ +module.exports = function isNumberObject(value) { + if (typeof value === 'number') { + return true; + } + if (!value || typeof value !== 'object') { + return false; + } + return hasToStringTag ? tryNumberObject(value) : $toString(value) === numClass; +}; diff --git a/novas/novacore-zephyr/groq-code-cli/node_modules/is-number-object/package.json b/novas/novacore-zephyr/groq-code-cli/node_modules/is-number-object/package.json new file mode 100644 index 0000000000000000000000000000000000000000..d1dbbdf4b5acb2dc13d7a8a6739a0831836e64b4 --- /dev/null +++ b/novas/novacore-zephyr/groq-code-cli/node_modules/is-number-object/package.json @@ -0,0 +1,85 @@ +{ + "name": "is-number-object", + "version": "1.1.1", + "author": "Jordan Harband ", + "funding": { + "url": "https://github.com/sponsors/ljharb" + }, + "description": "Is this value a JS Number object? This module works cross-realm/iframe, and despite ES6 @@toStringTag.", + "main": "index.js", + "scripts": { + "prepack": "npmignore --auto --commentLines=autogenerated", + "prepublishOnly": "safe-publish-latest", + "prepublish": "not-in-publish || npm run prepublishOnly", + "pretest": "npm run lint", + "tests-only": "nyc tape 'test/**/*.js'", + "test:corejs": "nyc tape test-corejs.js", + "test": "npm run tests-only && npm run test:corejs", + "posttest": "npx npm@'>=10.2' audit --production", + "prelint": "eclint check $(git ls-files | xargs find 2> /dev/null | grep -vE 'node_modules|\\.git')", + "lint": "eslint --ext=js,mjs .", + "postlint": "tsc -p . && attw -P", + "version": "auto-changelog && git add CHANGELOG.md", + "postversion": "auto-changelog && git add CHANGELOG.md && git commit --no-edit --amend && git tag -f \"v$(node -e \"console.log(require('./package.json').version)\")\"" + }, + "repository": { + "type": "git", + "url": "git://github.com/inspect-js/is-number-object.git" + }, + "keywords": [ + "Number", + "ES6", + "toStringTag", + "@@toStringTag", + "Number object" + ], + "license": "MIT", + "bugs": { + "url": "https://github.com/inspect-js/is-number-object/issues" + }, + "homepage": "https://github.com/inspect-js/is-number-object#readme", + "dependencies": { + "call-bound": "^1.0.3", + "has-tostringtag": "^1.0.2" + }, + "devDependencies": { + "@arethetypeswrong/cli": "^0.17.1", + "@ljharb/eslint-config": "^21.1.1", + "@ljharb/tsconfig": "^0.2.2", + "@types/core-js": "^2.5.8", + "@types/tape": "^5.7.0", + "auto-changelog": "^2.5.0", + "core-js": "^3.39.0", + "eclint": "^2.8.1", + "encoding": "^0.1.13", + "eslint": "=8.8.0", + "in-publish": "^2.0.1", + "indexof": "^0.0.1", + "is": "^3.3.0", + "npmignore": "^0.3.1", + "nyc": "^10.3.2", + "safe-publish-latest": "^2.0.0", + "tape": "^5.9.0", + "typescript": "next" + }, + "testling": { + "files": "test/index.js" + }, + "engines": { + "node": ">= 0.4" + }, + "auto-changelog": { + "output": "CHANGELOG.md", + "template": "keepachangelog", + "unreleased": false, + "commitLimit": false, + "backfillLimit": false, + "hideCredit": true + }, + "publishConfig": { + "ignore": [ + ".github/workflows", + "test-corejs.js" + ] + } +} diff --git a/novas/novacore-zephyr/groq-code-cli/node_modules/is-number-object/tsconfig.json b/novas/novacore-zephyr/groq-code-cli/node_modules/is-number-object/tsconfig.json new file mode 100644 index 0000000000000000000000000000000000000000..707cf95103eea5754b0141455f421ec38d129dd9 --- /dev/null +++ b/novas/novacore-zephyr/groq-code-cli/node_modules/is-number-object/tsconfig.json @@ -0,0 +1,9 @@ +{ + "extends": "@ljharb/tsconfig", + "compilerOptions": { + "target": "ES2021", + }, + "exclude": [ + "coverage" + ] +} diff --git a/novas/novacore-zephyr/groq-code-cli/node_modules/is-number/LICENSE b/novas/novacore-zephyr/groq-code-cli/node_modules/is-number/LICENSE new file mode 100644 index 0000000000000000000000000000000000000000..9af4a67d206f24ecdbb5fdff2839041ca0bbd346 --- /dev/null +++ b/novas/novacore-zephyr/groq-code-cli/node_modules/is-number/LICENSE @@ -0,0 +1,21 @@ +The MIT License (MIT) + +Copyright (c) 2014-present, Jon Schlinkert. + +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. diff --git a/novas/novacore-zephyr/groq-code-cli/node_modules/is-number/README.md b/novas/novacore-zephyr/groq-code-cli/node_modules/is-number/README.md new file mode 100644 index 0000000000000000000000000000000000000000..eb8149e8cf5f148f16ba21b2d5b452e19f984696 --- /dev/null +++ b/novas/novacore-zephyr/groq-code-cli/node_modules/is-number/README.md @@ -0,0 +1,187 @@ +# is-number [![NPM version](https://img.shields.io/npm/v/is-number.svg?style=flat)](https://www.npmjs.com/package/is-number) [![NPM monthly downloads](https://img.shields.io/npm/dm/is-number.svg?style=flat)](https://npmjs.org/package/is-number) [![NPM total downloads](https://img.shields.io/npm/dt/is-number.svg?style=flat)](https://npmjs.org/package/is-number) [![Linux Build Status](https://img.shields.io/travis/jonschlinkert/is-number.svg?style=flat&label=Travis)](https://travis-ci.org/jonschlinkert/is-number) + +> Returns true if the value is a finite number. + +Please consider following this project's author, [Jon Schlinkert](https://github.com/jonschlinkert), and consider starring the project to show your :heart: and support. + +## Install + +Install with [npm](https://www.npmjs.com/): + +```sh +$ npm install --save is-number +``` + +## Why is this needed? + +In JavaScript, it's not always as straightforward as it should be to reliably check if a value is a number. It's common for devs to use `+`, `-`, or `Number()` to cast a string value to a number (for example, when values are returned from user input, regex matches, parsers, etc). But there are many non-intuitive edge cases that yield unexpected results: + +```js +console.log(+[]); //=> 0 +console.log(+''); //=> 0 +console.log(+' '); //=> 0 +console.log(typeof NaN); //=> 'number' +``` + +This library offers a performant way to smooth out edge cases like these. + +## Usage + +```js +const isNumber = require('is-number'); +``` + +See the [tests](./test.js) for more examples. + +### true + +```js +isNumber(5e3); // true +isNumber(0xff); // true +isNumber(-1.1); // true +isNumber(0); // true +isNumber(1); // true +isNumber(1.1); // true +isNumber(10); // true +isNumber(10.10); // true +isNumber(100); // true +isNumber('-1.1'); // true +isNumber('0'); // true +isNumber('012'); // true +isNumber('0xff'); // true +isNumber('1'); // true +isNumber('1.1'); // true +isNumber('10'); // true +isNumber('10.10'); // true +isNumber('100'); // true +isNumber('5e3'); // true +isNumber(parseInt('012')); // true +isNumber(parseFloat('012')); // true +``` + +### False + +Everything else is false, as you would expect: + +```js +isNumber(Infinity); // false +isNumber(NaN); // false +isNumber(null); // false +isNumber(undefined); // false +isNumber(''); // false +isNumber(' '); // false +isNumber('foo'); // false +isNumber([1]); // false +isNumber([]); // false +isNumber(function () {}); // false +isNumber({}); // false +``` + +## Release history + +### 7.0.0 + +* Refactor. Now uses `.isFinite` if it exists. +* Performance is about the same as v6.0 when the value is a string or number. But it's now 3x-4x faster when the value is not a string or number. + +### 6.0.0 + +* Optimizations, thanks to @benaadams. + +### 5.0.0 + +**Breaking changes** + +* removed support for `instanceof Number` and `instanceof String` + +## Benchmarks + +As with all benchmarks, take these with a grain of salt. See the [benchmarks](./benchmark/index.js) for more detail. + +``` +# all +v7.0 x 413,222 ops/sec ±2.02% (86 runs sampled) +v6.0 x 111,061 ops/sec ±1.29% (85 runs sampled) +parseFloat x 317,596 ops/sec ±1.36% (86 runs sampled) +fastest is 'v7.0' + +# string +v7.0 x 3,054,496 ops/sec ±1.05% (89 runs sampled) +v6.0 x 2,957,781 ops/sec ±0.98% (88 runs sampled) +parseFloat x 3,071,060 ops/sec ±1.13% (88 runs sampled) +fastest is 'parseFloat,v7.0' + +# number +v7.0 x 3,146,895 ops/sec ±0.89% (89 runs sampled) +v6.0 x 3,214,038 ops/sec ±1.07% (89 runs sampled) +parseFloat x 3,077,588 ops/sec ±1.07% (87 runs sampled) +fastest is 'v6.0' +``` + +## About + +
+Contributing + +Pull requests and stars are always welcome. For bugs and feature requests, [please create an issue](../../issues/new). + +
+ +
+Running Tests + +Running and reviewing unit tests is a great way to get familiarized with a library and its API. You can install dependencies and run tests with the following command: + +```sh +$ npm install && npm test +``` + +
+ +
+Building docs + +_(This project's readme.md is generated by [verb](https://github.com/verbose/verb-generate-readme), please don't edit the readme directly. Any changes to the readme must be made in the [.verb.md](.verb.md) readme template.)_ + +To generate the readme, run the following command: + +```sh +$ npm install -g verbose/verb#dev verb-generate-readme && verb +``` + +
+ +### Related projects + +You might also be interested in these projects: + +* [is-plain-object](https://www.npmjs.com/package/is-plain-object): Returns true if an object was created by the `Object` constructor. | [homepage](https://github.com/jonschlinkert/is-plain-object "Returns true if an object was created by the `Object` constructor.") +* [is-primitive](https://www.npmjs.com/package/is-primitive): Returns `true` if the value is a primitive. | [homepage](https://github.com/jonschlinkert/is-primitive "Returns `true` if the value is a primitive. ") +* [isobject](https://www.npmjs.com/package/isobject): Returns true if the value is an object and not an array or null. | [homepage](https://github.com/jonschlinkert/isobject "Returns true if the value is an object and not an array or null.") +* [kind-of](https://www.npmjs.com/package/kind-of): Get the native type of a value. | [homepage](https://github.com/jonschlinkert/kind-of "Get the native type of a value.") + +### Contributors + +| **Commits** | **Contributor** | +| --- | --- | +| 49 | [jonschlinkert](https://github.com/jonschlinkert) | +| 5 | [charlike-old](https://github.com/charlike-old) | +| 1 | [benaadams](https://github.com/benaadams) | +| 1 | [realityking](https://github.com/realityking) | + +### Author + +**Jon Schlinkert** + +* [LinkedIn Profile](https://linkedin.com/in/jonschlinkert) +* [GitHub Profile](https://github.com/jonschlinkert) +* [Twitter Profile](https://twitter.com/jonschlinkert) + +### License + +Copyright © 2018, [Jon Schlinkert](https://github.com/jonschlinkert). +Released under the [MIT License](LICENSE). + +*** + +_This file was generated by [verb-generate-readme](https://github.com/verbose/verb-generate-readme), v0.6.0, on June 15, 2018._ \ No newline at end of file diff --git a/novas/novacore-zephyr/groq-code-cli/node_modules/is-number/index.js b/novas/novacore-zephyr/groq-code-cli/node_modules/is-number/index.js new file mode 100644 index 0000000000000000000000000000000000000000..27f19b757f7c1186b92c405a213bf0dd9b6cbe95 --- /dev/null +++ b/novas/novacore-zephyr/groq-code-cli/node_modules/is-number/index.js @@ -0,0 +1,18 @@ +/*! + * is-number + * + * Copyright (c) 2014-present, Jon Schlinkert. + * Released under the MIT License. + */ + +'use strict'; + +module.exports = function(num) { + if (typeof num === 'number') { + return num - num === 0; + } + if (typeof num === 'string' && num.trim() !== '') { + return Number.isFinite ? Number.isFinite(+num) : isFinite(+num); + } + return false; +}; diff --git a/novas/novacore-zephyr/groq-code-cli/node_modules/is-number/package.json b/novas/novacore-zephyr/groq-code-cli/node_modules/is-number/package.json new file mode 100644 index 0000000000000000000000000000000000000000..3715072609d61a010bff7116331b71f04206af96 --- /dev/null +++ b/novas/novacore-zephyr/groq-code-cli/node_modules/is-number/package.json @@ -0,0 +1,82 @@ +{ + "name": "is-number", + "description": "Returns true if a number or string value is a finite number. Useful for regex matches, parsing, user input, etc.", + "version": "7.0.0", + "homepage": "https://github.com/jonschlinkert/is-number", + "author": "Jon Schlinkert (https://github.com/jonschlinkert)", + "contributors": [ + "Jon Schlinkert (http://twitter.com/jonschlinkert)", + "Olsten Larck (https://i.am.charlike.online)", + "Rouven Weßling (www.rouvenwessling.de)" + ], + "repository": "jonschlinkert/is-number", + "bugs": { + "url": "https://github.com/jonschlinkert/is-number/issues" + }, + "license": "MIT", + "files": [ + "index.js" + ], + "main": "index.js", + "engines": { + "node": ">=0.12.0" + }, + "scripts": { + "test": "mocha" + }, + "devDependencies": { + "ansi": "^0.3.1", + "benchmark": "^2.1.4", + "gulp-format-md": "^1.0.0", + "mocha": "^3.5.3" + }, + "keywords": [ + "cast", + "check", + "coerce", + "coercion", + "finite", + "integer", + "is", + "isnan", + "is-nan", + "is-num", + "is-number", + "isnumber", + "isfinite", + "istype", + "kind", + "math", + "nan", + "num", + "number", + "numeric", + "parseFloat", + "parseInt", + "test", + "type", + "typeof", + "value" + ], + "verb": { + "toc": false, + "layout": "default", + "tasks": [ + "readme" + ], + "related": { + "list": [ + "is-plain-object", + "is-primitive", + "isobject", + "kind-of" + ] + }, + "plugins": [ + "gulp-format-md" + ], + "lint": { + "reflinks": true + } + } +} diff --git a/novas/novacore-zephyr/groq-code-cli/node_modules/is-obj-prop/LICENSE.md b/novas/novacore-zephyr/groq-code-cli/node_modules/is-obj-prop/LICENSE.md new file mode 100644 index 0000000000000000000000000000000000000000..a8b19ea6e9af64c936114d9c7a63692e9b41bfd9 --- /dev/null +++ b/novas/novacore-zephyr/groq-code-cli/node_modules/is-obj-prop/LICENSE.md @@ -0,0 +1,21 @@ +The MIT License (MIT) + +Copyright (c) 2015 Dustin Specker + +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. \ No newline at end of file diff --git a/novas/novacore-zephyr/groq-code-cli/node_modules/is-obj-prop/package.json b/novas/novacore-zephyr/groq-code-cli/node_modules/is-obj-prop/package.json new file mode 100644 index 0000000000000000000000000000000000000000..de5a09f780a2768b54295a13ac51943bcc0f2bdf --- /dev/null +++ b/novas/novacore-zephyr/groq-code-cli/node_modules/is-obj-prop/package.json @@ -0,0 +1,51 @@ +{ + "name": "is-obj-prop", + "version": "1.0.0", + "description": "Does a JS type have a property", + "main": "lib/index.js", + "scripts": { + "test": "gulp test", + "coveralls": "cat ./coverage/lcov.info | ./node_modules/coveralls/bin/coveralls.js" + }, + "repository": "dustinspecker/is-obj-prop", + "keywords": [ + "js", + "javascript", + "object", + "property", + "types" + ], + "author": { + "name": "Dustin Specker", + "email": "DustinSpecker@DustinSpecker.com", + "url": "github.com/dustinspecker" + }, + "license": "MIT", + "files": [ + "lib" + ], + "dependencies": { + "obj-props": "^1.0.0", + "lowercase-keys": "^1.0.0" + }, + "devDependencies": { + "babel-core": "^6.0.12", + "babel-eslint": "^6.0.0-beta.6", + "babel-preset-es2015": "^6.0.12", + "chai": "^3.0.0", + "coveralls": "^2.11.2", + "del": "^2.0.0", + "eslint-config-dustinspecker": "^1.1.0", + "eslint-plugin-new-with-error": "^1.1.0", + "eslint-plugin-no-use-extend-native": "^0.3.1", + "eslint-plugin-xo": "^0.5.1", + "gulp": "^3.9.0", + "gulp-alex": "^3.0.0", + "gulp-babel": "^6.0.0", + "gulp-eslint": "^3.0.1", + "gulp-if": "^2.0.0", + "gulp-istanbul": "^1.0.0", + "gulp-mocha": "^3.0.0", + "gulp-plumber": "^1.0.1" + } +} diff --git a/novas/novacore-zephyr/groq-code-cli/node_modules/is-path-inside/index.d.ts b/novas/novacore-zephyr/groq-code-cli/node_modules/is-path-inside/index.d.ts new file mode 100644 index 0000000000000000000000000000000000000000..5cc3d804de1120d90a4b91817bd4bbcec57eed3a --- /dev/null +++ b/novas/novacore-zephyr/groq-code-cli/node_modules/is-path-inside/index.d.ts @@ -0,0 +1,27 @@ +/** +Check if a path is inside another path. + +Note that relative paths are resolved against `process.cwd()` to make them absolute. + +_Important:_ This package is meant for use with path manipulation. It does not check if the paths exist nor does it resolve symlinks. You should not use this as a security mechanism to guard against access to certain places on the file system. + +@example +``` +import isPathInside = require('is-path-inside'); + +isPathInside('a/b/c', 'a/b'); +//=> true + +isPathInside('a/b/c', 'x/y'); +//=> false + +isPathInside('a/b/c', 'a/b/c'); +//=> false + +isPathInside('/Users/sindresorhus/dev/unicorn', '/Users/sindresorhus'); +//=> true +``` +*/ +declare function isPathInside(childPath: string, parentPath: string): boolean; + +export = isPathInside; diff --git a/novas/novacore-zephyr/groq-code-cli/node_modules/is-path-inside/index.js b/novas/novacore-zephyr/groq-code-cli/node_modules/is-path-inside/index.js new file mode 100644 index 0000000000000000000000000000000000000000..28ed79c0f3516b300243d2130ffae5d4299bb5e4 --- /dev/null +++ b/novas/novacore-zephyr/groq-code-cli/node_modules/is-path-inside/index.js @@ -0,0 +1,12 @@ +'use strict'; +const path = require('path'); + +module.exports = (childPath, parentPath) => { + const relation = path.relative(parentPath, childPath); + return Boolean( + relation && + relation !== '..' && + !relation.startsWith(`..${path.sep}`) && + relation !== path.resolve(childPath) + ); +}; diff --git a/novas/novacore-zephyr/groq-code-cli/node_modules/is-path-inside/license b/novas/novacore-zephyr/groq-code-cli/node_modules/is-path-inside/license new file mode 100644 index 0000000000000000000000000000000000000000..e7af2f77107d73046421ef56c4684cbfdd3c1e89 --- /dev/null +++ b/novas/novacore-zephyr/groq-code-cli/node_modules/is-path-inside/license @@ -0,0 +1,9 @@ +MIT License + +Copyright (c) Sindre Sorhus (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. diff --git a/novas/novacore-zephyr/groq-code-cli/node_modules/is-path-inside/package.json b/novas/novacore-zephyr/groq-code-cli/node_modules/is-path-inside/package.json new file mode 100644 index 0000000000000000000000000000000000000000..88c154ae7ceaf36ea3fa1dc4ecbe3352956bd891 --- /dev/null +++ b/novas/novacore-zephyr/groq-code-cli/node_modules/is-path-inside/package.json @@ -0,0 +1,36 @@ +{ + "name": "is-path-inside", + "version": "3.0.3", + "description": "Check if a path is inside another path", + "license": "MIT", + "repository": "sindresorhus/is-path-inside", + "author": { + "name": "Sindre Sorhus", + "email": "sindresorhus@gmail.com", + "url": "sindresorhus.com" + }, + "engines": { + "node": ">=8" + }, + "scripts": { + "test": "xo && ava && tsd" + }, + "files": [ + "index.js", + "index.d.ts" + ], + "keywords": [ + "path", + "inside", + "folder", + "directory", + "dir", + "file", + "resolve" + ], + "devDependencies": { + "ava": "^2.1.0", + "tsd": "^0.7.2", + "xo": "^0.24.0" + } +} diff --git a/novas/novacore-zephyr/groq-code-cli/node_modules/is-path-inside/readme.md b/novas/novacore-zephyr/groq-code-cli/node_modules/is-path-inside/readme.md new file mode 100644 index 0000000000000000000000000000000000000000..e8c4f928eb9964a9ee017a16642cf25fc87f3b50 --- /dev/null +++ b/novas/novacore-zephyr/groq-code-cli/node_modules/is-path-inside/readme.md @@ -0,0 +1,63 @@ +# is-path-inside + +> Check if a path is inside another path + + +## Install + +``` +$ npm install is-path-inside +``` + + +## Usage + +```js +const isPathInside = require('is-path-inside'); + +isPathInside('a/b/c', 'a/b'); +//=> true + +isPathInside('a/b/c', 'x/y'); +//=> false + +isPathInside('a/b/c', 'a/b/c'); +//=> false + +isPathInside('/Users/sindresorhus/dev/unicorn', '/Users/sindresorhus'); +//=> true +``` + + +## API + +### isPathInside(childPath, parentPath) + +Note that relative paths are resolved against `process.cwd()` to make them absolute. + +**Important:** This package is meant for use with path manipulation. It does not check if the paths exist nor does it resolve symlinks. You should not use this as a security mechanism to guard against access to certain places on the file system. + +#### childPath + +Type: `string` + +The path that should be inside `parentPath`. + +#### parentPath + +Type: `string` + +The path that should contain `childPath`. + + +--- + +
+ + Get professional support for this package with a Tidelift subscription + +
+ + Tidelift helps make open source sustainable for maintainers while giving companies
assurances about security, maintenance, and licensing for their dependencies. +
+
diff --git a/novas/novacore-zephyr/groq-code-cli/node_modules/is-plain-obj/index.js b/novas/novacore-zephyr/groq-code-cli/node_modules/is-plain-obj/index.js new file mode 100644 index 0000000000000000000000000000000000000000..0d1ba9eeb89723bbce4781f2ccc66649d661ba4b --- /dev/null +++ b/novas/novacore-zephyr/groq-code-cli/node_modules/is-plain-obj/index.js @@ -0,0 +1,7 @@ +'use strict'; +var toString = Object.prototype.toString; + +module.exports = function (x) { + var prototype; + return toString.call(x) === '[object Object]' && (prototype = Object.getPrototypeOf(x), prototype === null || prototype === Object.getPrototypeOf({})); +}; diff --git a/novas/novacore-zephyr/groq-code-cli/node_modules/is-plain-obj/license b/novas/novacore-zephyr/groq-code-cli/node_modules/is-plain-obj/license new file mode 100644 index 0000000000000000000000000000000000000000..654d0bfe943437d43242325b1fbcff5f400d84ee --- /dev/null +++ b/novas/novacore-zephyr/groq-code-cli/node_modules/is-plain-obj/license @@ -0,0 +1,21 @@ +The MIT License (MIT) + +Copyright (c) Sindre Sorhus (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. diff --git a/novas/novacore-zephyr/groq-code-cli/node_modules/is-plain-obj/package.json b/novas/novacore-zephyr/groq-code-cli/node_modules/is-plain-obj/package.json new file mode 100644 index 0000000000000000000000000000000000000000..d331f6e816990078be3696f23bb8d14dd7ec226a --- /dev/null +++ b/novas/novacore-zephyr/groq-code-cli/node_modules/is-plain-obj/package.json @@ -0,0 +1,36 @@ +{ + "name": "is-plain-obj", + "version": "1.1.0", + "description": "Check if a value is a plain object", + "license": "MIT", + "repository": "sindresorhus/is-plain-obj", + "author": { + "name": "Sindre Sorhus", + "email": "sindresorhus@gmail.com", + "url": "sindresorhus.com" + }, + "engines": { + "node": ">=0.10.0" + }, + "scripts": { + "test": "node test.js" + }, + "files": [ + "index.js" + ], + "keywords": [ + "obj", + "object", + "is", + "check", + "test", + "type", + "plain", + "vanilla", + "pure", + "simple" + ], + "devDependencies": { + "ava": "0.0.4" + } +} diff --git a/novas/novacore-zephyr/groq-code-cli/node_modules/is-plain-obj/readme.md b/novas/novacore-zephyr/groq-code-cli/node_modules/is-plain-obj/readme.md new file mode 100644 index 0000000000000000000000000000000000000000..269e56aeff0646e8f5422a577054cb2796ed400c --- /dev/null +++ b/novas/novacore-zephyr/groq-code-cli/node_modules/is-plain-obj/readme.md @@ -0,0 +1,35 @@ +# is-plain-obj [![Build Status](https://travis-ci.org/sindresorhus/is-plain-obj.svg?branch=master)](https://travis-ci.org/sindresorhus/is-plain-obj) + +> Check if a value is a plain object + +An object is plain if it's created by either `{}`, `new Object()` or `Object.create(null)`. + + +## Install + +``` +$ npm install --save is-plain-obj +``` + + +## Usage + +```js +var isPlainObj = require('is-plain-obj'); + +isPlainObj({foo: 'bar'}); +//=> true + +isPlainObj([1, 2, 3]); +//=> false +``` + + +## Related + +- [is-obj](https://github.com/sindresorhus/is-obj) - Check if a value is an object + + +## License + +MIT © [Sindre Sorhus](http://sindresorhus.com) diff --git a/novas/novacore-zephyr/groq-code-cli/node_modules/is-plain-object/LICENSE b/novas/novacore-zephyr/groq-code-cli/node_modules/is-plain-object/LICENSE new file mode 100644 index 0000000000000000000000000000000000000000..3f2eca18f1bc0f3117748e2cea9251e5182db2f7 --- /dev/null +++ b/novas/novacore-zephyr/groq-code-cli/node_modules/is-plain-object/LICENSE @@ -0,0 +1,21 @@ +The MIT License (MIT) + +Copyright (c) 2014-2017, Jon Schlinkert. + +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. diff --git a/novas/novacore-zephyr/groq-code-cli/node_modules/is-plain-object/README.md b/novas/novacore-zephyr/groq-code-cli/node_modules/is-plain-object/README.md new file mode 100644 index 0000000000000000000000000000000000000000..5c074ab062deff796dab590bbe822ec44343ab78 --- /dev/null +++ b/novas/novacore-zephyr/groq-code-cli/node_modules/is-plain-object/README.md @@ -0,0 +1,125 @@ +# is-plain-object [![NPM version](https://img.shields.io/npm/v/is-plain-object.svg?style=flat)](https://www.npmjs.com/package/is-plain-object) [![NPM monthly downloads](https://img.shields.io/npm/dm/is-plain-object.svg?style=flat)](https://npmjs.org/package/is-plain-object) [![NPM total downloads](https://img.shields.io/npm/dt/is-plain-object.svg?style=flat)](https://npmjs.org/package/is-plain-object) [![Linux Build Status](https://img.shields.io/travis/jonschlinkert/is-plain-object.svg?style=flat&label=Travis)](https://travis-ci.org/jonschlinkert/is-plain-object) + +> Returns true if an object was created by the `Object` constructor, or Object.create(null). + +Please consider following this project's author, [Jon Schlinkert](https://github.com/jonschlinkert), and consider starring the project to show your :heart: and support. + +## Install + +Install with [npm](https://www.npmjs.com/): + +```sh +$ npm install --save is-plain-object +``` + +Use [isobject](https://github.com/jonschlinkert/isobject) if you only want to check if the value is an object and not an array or null. + +## Usage + +with es modules +```js +import { isPlainObject } from 'is-plain-object'; +``` + +or with commonjs +```js +const { isPlainObject } = require('is-plain-object'); +``` + +**true** when created by the `Object` constructor, or Object.create(null). + +```js +isPlainObject(Object.create({})); +//=> true +isPlainObject(Object.create(Object.prototype)); +//=> true +isPlainObject({foo: 'bar'}); +//=> true +isPlainObject({}); +//=> true +isPlainObject(null); +//=> true +``` + +**false** when not created by the `Object` constructor. + +```js +isPlainObject(1); +//=> false +isPlainObject(['foo', 'bar']); +//=> false +isPlainObject([]); +//=> false +isPlainObject(new Foo); +//=> false +isPlainObject(Object.create(null)); +//=> false +``` + +## About + +
+Contributing + +Pull requests and stars are always welcome. For bugs and feature requests, [please create an issue](../../issues/new). + +
+ +
+Running Tests + +Running and reviewing unit tests is a great way to get familiarized with a library and its API. You can install dependencies and run tests with the following command: + +```sh +$ npm install && npm test +``` + +
+ +
+Building docs + +_(This project's readme.md is generated by [verb](https://github.com/verbose/verb-generate-readme), please don't edit the readme directly. Any changes to the readme must be made in the [.verb.md](.verb.md) readme template.)_ + +To generate the readme, run the following command: + +```sh +$ npm install -g verbose/verb#dev verb-generate-readme && verb +``` + +
+ +### Related projects + +You might also be interested in these projects: + +* [is-number](https://www.npmjs.com/package/is-number): Returns true if a number or string value is a finite number. Useful for regex… [more](https://github.com/jonschlinkert/is-number) | [homepage](https://github.com/jonschlinkert/is-number "Returns true if a number or string value is a finite number. Useful for regex matches, parsing, user input, etc.") +* [isobject](https://www.npmjs.com/package/isobject): Returns true if the value is an object and not an array or null. | [homepage](https://github.com/jonschlinkert/isobject "Returns true if the value is an object and not an array or null.") +* [kind-of](https://www.npmjs.com/package/kind-of): Get the native type of a value. | [homepage](https://github.com/jonschlinkert/kind-of "Get the native type of a value.") + +### Contributors + +| **Commits** | **Contributor** | +| --- | --- | +| 19 | [jonschlinkert](https://github.com/jonschlinkert) | +| 6 | [TrySound](https://github.com/TrySound) | +| 6 | [stevenvachon](https://github.com/stevenvachon) | +| 3 | [onokumus](https://github.com/onokumus) | +| 1 | [wtgtybhertgeghgtwtg](https://github.com/wtgtybhertgeghgtwtg) | + +### Author + +**Jon Schlinkert** + +* [GitHub Profile](https://github.com/jonschlinkert) +* [Twitter Profile](https://twitter.com/jonschlinkert) +* [LinkedIn Profile](https://linkedin.com/in/jonschlinkert) + +### License + +Copyright © 2019, [Jon Schlinkert](https://github.com/jonschlinkert). +Released under the [MIT License](LICENSE). + +*** + +_This file was generated by [verb-generate-readme](https://github.com/verbose/verb-generate-readme), v0.8.0, on April 28, 2019._ diff --git a/novas/novacore-zephyr/groq-code-cli/node_modules/is-plain-object/is-plain-object.d.ts b/novas/novacore-zephyr/groq-code-cli/node_modules/is-plain-object/is-plain-object.d.ts new file mode 100644 index 0000000000000000000000000000000000000000..a359940d57dbeea098a9d8718e6cb82a67c0b648 --- /dev/null +++ b/novas/novacore-zephyr/groq-code-cli/node_modules/is-plain-object/is-plain-object.d.ts @@ -0,0 +1 @@ +export function isPlainObject(o: any): boolean; diff --git a/novas/novacore-zephyr/groq-code-cli/node_modules/is-plain-object/package.json b/novas/novacore-zephyr/groq-code-cli/node_modules/is-plain-object/package.json new file mode 100644 index 0000000000000000000000000000000000000000..3ea169a7d0a524f7ec5aad890688c800b6a46049 --- /dev/null +++ b/novas/novacore-zephyr/groq-code-cli/node_modules/is-plain-object/package.json @@ -0,0 +1,85 @@ +{ + "name": "is-plain-object", + "description": "Returns true if an object was created by the `Object` constructor, or Object.create(null).", + "version": "5.0.0", + "homepage": "https://github.com/jonschlinkert/is-plain-object", + "author": "Jon Schlinkert (https://github.com/jonschlinkert)", + "contributors": [ + "Jon Schlinkert (http://twitter.com/jonschlinkert)", + "Osman Nuri Okumuş (http://onokumus.com)", + "Steven Vachon (https://svachon.com)", + "(https://github.com/wtgtybhertgeghgtwtg)", + "Bogdan Chadkin (https://github.com/TrySound)" + ], + "repository": "jonschlinkert/is-plain-object", + "bugs": { + "url": "https://github.com/jonschlinkert/is-plain-object/issues" + }, + "license": "MIT", + "main": "dist/is-plain-object.js", + "module": "dist/is-plain-object.mjs", + "types": "is-plain-object.d.ts", + "files": [ + "is-plain-object.d.ts", + "dist" + ], + "exports": { + ".": { + "import": "./dist/is-plain-object.mjs", + "require": "./dist/is-plain-object.js" + }, + "./package.json": "./package.json" + }, + "engines": { + "node": ">=0.10.0" + }, + "scripts": { + "build": "rollup -c", + "test_browser": "mocha-headless-chrome --args=disable-web-security -f test/browser.html", + "test_node": "mocha -r esm", + "test": "npm run test_node && npm run build && npm run test_browser", + "prepare": "rollup -c" + }, + "devDependencies": { + "chai": "^4.2.0", + "esm": "^3.2.22", + "gulp-format-md": "^1.0.0", + "mocha": "^6.1.4", + "mocha-headless-chrome": "^3.1.0", + "rollup": "^2.22.1" + }, + "keywords": [ + "check", + "is", + "is-object", + "isobject", + "javascript", + "kind", + "kind-of", + "object", + "plain", + "type", + "typeof", + "value" + ], + "verb": { + "toc": false, + "layout": "default", + "tasks": [ + "readme" + ], + "plugins": [ + "gulp-format-md" + ], + "related": { + "list": [ + "is-number", + "isobject", + "kind-of" + ] + }, + "lint": { + "reflinks": true + } + } +} diff --git a/novas/novacore-zephyr/groq-code-cli/node_modules/is-promise/LICENSE b/novas/novacore-zephyr/groq-code-cli/node_modules/is-promise/LICENSE new file mode 100644 index 0000000000000000000000000000000000000000..27cc9f3771540a450dae91b1e04dd1383ff1a4d1 --- /dev/null +++ b/novas/novacore-zephyr/groq-code-cli/node_modules/is-promise/LICENSE @@ -0,0 +1,19 @@ +Copyright (c) 2014 Forbes Lindesay + +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. \ No newline at end of file diff --git a/novas/novacore-zephyr/groq-code-cli/node_modules/is-promise/index.d.ts b/novas/novacore-zephyr/groq-code-cli/node_modules/is-promise/index.d.ts new file mode 100644 index 0000000000000000000000000000000000000000..2107b42898a36df3cab91e25609623ba56380d83 --- /dev/null +++ b/novas/novacore-zephyr/groq-code-cli/node_modules/is-promise/index.d.ts @@ -0,0 +1,2 @@ +declare function isPromise(obj: PromiseLike | S): obj is PromiseLike; +export default isPromise; diff --git a/novas/novacore-zephyr/groq-code-cli/node_modules/is-promise/index.js b/novas/novacore-zephyr/groq-code-cli/node_modules/is-promise/index.js new file mode 100644 index 0000000000000000000000000000000000000000..1bed0871bc2523d47c6cd4843464a9f64dbedcf0 --- /dev/null +++ b/novas/novacore-zephyr/groq-code-cli/node_modules/is-promise/index.js @@ -0,0 +1,6 @@ +module.exports = isPromise; +module.exports.default = isPromise; + +function isPromise(obj) { + return !!obj && (typeof obj === 'object' || typeof obj === 'function') && typeof obj.then === 'function'; +} diff --git a/novas/novacore-zephyr/groq-code-cli/node_modules/is-promise/index.mjs b/novas/novacore-zephyr/groq-code-cli/node_modules/is-promise/index.mjs new file mode 100644 index 0000000000000000000000000000000000000000..bf9e99b5c8496c4a61e1f1a6269e84cb99dfa48f --- /dev/null +++ b/novas/novacore-zephyr/groq-code-cli/node_modules/is-promise/index.mjs @@ -0,0 +1,3 @@ +export default function isPromise(obj) { + return !!obj && (typeof obj === 'object' || typeof obj === 'function') && typeof obj.then === 'function'; +} diff --git a/novas/novacore-zephyr/groq-code-cli/node_modules/is-promise/package.json b/novas/novacore-zephyr/groq-code-cli/node_modules/is-promise/package.json new file mode 100644 index 0000000000000000000000000000000000000000..2a3c5404ac7c93d0626d3b36eb06021616d8af7c --- /dev/null +++ b/novas/novacore-zephyr/groq-code-cli/node_modules/is-promise/package.json @@ -0,0 +1,30 @@ +{ + "name": "is-promise", + "version": "4.0.0", + "description": "Test whether an object looks like a promises-a+ promise", + "main": "./index.js", + "scripts": { + "test": "node test" + }, + "files": [ + "index.js", + "index.mjs", + "index.d.ts" + ], + "exports": { + ".": [ + { + "import": "./index.mjs", + "require": "./index.js", + "default": "./index.js" + }, + "./index.js" + ] + }, + "repository": { + "type": "git", + "url": "https://github.com/then/is-promise.git" + }, + "author": "ForbesLindesay", + "license": "MIT" +} diff --git a/novas/novacore-zephyr/groq-code-cli/node_modules/is-promise/readme.md b/novas/novacore-zephyr/groq-code-cli/node_modules/is-promise/readme.md new file mode 100644 index 0000000000000000000000000000000000000000..d53d34bd598a5f775072eb59ddeb1834b41d02e5 --- /dev/null +++ b/novas/novacore-zephyr/groq-code-cli/node_modules/is-promise/readme.md @@ -0,0 +1,33 @@ + + +# is-promise + + Test whether an object looks like a promises-a+ promise + + [![Build Status](https://img.shields.io/travis/then/is-promise/master.svg)](https://travis-ci.org/then/is-promise) + [![Dependency Status](https://img.shields.io/david/then/is-promise.svg)](https://david-dm.org/then/is-promise) + [![NPM version](https://img.shields.io/npm/v/is-promise.svg)](https://www.npmjs.org/package/is-promise) + + + +## Installation + + $ npm install is-promise + +You can also use it client side via npm. + +## API + +```typescript +import isPromise from 'is-promise'; + +isPromise(Promise.resolve());//=>true +isPromise({then:function () {...}});//=>true +isPromise(null);//=>false +isPromise({});//=>false +isPromise({then: true})//=>false +``` + +## License + + MIT diff --git a/novas/novacore-zephyr/groq-code-cli/node_modules/is-regex/.editorconfig b/novas/novacore-zephyr/groq-code-cli/node_modules/is-regex/.editorconfig new file mode 100644 index 0000000000000000000000000000000000000000..ba546cdd8837ca06ccf0d412d860767c3620bd9c --- /dev/null +++ b/novas/novacore-zephyr/groq-code-cli/node_modules/is-regex/.editorconfig @@ -0,0 +1,23 @@ +root = true + +[*] +indent_style = tab +indent_size = 4 +end_of_line = lf +charset = utf-8 +trim_trailing_whitespace = true +insert_final_newline = true +max_line_length = 200 + +[CHANGELOG.md] +indent_style = space +indent_size = 2 + +[*.json] +max_line_length = off + +[Makefile] +max_line_length = off + +[CHANGELOG.md] +max_line_length = off diff --git a/novas/novacore-zephyr/groq-code-cli/node_modules/is-regex/.eslintrc b/novas/novacore-zephyr/groq-code-cli/node_modules/is-regex/.eslintrc new file mode 100644 index 0000000000000000000000000000000000000000..75a9c5e67ce7ca14e311512a7f4cd9e7bd5ebbd4 --- /dev/null +++ b/novas/novacore-zephyr/groq-code-cli/node_modules/is-regex/.eslintrc @@ -0,0 +1,10 @@ +{ + "root": true, + + "extends": "@ljharb", + + "rules": { + "func-style": 0, + "id-length": [1], + }, +} diff --git a/novas/novacore-zephyr/groq-code-cli/node_modules/is-regex/.nycrc b/novas/novacore-zephyr/groq-code-cli/node_modules/is-regex/.nycrc new file mode 100644 index 0000000000000000000000000000000000000000..a69aa2d8273d8c598f8e3aa5c8d779e28d63862f --- /dev/null +++ b/novas/novacore-zephyr/groq-code-cli/node_modules/is-regex/.nycrc @@ -0,0 +1,10 @@ +{ + "all": true, + "check-coverage": false, + "reporter": ["text-summary", "text", "html", "json"], + "exclude": [ + "coverage", + "test", + "test-corejs.js" + ] +} diff --git a/novas/novacore-zephyr/groq-code-cli/node_modules/is-regex/CHANGELOG.md b/novas/novacore-zephyr/groq-code-cli/node_modules/is-regex/CHANGELOG.md new file mode 100644 index 0000000000000000000000000000000000000000..85beee84b50cb6693b9b8f77630adbc9a9ad68db --- /dev/null +++ b/novas/novacore-zephyr/groq-code-cli/node_modules/is-regex/CHANGELOG.md @@ -0,0 +1,233 @@ +# Changelog + +All notable changes to this project will be documented in this file. + +The format is based on [Keep a Changelog](https://keepachangelog.com/en/1.0.0/) +and this project adheres to [Semantic Versioning](https://semver.org/spec/v2.0.0.html). + +## [v1.2.1](https://github.com/inspect-js/is-regex/compare/v1.2.0...v1.2.1) - 2024-12-11 + +### Commits + +- [Refactor] use `call-bound` directly [`dbabfe3`](https://github.com/inspect-js/is-regex/commit/dbabfe369261f4940f8ca059e9d452fed01e6969) +- [Deps] update `call-bind`, `gopd` [`d5343a0`](https://github.com/inspect-js/is-regex/commit/d5343a0e05ac3c65243b29f740c7540480ad23e7) +- [Dev Deps] update `@arethetypeswrong/cli`, `@ljharb/tsconfig` [`cc081eb`](https://github.com/inspect-js/is-regex/commit/cc081eb891b075440188c3f5240b2051090f1036) + +## [v1.2.0](https://github.com/inspect-js/is-regex/compare/v1.1.4...v1.2.0) - 2024-11-29 + +### Fixed + +- [Tests] allow tests to pass if zero traps are triggered [`#35`](https://github.com/inspect-js/is-regex/issues/35) + +### Commits + +- [actions] reuse common workflows [`be7bf6a`](https://github.com/inspect-js/is-regex/commit/be7bf6af175271e9db74e092d636307f6cf5e848) +- [New] add types [`39066a4`](https://github.com/inspect-js/is-regex/commit/39066a426da0f0c597b888c3c839fb2efc2bf613) +- [meta] use `npmignore` to autogenerate an npmignore file [`8938588`](https://github.com/inspect-js/is-regex/commit/89385885c2da891644e07220b4407f760c3dd629) +- [Refactor] reorganize code [`2f76f26`](https://github.com/inspect-js/is-regex/commit/2f76f26e0008a01a2f9a849dc2687cf3e3146f3e) +- [actions] split out node 10-20, and 20+ [`8c9aedf`](https://github.com/inspect-js/is-regex/commit/8c9aedf2cd9b3fd4ee045d747580265de223b4b2) +- [meta] better `eccheck` command [`6b39408`](https://github.com/inspect-js/is-regex/commit/6b39408bc4cce49ac85de70fba4a843da4b78b84) +- [Dev Deps] update `eslint`, `@ljharb/eslint-config`, `safe-publish-latest`, `tape` [`e38cf3c`](https://github.com/inspect-js/is-regex/commit/e38cf3c4e5b234c9a0d64fcf75e45df9b2416557) +- [actions] update codecov uploader [`487c75d`](https://github.com/inspect-js/is-regex/commit/487c75da7bbc2d977c2aed68815e7a58d269011f) +- [Dev Deps] update `eslint`, `@ljharb/eslint-config`, `aud`, `auto-changelog`, `core-js`, `foreach`, `tape` [`0d7da87`](https://github.com/inspect-js/is-regex/commit/0d7da87be90b637c094abfd9e68568097d391e38) +- [Dev Deps] update `eslint`, `@ljharb/eslint-config`, `aud`, `core-js`, `tape` [`c1c1198`](https://github.com/inspect-js/is-regex/commit/c1c1198143feaadee0370b78f7fd878e64e57a58) +- [actions] update rebase action to use reusable workflow [`213646e`](https://github.com/inspect-js/is-regex/commit/213646e1e9b5211bf621ccaaaa29f03b706b139c) +- [Dev Deps] update `@ljharb/eslint-config`, `auto-changelog`, `core-js`, `npmignore`, `tape` [`0a44e77`](https://github.com/inspect-js/is-regex/commit/0a44e77855db0ee8077f8b4351164fa500ba0d1f) +- [Refactor] use `hasown` [`d939332`](https://github.com/inspect-js/is-regex/commit/d939332c57cf46b95bc45e721fb66db64cf4743a) +- [Deps] update `call-bind`, `has-tostringtag` [`46bfdc9`](https://github.com/inspect-js/is-regex/commit/46bfdc9226df0495b5eb4e753e3f61e9a648cf44) +- [Tests] use `for-each` instead of `foreach` [`138b3f2`](https://github.com/inspect-js/is-regex/commit/138b3f2e6340eb4b6caf62981b0a1f59e960cbc9) +- [Tests] replace `aud` with `npm audit` [`37ed80a`](https://github.com/inspect-js/is-regex/commit/37ed80a3a5eeec2312f45956bc928fc7937480b8) +- [Deps] update `gopd` [`6fd4097`](https://github.com/inspect-js/is-regex/commit/6fd4097f23c3f031d0e659b29174216bed7b4f0f) +- [Dev Deps] update `core-js` [`97c1c60`](https://github.com/inspect-js/is-regex/commit/97c1c6044684f8a661055f4614ab2dd58fbfcc2b) +- [Dev Deps] add missing peer dep [`7329b8e`](https://github.com/inspect-js/is-regex/commit/7329b8edc9d9440439f190704f03740c853d15da) + +## [v1.1.4](https://github.com/inspect-js/is-regex/compare/v1.1.3...v1.1.4) - 2021-08-05 + +### Commits + +- [Dev Deps] update `auto-changelog`, `core-js`, `eslint`, `tape` [`4b17cad`](https://github.com/inspect-js/is-regex/commit/4b17cad8496b1ae621b18335fa3afe94d0c65e83) +- [Refactor] use `has-tostringtag` to behave correctly in the presence of symbol shams [`2dad4af`](https://github.com/inspect-js/is-regex/commit/2dad4afffa15f07cbbf7675b77d1f650c92652c4) + +## [v1.1.3](https://github.com/inspect-js/is-regex/compare/v1.1.2...v1.1.3) - 2021-05-07 + +### Commits + +- [actions] use `node/install` instead of `node/run`; use `codecov` action [`c681ab9`](https://github.com/inspect-js/is-regex/commit/c681ab99c07f8b3b7ae5f652b3105a30bce94f69) +- [Fix] do not use `Object.prototype.toString` when `Symbol.toStringTag` is shammed [`ca019fd`](https://github.com/inspect-js/is-regex/commit/ca019fdb828dc7d32e323213403ac9995d8604e3) +- [Dev Deps] update `eslint`, `@ljharb/eslint-config`, `aud`, `tape` [`605a66f`](https://github.com/inspect-js/is-regex/commit/605a66f278900f1c8ae9d1dfcec31e5f61b10ad3) +- [readme] add actions and codecov badges [`8d7c6f0`](https://github.com/inspect-js/is-regex/commit/8d7c6f0e007bd982f21b958e0abc98b8a84e2a24) +- [meta] use `prepublishOnly` script for npm 7+ [`8e50e91`](https://github.com/inspect-js/is-regex/commit/8e50e91f51aa5038745526710ef2e030527982a7) +- [Deps] update `has-symbols` [`4742c81`](https://github.com/inspect-js/is-regex/commit/4742c81260c3db9a8c9ef57110981fb6175f58e0) + +## [v1.1.2](https://github.com/inspect-js/is-regex/compare/v1.1.1...v1.1.2) - 2021-02-01 + +### Commits + +- [Tests] migrate tests to Github Actions [`cc1686e`](https://github.com/inspect-js/is-regex/commit/cc1686e25f446ca6948f43b3f180d6e55e31fb4e) +- [readme] fix repo URLs; remove travis badge [`d1d1da6`](https://github.com/inspect-js/is-regex/commit/d1d1da647bb4e91589606f12470cd27a47b3bb81) +- [meta] do not publish github action workflow files [`9f84b99`](https://github.com/inspect-js/is-regex/commit/9f84b993a995f057b4d2d097ef47b1ff9c84115d) +- [Tests] run `nyc` on all tests [`c37aab9`](https://github.com/inspect-js/is-regex/commit/c37aab9d332c4834b08ada94736c45ab1d39cd2f) +- [Robustness] use `call-bind` [`fbb61bf`](https://github.com/inspect-js/is-regex/commit/fbb61bf3e19ccc178e6ed1e0d7ab9cc7c7167393) +- [actions] add "Allow Edits" workflow [`9022b53`](https://github.com/inspect-js/is-regex/commit/9022b53cb05b0f105cd179800cf96e055b249f08) +- [Dev Deps] update `eslint`, `@ljharb/eslint-config`, `aud`, `auto-changelog` [`d60f28f`](https://github.com/inspect-js/is-regex/commit/d60f28f7f2fb21dade7bce302b3e0246206423d3) +- [Dev Deps] update `eslint`, `@ljharb/eslint-config`, `tape` [`2c35c43`](https://github.com/inspect-js/is-regex/commit/2c35c437edf3eeb37129eea2404d8f465d27620f) +- [actions] switch Automatic Rebase workflow to `pull_request_target` event [`1009e25`](https://github.com/inspect-js/is-regex/commit/1009e259d49a63753dc6e79e2b876a30c00c6de6) +- [meta] gitignore coverage output [`3b5fa9e`](https://github.com/inspect-js/is-regex/commit/3b5fa9ed2882c65ee81dff979f79f1a2751d3772) +- [actions] update workflows [`1843ef6`](https://github.com/inspect-js/is-regex/commit/1843ef65b8b8c24a44e91bc4ed5ee60dffc31c2d) + +## [v1.1.1](https://github.com/inspect-js/is-regex/compare/v1.1.0...v1.1.1) - 2020-08-03 + +### Commits + +- [Performance] Re-add lastIndex check to improve performance [`d8495cd`](https://github.com/inspect-js/is-regex/commit/d8495cd22d475ddca250818921b6088f631c1972) +- [Dev Deps] update `auto-changelog`, `eslint` [`778fa6b`](https://github.com/inspect-js/is-regex/commit/778fa6b9d2b182ee6d73993e103532855e956f85) + +## [v1.1.0](https://github.com/inspect-js/is-regex/compare/v1.0.5...v1.1.0) - 2020-06-03 + +### Commits + +- [New] use `badStringifier`‑based RegExp detection [`31eff67`](https://github.com/inspect-js/is-regex/commit/31eff673243d65c3d6c05848c0eb52f5380f1be3) +- [Dev Deps] update `eslint`, `@ljharb/eslint-config`, `aud`, `tape` [`fc91458`](https://github.com/inspect-js/is-regex/commit/fc914588187b8bb00d8d792c84f06a6e15d883c1) +- [Dev Deps] update `eslint`, `@ljharb/eslint-config`, `tape`; add `safe-publish-latest` [`d43ed83`](https://github.com/inspect-js/is-regex/commit/d43ed83db54ea727bb0b1b77a50af79d1edb8a6d) +- [Dev Deps] update `auto-changelog`, `tape`; add `aud` [`56647d1`](https://github.com/inspect-js/is-regex/commit/56647d196be34ef3c118ad67726e75169fbcb875) +- [meta] only run `aud` on prod deps [`e0865b8`](https://github.com/inspect-js/is-regex/commit/e0865b8360b0ac1b9d17b7b81ae5f339e5c9036b) + +## [v1.0.5](https://github.com/inspect-js/is-regex/compare/v1.0.4...v1.0.5) - 2019-12-15 + +### Commits + +- [Tests] use shared travis-ci configs [`af728b2`](https://github.com/inspect-js/is-regex/commit/af728b21c5cc9e41234fb4015594bffdcfff597c) +- [Tests] remove `jscs` [`1b8cfe8`](https://github.com/inspect-js/is-regex/commit/1b8cfe8cfb14820c196775f19d370276e4034791) +- [meta] add `auto-changelog` [`c3131d8`](https://github.com/inspect-js/is-regex/commit/c3131d8ab5d06ea5fa05a4bb2ad28bbfb81668ad) +- [Tests] up to `node` `v8.1`, `v7.10`, `v6.11`, `v4.8`; newer npm fails on older nodes [`660b658`](https://github.com/inspect-js/is-regex/commit/660b6585d1a9607dbdae879b70ce2f6a5684616c) +- [Tests] up to `node` `v9.3`, `v8.9`, `v6.12`; use `nvm install-latest-npm`; pin included builds to LTS [`7c25218`](https://github.com/inspect-js/is-regex/commit/7c25218d540ab17c18e4ae333677c5725806a778) +- [Tests] up to `node` `v12.10`, `v11.15`, `v10.16`, `v8.16`, `v6.17` [`fa95547`](https://github.com/inspect-js/is-regex/commit/fa955478950a5ba0a920010d5daaa29487500b30) +- [meta] remove unused Makefile and associated utilities [`9fd2a29`](https://github.com/inspect-js/is-regex/commit/9fd2a29dc57ed125f3d61e94f6254a9dd8ee0044) +- [Tests] up to `node` `v11.3`, `v10.14`, `v8.14`, `v6.15` [`7f2ac41`](https://github.com/inspect-js/is-regex/commit/7f2ac41ef5dc4d53bfe2fb1c24486c688a2537bd) +- [Tests] up to `node` `v10.0`, `v9.11`, `v8.11`, `v6.14`, `v4.9` [`6fa2b0f`](https://github.com/inspect-js/is-regex/commit/6fa2b0fe171a5b02086a06679a92d989e83a8b8e) +- [Dev Deps] update `eslint`, `@ljharb/eslint-config` [`697e1de`](https://github.com/inspect-js/is-regex/commit/697e1de1c9e69f08e591cc0040d81fdbbde6fe4e) +- [actions] add automatic rebasing / merge commit blocking [`ad86dc9`](https://github.com/inspect-js/is-regex/commit/ad86dc97a52e4f66fbfb3b8c9c78da3963588b54) +- [Dev Deps] update `eslint`, `@ljharb/eslint-config`, `jscs`, `nsp`, `replace`, `semver`, `tape` [`5c99c8e`](https://github.com/inspect-js/is-regex/commit/5c99c8e384d5ce2ef434be5853c301477cf35456) +- [Dev Deps] update `eslint`, `@ljharb/eslint-config`, `replace`, `semver`, `tape` [`bb63686`](https://github.com/inspect-js/is-regex/commit/bb63686a9d0fc586d121549cf484da95edec3b0a) +- [Dev Deps] update `eslint`, `@ljharb/eslint-config@`, `replace`, `semver`, `tape` [`ddf3670`](https://github.com/inspect-js/is-regex/commit/ddf36705e5f7bd29832721e4a23abf06195032c6) +- [Dev Deps] update `tape`, `nsp`, `eslint`, `@ljharb/eslint-config` [`e7b5a62`](https://github.com/inspect-js/is-regex/commit/e7b5a626eef3b9648c7d52d4620ce2e2a98a9ab8) +- [Dev Deps] update `eslint`, `@ljharb/eslint-config`, `covert`, `tape` [`c803db5`](https://github.com/inspect-js/is-regex/commit/c803db5cd94cf9e0a559617adbc1e4c9d22007ff) +- [Tests] switch from `nsp` to `npm audit` [`b7239be`](https://github.com/inspect-js/is-regex/commit/b7239be9da263a0f7066f79d087eaf700a9613e9) +- [Dev Deps] update `eslint`, `nsp`, `semver`, `tape` [`347ee6c`](https://github.com/inspect-js/is-regex/commit/347ee6c67ba0f56b03f21a5abe743658f6515963) +- Only apps should have lockfiles. [`3866575`](https://github.com/inspect-js/is-regex/commit/38665755ecf028061f15816059e26023890a0dc7) +- [Tests] use `npx aud` instead of `nsp` or `npm audit` with hoops [`d099a39`](https://github.com/inspect-js/is-regex/commit/d099a3943eb7e156a3e64fb8b74e11d7c83a4bec) +- [meta] add `funding` field [`741aecd`](https://github.com/inspect-js/is-regex/commit/741aecd92cd49868b3606c8cc99ce299e5f3c7d5) +- [Tests] use `eclint` instead of `editorconfig-tools` [`bc6aa75`](https://github.com/inspect-js/is-regex/commit/bc6aa7539e506788709b96f7bf3d7549850a81c3) +- [Tests] on `node` `v10.1` [`262226f`](https://github.com/inspect-js/is-regex/commit/262226f08fa34dff9a8dffd16daabb3dc6e262eb) +- [Dev Deps] update `eslint` [`31fd719`](https://github.com/inspect-js/is-regex/commit/31fd719dd59a6111ca710cdb0d19a8adadf9b8c6) +- [Deps] update `has` [`e9e25a3`](https://github.com/inspect-js/is-regex/commit/e9e25a3de7e89faaa6aadf5010477074140e8218) +- [Dev Deps] update `replace` [`aeeb968`](https://github.com/inspect-js/is-regex/commit/aeeb968bf5a4fc07f0fa6905f2c699fc563b6c32) +- [Tests] set audit level [`2a6290e`](https://github.com/inspect-js/is-regex/commit/2a6290e78b58bf14b734d7998fe53b4a84db5e44) +- [Tests] remove `nsp` [`fc74c2b`](https://github.com/inspect-js/is-regex/commit/fc74c2bb6970a7f3280abe6eff3b492d77d89c9f) + +## [v1.0.4](https://github.com/inspect-js/is-regex/compare/v1.0.3...v1.0.4) - 2017-02-18 + +### Fixed + +- [Fix] ensure that `lastIndex` is not mutated [`#3`](https://github.com/inspect-js/is-regex/issues/3) + +### Commits + +- Update `eslint`, `tape`, `semver`; use my personal shared `eslint` config [`c4a41c3`](https://github.com/inspect-js/is-regex/commit/c4a41c3a8203a3919b01cd0d1b577daadf30a452) +- [Tests] on all node minors; improve test matrix [`58d7508`](https://github.com/inspect-js/is-regex/commit/58d7508a36eb92bd76717486b9e78bde502ffe3e) +- [Dev Deps] update `tape`, `jscs`, `nsp`, `eslint`, `@ljharb/eslint-config`, `semver` [`7290076`](https://github.com/inspect-js/is-regex/commit/729007606e9ed162953d1f5812c37eb06c554ec2) +- Update `covert`, `jscs`, `eslint`, `semver` [`dabc729`](https://github.com/inspect-js/is-regex/commit/dabc729cfc4458264c6f7642004d41dd5c214bfd) +- Update `eslint` [`a946b05`](https://github.com/inspect-js/is-regex/commit/a946b051159396b4311c564880f96e3d00e8b8e2) +- Update `tape`, `jscs`, `eslint`, `@ljharb/eslint-config` [`1744dde`](https://github.com/inspect-js/is-regex/commit/1744dde77526841f216fa2c1c866c5a82b1638c0) +- [Refactor] when try/catch is needed, bail early if the value lacks an own `lastIndex` data property. [`288ad93`](https://github.com/inspect-js/is-regex/commit/288ad93dbfed9f6828de20de67105ee6d6504425) +- Update `editorconfig-tools`, `eslint`, `semver`, `replace` [`4d895c6`](https://github.com/inspect-js/is-regex/commit/4d895c68a0cdbb5803185928963c15147aad0404) +- Update `eslint`, `tape`, `semver` [`f387f03`](https://github.com/inspect-js/is-regex/commit/f387f03b260b56372bfca301d4e79c4067633854) +- All grade A-supported `node`/`iojs` versions now ship with an `npm` that understands `^`. [`55e480f`](https://github.com/inspect-js/is-regex/commit/55e480f407cafb6c21a6c32aef04ccaa3ba4216c) +- [Dev Deps] update `jscs`, `nsp`, `eslint`, `@ljharb/eslint-config`, `semver` [`89d9528`](https://github.com/inspect-js/is-regex/commit/89d95285b364913ebcd8ac7e0872570fe009a5d3) +- [Dev Deps] update `jscs` [`eb222a8`](https://github.com/inspect-js/is-regex/commit/eb222a8435e59909354f3700fd4880e4ce1cb13e) +- [Tests] up to `io.js` `v3.3`, `node` `v4.1` [`c65429c`](https://github.com/inspect-js/is-regex/commit/c65429cea0366508c10ad2ab773af7b83a34fc81) +- Update `nsp`, `eslint` [`c60fbd8`](https://github.com/inspect-js/is-regex/commit/c60fbd8680f7fb3508ec3c5be8ebb788672516c8) +- Update `eslint`, `semver` [`6a62116`](https://github.com/inspect-js/is-regex/commit/6a621168c63616bf004ca8b1f885b4eb8a58a3e5) +- [Tests] on `node` `v7.5`, `v4.7` [`e764651`](https://github.com/inspect-js/is-regex/commit/e764651336f5da5e239e9fe8869f3a3201c19d2b) +- Test up to `io.js` `v2.1` [`3bf326a`](https://github.com/inspect-js/is-regex/commit/3bf326a9bcd530fd16c9fc806e249a68e25ab7e3) +- Test on the latest `io.js` versions. [`693d047`](https://github.com/inspect-js/is-regex/commit/693d0477631c5d7671f6c99eca5594ffffa75771) +- [Refactor] use an early return instead of a ternary. [`31eaca2`](https://github.com/inspect-js/is-regex/commit/31eaca28b7d0aaac0599fe7a569b93b842f8ab16) +- Test on `io.js` `v2.2` [`c18c55a`](https://github.com/inspect-js/is-regex/commit/c18c55aee6358d70531f935e98851e42b698d93c) +- Run `travis-ci` tests on `iojs` and `node` v0.12; speed up builds; allow 0.8 failures. [`a1c237d`](https://github.com/inspect-js/is-regex/commit/a1c237d35f880fe0bcbc9275254611a6a2300aaf) +- [Dev Deps] update `eslint`, `@ljharb/eslint-config` [`aa3ea0f`](https://github.com/inspect-js/is-regex/commit/aa3ea0f148af31d75f7ef8a800412729d82def04) +- [Dev Deps] update `eslint`, `@ljharb/eslint-config` [`d97831d`](https://github.com/inspect-js/is-regex/commit/d97831d0e2ccd3d00d1f7354b7f81e2575f90953) +- [Dev Deps] Update `tape`, `eslint` [`95e6def`](https://github.com/inspect-js/is-regex/commit/95e6defe3178c45dc9df16e474e558979d5f5c05) +- Update `eslint`, `nsp` [`3844c93`](https://github.com/inspect-js/is-regex/commit/3844c935cfe7c52fae0dc74d27e884c417cb4616) +- Update `tape`, `jscs` [`0d6dac8`](https://github.com/inspect-js/is-regex/commit/0d6dac818ed251910171965932f021291919e770) +- Fix tests for faked @@toStringTag [`2ebef9f`](https://github.com/inspect-js/is-regex/commit/2ebef9f0759843e9a063de7a512b46e3e7daea7e) +- Test up to `io.js` `v3.0` [`ec1d2d4`](https://github.com/inspect-js/is-regex/commit/ec1d2d44481fa0fa11448527da8030c99fe47a12) +- [Refactor] bail earlier when the value is falsy. [`a9e333e`](https://github.com/inspect-js/is-regex/commit/a9e333e2ac8912ca05b7e31d30e4eea683c0da4b) +- [Dev Deps] update `tape` [`8cdcaae`](https://github.com/inspect-js/is-regex/commit/8cdcaae07be8c790cdb99849e6076ea7702a4c84) +- Switch from vb.teelaun.ch to versionbadg.es for the npm version badge SVG. [`281c4ef`](https://github.com/inspect-js/is-regex/commit/281c4efeb71c86dd380e741bcaee3f7dbf956151) +- Test on `io.js` `v2.4` [`4d54c68`](https://github.com/inspect-js/is-regex/commit/4d54c68a81b5332a3b76259d8aa8f514be5efd13) +- Test on `io.js` `v2.3` [`23170f5`](https://github.com/inspect-js/is-regex/commit/23170f5cae632d0377de73bd2febc53db8aebbc9) +- Test on `iojs-v1.6` [`4487ad0`](https://github.com/inspect-js/is-regex/commit/4487ad0194a5684223bfa2690da4e0a441f7132a) + +## [v1.0.3](https://github.com/inspect-js/is-regex/compare/v1.0.2...v1.0.3) - 2015-01-29 + +### Commits + +- Update npm run scripts. [`dc528dd`](https://github.com/inspect-js/is-regex/commit/dc528dd25e775089bc0a3f5a8f7ae7ffc4cdf52a) +- Add toStringTag tests. [`f48a83a`](https://github.com/inspect-js/is-regex/commit/f48a83a78720b78ab60ca586c16f6f3dbcfec825) +- If @@toStringTag is not present, use the old-school Object#toString test. [`50b0ffd`](https://github.com/inspect-js/is-regex/commit/50b0ffd9c7fdbd54aee8cde1b07e680ae84f6a0d) + +## [v1.0.2](https://github.com/inspect-js/is-regex/compare/v1.0.1...v1.0.2) - 2015-01-29 + +### Commits + +- `make release` [`a1de7ec`](https://github.com/inspect-js/is-regex/commit/a1de7eca4cecc8015fd27804669f8fc61bd16a68) +- Improve optimization by separating the try/catch, and bailing out early when not typeof "object". [`5ab7632`](https://github.com/inspect-js/is-regex/commit/5ab76322a348487fa8b16761e83f6824c3c27d11) + +## [v1.0.1](https://github.com/inspect-js/is-regex/compare/v1.0.0...v1.0.1) - 2015-01-28 + +### Commits + +- Using my standard jscs.json file [`1f1733a`](https://github.com/inspect-js/is-regex/commit/1f1733ac8433cdcceb25356f86b74136a4477cb9) +- Adding `npm run lint` [`51ea70f`](https://github.com/inspect-js/is-regex/commit/51ea70fa7e461d022f611c195f343ea8d0333d71) +- Use RegExp#exec to test if something is a regex, which works even with ES6 @@toStringTag. [`042c8c7`](https://github.com/inspect-js/is-regex/commit/042c8c734faade9015932b61f1e8ea4f3a93b1b3) +- Adding license and downloads badges [`366d619`](https://github.com/inspect-js/is-regex/commit/366d61965d3a4119126e78e09b2166bbcddd0c5a) +- Use SVG badges instead of PNG [`6a32e4f`](https://github.com/inspect-js/is-regex/commit/6a32e4fc87d7d3a3787b800dd033c9293aead6df) +- Update `tape`, `jscs` [`f1b9462`](https://github.com/inspect-js/is-regex/commit/f1b9462f86d1b69de07176e7f277f668757ba964) +- Update `jscs` [`1bff23f`](https://github.com/inspect-js/is-regex/commit/1bff23ff0fe88c8263e8bf04cf99e290af96d5b0) +- Update `tape`, `jscs` [`c22ea2e`](https://github.com/inspect-js/is-regex/commit/c22ea2e7967f45618deed01ff5ea483f918be216) +- Update `tape`, `jscs` [`b0479db`](https://github.com/inspect-js/is-regex/commit/b0479db99a1b1b872d1618fb0a71f0c74a78b29b) +- Use consistent quotes [`1a6e347`](https://github.com/inspect-js/is-regex/commit/1a6e34730d9270f3f20519139faa4c4e6ec2e1f5) +- Make travis builds faster. [`090a4ea`](https://github.com/inspect-js/is-regex/commit/090a4ea7c5fa709d108d596e3bc304e6ce973dec) +- Update `tape` [`7d76129`](https://github.com/inspect-js/is-regex/commit/7d7612928bdd43230fbd835db71797249ca24f35) +- Lock covert to v1.0.0. [`9a90b03`](https://github.com/inspect-js/is-regex/commit/9a90b03fb390e66f874223a34c58ba2bb109edd3) +- Updating tape [`bfbc7f5`](https://github.com/inspect-js/is-regex/commit/bfbc7f593a007acd0411152bbb55f724dc4ca935) +- Updating jscs [`13ad511`](https://github.com/inspect-js/is-regex/commit/13ad511d80cd67300c2c0c5387fc4b3b423e2768) +- Updating jscs [`cda1945`](https://github.com/inspect-js/is-regex/commit/cda1945d603dfe99e24d5a909a931d366451bc4d) +- Updating jscs [`de96c99`](https://github.com/inspect-js/is-regex/commit/de96c99d4bf5787df671de6df9138b6547a6545b) +- Running linter as part of tests [`2cb6567`](https://github.com/inspect-js/is-regex/commit/2cb656733b1ed0af14ad11fb584006d22de0c69d) +- Updating covert [`a56ae74`](https://github.com/inspect-js/is-regex/commit/a56ae74ec8d5f0473295a8b10519a18580f16624) +- Updating tape [`ffe47f7`](https://github.com/inspect-js/is-regex/commit/ffe47f7fe9cf6d16896b4bdc286bd1d0805d5c49) + +## [v1.0.0](https://github.com/inspect-js/is-regex/compare/v0.0.0...v1.0.0) - 2014-05-19 + +### Commits + +- Make sure old and unstable nodes don't break Travis [`05da747`](https://github.com/inspect-js/is-regex/commit/05da7478f960dc131ec3ad864e27e8c6b7d74a80) +- toString is a reserved var name in old Opera [`885c48c`](https://github.com/inspect-js/is-regex/commit/885c48c120f921a55f1842b0607d3e7875379821) +- Updating deps [`2ca0e79`](https://github.com/inspect-js/is-regex/commit/2ca0e79a2443ca34d85e8b2ea2e26f55855b74a7) +- Updating tape. [`9678435`](https://github.com/inspect-js/is-regex/commit/96784355611deb0c23b9064be774216d76e3e457) +- Updating covert [`c3bb898`](https://github.com/inspect-js/is-regex/commit/c3bb8985a422e3e0c81f9c43899b6c19a72c755f) +- Updating tape [`7811708`](https://github.com/inspect-js/is-regex/commit/78117089688258b8f939b397b37897b5b3e30f74) +- Testing on node 0.6 again [`dec36ae`](https://github.com/inspect-js/is-regex/commit/dec36ae58a39a3f80e832b702c3e19406363c160) +- Run code coverage as part of tests [`e6f4ebe`](https://github.com/inspect-js/is-regex/commit/e6f4ebec26894543747603f2cb360e839f2ca290) + +## v0.0.0 - 2014-01-15 + +### Commits + +- package.json [`aa60d43`](https://github.com/inspect-js/is-regex/commit/aa60d43d2c8adb9fdd47f5898e5e1e570bd238d8) +- read me [`861e944`](https://github.com/inspect-js/is-regex/commit/861e944de88e84010eaa662ea9ea9f17c90cff8c) +- Initial commit [`d0cdd71`](https://github.com/inspect-js/is-regex/commit/d0cdd71a637d8490b7ee3eaaf75c7e31d0f9242f) +- Tests. [`b533f74`](https://github.com/inspect-js/is-regex/commit/b533f741a88dff002790fb7af054b2a74e72d4da) +- Implementation. [`3c9a8c0`](https://github.com/inspect-js/is-regex/commit/3c9a8c06994003cdfffeb3620f251f4c4cae7755) +- Travis CI [`742c440`](https://github.com/inspect-js/is-regex/commit/742c4407015f9108875fd108fde137f5245e9e7a) diff --git a/novas/novacore-zephyr/groq-code-cli/node_modules/is-regex/LICENSE b/novas/novacore-zephyr/groq-code-cli/node_modules/is-regex/LICENSE new file mode 100644 index 0000000000000000000000000000000000000000..47b7b5078fce38783c58381828d9a7f762db7866 --- /dev/null +++ b/novas/novacore-zephyr/groq-code-cli/node_modules/is-regex/LICENSE @@ -0,0 +1,20 @@ +The MIT License (MIT) + +Copyright (c) 2014 Jordan Harband + +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. diff --git a/novas/novacore-zephyr/groq-code-cli/node_modules/is-regex/README.md b/novas/novacore-zephyr/groq-code-cli/node_modules/is-regex/README.md new file mode 100644 index 0000000000000000000000000000000000000000..d61332bd290fe50c87c466440e9aa170cb1c8dcb --- /dev/null +++ b/novas/novacore-zephyr/groq-code-cli/node_modules/is-regex/README.md @@ -0,0 +1,52 @@ +# is-regex [![Version Badge][2]][1] + +[![github actions][actions-image]][actions-url] +[![coverage][codecov-image]][codecov-url] +[![dependency status][5]][6] +[![dev dependency status][7]][8] +[![License][license-image]][license-url] +[![Downloads][downloads-image]][downloads-url] + +[![npm badge][11]][1] + +Is this value a JS regex? +This module works cross-realm/iframe, and despite ES6 @@toStringTag. + +## Example + +```js +var isRegex = require('is-regex'); +var assert = require('assert'); + +assert.notOk(isRegex(undefined)); +assert.notOk(isRegex(null)); +assert.notOk(isRegex(false)); +assert.notOk(isRegex(true)); +assert.notOk(isRegex(42)); +assert.notOk(isRegex('foo')); +assert.notOk(isRegex(function () {})); +assert.notOk(isRegex([])); +assert.notOk(isRegex({})); + +assert.ok(isRegex(/a/g)); +assert.ok(isRegex(new RegExp('a', 'g'))); +``` + +## Tests +Simply clone the repo, `npm install`, and run `npm test` + +[1]: https://npmjs.org/package/is-regex +[2]: https://versionbadg.es/inspect-js/is-regex.svg +[5]: https://david-dm.org/inspect-js/is-regex.svg +[6]: https://david-dm.org/inspect-js/is-regex +[7]: https://david-dm.org/inspect-js/is-regex/dev-status.svg +[8]: https://david-dm.org/inspect-js/is-regex#info=devDependencies +[11]: https://nodei.co/npm/is-regex.png?downloads=true&stars=true +[license-image]: https://img.shields.io/npm/l/is-regex.svg +[license-url]: LICENSE +[downloads-image]: https://img.shields.io/npm/dm/is-regex.svg +[downloads-url]: https://npm-stat.com/charts.html?package=is-regex +[codecov-image]: https://codecov.io/gh/inspect-js/is-regex/branch/main/graphs/badge.svg +[codecov-url]: https://app.codecov.io/gh/inspect-js/is-regex/ +[actions-image]: https://img.shields.io/endpoint?url=https://github-actions-badge-u3jn4tfpocch.runkit.sh/inspect-js/is-regex +[actions-url]: https://github.com/inspect-js/is-regex/actions diff --git a/novas/novacore-zephyr/groq-code-cli/node_modules/is-regex/index.d.ts b/novas/novacore-zephyr/groq-code-cli/node_modules/is-regex/index.d.ts new file mode 100644 index 0000000000000000000000000000000000000000..bc63cf6559595bb9558d303e0d1f3d7696e8b9e8 --- /dev/null +++ b/novas/novacore-zephyr/groq-code-cli/node_modules/is-regex/index.d.ts @@ -0,0 +1,3 @@ +declare function isRegex(value: unknown): value is RegExp; + +export = isRegex; diff --git a/novas/novacore-zephyr/groq-code-cli/node_modules/is-regex/index.js b/novas/novacore-zephyr/groq-code-cli/node_modules/is-regex/index.js new file mode 100644 index 0000000000000000000000000000000000000000..c4c8cede9dd2e15f1aada64efd96ecf776175b32 --- /dev/null +++ b/novas/novacore-zephyr/groq-code-cli/node_modules/is-regex/index.js @@ -0,0 +1,69 @@ +'use strict'; + +var callBound = require('call-bound'); +var hasToStringTag = require('has-tostringtag/shams')(); +var hasOwn = require('hasown'); +var gOPD = require('gopd'); + +/** @type {import('.')} */ +var fn; + +if (hasToStringTag) { + /** @type {(receiver: ThisParameterType, ...args: Parameters) => ReturnType} */ + var $exec = callBound('RegExp.prototype.exec'); + /** @type {object} */ + var isRegexMarker = {}; + + var throwRegexMarker = function () { + throw isRegexMarker; + }; + /** @type {{ toString(): never, valueOf(): never, [Symbol.toPrimitive]?(): never }} */ + var badStringifier = { + toString: throwRegexMarker, + valueOf: throwRegexMarker + }; + + if (typeof Symbol.toPrimitive === 'symbol') { + badStringifier[Symbol.toPrimitive] = throwRegexMarker; + } + + /** @type {import('.')} */ + // @ts-expect-error TS can't figure out that the $exec call always throws + // eslint-disable-next-line consistent-return + fn = function isRegex(value) { + if (!value || typeof value !== 'object') { + return false; + } + + // eslint-disable-next-line no-extra-parens + var descriptor = /** @type {NonNullable} */ (gOPD)(/** @type {{ lastIndex?: unknown }} */ (value), 'lastIndex'); + var hasLastIndexDataProperty = descriptor && hasOwn(descriptor, 'value'); + if (!hasLastIndexDataProperty) { + return false; + } + + try { + // eslint-disable-next-line no-extra-parens + $exec(value, /** @type {string} */ (/** @type {unknown} */ (badStringifier))); + } catch (e) { + return e === isRegexMarker; + } + }; +} else { + /** @type {(receiver: ThisParameterType, ...args: Parameters) => ReturnType} */ + var $toString = callBound('Object.prototype.toString'); + /** @const @type {'[object RegExp]'} */ + var regexClass = '[object RegExp]'; + + /** @type {import('.')} */ + fn = function isRegex(value) { + // In older browsers, typeof regex incorrectly returns 'function' + if (!value || (typeof value !== 'object' && typeof value !== 'function')) { + return false; + } + + return $toString(value) === regexClass; + }; +} + +module.exports = fn; diff --git a/novas/novacore-zephyr/groq-code-cli/node_modules/is-regex/package.json b/novas/novacore-zephyr/groq-code-cli/node_modules/is-regex/package.json new file mode 100644 index 0000000000000000000000000000000000000000..9e61b5b7d6faf3cda4ce697bdc1ae7f301be8876 --- /dev/null +++ b/novas/novacore-zephyr/groq-code-cli/node_modules/is-regex/package.json @@ -0,0 +1,104 @@ +{ + "name": "is-regex", + "version": "1.2.1", + "description": "Is this value a JS regex? Works cross-realm/iframe, and despite ES6 @@toStringTag", + "author": "Jordan Harband ", + "funding": { + "url": "https://github.com/sponsors/ljharb" + }, + "license": "MIT", + "main": "index.js", + "scripts": { + "prepack": "npmignore --auto --commentLines=autogenerated", + "prepublishOnly": "safe-publish-latest", + "prepublish": "not-in-publish || npm run prepublishOnly", + "pretest": "npm run lint", + "test": "npm run tests-only && npm run test:harmony", + "tests-only": "nyc node test", + "test:harmony": "nyc node --harmony --es-staging test", + "test:corejs": "nyc tape test-corejs.js", + "posttest": "npx npm@'>=10.2' audit --production", + "prelint": "eclint check $(git ls-files | xargs find 2> /dev/null | grep -vE 'node_modules|\\.git')", + "lint": "eslint --ext=js,mjs .", + "postlint": "tsc -p . && attw -P", + "version": "auto-changelog && git add CHANGELOG.md", + "postversion": "auto-changelog && git add CHANGELOG.md && git commit --no-edit --amend && git tag -f \"v$(node -e \"console.log(require('./package.json').version)\")\"" + }, + "repository": { + "type": "git", + "url": "git://github.com/inspect-js/is-regex.git" + }, + "bugs": { + "url": "https://github.com/inspect-js/is-regex/issues" + }, + "homepage": "https://github.com/inspect-js/is-regex", + "keywords": [ + "regex", + "regexp", + "is", + "regular expression", + "regular", + "expression" + ], + "dependencies": { + "call-bound": "^1.0.2", + "gopd": "^1.2.0", + "has-tostringtag": "^1.0.2", + "hasown": "^2.0.2" + }, + "devDependencies": { + "@arethetypeswrong/cli": "^0.17.1", + "@ljharb/eslint-config": "^21.1.1", + "@ljharb/tsconfig": "^0.2.2", + "@types/core-js": "^2.5.8", + "@types/for-each": "^0.3.3", + "@types/tape": "^5.6.5", + "auto-changelog": "^2.5.0", + "core-js": "^3.39.0", + "eclint": "^2.8.1", + "encoding": "^0.1.13", + "eslint": "=8.8.0", + "for-each": "^0.3.3", + "in-publish": "^2.0.1", + "npmignore": "^0.3.1", + "nyc": "^10.3.2", + "safe-publish-latest": "^2.0.0", + "tape": "^5.9.0", + "typescript": "^5.8.0-dev.20241129" + }, + "testling": { + "files": "test/index.js", + "browsers": [ + "iexplore/6.0..latest", + "firefox/3.0..6.0", + "firefox/15.0..latest", + "firefox/nightly", + "chrome/4.0..10.0", + "chrome/20.0..latest", + "chrome/canary", + "opera/10.0..latest", + "opera/next", + "safari/4.0..latest", + "ipad/6.0..latest", + "iphone/6.0..latest", + "android-browser/4.2" + ] + }, + "engines": { + "node": ">= 0.4" + }, + "auto-changelog": { + "output": "CHANGELOG.md", + "template": "keepachangelog", + "unreleased": false, + "commitLimit": false, + "backfillLimit": false, + "hideCredit": true + }, + "publishConfig": { + "ignore": [ + ".github/workflows", + "test-corejs.js" + ] + } +} diff --git a/novas/novacore-zephyr/groq-code-cli/node_modules/is-regex/tsconfig.json b/novas/novacore-zephyr/groq-code-cli/node_modules/is-regex/tsconfig.json new file mode 100644 index 0000000000000000000000000000000000000000..707cf95103eea5754b0141455f421ec38d129dd9 --- /dev/null +++ b/novas/novacore-zephyr/groq-code-cli/node_modules/is-regex/tsconfig.json @@ -0,0 +1,9 @@ +{ + "extends": "@ljharb/tsconfig", + "compilerOptions": { + "target": "ES2021", + }, + "exclude": [ + "coverage" + ] +} diff --git a/novas/novacore-zephyr/groq-code-cli/node_modules/is-set/.editorconfig b/novas/novacore-zephyr/groq-code-cli/node_modules/is-set/.editorconfig new file mode 100644 index 0000000000000000000000000000000000000000..8f9d77e2dc2ccfe65326efc167617a2f85fd5e30 --- /dev/null +++ b/novas/novacore-zephyr/groq-code-cli/node_modules/is-set/.editorconfig @@ -0,0 +1,15 @@ +root = true + +[*] +indent_style = tab +end_of_line = lf +charset = utf-8 +trim_trailing_whitespace = true +insert_final_newline = true + +[{package.json,*.yml}] +indent_style = space +indent_size = 2 + +[*.md] +trim_trailing_whitespace = false diff --git a/novas/novacore-zephyr/groq-code-cli/node_modules/is-set/.eslintrc b/novas/novacore-zephyr/groq-code-cli/node_modules/is-set/.eslintrc new file mode 100644 index 0000000000000000000000000000000000000000..3b5d9e90ec405f85dd7f9066656efccc51193697 --- /dev/null +++ b/novas/novacore-zephyr/groq-code-cli/node_modules/is-set/.eslintrc @@ -0,0 +1,5 @@ +{ + "root": true, + + "extends": "@ljharb", +} diff --git a/novas/novacore-zephyr/groq-code-cli/node_modules/is-set/.gitattributes b/novas/novacore-zephyr/groq-code-cli/node_modules/is-set/.gitattributes new file mode 100644 index 0000000000000000000000000000000000000000..176a458f94e0ea5272ce67c36bf30b6be9caf623 --- /dev/null +++ b/novas/novacore-zephyr/groq-code-cli/node_modules/is-set/.gitattributes @@ -0,0 +1 @@ +* text=auto diff --git a/novas/novacore-zephyr/groq-code-cli/node_modules/is-set/.nycrc b/novas/novacore-zephyr/groq-code-cli/node_modules/is-set/.nycrc new file mode 100644 index 0000000000000000000000000000000000000000..bdd626ce91477abbdd489b79988baebadbd3c897 --- /dev/null +++ b/novas/novacore-zephyr/groq-code-cli/node_modules/is-set/.nycrc @@ -0,0 +1,9 @@ +{ + "all": true, + "check-coverage": false, + "reporter": ["text-summary", "text", "html", "json"], + "exclude": [ + "coverage", + "test" + ] +} diff --git a/novas/novacore-zephyr/groq-code-cli/node_modules/is-set/CHANGELOG.md b/novas/novacore-zephyr/groq-code-cli/node_modules/is-set/CHANGELOG.md new file mode 100644 index 0000000000000000000000000000000000000000..09e67c3ea35a9cf8deb936cf92d8e8551569e3cc --- /dev/null +++ b/novas/novacore-zephyr/groq-code-cli/node_modules/is-set/CHANGELOG.md @@ -0,0 +1,81 @@ +# Changelog + +All notable changes to this project will be documented in this file. + +The format is based on [Keep a Changelog](https://keepachangelog.com/en/1.0.0/) +and this project adheres to [Semantic Versioning](https://semver.org/spec/v2.0.0.html). + +## [v2.0.3](https://github.com/inspect-js/is-set/compare/v2.0.2...v2.0.3) - 2024-03-08 + +### Commits + +- [actions] reuse common workflows [`9d26ac6`](https://github.com/inspect-js/is-set/commit/9d26ac673752d89ba855a50616d36f09d49d6113) +- [actions] use `node/install` instead of `node/run`; use `codecov` action [`3c91325`](https://github.com/inspect-js/is-set/commit/3c91325782b9dac5a602e150cd007e51029930f9) +- add types [`8fcc646`](https://github.com/inspect-js/is-set/commit/8fcc646ba3befa5448f987c7c12e0863443c9533) +- [Dev Deps] update `eslint`, `@ljharb/eslint-config`, `object-inspect`, `safe-publish-latest`, `tape` [`91caa24`](https://github.com/inspect-js/is-set/commit/91caa24511234e8f105f4534b681abdb2139b650) +- [readme] update URLs [`130e57b`](https://github.com/inspect-js/is-set/commit/130e57bc4d6386bd500d6886b9f094dd201cb88b) +- [Dev Deps] update `eslint`, `@ljharb/eslint-config`, `aud`, `auto-changelog`, `es5-shim`, `object-inspect`, `tape` [`4d75ee2`](https://github.com/inspect-js/is-set/commit/4d75ee27c0351999ba3093d519c12dc8bc0ff0ee) +- [actions] remove redundant finisher [`052fdce`](https://github.com/inspect-js/is-set/commit/052fdce2ee22fe49186c4d848063600f0c3f968d) +- [Dev Deps] update `eslint`, `@ljharb/eslint-config`, `auto-changelog`, `core-js`, `es5-shim`, `object-inspect`, `safe-publish-latest`, `tape` [`eb31797`](https://github.com/inspect-js/is-set/commit/eb317975ea6240cc2dc043db9e4a837b00f82ffc) +- [actions] update rebase action to use reusable workflow [`8c478ba`](https://github.com/inspect-js/is-set/commit/8c478ba28881beb9f07650e409f6ef7df4a92455) +- [actions] update codecov uploader [`a0dac6b`](https://github.com/inspect-js/is-set/commit/a0dac6b9abb0c5a3eff6849cca4ba7f1c0c8dc17) +- [Dev Deps] update `@ljharb/eslint-config`, `aud`, `es6-shim`, `object-inspect`, `tape` [`28d75a3`](https://github.com/inspect-js/is-set/commit/28d75a3ecb22235593b43e32505b90578da0dfab) +- [Dev Deps] update `eslint`, `@ljharb/eslint-config`, `aud`, `object-inspect`, `tape` [`7b2a4a7`](https://github.com/inspect-js/is-set/commit/7b2a4a75bae0f1a9163a83ac8760f10cfbcdb001) +- [Dev Deps] update `eslint`, `@ljharb/eslint-config`, `es5-shim`, `tape` [`20ce047`](https://github.com/inspect-js/is-set/commit/20ce04714d7be5fbee40c757e2ba7194e248c1a2) +- [readme] add actions and codecov badges [`e6e1796`](https://github.com/inspect-js/is-set/commit/e6e1796da1700594a3988466762405462f082cda) +- [meta] add missing `engines.node` [`9ed19af`](https://github.com/inspect-js/is-set/commit/9ed19afb98ad26e29378c2a7f1c82359d5c5a809) +- [meta] use `prepublishOnly` script for npm 7+ [`618f861`](https://github.com/inspect-js/is-set/commit/618f86128277814075fe56f7a69a272c31a48f85) +- [readme] remove dead badges [`76e890e`](https://github.com/inspect-js/is-set/commit/76e890ea165c6cb9088604ea010968d5e3e877c6) +- [meta] add `sideEffects` flag [`e21859b`](https://github.com/inspect-js/is-set/commit/e21859bb58bd5aafb907fe53045ec3bc14d07449) + +## [v2.0.2](https://github.com/inspect-js/is-set/compare/v2.0.1...v2.0.2) - 2020-12-13 + +### Commits + +- [Tests] migrate tests to Github Actions [`10a1a86`](https://github.com/inspect-js/is-set/commit/10a1a869d5f76921eed5bb7f1503be6f03eea8a2) +- [meta] do not publish github action workflow files [`9611423`](https://github.com/inspect-js/is-set/commit/9611423c4a6baa08a38f46ddafcca3ed4ea0ad97) +- [Dev Deps] update `eslint`, `@ljharb/eslint-config`, `aud`, `auto-changelog`, `es6-shim`, `object-inspect`, `tape` [`7d4d9b3`](https://github.com/inspect-js/is-set/commit/7d4d9b3ce8434a96c238cef62a7ce9ce79bd6079) +- [Tests] run `nyc` on all tests [`dff5fb6`](https://github.com/inspect-js/is-set/commit/dff5fb6cec206e51c6a7311fdb866bb0a0783b1a) +- [actions] add "Allow Edits" workflow [`6bed76a`](https://github.com/inspect-js/is-set/commit/6bed76af3119e489e622b3ea30807484dbb7fca9) +- [readme] remove travis badge [`ee9e740`](https://github.com/inspect-js/is-set/commit/ee9e74012ba35e86a4e92d7165548341d4323755) +- [Tests] add `core-js` tests [`9ef1b4e`](https://github.com/inspect-js/is-set/commit/9ef1b4ed0e55cec4154189247b6d7f6ad570e2f1) +- [Dev Deps] update `eslint`, `@ljharb/eslint-config`, `tape` [`5661354`](https://github.com/inspect-js/is-set/commit/5661354f7a9861998257fdacfa9975feae9415b8) +- [actions] switch Automatic Rebase workflow to `pull_request_target` event [`2cea69e`](https://github.com/inspect-js/is-set/commit/2cea69e16f64d7e706945010e03401a0a66507a3) +- [Dev Deps] update `es5-shim`, `tape` [`9e24b51`](https://github.com/inspect-js/is-set/commit/9e24b5158a0490c6b94deb31e76b06337eaafce6) +- [Dev Deps] update `auto-changelog`; add `aud` [`69ae556`](https://github.com/inspect-js/is-set/commit/69ae5561fe2408f301479dfa65dac0255e16952e) +- Fix typo in README.md, Map -> Set [`5fe826a`](https://github.com/inspect-js/is-set/commit/5fe826a1e11bf810b7174e2dfaf893a5682511d4) +- [Tests] only audit prod deps [`c7c67f6`](https://github.com/inspect-js/is-set/commit/c7c67f6b1a32b2b24709d733a6681cbe1ec67640) +- [meta] normalize line endings [`6ef4ebd`](https://github.com/inspect-js/is-set/commit/6ef4ebdf090bdf1f42eb912b6af2cf31df4abaef) + +## [v2.0.1](https://github.com/inspect-js/is-set/compare/v2.0.0...v2.0.1) - 2019-12-17 + +### Fixed + +- [Refactor] avoid top-level return, because babel and webpack are broken [`#5`](https://github.com/inspect-js/is-set/issues/5) [`#4`](https://github.com/inspect-js/is-set/issues/4) [`#3`](https://github.com/inspect-js/is-set/issues/3) [`#78`](https://github.com/inspect-js/node-deep-equal/issues/78) [`#7`](https://github.com/es-shims/Promise.allSettled/issues/7) [`#12`](https://github.com/airbnb/js-shims/issues/12) + +### Commits + +- [actions] add automatic rebasing / merge commit blocking [`db358ba`](https://github.com/inspect-js/is-set/commit/db358ba503aa86fe2d375e188dcdfa7174a070c8) +- [Dev Deps] update `eslint`, `@ljharb/eslint-config`, `tape` [`13e5083`](https://github.com/inspect-js/is-set/commit/13e50834eacb1c1830feb598da70ca6d0c53d2f7) + +## [v2.0.0](https://github.com/inspect-js/is-set/compare/v1.0.0...v2.0.0) - 2019-11-12 + +### Commits + +- Initial commit [`0299bc8`](https://github.com/inspect-js/is-set/commit/0299bc8fce41dce4586ac2f79c73802ad6a72c3d) +- Tests [`dec24eb`](https://github.com/inspect-js/is-set/commit/dec24eb0b9f57f14be8eedd0e572f94f81572e82) +- readme [`9b16e7f`](https://github.com/inspect-js/is-set/commit/9b16e7ff417b5c7be9829f22e32249d737bb8f6e) +- implementation [`3da6156`](https://github.com/inspect-js/is-set/commit/3da6156dae02e71d541bc8a0d3b751734b98e06d) +- npm init [`89fdc8b`](https://github.com/inspect-js/is-set/commit/89fdc8b3d980f6ca414f71dff2af38ed102321a1) +- [meta] add `funding` field; create `FUNDING.yml` [`77f2be9`](https://github.com/inspect-js/is-set/commit/77f2be9f281439472f81a0378632bc5eeb25a79b) +- [meta] add `safe-publish-latest`, `auto-changelog` [`cef1b4c`](https://github.com/inspect-js/is-set/commit/cef1b4cef15c565e76e3d46e66087821c4c437ae) +- [Tests] add `npm run lint` [`2a8284c`](https://github.com/inspect-js/is-set/commit/2a8284c6d2265ecd5c98bd4a008a82f0b519cd0a) +- [Tests] use shared travis-ci configs [`d2e342f`](https://github.com/inspect-js/is-set/commit/d2e342f3b8477cc74bcab44297d20d10fcf3718b) +- Only apps should have lockfiles [`624072b`](https://github.com/inspect-js/is-set/commit/624072b92774aaa6d851837c882181995d88ece8) +- [Tests] add `npx aud` in `posttest` [`214247c`](https://github.com/inspect-js/is-set/commit/214247c3fcd61b164c18b56524cdc183fc485450) + +## v1.0.0 - 2015-02-18 + +### Commits + +- init [`2f11646`](https://github.com/inspect-js/is-set/commit/2f1164617bee9c05c0f7ffae8fca2feed13bade7) diff --git a/novas/novacore-zephyr/groq-code-cli/node_modules/is-set/LICENSE b/novas/novacore-zephyr/groq-code-cli/node_modules/is-set/LICENSE new file mode 100644 index 0000000000000000000000000000000000000000..c05eb206bdf4955213919987028657acd99ed92c --- /dev/null +++ b/novas/novacore-zephyr/groq-code-cli/node_modules/is-set/LICENSE @@ -0,0 +1,21 @@ +MIT License + +Copyright (c) 2019 Inspect JS + +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. diff --git a/novas/novacore-zephyr/groq-code-cli/node_modules/is-set/README.md b/novas/novacore-zephyr/groq-code-cli/node_modules/is-set/README.md new file mode 100644 index 0000000000000000000000000000000000000000..8a62f0b61c833b757cb66a194aa465a525ccf4c5 --- /dev/null +++ b/novas/novacore-zephyr/groq-code-cli/node_modules/is-set/README.md @@ -0,0 +1,50 @@ +# is-set [![Version Badge][npm-version-svg]][package-url] + +[![github actions][actions-image]][actions-url] +[![coverage][codecov-image]][codecov-url] +[![License][license-image]][license-url] +[![Downloads][downloads-image]][downloads-url] + +[![npm badge][npm-badge-png]][package-url] + +Is this value a JS Set? This module works cross-realm/iframe, and despite ES6 @@toStringTag. + +## Example + +```js +var isSet = require('is-set'); +assert(!isSet(function () {})); +assert(!isSet(null)); +assert(!isSet(function* () { yield 42; return Infinity; }); +assert(!isSet(Symbol('foo'))); +assert(!isSet(1n)); +assert(!isSet(Object(1n))); + +assert(!isSet(new Map())); +assert(!isSet(new WeakSet())); +assert(!isSet(new WeakMap())); + +assert(isSet(new Set())); + +class MySet extends Set {} +assert(isSet(new MySet())); +``` + +## Tests +Simply clone the repo, `npm install`, and run `npm test` + +[package-url]: https://npmjs.org/package/is-set +[npm-version-svg]: https://versionbadg.es/inspect-js/is-set.svg +[deps-svg]: https://david-dm.org/inspect-js/is-set.svg +[deps-url]: https://david-dm.org/inspect-js/is-set +[dev-deps-svg]: https://david-dm.org/inspect-js/is-set/dev-status.svg +[dev-deps-url]: https://david-dm.org/inspect-js/is-set#info=devDependencies +[npm-badge-png]: https://nodei.co/npm/is-set.png?downloads=true&stars=true +[license-image]: https://img.shields.io/npm/l/is-set.svg +[license-url]: LICENSE +[downloads-image]: https://img.shields.io/npm/dm/is-set.svg +[downloads-url]: https://npm-stat.com/charts.html?package=is-set +[codecov-image]: https://codecov.io/gh/inspect-js/is-set/branch/main/graphs/badge.svg +[codecov-url]: https://app.codecov.io/gh/inspect-js/is-set/ +[actions-image]: https://img.shields.io/endpoint?url=https://github-actions-badge-u3jn4tfpocch.runkit.sh/inspect-js/is-set +[actions-url]: https://github.com/inspect-js/is-set/actions diff --git a/novas/novacore-zephyr/groq-code-cli/node_modules/is-set/index.d.ts b/novas/novacore-zephyr/groq-code-cli/node_modules/is-set/index.d.ts new file mode 100644 index 0000000000000000000000000000000000000000..af111aa6a0b72c9c24ba5a680a17d2c8944da0d2 --- /dev/null +++ b/novas/novacore-zephyr/groq-code-cli/node_modules/is-set/index.d.ts @@ -0,0 +1,3 @@ +declare function isSet(x: unknown): x is Set; + +export = isSet; diff --git a/novas/novacore-zephyr/groq-code-cli/node_modules/is-set/index.js b/novas/novacore-zephyr/groq-code-cli/node_modules/is-set/index.js new file mode 100644 index 0000000000000000000000000000000000000000..296dfd2cba7d4a9821573025fdfa4f2484610cde --- /dev/null +++ b/novas/novacore-zephyr/groq-code-cli/node_modules/is-set/index.js @@ -0,0 +1,46 @@ +'use strict'; + +var $Map = typeof Map === 'function' && Map.prototype ? Map : null; +var $Set = typeof Set === 'function' && Set.prototype ? Set : null; + +var exported; + +if (!$Set) { + /** @type {import('.')} */ + // eslint-disable-next-line no-unused-vars + exported = function isSet(x) { + // `Set` is not present in this environment. + return false; + }; +} + +var $mapHas = $Map ? Map.prototype.has : null; +var $setHas = $Set ? Set.prototype.has : null; +if (!exported && !$setHas) { + /** @type {import('.')} */ + // eslint-disable-next-line no-unused-vars + exported = function isSet(x) { + // `Set` does not have a `has` method + return false; + }; +} + +/** @type {import('.')} */ +module.exports = exported || function isSet(x) { + if (!x || typeof x !== 'object') { + return false; + } + try { + $setHas.call(x); + if ($mapHas) { + try { + $mapHas.call(x); + } catch (e) { + return true; + } + } + // @ts-expect-error TS can't figure out that $Set is always truthy here + return x instanceof $Set; // core-js workaround, pre-v2.5.0 + } catch (e) {} + return false; +}; diff --git a/novas/novacore-zephyr/groq-code-cli/node_modules/is-set/package.json b/novas/novacore-zephyr/groq-code-cli/node_modules/is-set/package.json new file mode 100644 index 0000000000000000000000000000000000000000..9057c6e4b63cb59d0d9265754dd021233dc6a3f2 --- /dev/null +++ b/novas/novacore-zephyr/groq-code-cli/node_modules/is-set/package.json @@ -0,0 +1,72 @@ +{ + "name": "is-set", + "version": "2.0.3", + "description": "Is this value a JS Set? This module works cross-realm/iframe, and despite ES6 @@toStringTag.", + "main": "index.js", + "sideEffects": false, + "scripts": { + "version": "auto-changelog && git add CHANGELOG.md", + "postversion": "auto-changelog && git add CHANGELOG.md && git commit --no-edit --amend && git tag -f \"v$(node -e \"console.log(require('./package.json').version)\")\"", + "prepublishOnly": "safe-publish-latest", + "prepublish": "not-in-publish || npm run prepublishOnly", + "pretest": "npm run lint", + "lint": "eslint --ext=.js,.mjs .", + "postlint": "tsc -p . && attw -P", + "tests-only": "nyc tape 'test/**/*.js'", + "tests:shims": "nyc tape --require=es5-shim --require=es5-shim 'test/**/*.js'", + "tests:corejs": "nyc tape --require=core-js 'test/**/*.js'", + "test": "npm run tests-only && npm run tests:shims && npm run tests:corejs", + "posttest": "npx aud --production" + }, + "repository": { + "type": "git", + "url": "git+https://github.com/inspect-js/is-set.git" + }, + "keywords": [ + "map", + "set", + "collection", + "is", + "robust" + ], + "author": "Jordan Harband ", + "funding": { + "url": "https://github.com/sponsors/ljharb" + }, + "license": "MIT", + "bugs": { + "url": "https://github.com/inspect-js/is-set/issues" + }, + "homepage": "https://github.com/inspect-js/is-set#readme", + "devDependencies": { + "@arethetypeswrong/cli": "^0.15.0", + "@ljharb/eslint-config": "^21.1.0", + "@types/for-each": "^0.3.3", + "@types/object-inspect": "^1.8.4", + "@types/tape": "^5.6.4", + "aud": "^2.0.4", + "auto-changelog": "^2.4.0", + "core-js": "^2.6.12", + "es5-shim": "^4.6.7", + "es6-shim": "^0.35.8", + "eslint": "=8.8.0", + "for-each": "^0.3.3", + "in-publish": "^2.0.1", + "nyc": "^10.3.2", + "object-inspect": "^1.13.1", + "safe-publish-latest": "^2.0.0", + "tape": "^5.7.5", + "typescript": "next" + }, + "auto-changelog": { + "output": "CHANGELOG.md", + "template": "keepachangelog", + "unreleased": false, + "commitLimit": false, + "backfillLimit": false, + "hideCredit": true + }, + "engines": { + "node": ">= 0.4" + } +} diff --git a/novas/novacore-zephyr/groq-code-cli/node_modules/is-set/tsconfig.json b/novas/novacore-zephyr/groq-code-cli/node_modules/is-set/tsconfig.json new file mode 100644 index 0000000000000000000000000000000000000000..2002ce5a53532769b9b5bc561dac11518c384d13 --- /dev/null +++ b/novas/novacore-zephyr/groq-code-cli/node_modules/is-set/tsconfig.json @@ -0,0 +1,49 @@ +{ + "compilerOptions": { + /* Visit https://aka.ms/tsconfig to read more about this file */ + + /* Projects */ + + /* Language and Environment */ + "target": "ESNext", /* Set the JavaScript language version for emitted JavaScript and include compatible library declarations. */ + // "lib": [], /* Specify a set of bundled library declaration files that describe the target runtime environment. */ + // "noLib": true, /* Disable including any library files, including the default lib.d.ts. */ + "useDefineForClassFields": true, /* Emit ECMAScript-standard-compliant class fields. */ + // "moduleDetection": "auto", /* Control what method is used to detect module-format JS files. */ + + /* Modules */ + "module": "commonjs", /* Specify what module code is generated. */ + // "rootDir": "./", /* Specify the root folder within your source files. */ + // "moduleResolution": "node10", /* Specify how TypeScript looks up a file from a given module specifier. */ + // "baseUrl": "./", /* Specify the base directory to resolve non-relative module names. */ + // "paths": {}, /* Specify a set of entries that re-map imports to additional lookup locations. */ + // "rootDirs": [], /* Allow multiple folders to be treated as one when resolving modules. */ + "typeRoots": ["types"], /* Specify multiple folders that act like './node_modules/@types'. */ + "resolveJsonModule": true, /* Enable importing .json files. */ + // "allowArbitraryExtensions": true, /* Enable importing files with any extension, provided a declaration file is present. */ + + /* JavaScript Support */ + "allowJs": true, /* Allow JavaScript files to be a part of your program. Use the 'checkJS' option to get errors from these files. */ + "checkJs": true, /* Enable error reporting in type-checked JavaScript files. */ + "maxNodeModuleJsDepth": 0, /* Specify the maximum folder depth used for checking JavaScript files from 'node_modules'. Only applicable with 'allowJs'. */ + + /* Emit */ + "declaration": true, /* Generate .d.ts files from TypeScript and JavaScript files in your project. */ + "declarationMap": true, /* Create sourcemaps for d.ts files. */ + "noEmit": true, /* Disable emitting files from a compilation. */ + + /* Interop Constraints */ + "allowSyntheticDefaultImports": true, /* Allow 'import x from y' when a module doesn't have a default export. */ + "esModuleInterop": true, /* Emit additional JavaScript to ease support for importing CommonJS modules. This enables 'allowSyntheticDefaultImports' for type compatibility. */ + "forceConsistentCasingInFileNames": true, /* Ensure that casing is correct in imports. */ + + /* Type Checking */ + "strict": true, /* Enable all strict type-checking options. */ + + /* Completeness */ + //"skipLibCheck": true /* Skip type checking all .d.ts files. */ + }, + "exclude": [ + "coverage" + ] +} diff --git a/novas/novacore-zephyr/groq-code-cli/node_modules/is-shared-array-buffer/.eslintrc b/novas/novacore-zephyr/groq-code-cli/node_modules/is-shared-array-buffer/.eslintrc new file mode 100644 index 0000000000000000000000000000000000000000..3b5d9e90ec405f85dd7f9066656efccc51193697 --- /dev/null +++ b/novas/novacore-zephyr/groq-code-cli/node_modules/is-shared-array-buffer/.eslintrc @@ -0,0 +1,5 @@ +{ + "root": true, + + "extends": "@ljharb", +} diff --git a/novas/novacore-zephyr/groq-code-cli/node_modules/is-shared-array-buffer/.nycrc b/novas/novacore-zephyr/groq-code-cli/node_modules/is-shared-array-buffer/.nycrc new file mode 100644 index 0000000000000000000000000000000000000000..bdd626ce91477abbdd489b79988baebadbd3c897 --- /dev/null +++ b/novas/novacore-zephyr/groq-code-cli/node_modules/is-shared-array-buffer/.nycrc @@ -0,0 +1,9 @@ +{ + "all": true, + "check-coverage": false, + "reporter": ["text-summary", "text", "html", "json"], + "exclude": [ + "coverage", + "test" + ] +} diff --git a/novas/novacore-zephyr/groq-code-cli/node_modules/is-shared-array-buffer/CHANGELOG.md b/novas/novacore-zephyr/groq-code-cli/node_modules/is-shared-array-buffer/CHANGELOG.md new file mode 100644 index 0000000000000000000000000000000000000000..824ea14706be852822cae9b8f029096e325178b2 --- /dev/null +++ b/novas/novacore-zephyr/groq-code-cli/node_modules/is-shared-array-buffer/CHANGELOG.md @@ -0,0 +1,75 @@ +# Changelog + +All notable changes to this project will be documented in this file. + +The format is based on [Keep a Changelog](https://keepachangelog.com/en/1.0.0/) +and this project adheres to [Semantic Versioning](https://semver.org/spec/v2.0.0.html). + +## [v1.0.4](https://github.com/inspect-js/is-shared-array-buffer/compare/v1.0.3...v1.0.4) - 2024-12-18 + +### Commits + +- [types] use shared config [`2966419`](https://github.com/inspect-js/is-shared-array-buffer/commit/2966419ac786ee171a38b80e77b21becc59fd7be) +- [actions] split out node 10-20, and 20+ [`9961138`](https://github.com/inspect-js/is-shared-array-buffer/commit/9961138844e05cf66846597410110aa92dfbf5cb) +- [Dev Deps] update `@arethetypeswrong/cli`, `@ljharb/eslint-config`, `@ljharb/tsconfig`, `@types/node`, `@types/object-inspect`, `@types/tape auto-changelog`, `es-value-fixtures`, `object-inspect`, `tape` [`a808a5d`](https://github.com/inspect-js/is-shared-array-buffer/commit/a808a5d53445f9d498d6d445b728fde63eac3fdb) +- [Refactor] use `call-bound` directly [`5235143`](https://github.com/inspect-js/is-shared-array-buffer/commit/5235143ef80f1c2e5f5168fd445db386a3b82224) +- [Tests] replace `aud` with `npm audit` [`954a0c7`](https://github.com/inspect-js/is-shared-array-buffer/commit/954a0c7c4922f8c034b7d7258b1f28337dc59746) +- [Tests] use `@arethetypeswrong/cli` [`0ba297a`](https://github.com/inspect-js/is-shared-array-buffer/commit/0ba297a7b243380179d982761cd96a04aa33e108) +- [Deps] update `call-bind` [`d5c5bab`](https://github.com/inspect-js/is-shared-array-buffer/commit/d5c5babb76e502c00d8982e6c551dddd648f2bcd) +- [Dev Deps] update `@types/node` [`705f5c7`](https://github.com/inspect-js/is-shared-array-buffer/commit/705f5c7dd5605fb4ac09fcb1041b3336f245bfb4) +- [Dev Deps] add missing peer dep [`4123434`](https://github.com/inspect-js/is-shared-array-buffer/commit/412343426cc6a264a5d7dcbfa673b4ca4248291d) + +## [v1.0.3](https://github.com/inspect-js/is-shared-array-buffer/compare/v1.0.2...v1.0.3) - 2024-02-20 + +### Commits + +- [meta] use `npmignore` to autogenerate an npmignore file [`c4131f5`](https://github.com/inspect-js/is-shared-array-buffer/commit/c4131f568b1828c1b5d068871332712f475e6c96) +- add types [`41cb419`](https://github.com/inspect-js/is-shared-array-buffer/commit/41cb41918c2cf423938c767ffc67fd352130f6d1) +- [actions] skip ls check on node < 10; remove redundant finisher [`2655b01`](https://github.com/inspect-js/is-shared-array-buffer/commit/2655b0142c06220a2f7912dc10caab31a465e9bc) +- [Dev Deps] update `@ljharb/eslint-config`, `aud`, `available-typed-arrays`, `npmignore`, `object-inspect`, `tape` [`5917f9a`](https://github.com/inspect-js/is-shared-array-buffer/commit/5917f9ac45800df43d53fb77b1506c6d08e58370) +- [Tests] add tests that TypedArrays are not SABs [`823dd7a`](https://github.com/inspect-js/is-shared-array-buffer/commit/823dd7a0c933efa3abdb2e9ae5c903fe15d6b2fe) +- [Dev Deps] update `eslint`, `@ljharb/eslint-config`, `aud`, `es-value-fixtures`, `object-inspect`, `tape` [`6701ad4`](https://github.com/inspect-js/is-shared-array-buffer/commit/6701ad425da15c6557d01744bfe68eaf56fd9ab3) +- [actions] update rebase action to use reusable workflow [`b5119f0`](https://github.com/inspect-js/is-shared-array-buffer/commit/b5119f05ececf1f0f516a38d7f444e3a7174bd43) +- [Dev Deps] update `@ljharb/eslint-config`, `aud` [`38a6d72`](https://github.com/inspect-js/is-shared-array-buffer/commit/38a6d721588e6e4db83fd24e63b8a19fd4398123) +- [meta] add missing `engines.node` [`aac97e1`](https://github.com/inspect-js/is-shared-array-buffer/commit/aac97e1839f671dbba07941c6d7c4f153918548f) +- [readme] remove dead badges [`07c452d`](https://github.com/inspect-js/is-shared-array-buffer/commit/07c452daa96c1cfe49a428b11da692facb72eb08) +- [Deps] update `call-bind` [`b8576fe`](https://github.com/inspect-js/is-shared-array-buffer/commit/b8576feb56508f3bf43905f5d23f7178c9e1af39) +- [meta] add `sideEffects` flag [`3e6730e`](https://github.com/inspect-js/is-shared-array-buffer/commit/3e6730e0ee3a47cb6d7c2ee8bc34bd61dd8f2455) + +## [v1.0.2](https://github.com/inspect-js/is-shared-array-buffer/compare/v1.0.1...v1.0.2) - 2022-04-01 + +### Commits + +- [actions] reuse common workflows [`48d01e6`](https://github.com/inspect-js/is-shared-array-buffer/commit/48d01e690f76c92f5c9072fbcb9b6215402db8a7) +- [actions] use `node/install` instead of `node/run`; use `codecov` action [`7b0e12a`](https://github.com/inspect-js/is-shared-array-buffer/commit/7b0e12a4e8f5db8eac586be68c879119a4a12e7a) +- [Dev Deps] update `eslint`, `@ljharb/eslint-config`, `object-inspect`, `safe-publish-latest`, `tape` [`8d57a8e`](https://github.com/inspect-js/is-shared-array-buffer/commit/8d57a8e1d9ce093f04f83e196ca7c80a02617939) +- [readme] update URLs [`dca4d27`](https://github.com/inspect-js/is-shared-array-buffer/commit/dca4d27d35352309da5abb4feb584158004008cf) +- [Dev Deps] update `eslint`, `@ljharb/eslint-config`, `aud`, `auto-changelog`, `object-inspect`, `tape` [`2a7bb99`](https://github.com/inspect-js/is-shared-array-buffer/commit/2a7bb990610d7f6c058bdae7f21c49cc7276848f) +- [Dev Deps] update `eslint`, `@ljharb/eslint-config`, `auto-changelog`, `object-inspect`, `safe-publish-latest`, `tape` [`389c6db`](https://github.com/inspect-js/is-shared-array-buffer/commit/389c6db4311a85a84fd4cb75646f26023b0c1685) +- [actions] update codecov uploader [`b9661f9`](https://github.com/inspect-js/is-shared-array-buffer/commit/b9661f9ac2e1e002372b9b1e136faca837a6647f) +- [Dev Deps] update `eslint`, `@ljharb/eslint-config`, `aud`, `object-inspect` [`f99cd48`](https://github.com/inspect-js/is-shared-array-buffer/commit/f99cd4827e23bc893ed711cbffe28f3e51a4d401) +- [readme] add actions and codecov badges [`9515ed2`](https://github.com/inspect-js/is-shared-array-buffer/commit/9515ed2184a3ed1ce913b92b5092884dad5ac794) +- [Fix] add missing `call-bind` dependency [`cff5358`](https://github.com/inspect-js/is-shared-array-buffer/commit/cff53582740f9f053ec67e1acbf2bafc83bdb7b5) +- [meta] add `safe-publish-latest`; use `prepublishOnly` script for npm 7+ [`ba0b719`](https://github.com/inspect-js/is-shared-array-buffer/commit/ba0b7190a42d4290d31a5fce215e874da573dd77) + +## [v1.0.1](https://github.com/inspect-js/is-shared-array-buffer/compare/v1.0.0...v1.0.1) - 2021-03-04 + +### Commits + +- [readme] fix repo URLs [`37c38f3`](https://github.com/inspect-js/is-shared-array-buffer/commit/37c38f347392da177197dd2fd518b61240a56203) + +## v1.0.0 - 2021-03-04 + +### Commits + +- [Tests] add tests [`9c7b806`](https://github.com/inspect-js/is-shared-array-buffer/commit/9c7b806ab1528814308a7420f8198644f55c916f) +- Initial commit [`4e65c5e`](https://github.com/inspect-js/is-shared-array-buffer/commit/4e65c5ecdaa255162bc6507de4ff98cea2472e3b) +- [meta] do not publish github action workflow files [`ac3693d`](https://github.com/inspect-js/is-shared-array-buffer/commit/ac3693db8ec26db5444ef4b46aa38a81e8841d30) +- readme [`7a984d0`](https://github.com/inspect-js/is-shared-array-buffer/commit/7a984d0db73b77943f6731098134e3351a36793b) +- npm init [`a586c99`](https://github.com/inspect-js/is-shared-array-buffer/commit/a586c99316f3c8ae4fd5125621ea933e97a1bf1b) +- [actions] add automatic rebasing / merge commit blocking [`184fe62`](https://github.com/inspect-js/is-shared-array-buffer/commit/184fe622680d523e89ac322fa1a52dbba46a8fc0) +- Implementation [`207e26d`](https://github.com/inspect-js/is-shared-array-buffer/commit/207e26d1128930f28384cb213b38d69fd52bbd7c) +- [meta] create `FUNDING.yml`; add "funding" field [`3cad3fc`](https://github.com/inspect-js/is-shared-array-buffer/commit/3cad3fc9509f91fbc71e84565529f53a94d538d4) +- [meta] add auto-changelog [`31f1f2c`](https://github.com/inspect-js/is-shared-array-buffer/commit/31f1f2cbcd616d6c09089d62198d5cc775053324) +- [Tests] add `npm run lint` [`2e5146e`](https://github.com/inspect-js/is-shared-array-buffer/commit/2e5146e18f44533382a781fa09a50d4f47caa0e5) +- Only apps should have lockfiles [`7b2adfa`](https://github.com/inspect-js/is-shared-array-buffer/commit/7b2adfad6dcd95271ab6ba34658a9a1a21dbeacf) diff --git a/novas/novacore-zephyr/groq-code-cli/node_modules/is-shared-array-buffer/LICENSE b/novas/novacore-zephyr/groq-code-cli/node_modules/is-shared-array-buffer/LICENSE new file mode 100644 index 0000000000000000000000000000000000000000..7948bc02a7937478ae009ff3796e76b25bdfbb08 --- /dev/null +++ b/novas/novacore-zephyr/groq-code-cli/node_modules/is-shared-array-buffer/LICENSE @@ -0,0 +1,21 @@ +MIT License + +Copyright (c) 2021 Inspect JS + +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. diff --git a/novas/novacore-zephyr/groq-code-cli/node_modules/is-shared-array-buffer/README.md b/novas/novacore-zephyr/groq-code-cli/node_modules/is-shared-array-buffer/README.md new file mode 100644 index 0000000000000000000000000000000000000000..05e780f26c13adbc13e7216256c3b607e1d21406 --- /dev/null +++ b/novas/novacore-zephyr/groq-code-cli/node_modules/is-shared-array-buffer/README.md @@ -0,0 +1,56 @@ +# is-shared-array-buffer [![Version Badge][npm-version-svg]][package-url] + +[![github actions][actions-image]][actions-url] +[![coverage][codecov-image]][codecov-url] +[![License][license-image]][license-url] +[![Downloads][downloads-image]][downloads-url] + +[![npm badge][npm-badge-png]][package-url] + +Is this value a JS SharedArrayBuffer? This module works cross-realm/iframe, does not depend on `instanceof` or mutable properties, and despite ES6 Symbol.toStringTag. + +## Example + +```js +var assert = require('assert'); +var isSharedArrayBuffer = require('is-shared-array-buffer'); + +assert(!isSharedArrayBuffer(function () {})); +assert(!isSharedArrayBuffer(null)); +assert(!isSharedArrayBuffer(function* () { yield 42; return Infinity; }); +assert(!isSharedArrayBuffer(Symbol('foo'))); +assert(!isSharedArrayBuffer(1n)); +assert(!isSharedArrayBuffer(Object(1n))); + +assert(!isSharedArrayBuffer(new Set())); +assert(!isSharedArrayBuffer(new WeakSet())); +assert(!isSharedArrayBuffer(new Map())); +assert(!isSharedArrayBuffer(new WeakMap())); +assert(!isSharedArrayBuffer(new WeakRef({}))); +assert(!isSharedArrayBuffer(new FinalizationRegistry(() => {}))); +assert(!isSharedArrayBuffer(new ArrayBuffer())); + +assert(isSharedArrayBuffer(new SharedArrayBuffer())); + +class MySharedArrayBuffer extends SharedArrayBuffer {} +assert(isSharedArrayBuffer(new MySharedArrayBuffer())); +``` + +## Tests +Simply clone the repo, `npm install`, and run `npm test` + +[package-url]: https://npmjs.org/package/is-shared-array-buffer +[npm-version-svg]: https://versionbadg.es/inspect-js/is-shared-array-buffer.svg +[deps-svg]: https://david-dm.org/inspect-js/is-shared-array-buffer.svg +[deps-url]: https://david-dm.org/inspect-js/is-shared-array-buffer +[dev-deps-svg]: https://david-dm.org/inspect-js/is-shared-array-buffer/dev-status.svg +[dev-deps-url]: https://david-dm.org/inspect-js/is-shared-array-buffer#info=devDependencies +[npm-badge-png]: https://nodei.co/npm/is-shared-array-buffer.png?downloads=true&stars=true +[license-image]: https://img.shields.io/npm/l/is-shared-array-buffer.svg +[license-url]: LICENSE +[downloads-image]: https://img.shields.io/npm/dm/is-shared-array-buffer.svg +[downloads-url]: https://npm-stat.com/charts.html?package=is-shared-array-buffer +[codecov-image]: https://codecov.io/gh/inspect-js/is-shared-array-buffer/branch/main/graphs/badge.svg +[codecov-url]: https://app.codecov.io/gh/inspect-js/is-shared-array-buffer/ +[actions-image]: https://img.shields.io/endpoint?url=https://github-actions-badge-u3jn4tfpocch.runkit.sh/inspect-js/is-shared-array-buffer +[actions-url]: https://github.com/inspect-js/is-shared-array-buffer/actions diff --git a/novas/novacore-zephyr/groq-code-cli/node_modules/is-shared-array-buffer/index.d.ts b/novas/novacore-zephyr/groq-code-cli/node_modules/is-shared-array-buffer/index.d.ts new file mode 100644 index 0000000000000000000000000000000000000000..688214595e72a581bab6383dad863b3558bc06aa --- /dev/null +++ b/novas/novacore-zephyr/groq-code-cli/node_modules/is-shared-array-buffer/index.d.ts @@ -0,0 +1,3 @@ +declare function isSharedArrayBuffer(obj: unknown): obj is SharedArrayBuffer; + +export = isSharedArrayBuffer; \ No newline at end of file diff --git a/novas/novacore-zephyr/groq-code-cli/node_modules/is-shared-array-buffer/index.js b/novas/novacore-zephyr/groq-code-cli/node_modules/is-shared-array-buffer/index.js new file mode 100644 index 0000000000000000000000000000000000000000..dd0f199d1ecf63557a531046a1feab2deda19808 --- /dev/null +++ b/novas/novacore-zephyr/groq-code-cli/node_modules/is-shared-array-buffer/index.js @@ -0,0 +1,24 @@ +'use strict'; + +var callBound = require('call-bound'); + +/** @type {undefined | ((thisArg: SharedArrayBuffer) => number)} */ +var $byteLength = callBound('SharedArrayBuffer.prototype.byteLength', true); + +/** @type {import('.')} */ +module.exports = $byteLength + ? function isSharedArrayBuffer(obj) { + if (!obj || typeof obj !== 'object') { + return false; + } + try { + // @ts-expect-error TS can't figure out this closed-over variable is non-nullable, and it's fine that `obj` might not be a SAB + $byteLength(obj); + return true; + } catch (e) { + return false; + } + } + : function isSharedArrayBuffer(_obj) { // eslint-disable-line no-unused-vars + return false; + }; diff --git a/novas/novacore-zephyr/groq-code-cli/node_modules/is-shared-array-buffer/package.json b/novas/novacore-zephyr/groq-code-cli/node_modules/is-shared-array-buffer/package.json new file mode 100644 index 0000000000000000000000000000000000000000..e01ec0bb963ad15135bbdf8dc7338e508c820f2c --- /dev/null +++ b/novas/novacore-zephyr/groq-code-cli/node_modules/is-shared-array-buffer/package.json @@ -0,0 +1,92 @@ +{ + "name": "is-shared-array-buffer", + "version": "1.0.4", + "author": { + "name": "Jordan Harband", + "email": "ljharb@gmail.com", + "url": "http://ljharb.codes" + }, + "funding": { + "url": "https://github.com/sponsors/ljharb" + }, + "description": "Is this value a JS SharedArrayBuffer?", + "license": "MIT", + "main": "index.js", + "exports": { + ".": "./index.js", + "./package.json": "./package.json" + }, + "sideEffects": false, + "scripts": { + "prepack": "npmignore --auto --commentLines=autogenerated", + "prepublishOnly": "safe-publish-latest", + "prepublish": "not-in-publish || npm run prepublishOnly", + "lint": "eslint --ext=.js,.mjs .", + "postlint": "tsc -p . && attw -P", + "pretest": "npm run lint", + "tests-only": "nyc tape 'test/**/*.js'", + "test": "npm run tests-only --", + "posttest": "npx npm@'>= 10.2' audit --production", + "version": "auto-changelog && git add CHANGELOG.md", + "postversion": "auto-changelog && git add CHANGELOG.md && git commit --no-edit --amend && git tag -f \"v$(node -e \"console.log(require('./package.json').version)\")\"" + }, + "repository": { + "type": "git", + "url": "git+https://github.com/inspect-js/is-shared-array-buffer.git" + }, + "keywords": [ + "javascript", + "ecmascript", + "is", + "sharedarraybuffer", + "shared", + "array", + "buffer" + ], + "bugs": { + "url": "https://github.com/inspect-js/is-shared-array-buffer/issues" + }, + "homepage": "https://github.com/inspect-js/is-shared-array-buffer#readme", + "devDependencies": { + "@arethetypeswrong/cli": "^0.17.1", + "@ljharb/eslint-config": "^21.1.1", + "@ljharb/tsconfig": "^0.2.2", + "@types/es-value-fixtures": "^1.4.4", + "@types/for-each": "^0.3.3", + "@types/node": "^20.17.10", + "@types/object-inspect": "^1.13.0", + "@types/tape": "^5.7.0", + "auto-changelog": "^2.5.0", + "available-typed-arrays": "^1.0.7", + "encoding": "^0.1.13", + "es-value-fixtures": "^1.5.0", + "eslint": "=8.8.0", + "for-each": "^0.3.3", + "in-publish": "^2.0.1", + "npmignore": "^0.3.1", + "nyc": "^10.3.2", + "object-inspect": "^1.13.3", + "safe-publish-latest": "^2.0.0", + "tape": "^5.9.0", + "typescript": "next" + }, + "auto-changelog": { + "output": "CHANGELOG.md", + "template": "keepachangelog", + "unreleased": false, + "commitLimit": false, + "backfillLimit": false, + "hideCredit": true + }, + "dependencies": { + "call-bound": "^1.0.3" + }, + "publishConfig": { + "ignore": [ + ".github/workflows" + ] + }, + "engines": { + "node": ">= 0.4" + } +} diff --git a/novas/novacore-zephyr/groq-code-cli/node_modules/is-shared-array-buffer/tsconfig.json b/novas/novacore-zephyr/groq-code-cli/node_modules/is-shared-array-buffer/tsconfig.json new file mode 100644 index 0000000000000000000000000000000000000000..dabbe230d74beb5962f67a6da7da18c707441ad5 --- /dev/null +++ b/novas/novacore-zephyr/groq-code-cli/node_modules/is-shared-array-buffer/tsconfig.json @@ -0,0 +1,9 @@ +{ + "extends": "@ljharb/tsconfig", + "compilerOptions": { + "target": "ES2021", + }, + "exclude": [ + "coverage", + ], +} diff --git a/novas/novacore-zephyr/groq-code-cli/node_modules/is-stream/index.d.ts b/novas/novacore-zephyr/groq-code-cli/node_modules/is-stream/index.d.ts new file mode 100644 index 0000000000000000000000000000000000000000..7cdaf03c7bb147d066ac0b16d99c6e6d5df442ae --- /dev/null +++ b/novas/novacore-zephyr/groq-code-cli/node_modules/is-stream/index.d.ts @@ -0,0 +1,90 @@ +import { + type Stream, + type Writable as WritableStream, + type Readable as ReadableStream, + type Duplex as DuplexStream, + type Transform as TransformStream, +} from 'node:stream'; + +export type Options = { + /** + When this option is `true`, the method returns `false` if the stream has already been closed. + + @default true + */ + checkOpen?: boolean; +}; + +/** +@returns Whether `stream` is a [`Stream`](https://nodejs.org/api/stream.html#stream_stream). + +@example +``` +import fs from 'node:fs'; +import {isStream} from 'is-stream'; + +isStream(fs.createReadStream('unicorn.png')); +//=> true + +isStream({}); +//=> false +``` +*/ +export function isStream(stream: unknown, options?: Options): stream is Stream; + +/** +@returns Whether `stream` is a [`stream.Writable`](https://nodejs.org/api/stream.html#stream_class_stream_writable), an [`http.OutgoingMessage`](https://nodejs.org/api/http.html#class-httpoutgoingmessage), an [`http.ServerResponse`](https://nodejs.org/api/http.html#class-httpserverresponse) or an [`http.ClientRequest`](https://nodejs.org/api/http.html#class-httpserverresponse). + +@example +``` +import fs from 'node:fs'; +import {isWritableStream} from 'is-stream'; + +isWritableStream(fs.createWriteStrem('unicorn.txt')); +//=> true +``` +*/ +export function isWritableStream(stream: unknown, options?: Options): stream is WritableStream; + +/** +@returns Whether `stream` is a [`stream.Readable`](https://nodejs.org/api/stream.html#stream_class_stream_readable) or an [`http.IncomingMessage`](https://nodejs.org/api/http.html#class-httpincomingmessage). + +@example +``` +import fs from 'node:fs'; +import {isReadableStream} from 'is-stream'; + +isReadableStream(fs.createReadStream('unicorn.png')); +//=> true +``` +*/ +export function isReadableStream(stream: unknown, options?: Options): stream is ReadableStream; + +/** +@returns Whether `stream` is a [`stream.Duplex`](https://nodejs.org/api/stream.html#stream_class_stream_duplex). + +@example +``` +import {Duplex as DuplexStream} from 'node:stream'; +import {isDuplexStream} from 'is-stream'; + +isDuplexStream(new DuplexStream()); +//=> true +``` +*/ +export function isDuplexStream(stream: unknown, options?: Options): stream is DuplexStream; + +/** +@returns Whether `stream` is a [`stream.Transform`](https://nodejs.org/api/stream.html#stream_class_stream_transform). + +@example +``` +import fs from 'node:fs'; +import StringifyStream from 'streaming-json-stringify'; +import {isTransformStream} from 'is-stream'; + +isTransformStream(StringifyStream()); +//=> true +``` +*/ +export function isTransformStream(stream: unknown, options?: Options): stream is TransformStream; diff --git a/novas/novacore-zephyr/groq-code-cli/node_modules/is-stream/index.js b/novas/novacore-zephyr/groq-code-cli/node_modules/is-stream/index.js new file mode 100644 index 0000000000000000000000000000000000000000..d51dce24a5fe33f8cf1673c4583bcf638ab243b0 --- /dev/null +++ b/novas/novacore-zephyr/groq-code-cli/node_modules/is-stream/index.js @@ -0,0 +1,37 @@ +export function isStream(stream, {checkOpen = true} = {}) { + return stream !== null + && typeof stream === 'object' + && (stream.writable || stream.readable || !checkOpen || (stream.writable === undefined && stream.readable === undefined)) + && typeof stream.pipe === 'function'; +} + +export function isWritableStream(stream, {checkOpen = true} = {}) { + return isStream(stream, {checkOpen}) + && (stream.writable || !checkOpen) + && typeof stream.write === 'function' + && typeof stream.end === 'function' + && typeof stream.writable === 'boolean' + && typeof stream.writableObjectMode === 'boolean' + && typeof stream.destroy === 'function' + && typeof stream.destroyed === 'boolean'; +} + +export function isReadableStream(stream, {checkOpen = true} = {}) { + return isStream(stream, {checkOpen}) + && (stream.readable || !checkOpen) + && typeof stream.read === 'function' + && typeof stream.readable === 'boolean' + && typeof stream.readableObjectMode === 'boolean' + && typeof stream.destroy === 'function' + && typeof stream.destroyed === 'boolean'; +} + +export function isDuplexStream(stream, options) { + return isWritableStream(stream, options) + && isReadableStream(stream, options); +} + +export function isTransformStream(stream, options) { + return isDuplexStream(stream, options) + && typeof stream._transform === 'function'; +} diff --git a/novas/novacore-zephyr/groq-code-cli/node_modules/is-stream/license b/novas/novacore-zephyr/groq-code-cli/node_modules/is-stream/license new file mode 100644 index 0000000000000000000000000000000000000000..fa7ceba3eb4a9657a9db7f3ffca4e4e97a9019de --- /dev/null +++ b/novas/novacore-zephyr/groq-code-cli/node_modules/is-stream/license @@ -0,0 +1,9 @@ +MIT License + +Copyright (c) Sindre Sorhus (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. diff --git a/novas/novacore-zephyr/groq-code-cli/node_modules/is-stream/package.json b/novas/novacore-zephyr/groq-code-cli/node_modules/is-stream/package.json new file mode 100644 index 0000000000000000000000000000000000000000..19b9a096f10545e4bdecdedfc153915f5a91efbc --- /dev/null +++ b/novas/novacore-zephyr/groq-code-cli/node_modules/is-stream/package.json @@ -0,0 +1,48 @@ +{ + "name": "is-stream", + "version": "4.0.1", + "description": "Check if something is a Node.js stream", + "license": "MIT", + "repository": "sindresorhus/is-stream", + "funding": "https://github.com/sponsors/sindresorhus", + "author": { + "name": "Sindre Sorhus", + "email": "sindresorhus@gmail.com", + "url": "https://sindresorhus.com" + }, + "type": "module", + "exports": { + "types": "./index.d.ts", + "default": "./index.js" + }, + "sideEffects": false, + "engines": { + "node": ">=18" + }, + "scripts": { + "test": "xo && ava && tsd" + }, + "files": [ + "index.js", + "index.d.ts" + ], + "keywords": [ + "stream", + "type", + "streams", + "writable", + "readable", + "duplex", + "transform", + "check", + "detect", + "is" + ], + "devDependencies": { + "@types/node": "^20.11.19", + "ava": "^5.3.1", + "tempy": "^3.1.0", + "tsd": "^0.30.5", + "xo": "^0.57.0" + } +} diff --git a/novas/novacore-zephyr/groq-code-cli/node_modules/is-stream/readme.md b/novas/novacore-zephyr/groq-code-cli/node_modules/is-stream/readme.md new file mode 100644 index 0000000000000000000000000000000000000000..c70a41c49771bc2412600fe283b5a89dcce3f595 --- /dev/null +++ b/novas/novacore-zephyr/groq-code-cli/node_modules/is-stream/readme.md @@ -0,0 +1,57 @@ +# is-stream + +> Check if something is a [Node.js stream](https://nodejs.org/api/stream.html) + +## Install + +```sh +npm install is-stream +``` + +## Usage + +```js +import fs from 'node:fs'; +import {isStream} from 'is-stream'; + +isStream(fs.createReadStream('unicorn.png')); +//=> true + +isStream({}); +//=> false +``` + +## API + +### isStream(stream, options?) + +Returns a `boolean` for whether it's a [`Stream`](https://nodejs.org/api/stream.html#stream_stream). + +### isWritableStream(stream, options?) + +Returns a `boolean` for whether it's a [`stream.Writable`](https://nodejs.org/api/stream.html#stream_class_stream_writable), an [`http.OutgoingMessage`](https://nodejs.org/api/http.html#class-httpoutgoingmessage), an [`http.ServerResponse`](https://nodejs.org/api/http.html#class-httpserverresponse) or an [`http.ClientRequest`](https://nodejs.org/api/http.html#class-httpserverresponse). + +### isReadableStream(stream, options?) + +Returns a `boolean` for whether it's a [`stream.Readable`](https://nodejs.org/api/stream.html#stream_class_stream_readable) or an [`http.IncomingMessage`](https://nodejs.org/api/http.html#class-httpincomingmessage). + +### isDuplexStream(stream, options?) + +Returns a `boolean` for whether it's a [`stream.Duplex`](https://nodejs.org/api/stream.html#stream_class_stream_duplex). + +### isTransformStream(stream, options?) + +Returns a `boolean` for whether it's a [`stream.Transform`](https://nodejs.org/api/stream.html#stream_class_stream_transform). + +### Options + +#### checkOpen + +Type: `boolean`\ +Default: `true` + +When this option is `true`, the method returns `false` if the stream has already been closed. + +## Related + +- [is-file-stream](https://github.com/jamestalmage/is-file-stream) - Detect if a stream is a file stream diff --git a/novas/novacore-zephyr/groq-code-cli/node_modules/is-string/.eslintrc b/novas/novacore-zephyr/groq-code-cli/node_modules/is-string/.eslintrc new file mode 100644 index 0000000000000000000000000000000000000000..a6dec9472b0c0e0b7f5e1ff433a1e63ed7ea7745 --- /dev/null +++ b/novas/novacore-zephyr/groq-code-cli/node_modules/is-string/.eslintrc @@ -0,0 +1,9 @@ +{ + "root": true, + + "extends": "@ljharb", + + "rules": { + "func-name-matching": 0, + }, +} diff --git a/novas/novacore-zephyr/groq-code-cli/node_modules/is-string/.nycrc b/novas/novacore-zephyr/groq-code-cli/node_modules/is-string/.nycrc new file mode 100644 index 0000000000000000000000000000000000000000..a69aa2d8273d8c598f8e3aa5c8d779e28d63862f --- /dev/null +++ b/novas/novacore-zephyr/groq-code-cli/node_modules/is-string/.nycrc @@ -0,0 +1,10 @@ +{ + "all": true, + "check-coverage": false, + "reporter": ["text-summary", "text", "html", "json"], + "exclude": [ + "coverage", + "test", + "test-corejs.js" + ] +} diff --git a/novas/novacore-zephyr/groq-code-cli/node_modules/is-string/CHANGELOG.md b/novas/novacore-zephyr/groq-code-cli/node_modules/is-string/CHANGELOG.md new file mode 100644 index 0000000000000000000000000000000000000000..4bffc42aee432fbb8d2efe942656fe72d3bce4bd --- /dev/null +++ b/novas/novacore-zephyr/groq-code-cli/node_modules/is-string/CHANGELOG.md @@ -0,0 +1,146 @@ +# Changelog + +All notable changes to this project will be documented in this file. + +The format is based on [Keep a Changelog](https://keepachangelog.com/en/1.0.0/) +and this project adheres to [Semantic Versioning](https://semver.org/spec/v2.0.0.html). + +Generated by [`auto-changelog`](https://github.com/CookPete/auto-changelog). + +## [v1.1.1](https://github.com/inspect-js/is-string/compare/v1.1.0...v1.1.1) - 2024-12-15 + +### Commits + +- [Dev Deps] update `@arethetypeswrong/cli`, `@ljharb/tsconfig`, `@types/tape` [`c1f7ef7`](https://github.com/inspect-js/is-string/commit/c1f7ef7948b012f769ee3a59952f34ba75a5f5c0) +- [Refactor] use `call-bound` directly [`ba8a78f`](https://github.com/inspect-js/is-string/commit/ba8a78fc1c1fe9b4223c9a8721579026d5ddbce1) +- [Deps] update `call-bind` [`93c352f`](https://github.com/inspect-js/is-string/commit/93c352fd578379c03cd068aea7590de60068a44e) + +## [v1.1.0](https://github.com/inspect-js/is-string/compare/v1.0.7...v1.1.0) - 2024-12-01 + +### Commits + +- [actions] reuse common workflows [`12aa75b`](https://github.com/inspect-js/is-string/commit/12aa75b96e2d3f5cd0da139073afba41e6250951) +- [meta] use `npmignore` to autogenerate an npmignore file [`6401572`](https://github.com/inspect-js/is-string/commit/64015720bd63e517d84752eb750bc78178bf707c) +- [actions] split out node 10-20, and 20+ [`223540c`](https://github.com/inspect-js/is-string/commit/223540c6fd5ec982b866bb1b8b3fac37ef5913de) +- [New] add types [`7e83d67`](https://github.com/inspect-js/is-string/commit/7e83d67ae35a65b4d59d59760c7af9e68aafb4a4) +- [Dev Deps] update `eslint`, `@ljharb/eslint-config`, `core-js`, `safe-publish-latest`, `tape` [`febd26e`](https://github.com/inspect-js/is-string/commit/febd26e9211519506d36cd236eca293c7773ae99) +- [readme] add github actions/codecov badges; update URLs [`f6bf065`](https://github.com/inspect-js/is-string/commit/f6bf0657c3b4882844af6b93ecc49872ca15f503) +- [Dev Deps] update `eslint`, `@ljharb/eslint-config`, `aud`, `auto-changelog`, `core-js`, `tape` [`8afc37a`](https://github.com/inspect-js/is-string/commit/8afc37ae53d7a1888a28e298eb986a9f534fb46e) +- [Robustness] use `call-bind` [`ac86dd7`](https://github.com/inspect-js/is-string/commit/ac86dd7fcf68b90772d1c9f8dd931e0442908f4a) +- [actions] update rebase action to use reusable workflow [`77058c8`](https://github.com/inspect-js/is-string/commit/77058c8c9e70dc77a5331dd654004e1f8500e985) +- [actions] update codecov uploader [`4312be5`](https://github.com/inspect-js/is-string/commit/4312be511df011bb3f3bcc9a46e57755c18465ea) +- [Dev Deps] update `eslint`, `@ljharb/eslint-config`, `aud`, `core-js`, `tape` [`98c3779`](https://github.com/inspect-js/is-string/commit/98c3779e29220c495b216b6d7cb0813dbe146b59) +- [Dev Deps] update `@ljharb/eslint-config`, `auto-changelog`, `core-js`, `npmignore`, `tape` [`7d8e0e5`](https://github.com/inspect-js/is-string/commit/7d8e0e5e8a9631ffef4def01c7fe4029147cbf89) +- [Dev Deps] update `eslint`, `@ljharb/eslint-config`, `core-js`, `safe-publish-latest`, `tape` [`3284ad1`](https://github.com/inspect-js/is-string/commit/3284ad1a9aeff3eed23d177501c0920e9c5841e3) +- [Tests] replace `aud` with `npm audit` [`8cb7ea7`](https://github.com/inspect-js/is-string/commit/8cb7ea7a493d51435bb093a55acbd32a206e7c1a) +- [Refactor] skip expensive check, for null [`20fde50`](https://github.com/inspect-js/is-string/commit/20fde5092adddc024562f391a96db0b61478a56d) +- [Deps] update `has-tostringtag` [`b67a78d`](https://github.com/inspect-js/is-string/commit/b67a78d4b64d6337d0b6f07ae0af6b04dec327d4) +- [meta] fix repo URL [`1a2ee6b`](https://github.com/inspect-js/is-string/commit/1a2ee6b4556ebd56bdc1288cf34b942ee3b60458) +- [meta] better `eccheck` command [`6913c75`](https://github.com/inspect-js/is-string/commit/6913c75f6e7469e421880a1593c440783aa50ac6) +- [Dev Deps] add missing peer dep [`8ac8551`](https://github.com/inspect-js/is-string/commit/8ac8551d76bf8b68a94ad3504fcbf8f99d16e756) + +## [v1.0.7](https://github.com/inspect-js/is-string/compare/v1.0.6...v1.0.7) - 2021-08-05 + +### Commits + +- [Refactor] use `has-tostringtag` to behave correctly in the presence of symbol shams [`d973ffd`](https://github.com/inspect-js/is-string/commit/d973ffd2268e10c0e2cd4f0c57ecf8ce0a8d8578) +- [Dev Deps] update `auto-changelog`, `core-js`, `eslint`, `tape` [`4bfaabf`](https://github.com/inspect-js/is-string/commit/4bfaabf877e874ca21d2c44be26f13add8ee2761) + +## [v1.0.6](https://github.com/inspect-js/is-string/compare/v1.0.5...v1.0.6) - 2021-05-07 + +### Commits + +- [Tests] migrate tests to Github Actions [`c7790c8`](https://github.com/inspect-js/is-string/commit/c7790c89e5077251fe7ca32ac29eeee02f1b2751) +- [actions] use `node/install` instead of `node/run`; use `codecov` action [`1e52bbd`](https://github.com/inspect-js/is-string/commit/1e52bbd19b1608f6932c0335d9981824584c3186) +- [Fix] do not use `Object.prototype.toString` when `Symbol.toStringTag` is shammed [`83337eb`](https://github.com/inspect-js/is-string/commit/83337ebf55308b7bb9c1befae420760e0f8d8016) +- [meta] do not publish github action workflow files [`b25aea2`](https://github.com/inspect-js/is-string/commit/b25aea2e8a53ed9e9090cf96481590cdc00a0957) +- [readme] update badges [`759ccd9`](https://github.com/inspect-js/is-string/commit/759ccd94de4a2000231a179f91af6b5c12c11e00) +- [Tests] run `nyc` on all tests [`dc02f70`](https://github.com/inspect-js/is-string/commit/dc02f7080c355f0d24368c1622db09f7cc30cdbd) +- [Dev Deps] update `eslint`, `@ljharb/eslint-config`, `auto-changelog`, `tape`; add `aud` [`a0f76fa`](https://github.com/inspect-js/is-string/commit/a0f76fa1990bb580948f9e2daa89bdcda3fae7f0) +- [actions] add "Allow Edits" workflow [`9ec3902`](https://github.com/inspect-js/is-string/commit/9ec390295b4faef7744d2b579c1050be66168cb7) +- [Dev Deps] update `eslint`, `@ljharb/eslint-config`, `aud`, `tape` [`57fbe21`](https://github.com/inspect-js/is-string/commit/57fbe215da83a3b601855a9c6543ad1a96de5702) +- [Dev Deps] update `eslint`, `@ljharb/eslint-config`, `tape` [`191e55f`](https://github.com/inspect-js/is-string/commit/191e55ff1fa782654ffcce2df922e23345b56690) +- [Dev Deps] update `eslint`, `@ljharb/eslint-config`, `aud`, `auto-changelog` [`1ea2b81`](https://github.com/inspect-js/is-string/commit/1ea2b81e866775a7890e75c44c742204124aa354) +- [Dev Deps] update `eslint`, `@ljharb/eslint-config`, `tape` [`105d1b9`](https://github.com/inspect-js/is-string/commit/105d1b9851e366ef23c2a27d4064e0d36da25939) +- [Dev Deps] update `auto-changelog`, `tape`; add `aud` [`114cfad`](https://github.com/inspect-js/is-string/commit/114cfad854d8860421f847cd99a3bdb8ef1353dc) +- [meta] use `prepublishOnly` script for npm 7+ [`fc38f26`](https://github.com/inspect-js/is-string/commit/fc38f26adb486f50880c5771d145ab2bffb6247a) +- [meta] gitignore coverage output [`3419127`](https://github.com/inspect-js/is-string/commit/34191278f1fa09ba4da801a6fd7a32e31050e759) +- [actions] update rebase action to use checkout v2 [`334eca0`](https://github.com/inspect-js/is-string/commit/334eca02d40f4cf7dc15a8e7d5ff06852028abb5) +- [actions] switch Automatic Rebase workflow to `pull_request_target` event [`7a332e9`](https://github.com/inspect-js/is-string/commit/7a332e963f1ab717fafa671e0fa8a1b20c53d861) +- [meta] remove explicit audit level config [`04630b1`](https://github.com/inspect-js/is-string/commit/04630b1b535084322ddeae8efb79a8810d7cf325) + +## [v1.0.5](https://github.com/inspect-js/is-string/compare/v1.0.4...v1.0.5) - 2019-12-18 + +### Commits + +- [Tests] use shared travis-ci configs [`4121d6b`](https://github.com/inspect-js/is-string/commit/4121d6b168ae1d54a81791ee6877f9813cab6253) +- [Tests] up to `node` `v12.4`, `v11.15`, `v10.15`, `v9.11`, `v8.15`, `v7.10`, `v6.17`, `v5.12`, `v4.9`; use `nvm install-latest-npm` [`e7a3e89`](https://github.com/inspect-js/is-string/commit/e7a3e89ccb9638d73f45dbcb2a42e509bd3153c4) +- Update `eslint`, `tape`, `semver`; use my personal shared `eslint` config [`6c380a7`](https://github.com/inspect-js/is-string/commit/6c380a70011714370e754fa0df95f56cdcaa3e60) +- [Tests] remove `jscs` [`3d49592`](https://github.com/inspect-js/is-string/commit/3d49592b9880fcb1a23b67286445281131a553e3) +- Update `is`, `tape`, `covert`, `jscs`, `editorconfig-tools`, `eslint`, `nsp`, `semver`. [`cc6983d`](https://github.com/inspect-js/is-string/commit/cc6983d06bc98f4ae9b7c9439d5d73c7318d8acd) +- [meta] add `auto-changelog` [`b857897`](https://github.com/inspect-js/is-string/commit/b85789723ce3a7064536598e0fcdd495257c6134) +- [meta] remove unused Makefile and associated utilities [`3f0f51c`](https://github.com/inspect-js/is-string/commit/3f0f51cbae1f97dbe1466eee88d105b3df0d2f0a) +- [Dev Deps] update `eslint`, `@ljharb/eslint-config`, `is`, `covert`, `tape`, `semver` [`9d4a95e`](https://github.com/inspect-js/is-string/commit/9d4a95e4473fe8195501878525b5af5948aa45c9) +- Update `eslint` [`e861b4b`](https://github.com/inspect-js/is-string/commit/e861b4bc71f5390670aebdff91119a1f8aeeb88a) +- Update `tape`, `jscs`, `eslint`, `@ljharb/eslint-config` [`172e2dd`](https://github.com/inspect-js/is-string/commit/172e2dd1a0b9eb042bcb9a80ff5e774a90ff0695) +- Test on `node` and `io.js` latest. [`fd426cd`](https://github.com/inspect-js/is-string/commit/fd426cd18b22b0d0e1731598125393dcfe0c5704) +- [Dev Deps] update `eslint`, `@ljharb/eslint-config`, `safe-publish-latest` [`23bdf83`](https://github.com/inspect-js/is-string/commit/23bdf83cf42138eba09f45bd0b040b069f9839d4) +- [actions] add automatic rebasing / merge commit blocking [`96153c0`](https://github.com/inspect-js/is-string/commit/96153c0d687a7fda2261f4c02add5d0b41e8aed7) +- [meta] create FUNDING.yml [`66ae246`](https://github.com/inspect-js/is-string/commit/66ae246d6cdaa4ccbc21f7c144b672139b8ccef6) +- [Dev Deps] update `is`, `jscs`, `nsp`, `eslint`, `@ljharb/eslint-config`, `semver` [`817361a`](https://github.com/inspect-js/is-string/commit/817361a9673cd1ec9854b52578a980159f7d8701) +- [Dev Deps] update `eslint`, `@ljharb/eslint-config`, `safe-publish-latest`, `semver`, `tape` [`fc35d3f`](https://github.com/inspect-js/is-string/commit/fc35d3feb40921bb22e1639903cb7f2fab77814b) +- [Dev Deps] update `jscs` [`886767e`](https://github.com/inspect-js/is-string/commit/886767e04e5ad59ac0bc926a87233cc8546c8b4f) +- [Tests] use `npx aud` instead of `nsp` or `npm audit` with hoops [`3410922`](https://github.com/inspect-js/is-string/commit/341092203c11a3b92eee55a7ecb7b8265e8fcecd) +- [Tests] up to `io.js` `v3.3`, `node` `v4.1` [`4d6c73b`](https://github.com/inspect-js/is-string/commit/4d6c73b507bcd39050ef71e554069f72fc5b222a) +- Update `nsp`, `eslint` [`b11de49`](https://github.com/inspect-js/is-string/commit/b11de4910beee1ffe1e67fbe25ec6707ca796b27) +- Update `eslint`, `semver` [`0777977`](https://github.com/inspect-js/is-string/commit/0777977757a85a1db75831d03a14b4b1fde05d7e) +- Only apps should have lockfiles [`78b49ff`](https://github.com/inspect-js/is-string/commit/78b49ffd04d4cd8c57d9e7b485421fbf3641b41b) +- [meta] add `funding` field [`81328a6`](https://github.com/inspect-js/is-string/commit/81328a6ef3eee989164127e4c0c82f1da73d3567) +- [Dev Deps] update `eslint`, `tape` [`fc9a225`](https://github.com/inspect-js/is-string/commit/fc9a225b27935f7c9c2704281d7fddd3614d3cb8) +- [Tests] use `eclint` instead of `editorconfig-tools` [`59c2c61`](https://github.com/inspect-js/is-string/commit/59c2c610dbd8e8ca1e4aa3fa9c9f93205cab9b07) +- [Dev Deps] Update `tape`, `eslint` [`a429816`](https://github.com/inspect-js/is-string/commit/a429816688e23c81948b4ae72324c26c27849b7c) +- Test on `io.js` `v2.2` [`08b476e`](https://github.com/inspect-js/is-string/commit/08b476ed0734a70e3091c04ddd2f173a2df21eb2) +- Test up to `io.js` `v3.0` [`22637ef`](https://github.com/inspect-js/is-string/commit/22637ef9e0030533df85cf1992fc099a88b1924c) +- [meta] add `safe-publish-latest` [`20ccb48`](https://github.com/inspect-js/is-string/commit/20ccb48fd85f0245eb893507d00003090da020d0) +- [Dev Deps] update `tape` [`06b58a0`](https://github.com/inspect-js/is-string/commit/06b58a048c2a820e5611ad2bd9ddfbe893295a57) +- Switch from vb.teelaun.ch to versionbadg.es for the npm version badge SVG. [`ea7cf84`](https://github.com/inspect-js/is-string/commit/ea7cf849b952c924d1687a302098251a7b827c80) +- Test on `io.js` `v2.4` [`66ec3ea`](https://github.com/inspect-js/is-string/commit/66ec3ea390b364583a792799b53857fd186ccc88) +- Test on `io.js` `v2.3` [`ca6e796`](https://github.com/inspect-js/is-string/commit/ca6e796f16ec433b88962162fde8012f28e18f1e) +- Fix tests for faked @@toStringTag [`3cce832`](https://github.com/inspect-js/is-string/commit/3cce8329133dfd233987359df151018b3b136be1) + +## [v1.0.4](https://github.com/inspect-js/is-string/compare/v1.0.3...v1.0.4) - 2015-01-29 + +### Commits + +- If @@toStringTag is not present, use the old-school Object#toString test. [`30675ec`](https://github.com/inspect-js/is-string/commit/30675ecb5c5cc43873918661a414a1d0f8b77325) + +## [v1.0.3](https://github.com/inspect-js/is-string/compare/v1.0.2...v1.0.3) - 2015-01-29 + +### Commits + +- Refactor to aid optimization of non-try/catch code. [`9b2772a`](https://github.com/inspect-js/is-string/commit/9b2772abe09ba8cbaa631322cc226ee906d2db22) + +## [v1.0.2](https://github.com/inspect-js/is-string/compare/v1.0.1...v1.0.2) - 2015-01-29 + +### Commits + +- Fix broken package.json [`dc921d3`](https://github.com/inspect-js/is-string/commit/dc921d332b64e4041162f04e4712b0dc687863a5) + +## [v1.0.1](https://github.com/inspect-js/is-string/compare/v1.0.0...v1.0.1) - 2015-01-29 + +### Commits + +- Fix eslint config. [`c4e05bd`](https://github.com/inspect-js/is-string/commit/c4e05bd171da6002d432e451fd48912db8b048e0) +- Add early exits for typeof "string", or typeof not "object". [`82f41d3`](https://github.com/inspect-js/is-string/commit/82f41d36a599bc6a06152792c84c7683e412c513) + +## v1.0.0 - 2015-01-29 + +### Commits + +- Dotfiles. [`45bc9dd`](https://github.com/inspect-js/is-string/commit/45bc9dd60201722344986a6c7536be9ea9ccefbf) +- `make release` [`23707f5`](https://github.com/inspect-js/is-string/commit/23707f5ecfdf00afb0e57c06ac07f7f49cdeb606) +- package.json [`575ad81`](https://github.com/inspect-js/is-string/commit/575ad811c61b156cfbcc60ff61947183c6ebe6a2) +- Read me [`3f67c9a`](https://github.com/inspect-js/is-string/commit/3f67c9a0725f811845d38646a19322895cd03981) +- Initial commit [`2c26a7a`](https://github.com/inspect-js/is-string/commit/2c26a7a2e41dec77be2c59d5847f29a6ab7c0b29) +- Tests. [`38c987b`](https://github.com/inspect-js/is-string/commit/38c987b8513b0ac03b0897e0fce7de8135d4ee0f) +- Implementation. [`0471d59`](https://github.com/inspect-js/is-string/commit/0471d59078d7f3f77619913ec21c57c0af27114c) diff --git a/novas/novacore-zephyr/groq-code-cli/node_modules/is-string/LICENSE b/novas/novacore-zephyr/groq-code-cli/node_modules/is-string/LICENSE new file mode 100644 index 0000000000000000000000000000000000000000..b43df444e518288ceef6eaa9badd33388191b1d3 --- /dev/null +++ b/novas/novacore-zephyr/groq-code-cli/node_modules/is-string/LICENSE @@ -0,0 +1,22 @@ +The MIT License (MIT) + +Copyright (c) 2015 Jordan Harband + +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. + diff --git a/novas/novacore-zephyr/groq-code-cli/node_modules/is-string/README.md b/novas/novacore-zephyr/groq-code-cli/node_modules/is-string/README.md new file mode 100644 index 0000000000000000000000000000000000000000..2dbe50474a0ae37b49d4075807a71f33cbbeca29 --- /dev/null +++ b/novas/novacore-zephyr/groq-code-cli/node_modules/is-string/README.md @@ -0,0 +1,56 @@ +# is-string [![Version Badge][npm-version-svg]][package-url] + +[![github actions][actions-image]][actions-url] +[![coverage][codecov-image]][codecov-url] +[![dependency status][deps-svg]][deps-url] +[![dev dependency status][dev-deps-svg]][dev-deps-url] +[![License][license-image]][license-url] +[![Downloads][downloads-image]][downloads-url] + +[![npm badge][npm-badge-png]][package-url] + +Is this value a JS String object or primitive? This module works cross-realm/iframe, and despite ES6 @@toStringTag. + +## Example + +```js +var isString = require('is-string'); +var assert = require('assert'); + +assert.notOk(isString(undefined)); +assert.notOk(isString(null)); +assert.notOk(isString(false)); +assert.notOk(isString(true)); +assert.notOk(isString(function () {})); +assert.notOk(isString([])); +assert.notOk(isString({})); +assert.notOk(isString(/a/g)); +assert.notOk(isString(new RegExp('a', 'g'))); +assert.notOk(isString(new Date())); +assert.notOk(isString(42)); +assert.notOk(isString(NaN)); +assert.notOk(isString(Infinity)); +assert.notOk(isString(new Number(42))); + +assert.ok(isString('foo')); +assert.ok(isString(Object('foo'))); +``` + +## Tests +Simply clone the repo, `npm install`, and run `npm test` + +[package-url]: https://npmjs.org/package/is-string +[npm-version-svg]: https://versionbadg.es/inspect-js/is-string.svg +[deps-svg]: https://david-dm.org/inspect-js/is-string.svg +[deps-url]: https://david-dm.org/inspect-js/is-string +[dev-deps-svg]: https://david-dm.org/inspect-js/is-string/dev-status.svg +[dev-deps-url]: https://david-dm.org/inspect-js/is-string#info=devDependencies +[npm-badge-png]: https://nodei.co/npm/is-string.png?downloads=true&stars=true +[license-image]: https://img.shields.io/npm/l/is-string.svg +[license-url]: LICENSE +[downloads-image]: https://img.shields.io/npm/dm/is-string.svg +[downloads-url]: https://npm-stat.com/charts.html?package=is-string +[codecov-image]: https://codecov.io/gh/inspect-js/is-string/branch/main/graphs/badge.svg +[codecov-url]: https://app.codecov.io/gh/inspect-js/is-string/ +[actions-image]: https://img.shields.io/endpoint?url=https://github-actions-badge-u3jn4tfpocch.runkit.sh/inspect-js/is-string +[actions-url]: https://github.com/inspect-js/is-string/actions diff --git a/novas/novacore-zephyr/groq-code-cli/node_modules/is-string/index.d.ts b/novas/novacore-zephyr/groq-code-cli/node_modules/is-string/index.d.ts new file mode 100644 index 0000000000000000000000000000000000000000..ef56f4cca2cee3959a8e585f45e59ae861e0fb11 --- /dev/null +++ b/novas/novacore-zephyr/groq-code-cli/node_modules/is-string/index.d.ts @@ -0,0 +1,3 @@ +declare function isString(value: unknown): value is string | String; + +export = isString; \ No newline at end of file diff --git a/novas/novacore-zephyr/groq-code-cli/node_modules/is-string/index.js b/novas/novacore-zephyr/groq-code-cli/node_modules/is-string/index.js new file mode 100644 index 0000000000000000000000000000000000000000..3a3d0582c8e1be646411e57ae57dff14ac94b6a2 --- /dev/null +++ b/novas/novacore-zephyr/groq-code-cli/node_modules/is-string/index.js @@ -0,0 +1,31 @@ +'use strict'; + +var callBound = require('call-bound'); + +/** @type {(receiver: ThisParameterType, ...args: Parameters) => ReturnType} */ +var $strValueOf = callBound('String.prototype.valueOf'); + +/** @type {import('.')} */ +var tryStringObject = function tryStringObject(value) { + try { + $strValueOf(value); + return true; + } catch (e) { + return false; + } +}; +/** @type {(receiver: ThisParameterType, ...args: Parameters) => ReturnType} */ +var $toString = callBound('Object.prototype.toString'); +var strClass = '[object String]'; +var hasToStringTag = require('has-tostringtag/shams')(); + +/** @type {import('.')} */ +module.exports = function isString(value) { + if (typeof value === 'string') { + return true; + } + if (!value || typeof value !== 'object') { + return false; + } + return hasToStringTag ? tryStringObject(value) : $toString(value) === strClass; +}; diff --git a/novas/novacore-zephyr/groq-code-cli/node_modules/is-string/package.json b/novas/novacore-zephyr/groq-code-cli/node_modules/is-string/package.json new file mode 100644 index 0000000000000000000000000000000000000000..d0cf2658ccf7e31c7dc4892fa1c93352bbd312f4 --- /dev/null +++ b/novas/novacore-zephyr/groq-code-cli/node_modules/is-string/package.json @@ -0,0 +1,95 @@ +{ + "name": "is-string", + "version": "1.1.1", + "author": "Jordan Harband ", + "funding": { + "url": "https://github.com/sponsors/ljharb" + }, + "description": "Is this value a JS String object or primitive? This module works cross-realm/iframe, and despite ES6 @@toStringTag.", + "license": "MIT", + "main": "index.js", + "scripts": { + "prepack": "npmignore --auto --commentLines=autogenerated", + "prepublishOnly": "safe-publish-latest", + "prepublish": "not-in-publish || npm run prepublishOnly", + "pretest": "npm run lint", + "tests-only": "nyc tape 'test/**/*.js'", + "test:corejs": "nyc tape test-corejs.js", + "test": "npm run tests-only && npm run test:corejs", + "posttest": "npx npm@'>=10.2' audit --production", + "prelint": "eclint check $(git ls-files | xargs find 2> /dev/null | grep -vE 'node_modules|\\.git')", + "lint": "eslint --ext=js,mjs .", + "postlint": "tsc -p . && attw -P", + "version": "auto-changelog && git add CHANGELOG.md", + "postversion": "auto-changelog && git add CHANGELOG.md && git commit --no-edit --amend && git tag -f \"v$(node -e \"console.log(require('./package.json').version)\")\"" + }, + "repository": { + "type": "git", + "url": "git://github.com/inspect-js/is-string.git" + }, + "keywords": [ + "String", + "string", + "ES6", + "toStringTag", + "@@toStringTag", + "String object" + ], + "dependencies": { + "call-bound": "^1.0.3", + "has-tostringtag": "^1.0.2" + }, + "devDependencies": { + "@arethetypeswrong/cli": "^0.17.1", + "@ljharb/eslint-config": "^21.1.1", + "@ljharb/tsconfig": "^0.2.2", + "@types/core-js": "^2.5.8", + "@types/tape": "^5.7.0", + "auto-changelog": "^2.5.0", + "core-js": "^3.39.0", + "eclint": "^2.8.1", + "encoding": "^0.1.13", + "eslint": "=8.8.0", + "in-publish": "^2.0.1", + "is": "^3.3.0", + "npmignore": "^0.3.1", + "nyc": "^10.3.2", + "safe-publish-latest": "^2.0.0", + "tape": "^5.9.0", + "typescript": "next" + }, + "testling": { + "files": "test/index.js", + "browsers": [ + "iexplore/6.0..latest", + "firefox/3.0..6.0", + "firefox/15.0..latest", + "firefox/nightly", + "chrome/4.0..10.0", + "chrome/20.0..latest", + "chrome/canary", + "opera/10.0..latest", + "opera/next", + "safari/4.0..latest", + "ipad/6.0..latest", + "iphone/6.0..latest", + "android-browser/4.2" + ] + }, + "engines": { + "node": ">= 0.4" + }, + "auto-changelog": { + "output": "CHANGELOG.md", + "template": "keepachangelog", + "unreleased": false, + "commitLimit": false, + "backfillLimit": false + }, + "publishConfig": { + "ignore": [ + ".github/workflows", + "test-corejs.js" + ] + } +} diff --git a/novas/novacore-zephyr/groq-code-cli/node_modules/is-string/tsconfig.json b/novas/novacore-zephyr/groq-code-cli/node_modules/is-string/tsconfig.json new file mode 100644 index 0000000000000000000000000000000000000000..6716d81ce28cf3af2a23d2d9237c7a3d53114217 --- /dev/null +++ b/novas/novacore-zephyr/groq-code-cli/node_modules/is-string/tsconfig.json @@ -0,0 +1,9 @@ +{ + "extends": "@ljharb/tsconfig", + "compilerOptions": { + "target": "ES2021", + }, + "exclude": [ + "coverage" + ] +} diff --git a/novas/novacore-zephyr/groq-code-cli/node_modules/is-symbol/.editorconfig b/novas/novacore-zephyr/groq-code-cli/node_modules/is-symbol/.editorconfig new file mode 100644 index 0000000000000000000000000000000000000000..eaa214161f5cdb409c32465fd822624c633a6bd8 --- /dev/null +++ b/novas/novacore-zephyr/groq-code-cli/node_modules/is-symbol/.editorconfig @@ -0,0 +1,13 @@ +root = true + +[*] +indent_style = tab; +insert_final_newline = true; +quote_type = auto; +space_after_anonymous_functions = true; +space_after_control_statements = true; +spaces_around_operators = true; +trim_trailing_whitespace = true; +spaces_in_brackets = false; +end_of_line = lf; + diff --git a/novas/novacore-zephyr/groq-code-cli/node_modules/is-symbol/.eslintrc b/novas/novacore-zephyr/groq-code-cli/node_modules/is-symbol/.eslintrc new file mode 100644 index 0000000000000000000000000000000000000000..046dd071413e73d54b0fc23a48536fc7960e3c82 --- /dev/null +++ b/novas/novacore-zephyr/groq-code-cli/node_modules/is-symbol/.eslintrc @@ -0,0 +1,14 @@ +{ + "root": true, + + "extends": "@ljharb", + + "overrides": [ + { + "files": "test/**", + "rules": { + "no-restricted-properties": 0, + }, + }, + ], +} diff --git a/novas/novacore-zephyr/groq-code-cli/node_modules/is-symbol/.nycrc b/novas/novacore-zephyr/groq-code-cli/node_modules/is-symbol/.nycrc new file mode 100644 index 0000000000000000000000000000000000000000..bdd626ce91477abbdd489b79988baebadbd3c897 --- /dev/null +++ b/novas/novacore-zephyr/groq-code-cli/node_modules/is-symbol/.nycrc @@ -0,0 +1,9 @@ +{ + "all": true, + "check-coverage": false, + "reporter": ["text-summary", "text", "html", "json"], + "exclude": [ + "coverage", + "test" + ] +} diff --git a/novas/novacore-zephyr/groq-code-cli/node_modules/is-symbol/CHANGELOG.md b/novas/novacore-zephyr/groq-code-cli/node_modules/is-symbol/CHANGELOG.md new file mode 100644 index 0000000000000000000000000000000000000000..e782b83a3c21befed74be3508b1fbd2773e9c24d --- /dev/null +++ b/novas/novacore-zephyr/groq-code-cli/node_modules/is-symbol/CHANGELOG.md @@ -0,0 +1,145 @@ +# Changelog + +All notable changes to this project will be documented in this file. + +The format is based on [Keep a Changelog](https://keepachangelog.com/en/1.0.0/) +and this project adheres to [Semantic Versioning](https://semver.org/spec/v2.0.0.html). + +## [v1.1.1](https://github.com/inspect-js/is-symbol/compare/v1.1.0...v1.1.1) - 2024-12-12 + +### Commits + +- [actions] re-add finishers [`9b9d06f`](https://github.com/inspect-js/is-symbol/commit/9b9d06f571cf5b8481216b32474b567b02b14ae3) +- [Deps] update `call-bind`, `has-symbols`, `safe-regex-test` [`07f3647`](https://github.com/inspect-js/is-symbol/commit/07f36476b69e98353c09dc58cbcab8891e3ed2b7) +- [Refactor] use `call-bound` directly [`799402d`](https://github.com/inspect-js/is-symbol/commit/799402d3b0f291981b6406ec92c8c45cdad4e75e) +- [Dev Deps] update `@arethetypeswrong/cli`, `@ljharb/tsconfig` [`4b8b2f9`](https://github.com/inspect-js/is-symbol/commit/4b8b2f9e844ebac93e89cf8e88e08ae0e8f4cc7f) +- [types] remove unneeded DT packages [`398abaa`](https://github.com/inspect-js/is-symbol/commit/398abaaea5a6192cd0eb9fda5f0a3cfb5b1da845) + +## [v1.1.0](https://github.com/inspect-js/is-symbol/compare/v1.0.4...v1.1.0) - 2024-12-02 + +### Commits + +- [actions] reuse common workflows [`acf85f0`](https://github.com/inspect-js/is-symbol/commit/acf85f027ec6ea70a7023646c47f9324ff9a5e25) +- [meta] use `npmignore` to autogenerate an npmignore file [`77c818e`](https://github.com/inspect-js/is-symbol/commit/77c818ebf4dc1107d945854185071ca76ef94d31) +- [Tests] use `for-each` and `es-value-fixtures` [`93dfed0`](https://github.com/inspect-js/is-symbol/commit/93dfed0de6c1da2946d83017cc0f44f8f7d15ded) +- [New] add types [`ed6a057`](https://github.com/inspect-js/is-symbol/commit/ed6a057e9595fb14c7d322ed4aba3433386d07bb) +- [actions] split out node 10-20, and 20+ [`7f81ccc`](https://github.com/inspect-js/is-symbol/commit/7f81ccc8bb2c667e6975f278c9dec7310a923749) +- [Robustness] use `call-bind` and `safe-regex-test` [`dc7e142`](https://github.com/inspect-js/is-symbol/commit/dc7e142724e9dce678b1ead151c7fedd02411a03) +- [Dev Deps] update `eslint`, `@ljharb/eslint-config`, `aud`, `auto-changelog`, `object-inspect`, `tape` [`70f87c2`](https://github.com/inspect-js/is-symbol/commit/70f87c2715ad4cc8e66ce0eb4a4d2c4034b8e19c) +- [Dev Deps] update `eslint`, `@ljharb/eslint-config`, `object-inspect`, `safe-publish-latest`, `tape` [`3f02ff4`](https://github.com/inspect-js/is-symbol/commit/3f02ff4459ec96e22be4ef8cda0c966fafb5509a) +- [Dev Deps] update `@ljharb/eslint-config`, `auto-changelog`, `has-tostringtag`, `npmignore`, `object-inspect`, `tape` [`9588872`](https://github.com/inspect-js/is-symbol/commit/95888727f109c7e9d2fdfe7ed419cc8452505503) +- [actions] update rebase action to use reusable workflow [`59e2f68`](https://github.com/inspect-js/is-symbol/commit/59e2f680992f630eb1d76dd8e009d7fa074e3055) +- [actions] update codecov uploader [`e4759f8`](https://github.com/inspect-js/is-symbol/commit/e4759f8bea3b66d6d70f8b7b2656cc9b987ca874) +- [Dev Deps] update `eslint`, `auto-changelog`, `object-inspect`, `tape` [`33990c0`](https://github.com/inspect-js/is-symbol/commit/33990c0d76db7f44bcf177f7f5b602747b159a35) +- [Tests] use `has-tostringtag` for more robust Symbol.toStringTag detection [`d6154e1`](https://github.com/inspect-js/is-symbol/commit/d6154e10f79b572630fd309543160c446d7e46ef) +- [Tests] replace `aud` with `npm audit` [`3215a60`](https://github.com/inspect-js/is-symbol/commit/3215a60cf4ffce688e3911025cf2ccca95e259d0) +- [Refactor] avoid an expensive check, for primitives [`59f1a42`](https://github.com/inspect-js/is-symbol/commit/59f1a428ae625b59b618493c2454096900451d84) +- [Deps] update `has-symbols` [`06be1a9`](https://github.com/inspect-js/is-symbol/commit/06be1a9d1bf57181e35b1ffe446196243cc8becc) +- [Dev Deps] add missing peer dep [`799b0da`](https://github.com/inspect-js/is-symbol/commit/799b0da1902dfa5b02456fcf32887ead6e332358) + +## [v1.0.4](https://github.com/inspect-js/is-symbol/compare/v1.0.3...v1.0.4) - 2021-05-08 + +### Commits + +- [Tests] migrate tests to Github Actions [`997d43c`](https://github.com/inspect-js/is-symbol/commit/997d43c091d1f8d3a2b3d7dfb17a73cdc5a75dde) +- [actions] use `node/install` instead of `node/run`; use `codecov` action [`fe0ccb7`](https://github.com/inspect-js/is-symbol/commit/fe0ccb7b7b64e74e095ef782dcc1d24d6c4b0be4) +- [meta] remove unused Makefile and associated utilities [`3ab2748`](https://github.com/inspect-js/is-symbol/commit/3ab2748ab6c2de21fc24f131bb880c68ba0b7b34) +- [meta] do not publish github action workflow files [`f20fafe`](https://github.com/inspect-js/is-symbol/commit/f20fafeb21585c7b4871ea19f104fd7696734fe8) +- [Tests] run `nyc` on all tests [`5c332fc`](https://github.com/inspect-js/is-symbol/commit/5c332fc92cecbed4a2041bc0c52b991b4a593f34) +- [Dev Deps] update `eslint`, `@ljharb/eslint-config`, `aud`, `auto-changelog`, `object-inspect`, `tape` [`c5a58a8`](https://github.com/inspect-js/is-symbol/commit/c5a58a8bea390a9b02e1c8c4aac30c223370297b) +- [readme] fix repo URLs; remove travis badge [`bcd9258`](https://github.com/inspect-js/is-symbol/commit/bcd9258d161fe709148fcc47962df3372c544727) +- [actions] add "Allow Edits" workflow [`33ae2d3`](https://github.com/inspect-js/is-symbol/commit/33ae2d3940e9daa6003a84c232874ee558b2fb44) +- [Dev Deps] update `eslint`, `@ljharb/eslint-config`, `aud`, `object-inspect`, `tape` [`e53def0`](https://github.com/inspect-js/is-symbol/commit/e53def0b77c38cbfae87fd8bbfd78953b845ea94) +- [Dev Deps] update `eslint`, `@ljharb/eslint-config`, `aud`, `auto-changelog`, `object-inspect` [`ae36504`](https://github.com/inspect-js/is-symbol/commit/ae365048c0c1b13457faa78658b80561f5a0bcd0) +- [readme] add actions and codecov badges [`aae7f09`](https://github.com/inspect-js/is-symbol/commit/aae7f09bd59d36df69d3b66d9b351c39fe072330) +- [Dev Deps] update `eslint`, `@ljharb/eslint-config`, `tape` [`d993fae`](https://github.com/inspect-js/is-symbol/commit/d993fae6d89856d4ab7818874be597249cb8a8cc) +- [Dev Deps] update `eslint`, `@ljharb/eslint-config`, `tape` [`51808a5`](https://github.com/inspect-js/is-symbol/commit/51808a55f272023201f40a59b2459ec6305bf73a) +- [Dev Deps] update `auto-changelog`, `tape` [`c90040f`](https://github.com/inspect-js/is-symbol/commit/c90040f0aeded8d0071a78d5cd593b385f8828ee) +- [Dev Deps] update `eslint`, `tape` [`9fee159`](https://github.com/inspect-js/is-symbol/commit/9fee159403d499a5ed2f5cb5db03747d09ab1766) +- [meta] use `prepublishOnly` script for npm 7+ [`b166afc`](https://github.com/inspect-js/is-symbol/commit/b166afc3ae3c6d11721a9558ddb112a28261688d) +- [meta] gitignore coverage output [`4a0fe3a`](https://github.com/inspect-js/is-symbol/commit/4a0fe3aa074b933074fcc231ce739005e1fec195) +- [actions] update workflows [`fbcbc9e`](https://github.com/inspect-js/is-symbol/commit/fbcbc9eb5bfe2cf9a77d5bd86bb1dece8e5f81d0) +- [Dev Deps] update `auto-changelog`; add `aud` [`e66ab98`](https://github.com/inspect-js/is-symbol/commit/e66ab989e48b81b48bd443d35dba0071950c5d7a) +- [Deps] update `has-symbols` [`6ce7de5`](https://github.com/inspect-js/is-symbol/commit/6ce7de53c866c068de2c28d97b3a64cf6d5f6a76) +- [actions] update rebase action to use checkout v2 [`1173c79`](https://github.com/inspect-js/is-symbol/commit/1173c79914076d73aec9aebc22dce4122e7bd3ae) +- [actions] switch Automatic Rebase workflow to `pull_request_target` event [`94a6348`](https://github.com/inspect-js/is-symbol/commit/94a6348f6274eac9bf4c5a6057b4f6120fc7d1d1) +- [Tests] only audit prod deps [`0692681`](https://github.com/inspect-js/is-symbol/commit/06926811fa029fe0fded5d0af4553a7808c143d1) +- [meta] do not publish .nvmrc file [`ed47833`](https://github.com/inspect-js/is-symbol/commit/ed478333c72384f8dbeb51e5fd501238f52a4972) + +## [v1.0.3](https://github.com/inspect-js/is-symbol/compare/v1.0.2...v1.0.3) - 2019-11-20 + +### Commits + +- [Tests] use shared travis-ci configs [`034afdd`](https://github.com/inspect-js/is-symbol/commit/034afdd677c1b72b76751f3e5131acc927a32916) +- [Tests] remove `jscs` [`0c026a0`](https://github.com/inspect-js/is-symbol/commit/0c026a06815e46a33a8a5b4b1be8965d32d38e5c) +- [meta] add `auto-changelog` [`9a1776b`](https://github.com/inspect-js/is-symbol/commit/9a1776bb49f3e6ac12a5b3a447edcc651216891b) +- [Tests] up to `node` `v12.10`, `v11.15`, `v10.16`, `v8.16`, `v6.17` [`23a6db4`](https://github.com/inspect-js/is-symbol/commit/23a6db49a338d19eab19d876745513820bb6a9dc) +- [Tests] up to `node` `v11.7`, `v10.15`, `v8.15`, `v6.16` [`892d92e`](https://github.com/inspect-js/is-symbol/commit/892d92e7c40f3c0577583a98134106181c38bb7e) +- [Dev Deps] update `eslint`, `@ljharb/eslint-config`, `safe-publish-latest`, `semver`, `tape` [`c2e6d6a`](https://github.com/inspect-js/is-symbol/commit/c2e6d6a71f839522bbd124b7419f5fc42ffff6d3) +- [readme] fix repo URLs [`655c288`](https://github.com/inspect-js/is-symbol/commit/655c288a815856e647dba4b6049b1743cec3533c) +- [actions] add automatic rebasing / merge commit blocking [`97b1229`](https://github.com/inspect-js/is-symbol/commit/97b12296bf8fa1ce0c6121bf3de56c413da10aae) +- [meta] add FUNDING.yml [`94c64a3`](https://github.com/inspect-js/is-symbol/commit/94c64a367a1c34f960cf6007fc65cfbbcba34ba3) +- [Dev Deps] update `eslint`, `@ljharb/eslint-config`, `covert`, `tape`, `semver` [`71ab543`](https://github.com/inspect-js/is-symbol/commit/71ab543e09b820378362f4f66248addd410c6388) +- [Dev Deps] update `eslint`, `@ljharb/eslint-config`, `semver`, `tape` [`c6212f9`](https://github.com/inspect-js/is-symbol/commit/c6212f94e28622c94bb37189ffc241ee88b5b1dd) +- [Dev Deps] update `eslint`, `@ljharb/eslint-config`, `safe-publish-latest`, `object-inspect` [`91bc802`](https://github.com/inspect-js/is-symbol/commit/91bc802e18e63f4e8230ee0148302ce849e2f733) +- [Tests] use `npx aud` instead of `nsp` or `npm audit` with hoops [`8cbe69c`](https://github.com/inspect-js/is-symbol/commit/8cbe69c3fafe9cfbe7d27f710c88d02d2d2c6a00) +- [Tests] use `npm audit` instead of `nsp` [`741b51d`](https://github.com/inspect-js/is-symbol/commit/741b51dac868f6b22736c204910d257bcf4d5044) +- [meta] add `funding` field [`65b58d1`](https://github.com/inspect-js/is-symbol/commit/65b58d1e9fc572712d462d615e6b2418627d8fb9) +- [Deps] update `has-symbols` [`9cb5b2a`](https://github.com/inspect-js/is-symbol/commit/9cb5b2a9a3b89e8e0246be8df4fff3f5ceac7309) + +## [v1.0.2](https://github.com/inspect-js/is-symbol/compare/v1.0.1...v1.0.2) - 2018-09-20 + +### Commits + +- Update `eslint`, `tape`, `semver`; use my personal shared `eslint` config [`e86aaea`](https://github.com/inspect-js/is-symbol/commit/e86aaea8d81356801ecfc60540523e9b809a55f4) +- [Tests] on all node minors; improve test matrix [`50bc07f`](https://github.com/inspect-js/is-symbol/commit/50bc07f2ff73e5499b02a61f0a00ea48a84ae213) +- [Dev Deps] update `tape`, `jscs`, `nsp`, `semver`, `eslint`, `@ljharb/eslint-config` [`45e17bd`](https://github.com/inspect-js/is-symbol/commit/45e17bdf145846f30122348a94c5e506b90836ba) +- [Tests] up to `node` `v10.0`, `v9.11`, `v8.11`, `v6.14`, `v4.9`; use `nvm install-latest-npm` [`44402cb`](https://github.com/inspect-js/is-symbol/commit/44402cb82d4499e947b48b31b14667d1ebe7e2b4) +- [Tests] up to `node` `v8.1`, `v7.10`, `v6.11`, `v4.8`; improve matrix; old npm breaks on newer nodes [`9047c23`](https://github.com/inspect-js/is-symbol/commit/9047c232857ecb80551a21cc0b1cc4c91d28da1f) +- Update `tape`, `covert`, `jscs`, `semver` [`d57d1ce`](https://github.com/inspect-js/is-symbol/commit/d57d1ce3fc0b740885a1ed5c0738d4a27b29ab07) +- Add `npm run eslint` [`0d75a66`](https://github.com/inspect-js/is-symbol/commit/0d75a6638ad6f7ff7d5bc958531a6328fb13e3fe) +- Update `eslint` [`042fb3a`](https://github.com/inspect-js/is-symbol/commit/042fb3aec590f0c0d205b15812b285ad95cfff6b) +- [Refactor] use `has-symbols` and `object-inspect` [`129bc68`](https://github.com/inspect-js/is-symbol/commit/129bc68dd619b789b9956ac9b63b46257ee1060c) +- [Tests] up to `node` `v10.11`, `v8.12` [`c1822e8`](https://github.com/inspect-js/is-symbol/commit/c1822e84d6cc0cee9f1c2893e91b1aa999ad41db) +- Update `tape`, `jscs`, `eslint`, `@ljharb/eslint-config` [`089d2cf`](https://github.com/inspect-js/is-symbol/commit/089d2cf7cad87b75aa534769af11524ad2e79080) +- [Tests] up to `node` `v8.4`; newer npm breaks on older node [`05ce701`](https://github.com/inspect-js/is-symbol/commit/05ce701e3c1be8b3266ffac49806832e410491c1) +- All grade A-supported `node`/`iojs` versions now ship with an `npm` that understands `^`. [`241e6a6`](https://github.com/inspect-js/is-symbol/commit/241e6a655c0e19e9dcf0ae88e7fddd4cde394c5c) +- Test on latest `node` and `io.js` versions. [`5c8d5de`](https://github.com/inspect-js/is-symbol/commit/5c8d5deb9b7c01a8cdf959082a3d619c19751b0a) +- [Dev Deps] update `eslint`, `@ljharb/eslint-config`, `nsp`, `semver`, `tape` [`06047bf`](https://github.com/inspect-js/is-symbol/commit/06047bf72b20a66c0b455e80856b2d00b1910391) +- [Dev Deps] update `jscs`, `nsp`, `semver`, `eslint`, `@ljharb/eslint-config` [`9d25dd7`](https://github.com/inspect-js/is-symbol/commit/9d25dd79347c89f98207a3bad39f667f1f8a410e) +- [Tests] up to `io.js` `v3.3`, `node` `v4.1` [`ce173bd`](https://github.com/inspect-js/is-symbol/commit/ce173bda6e146907e3061a0e70463107d955de35) +- Update `nsp`, `eslint` [`29e5214`](https://github.com/inspect-js/is-symbol/commit/29e52140fac2049b4a32e175787bb3b184a1dd72) +- Update `semver`, `eslint` [`53be884`](https://github.com/inspect-js/is-symbol/commit/53be884c2811f7a4452581003d9cdaf6f9bddd3c) +- [Dev Deps] update `eslint`, `nsp`, `semver`, `tape` [`3bd149c`](https://github.com/inspect-js/is-symbol/commit/3bd149c869c099b07104b06c0692755a01f8298c) +- [Dev Deps] update `jscs` [`69b4231`](https://github.com/inspect-js/is-symbol/commit/69b4231632b170e5ddb350db2f0c59e6cad6f548) +- Test up to `io.js` `v2.1` [`0b61ac7`](https://github.com/inspect-js/is-symbol/commit/0b61ac7ac4de390296aeefb9395549592ea87da4) +- [Dev Deps] update `tape` [`5e1b200`](https://github.com/inspect-js/is-symbol/commit/5e1b2008c910bcdabee299a1ac599143ea07c3f9) +- Only apps should have lockfiles. [`a191ff5`](https://github.com/inspect-js/is-symbol/commit/a191ff5f0320fc16db42fdaa40f0c21d4326255e) +- [Dev Deps] update `nsp`, `eslint`, `@ljharb/eslint-config` [`97c87ef`](https://github.com/inspect-js/is-symbol/commit/97c87ef52b966f211e231092a54ef6ed05c99a26) +- Test on `io.js` `v2.2` [`42560e4`](https://github.com/inspect-js/is-symbol/commit/42560e466e17cbbb9fa71c0121f4bbbcf266c887) +- [Dev Deps] Update `tape`, `eslint` [`149b2f2`](https://github.com/inspect-js/is-symbol/commit/149b2f20bde92b2da12ccfeb8988beb2dc95c37c) +- [Tests] fix test messages [`28bd1ed`](https://github.com/inspect-js/is-symbol/commit/28bd1eda310590e13ada19cbd718c85c25d8a0c5) +- Test up to `io.js` `v3.0` [`c0dcc98`](https://github.com/inspect-js/is-symbol/commit/c0dcc98313d17151ec043e5452df306618be865e) +- `node` now supports Symbols now. [`d1853ad`](https://github.com/inspect-js/is-symbol/commit/d1853adf6369ab9d4c4516bdb032c2e42f52f90a) +- [Dev Deps] update `tape` [`f7a6575`](https://github.com/inspect-js/is-symbol/commit/f7a6575fbdef13abcc412c63d22b56943ed85969) +- Switch from vb.teelaun.ch to versionbadg.es for the npm version badge SVG. [`aae9c6a`](https://github.com/inspect-js/is-symbol/commit/aae9c6a724578659976ea74e11ec9fe35608607b) +- Test on `io.js` `v2.4` [`ab8f449`](https://github.com/inspect-js/is-symbol/commit/ab8f4492115270cc00a479915b02ac1bac75dfed) +- Test on `io.js` `v2.3` [`58ce871`](https://github.com/inspect-js/is-symbol/commit/58ce871674e857955b333aa057eeecd68b40e988) + +## [v1.0.1](https://github.com/inspect-js/is-symbol/compare/v1.0.0...v1.0.1) - 2015-01-26 + +### Commits + +- Correct package description. [`f4d15b9`](https://github.com/inspect-js/is-symbol/commit/f4d15b928b4b754b097a84f7c3ceac73c486aceb) + +## v1.0.0 - 2015-01-24 + +### Commits + +- Dotfiles. [`5d9a744`](https://github.com/inspect-js/is-symbol/commit/5d9a7441f724630070e9bd74a995191cafa1064b) +- Tests. [`8af5663`](https://github.com/inspect-js/is-symbol/commit/8af56631950dcee48b36f517837273193a6ba119) +- `make release` [`6293446`](https://github.com/inspect-js/is-symbol/commit/629344654a72e7fc8059607d6a86c64b002c3e5d) +- package.json [`7d4082c`](https://github.com/inspect-js/is-symbol/commit/7d4082ca9502118e70d24f526704d45a1a7f2067) +- Initial commit [`cbb179f`](https://github.com/inspect-js/is-symbol/commit/cbb179f677bd3dcb56ac5e3f0a7a9af503fd8952) +- Read me. [`099a775`](https://github.com/inspect-js/is-symbol/commit/099a775e7e751706283ae1cab7a8635c094773a9) +- Implementation. [`cb51248`](https://github.com/inspect-js/is-symbol/commit/cb51248eedaf55e0b8ad7dacdab179db2d76e96e) diff --git a/novas/novacore-zephyr/groq-code-cli/node_modules/is-symbol/LICENSE b/novas/novacore-zephyr/groq-code-cli/node_modules/is-symbol/LICENSE new file mode 100644 index 0000000000000000000000000000000000000000..b43df444e518288ceef6eaa9badd33388191b1d3 --- /dev/null +++ b/novas/novacore-zephyr/groq-code-cli/node_modules/is-symbol/LICENSE @@ -0,0 +1,22 @@ +The MIT License (MIT) + +Copyright (c) 2015 Jordan Harband + +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. + diff --git a/novas/novacore-zephyr/groq-code-cli/node_modules/is-symbol/README.md b/novas/novacore-zephyr/groq-code-cli/node_modules/is-symbol/README.md new file mode 100644 index 0000000000000000000000000000000000000000..5432594c7b46bfed4e9f0db4ca2afd09716125e7 --- /dev/null +++ b/novas/novacore-zephyr/groq-code-cli/node_modules/is-symbol/README.md @@ -0,0 +1,45 @@ +# is-symbol [![Version Badge][2]][1] + +[![github actions][actions-image]][actions-url] +[![coverage][codecov-image]][codecov-url] +[![dependency status][5]][6] +[![dev dependency status][7]][8] +[![License][license-image]][license-url] +[![Downloads][downloads-image]][downloads-url] + +[![npm badge][11]][1] + +Is this an ES6 Symbol value? + +## Example + +```js +var isSymbol = require('is-symbol'); +assert(!isSymbol(function () {})); +assert(!isSymbol(null)); +assert(!isSymbol(function* () { yield 42; return Infinity; }); + +assert(isSymbol(Symbol.iterator)); +assert(isSymbol(Symbol('foo'))); +assert(isSymbol(Symbol.for('foo'))); +assert(isSymbol(Object(Symbol('foo')))); +``` + +## Tests +Simply clone the repo, `npm install`, and run `npm test` + +[1]: https://npmjs.org/package/is-symbol +[2]: https://versionbadg.es/inspect-js/is-symbol.svg +[5]: https://david-dm.org/inspect-js/is-symbol.svg +[6]: https://david-dm.org/inspect-js/is-symbol +[7]: https://david-dm.org/inspect-js/is-symbol/dev-status.svg +[8]: https://david-dm.org/inspect-js/is-symbol#info=devDependencies +[11]: https://nodei.co/npm/is-symbol.png?downloads=true&stars=true +[license-image]: https://img.shields.io/npm/l/is-symbol.svg +[license-url]: LICENSE +[downloads-image]: https://img.shields.io/npm/dm/is-symbol.svg +[downloads-url]: https://npm-stat.com/charts.html?package=is-symbol +[codecov-image]: https://codecov.io/gh/inspect-js/is-symbol/branch/main/graphs/badge.svg +[codecov-url]: https://app.codecov.io/gh/inspect-js/is-symbol/ +[actions-image]: https://img.shields.io/endpoint?url=https://github-actions-badge-u3jn4tfpocch.runkit.sh/inspect-js/is-symbol +[actions-url]: https://github.com/inspect-js/is-symbol/actions diff --git a/novas/novacore-zephyr/groq-code-cli/node_modules/is-symbol/index.d.ts b/novas/novacore-zephyr/groq-code-cli/node_modules/is-symbol/index.d.ts new file mode 100644 index 0000000000000000000000000000000000000000..62f0c3c2d42c298f61501e39a820ffdd3407b218 --- /dev/null +++ b/novas/novacore-zephyr/groq-code-cli/node_modules/is-symbol/index.d.ts @@ -0,0 +1,3 @@ +declare function isSymbol(value: unknown): value is (symbol | Symbol); + +export = isSymbol; diff --git a/novas/novacore-zephyr/groq-code-cli/node_modules/is-symbol/index.js b/novas/novacore-zephyr/groq-code-cli/node_modules/is-symbol/index.js new file mode 100644 index 0000000000000000000000000000000000000000..dfd62a8b60b512b413096f779d9bae240505efcf --- /dev/null +++ b/novas/novacore-zephyr/groq-code-cli/node_modules/is-symbol/index.js @@ -0,0 +1,40 @@ +'use strict'; + +var callBound = require('call-bound'); +var $toString = callBound('Object.prototype.toString'); +var hasSymbols = require('has-symbols')(); +var safeRegexTest = require('safe-regex-test'); + +if (hasSymbols) { + var $symToStr = callBound('Symbol.prototype.toString'); + var isSymString = safeRegexTest(/^Symbol\(.*\)$/); + + /** @type {(value: object) => value is Symbol} */ + var isSymbolObject = function isRealSymbolObject(value) { + if (typeof value.valueOf() !== 'symbol') { + return false; + } + return isSymString($symToStr(value)); + }; + + /** @type {import('.')} */ + module.exports = function isSymbol(value) { + if (typeof value === 'symbol') { + return true; + } + if (!value || typeof value !== 'object' || $toString(value) !== '[object Symbol]') { + return false; + } + try { + return isSymbolObject(value); + } catch (e) { + return false; + } + }; +} else { + /** @type {import('.')} */ + module.exports = function isSymbol(value) { + // this environment does not support Symbols. + return false && value; + }; +} diff --git a/novas/novacore-zephyr/groq-code-cli/node_modules/is-symbol/package.json b/novas/novacore-zephyr/groq-code-cli/node_modules/is-symbol/package.json new file mode 100644 index 0000000000000000000000000000000000000000..ed0aa237cb3f5aae4570d9c6d8b11e0468a1acd0 --- /dev/null +++ b/novas/novacore-zephyr/groq-code-cli/node_modules/is-symbol/package.json @@ -0,0 +1,98 @@ +{ + "name": "is-symbol", + "version": "1.1.1", + "description": "Determine if a value is an ES6 Symbol or not.", + "main": "index.js", + "scripts": { + "prepack": "npmignore --auto --commentLines=autogenerated", + "prepublishOnly": "safe-publish-latest", + "prepublish": "not-in-publish || npm run prepublishOnly", + "pretest": "npm run lint", + "tests-only": "nyc tape 'test/**/*.js'", + "test": "npm run tests-only", + "posttest": "npx npm@'>=10.2' audit --production", + "lint": "eslint --ext=js,mjs .", + "postlint": "tsc -p . && attw -P", + "version": "auto-changelog && git add CHANGELOG.md", + "postversion": "auto-changelog && git add CHANGELOG.md && git commit --no-edit --amend && git tag -f \"v$(node -e \"console.log(require('./package.json').version)\")\"" + }, + "repository": { + "type": "git", + "url": "git://github.com/inspect-js/is-symbol.git" + }, + "keywords": [ + "symbol", + "es6", + "is", + "Symbol" + ], + "author": "Jordan Harband ", + "funding": { + "url": "https://github.com/sponsors/ljharb" + }, + "license": "MIT", + "bugs": { + "url": "https://github.com/inspect-js/is-symbol/issues" + }, + "dependencies": { + "call-bound": "^1.0.2", + "has-symbols": "^1.1.0", + "safe-regex-test": "^1.1.0" + }, + "devDependencies": { + "@arethetypeswrong/cli": "^0.17.1", + "@ljharb/eslint-config": "^21.1.1", + "@ljharb/tsconfig": "^0.2.2", + "@types/for-each": "^0.3.3", + "@types/object-inspect": "^1.13.0", + "@types/tape": "^5.6.5", + "auto-changelog": "^2.5.0", + "encoding": "^0.1.13", + "es-value-fixtures": "^1.5.0", + "eslint": "=8.8.0", + "for-each": "^0.3.3", + "has-tostringtag": "^1.0.2", + "in-publish": "^2.0.1", + "npmignore": "^0.3.1", + "nyc": "^10.3.2", + "object-inspect": "^1.13.3", + "safe-publish-latest": "^2.0.0", + "tape": "^5.9.0", + "typescript": "next" + }, + "testling": { + "files": "test/index.js", + "browsers": [ + "iexplore/6.0..latest", + "firefox/3.0..6.0", + "firefox/15.0..latest", + "firefox/nightly", + "chrome/4.0..10.0", + "chrome/20.0..latest", + "chrome/canary", + "opera/10.0..latest", + "opera/next", + "safari/4.0..latest", + "ipad/6.0..latest", + "iphone/6.0..latest", + "android-browser/4.2" + ] + }, + "engines": { + "node": ">= 0.4" + }, + "auto-changelog": { + "output": "CHANGELOG.md", + "template": "keepachangelog", + "unreleased": false, + "commitLimit": false, + "backfillLimit": false, + "hideCredit": true + }, + "publishConfig": { + "ignore": [ + ".github/workflows", + ".nvmrc" + ] + } +} diff --git a/novas/novacore-zephyr/groq-code-cli/node_modules/is-symbol/tsconfig.json b/novas/novacore-zephyr/groq-code-cli/node_modules/is-symbol/tsconfig.json new file mode 100644 index 0000000000000000000000000000000000000000..707cf95103eea5754b0141455f421ec38d129dd9 --- /dev/null +++ b/novas/novacore-zephyr/groq-code-cli/node_modules/is-symbol/tsconfig.json @@ -0,0 +1,9 @@ +{ + "extends": "@ljharb/tsconfig", + "compilerOptions": { + "target": "ES2021", + }, + "exclude": [ + "coverage" + ] +} diff --git a/novas/novacore-zephyr/groq-code-cli/node_modules/is-typed-array/.editorconfig b/novas/novacore-zephyr/groq-code-cli/node_modules/is-typed-array/.editorconfig new file mode 100644 index 0000000000000000000000000000000000000000..bc228f8269443bf772b437890dde7756a3e8a894 --- /dev/null +++ b/novas/novacore-zephyr/groq-code-cli/node_modules/is-typed-array/.editorconfig @@ -0,0 +1,20 @@ +root = true + +[*] +indent_style = tab +indent_size = 4 +end_of_line = lf +charset = utf-8 +trim_trailing_whitespace = true +insert_final_newline = true +max_line_length = 150 + +[CHANGELOG.md] +indent_style = space +indent_size = 2 + +[*.json] +max_line_length = off + +[Makefile] +max_line_length = off diff --git a/novas/novacore-zephyr/groq-code-cli/node_modules/is-typed-array/.eslintrc b/novas/novacore-zephyr/groq-code-cli/node_modules/is-typed-array/.eslintrc new file mode 100644 index 0000000000000000000000000000000000000000..34a62620e3d28724ef3fc44878562231174b28c8 --- /dev/null +++ b/novas/novacore-zephyr/groq-code-cli/node_modules/is-typed-array/.eslintrc @@ -0,0 +1,13 @@ +{ + "root": true, + + "extends": "@ljharb", + + "globals": { + "globalThis": false + }, + + "rules": { + "max-statements-per-line": [2, { "max": 2 }] + }, +} diff --git a/novas/novacore-zephyr/groq-code-cli/node_modules/is-typed-array/.nycrc b/novas/novacore-zephyr/groq-code-cli/node_modules/is-typed-array/.nycrc new file mode 100644 index 0000000000000000000000000000000000000000..bdd626ce91477abbdd489b79988baebadbd3c897 --- /dev/null +++ b/novas/novacore-zephyr/groq-code-cli/node_modules/is-typed-array/.nycrc @@ -0,0 +1,9 @@ +{ + "all": true, + "check-coverage": false, + "reporter": ["text-summary", "text", "html", "json"], + "exclude": [ + "coverage", + "test" + ] +} diff --git a/novas/novacore-zephyr/groq-code-cli/node_modules/is-typed-array/CHANGELOG.md b/novas/novacore-zephyr/groq-code-cli/node_modules/is-typed-array/CHANGELOG.md new file mode 100644 index 0000000000000000000000000000000000000000..a2f6fb355b92c2ed11115943160bc680bbd44ead --- /dev/null +++ b/novas/novacore-zephyr/groq-code-cli/node_modules/is-typed-array/CHANGELOG.md @@ -0,0 +1,166 @@ +# Changelog + +All notable changes to this project will be documented in this file. + +The format is based on [Keep a Changelog](https://keepachangelog.com/en/1.0.0/) +and this project adheres to [Semantic Versioning](https://semver.org/spec/v2.0.0.html). + +## [v1.1.15](https://github.com/inspect-js/is-typed-array/compare/v1.1.14...v1.1.15) - 2024-12-18 + +### Commits + +- [types] improve types [`d934b49`](https://github.com/inspect-js/is-typed-array/commit/d934b49f7a16d5e20ba437a795b887f1f71ef240) +- [Dev Deps] update `@types/tape` [`da26511`](https://github.com/inspect-js/is-typed-array/commit/da26511ad7515c50fdc720701d5735b0d8a40800) + +## [v1.1.14](https://github.com/inspect-js/is-typed-array/compare/v1.1.13...v1.1.14) - 2024-12-17 + +### Commits + +- [types] use shared config [`eafa7fa`](https://github.com/inspect-js/is-typed-array/commit/eafa7fad2fc8d464a68e218d39a7eab782d9ce76) +- [actions] split out node 10-20, and 20+ [`cd6d5a3`](https://github.com/inspect-js/is-typed-array/commit/cd6d5a3283a1e65cf5885e57daede65a5176fd91) +- [types] use `which-typed-array`’s `TypedArray` type; re-export it [`d7d9fcd`](https://github.com/inspect-js/is-typed-array/commit/d7d9fcd75d538b7f8146dcd9faca5142534a3d45) +- [Dev Deps] update `@arethetypeswrong/cli`, `@ljharb/eslint-config`, `@ljharb/tsconfig`, `@types/node`, `@types/object-inspect`, `@types/tape`, `auto-changelog`, `object-inspect`, `tape` [`65afb42`](https://github.com/inspect-js/is-typed-array/commit/65afb4263ff4f4ee4ee51b284dc7519ce969a666) +- [Dev Deps] update `@types/node`, `has-tostringtag`, `tape` [`9e27ddd`](https://github.com/inspect-js/is-typed-array/commit/9e27ddd62a51ebae46781de0adbd8871341c633c) +- [Tests] replace `aud` with `npm audit` [`ad4defe`](https://github.com/inspect-js/is-typed-array/commit/ad4defe211c77d42b880d13faf7737b8f1adaf13) +- [Tests] use `@arethetypeswrong/cli` [`ac4bcca`](https://github.com/inspect-js/is-typed-array/commit/ac4bcca4ee2215662e79aa21681756984bb0b6d1) +- [Deps] update `which-typed-array` [`c298129`](https://github.com/inspect-js/is-typed-array/commit/c2981299c09cd64d89bf1e496447c0379b45d03a) +- [Deps] update `which-typed-array` [`744c29a`](https://github.com/inspect-js/is-typed-array/commit/744c29aa8d4f9df360082074f7b4f2f0d42d76e5) +- [Dev Deps] add missing peer dep [`94d2f5a`](https://github.com/inspect-js/is-typed-array/commit/94d2f5a11016516823e8d943e0bfc7b29dcb146d) + +## [v1.1.13](https://github.com/inspect-js/is-typed-array/compare/v1.1.12...v1.1.13) - 2024-02-01 + +### Commits + +- [patch] add types [`8a8a679`](https://github.com/inspect-js/is-typed-array/commit/8a8a679937d1c4b970c98556460cef2b7fa0bffb) +- [Dev Deps] update `aud`, `has-tostringtag`, `npmignore`, `object-inspect`, `tape` [`8146b60`](https://github.com/inspect-js/is-typed-array/commit/8146b6019a24f502e66e2c224ce5bea8df9f39bc) +- [actions] optimize finishers [`34f875a`](https://github.com/inspect-js/is-typed-array/commit/34f875ace16c4900d6b0ef4688e9e3eb7d502715) +- [Deps] update `which-typed-array` [`19c974f`](https://github.com/inspect-js/is-typed-array/commit/19c974f4bbd93ffc45cb8638b86688bc00f1420b) +- [meta] add `sideEffects` flag [`0b68e5e`](https://github.com/inspect-js/is-typed-array/commit/0b68e5e58684b79110a82a0a51df8beb7574d6a2) + +## [v1.1.12](https://github.com/inspect-js/is-typed-array/compare/v1.1.11...v1.1.12) - 2023-07-17 + +### Commits + +- [Refactor] use `which-typed-array` for all internals [`7619405`](https://github.com/inspect-js/is-typed-array/commit/761940532de595f6721fed101b02814dcfa7fe4e) + +## [v1.1.11](https://github.com/inspect-js/is-typed-array/compare/v1.1.10...v1.1.11) - 2023-07-17 + +### Commits + +- [Fix] `node < v0.6` lacks proper Object toString behavior [`c94b90d`](https://github.com/inspect-js/is-typed-array/commit/c94b90dc6bc457783d6f8cc208415a49da0933b7) +- [Robustness] use `call-bind` [`573b00b`](https://github.com/inspect-js/is-typed-array/commit/573b00b8deec42ac1ac262415e442ea0b7e1c96b) +- [Dev Deps] update `@ljharb/eslint-config`, `aud`, `object-inspect`, `tape` [`c88c2d4`](https://github.com/inspect-js/is-typed-array/commit/c88c2d479976110478fa4038fe8921251c06a163) + +## [v1.1.10](https://github.com/inspect-js/is-typed-array/compare/v1.1.9...v1.1.10) - 2022-11-02 + +### Commits + +- [meta] add `auto-changelog` [`cf6d86b`](https://github.com/inspect-js/is-typed-array/commit/cf6d86bf2f693eca357439d4d12e76d641f91f92) +- [actions] update rebase action to use reusable workflow [`8da51a5`](https://github.com/inspect-js/is-typed-array/commit/8da51a5dce6d2442ae31ccbc2be136f2e04d6bef) +- [Dev Deps] update `aud`, `is-callable`, `object-inspect`, `tape` [`554e3de`](https://github.com/inspect-js/is-typed-array/commit/554e3deec59dec926d0badc628e589ab363e465b) +- [Refactor] use `gopd` instead of an `es-abstract` helper` [`cdaa465`](https://github.com/inspect-js/is-typed-array/commit/cdaa465d5f94bfc9e32475e31209e1c2458a9603) +- [Deps] update `es-abstract` [`677ae4b`](https://github.com/inspect-js/is-typed-array/commit/677ae4b3c8323b59d6650a9254ab945045c33f79) + + + +1.1.9 / 2022-05-13 +================= + * [Refactor] use `foreach` instead of `for-each` + * [readme] markdown URL cleanup + * [Deps] update `es-abstract` + * [meta] use `npmignore` to autogenerate an npmignore file + * [Dev Deps] update `eslint`, `@ljharb/eslint-config`, `object-inspect`, `safe-publish-latest`, `tape` + * [actions] reuse common workflows + * [actions] update codecov uploader + +1.1.8 / 2021-08-30 +================= + * [Refactor] use `globalThis` if available (#53) + * [Deps] update `available-typed-arrays` + * [Dev Deps] update `@ljharb/eslint-config` + +1.1.7 / 2021-08-07 +================= + * [Fix] if Symbol.toStringTag exists but is not present, use Object.prototype.toString + * [Dev Deps] update `is-callable`, `tape` + +1.1.6 / 2021-08-05 +================= + * [Fix] use `has-tostringtag` to behave correctly in the presence of symbol shams + * [readme] add actions and codecov badges + * [meta] use `prepublishOnly` script for npm 7+ + * [Deps] update `available-typed-arrays`, `es-abstract` + * [Dev Deps] update `eslint`, `@ljharb/eslint-config`, `aud`, `object-inspect`, `tape` + * [actions] use `node/install` instead of `node/run`; use `codecov` action + +1.1.5 / 2021-02-14 +================= + * [meta] do not publish github action workflow files or nyc output + * [Deps] update `call-bind`, `es-abstract` + * [Dev Deps] update `eslint`, `@ljharb/eslint-config`, `aud`, `is-callable`, `tape` + +1.1.4 / 2020-12-05 +================= + * [readme] fix repo URLs, remove defunct badges + * [Deps] update `available-typed-arrays`, `es-abstract`; use `call-bind` where applicable + * [meta] gitignore nyc output + * [meta] only audit prod deps + * [actions] add "Allow Edits" workflow + * [actions] switch Automatic Rebase workflow to `pull_request_target` event + * [Dev Deps] update `eslint`, `@ljharb/eslint-config`, `is-callable`, `make-arrow-function`, `make-generator-function`, `object-inspect`, `tape`; add `aud` + * [Tests] migrate tests to Github Actions + * [Tests] run `nyc` on all tests + +1.1.3 / 2020-01-24 +================= + * [Refactor] use `es-abstract`’s `callBound`, `available-typed-arrays`, `has-symbols` + +1.1.2 / 2020-01-20 +================= + * [Fix] in envs without Symbol.toStringTag, dc8a8cc made arrays return `true` + * [Tests] add `evalmd` to `prelint` + +1.1.1 / 2020-01-18 +================= + * [Robustness] don’t rely on Array.prototype.indexOf existing + * [meta] remove unused Makefile and associated utilities + * [meta] add `funding` field; create FUNDING.yml + * [actions] add automatic rebasing / merge commit blocking + * [Dev Deps] update `eslint`, `@ljharb/eslint-config`, `is-callable`, `replace`, `semver`, `tape`; add `safe-publish-latest` + * [Tests] use shared travis-ci configs + * [Tests] use `npx aud` instead of `nsp` or `npm audit` with hoops + +1.1.0 / 2019-02-16 +================= + * [New] add `BigInt64Array` and `BigUint64Array` + * [Refactor] use an array instead of an object for storing Typed Array names + * [meta] ignore `test.html` + * [Tests] up to `node` `v11.10`, `v10.15`, `v8.15`, `v7.10`, `v6.16`, `v5.10`, `v4.9` + * [Tests] remove `jscs` + * [Tests] use `npm audit` instead of `nsp` + * [Dev Deps] update `eslint`,` @ljharb/eslint-config`, `is-callable`, `tape`, `replace`, `semver` + * [Dev Deps] remove unused eccheck script + dep + +1.0.4 / 2016-03-19 +================= + * [Fix] `Symbol.toStringTag` is on the super-`[[Prototype]]` of Float32Array, not the `[[Prototype]]` (#3) + * [Tests] up to `node` `v5.9`, `v4.4` + * [Tests] use pretest/posttest for linting/security + * [Dev Deps] update `tape`, `jscs`, `nsp`, `eslint`, `@ljharb/eslint-config`, `semver`, `is-callable` + +1.0.3 / 2015-10-13 +================= + * [Deps] Add missing `foreach` dependency (#1) + +1.0.2 / 2015-10-05 +================= + * [Deps] Remove unneeded "isarray" dependency + * [Dev Deps] update `eslint`, `@ljharb/eslint-config` + +1.0.1 / 2015-10-02 +================= + * Rerelease: avoid instanceof and the constructor property; work cross-realm; work with Symbol.toStringTag. + +1.0.0 / 2015-05-06 +================= + * Initial release. diff --git a/novas/novacore-zephyr/groq-code-cli/node_modules/is-typed-array/LICENSE b/novas/novacore-zephyr/groq-code-cli/node_modules/is-typed-array/LICENSE new file mode 100644 index 0000000000000000000000000000000000000000..b43df444e518288ceef6eaa9badd33388191b1d3 --- /dev/null +++ b/novas/novacore-zephyr/groq-code-cli/node_modules/is-typed-array/LICENSE @@ -0,0 +1,22 @@ +The MIT License (MIT) + +Copyright (c) 2015 Jordan Harband + +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. + diff --git a/novas/novacore-zephyr/groq-code-cli/node_modules/is-typed-array/README.md b/novas/novacore-zephyr/groq-code-cli/node_modules/is-typed-array/README.md new file mode 100644 index 0000000000000000000000000000000000000000..5075257207e2276ba02c04b8bbb8f9bd3d18b0a8 --- /dev/null +++ b/novas/novacore-zephyr/groq-code-cli/node_modules/is-typed-array/README.md @@ -0,0 +1,70 @@ +# is-typed-array [![Version Badge][npm-version-svg]][package-url] + +[![github actions][actions-image]][actions-url] +[![coverage][codecov-image]][codecov-url] +[![dependency status][5]][6] +[![dev dependency status][7]][8] +[![License][license-image]][license-url] +[![Downloads][downloads-image]][downloads-url] + +[![npm badge][npm-badge-png]][package-url] + +Is this value a JS Typed Array? This module works cross-realm/iframe, does not depend on `instanceof` or mutable properties, and despite ES6 Symbol.toStringTag. + +## Example + +```js +var isTypedArray = require('is-typed-array'); +var assert = require('assert'); + +assert.equal(false, isTypedArray(undefined)); +assert.equal(false, isTypedArray(null)); +assert.equal(false, isTypedArray(false)); +assert.equal(false, isTypedArray(true)); +assert.equal(false, isTypedArray([])); +assert.equal(false, isTypedArray({})); +assert.equal(false, isTypedArray(/a/g)); +assert.equal(false, isTypedArray(new RegExp('a', 'g'))); +assert.equal(false, isTypedArray(new Date())); +assert.equal(false, isTypedArray(42)); +assert.equal(false, isTypedArray(NaN)); +assert.equal(false, isTypedArray(Infinity)); +assert.equal(false, isTypedArray(new Number(42))); +assert.equal(false, isTypedArray('foo')); +assert.equal(false, isTypedArray(Object('foo'))); +assert.equal(false, isTypedArray(function () {})); +assert.equal(false, isTypedArray(function* () {})); +assert.equal(false, isTypedArray(x => x * x)); +assert.equal(false, isTypedArray([])); + +assert.ok(isTypedArray(new Int8Array())); +assert.ok(isTypedArray(new Uint8Array())); +assert.ok(isTypedArray(new Uint8ClampedArray())); +assert.ok(isTypedArray(new Int16Array())); +assert.ok(isTypedArray(new Uint16Array())); +assert.ok(isTypedArray(new Int32Array())); +assert.ok(isTypedArray(new Uint32Array())); +assert.ok(isTypedArray(new Float32Array())); +assert.ok(isTypedArray(new Float64Array())); +assert.ok(isTypedArray(new BigInt64Array())); +assert.ok(isTypedArray(new BigUint64Array())); +``` + +## Tests +Simply clone the repo, `npm install`, and run `npm test` + +[package-url]: https://npmjs.org/package/is-typed-array +[npm-version-svg]: https://versionbadg.es/inspect-js/is-typed-array.svg +[deps-svg]: https://david-dm.org/inspect-js/is-typed-array.svg +[deps-url]: https://david-dm.org/inspect-js/is-typed-array +[dev-deps-svg]: https://david-dm.org/inspect-js/is-typed-array/dev-status.svg +[dev-deps-url]: https://david-dm.org/inspect-js/is-typed-array#info=devDependencies +[npm-badge-png]: https://nodei.co/npm/is-typed-array.png?downloads=true&stars=true +[license-image]: https://img.shields.io/npm/l/is-typed-array.svg +[license-url]: LICENSE +[downloads-image]: https://img.shields.io/npm/dm/is-typed-array.svg +[downloads-url]: https://npm-stat.com/charts.html?package=is-typed-array +[codecov-image]: https://codecov.io/gh/inspect-js/is-typed-array/branch/main/graphs/badge.svg +[codecov-url]: https://app.codecov.io/gh/inspect-js/is-typed-array/ +[actions-image]: https://img.shields.io/endpoint?url=https://github-actions-badge-u3jn4tfpocch.runkit.sh/inspect-js/is-typed-array +[actions-url]: https://github.com/inspect-js/is-typed-array/actions diff --git a/novas/novacore-zephyr/groq-code-cli/node_modules/is-typed-array/index.d.ts b/novas/novacore-zephyr/groq-code-cli/node_modules/is-typed-array/index.d.ts new file mode 100644 index 0000000000000000000000000000000000000000..73bcf35af29f5a70777b253d7a068210b3f6e557 --- /dev/null +++ b/novas/novacore-zephyr/groq-code-cli/node_modules/is-typed-array/index.d.ts @@ -0,0 +1,9 @@ +import type { TypedArray } from 'which-typed-array'; + +declare namespace isTypedArray { + export { TypedArray }; +} + +declare function isTypedArray(value: unknown): value is isTypedArray.TypedArray; + +export = isTypedArray; diff --git a/novas/novacore-zephyr/groq-code-cli/node_modules/is-typed-array/index.js b/novas/novacore-zephyr/groq-code-cli/node_modules/is-typed-array/index.js new file mode 100644 index 0000000000000000000000000000000000000000..6e38c53505d9fddf5c7c890d49f586a4b22fb21e --- /dev/null +++ b/novas/novacore-zephyr/groq-code-cli/node_modules/is-typed-array/index.js @@ -0,0 +1,8 @@ +'use strict'; + +var whichTypedArray = require('which-typed-array'); + +/** @type {import('.')} */ +module.exports = function isTypedArray(value) { + return !!whichTypedArray(value); +}; diff --git a/novas/novacore-zephyr/groq-code-cli/node_modules/is-typed-array/package.json b/novas/novacore-zephyr/groq-code-cli/node_modules/is-typed-array/package.json new file mode 100644 index 0000000000000000000000000000000000000000..a8b1e772df70a6bfdccc0e9362e5dcc20b9914f9 --- /dev/null +++ b/novas/novacore-zephyr/groq-code-cli/node_modules/is-typed-array/package.json @@ -0,0 +1,129 @@ +{ + "name": "is-typed-array", + "version": "1.1.15", + "author": { + "name": "Jordan Harband", + "email": "ljharb@gmail.com", + "url": "http://ljharb.codes" + }, + "funding": { + "url": "https://github.com/sponsors/ljharb" + }, + "contributors": [ + { + "name": "Jordan Harband", + "email": "ljharb@gmail.com", + "url": "http://ljharb.codes" + } + ], + "description": "Is this value a JS Typed Array? This module works cross-realm/iframe, does not depend on `instanceof` or mutable properties, and despite ES6 Symbol.toStringTag.", + "license": "MIT", + "main": "index.js", + "types": "./index.d.ts", + "sideEffects": false, + "scripts": { + "prepack": "npmignore --auto --commentLines=autogenerated", + "prepublishOnly": "safe-publish-latest", + "prepublish": "not-in-publish || npm run prepublishOnly", + "prelint": "evalmd README.md", + "lint": "eslint --ext=js,mjs .", + "postlint": "tsc -p . && attw -P", + "pretest": "npm run --silent lint", + "test": "npm run tests-only && npm run test:harmony", + "tests-only": "nyc tape test", + "test:harmony": "nyc node --harmony --es-staging test", + "posttest": "npx npm@'>= 10.2' audit --production", + "version": "auto-changelog && git add CHANGELOG.md", + "postversion": "auto-changelog && git add CHANGELOG.md && git commit --no-edit --amend && git tag -f \"v$(node -e \"console.log(require('./package.json').version)\")\"" + }, + "repository": { + "type": "git", + "url": "git://github.com/inspect-js/is-typed-array.git" + }, + "keywords": [ + "array", + "TypedArray", + "typed array", + "is", + "typed", + "Int8Array", + "Uint8Array", + "Uint8ClampedArray", + "Int16Array", + "Uint16Array", + "Int32Array", + "Uint32Array", + "Float32Array", + "Float64Array", + "ES6", + "toStringTag", + "Symbol.toStringTag", + "@@toStringTag" + ], + "dependencies": { + "which-typed-array": "^1.1.16" + }, + "devDependencies": { + "@arethetypeswrong/cli": "^0.17.1", + "@ljharb/eslint-config": "^21.1.1", + "@ljharb/tsconfig": "^0.2.2", + "@types/for-each": "^0.3.3", + "@types/is-callable": "^1.1.2", + "@types/make-arrow-function": "^1.2.2", + "@types/make-generator-function": "^2.0.3", + "@types/node": "^20.17.10", + "@types/object-inspect": "^1.13.0", + "@types/tape": "^5.8.0", + "auto-changelog": "^2.5.0", + "encoding": "^0.1.13", + "eslint": "=8.8.0", + "evalmd": "^0.0.19", + "for-each": "^0.3.3", + "has-tostringtag": "^1.0.2", + "in-publish": "^2.0.1", + "is-callable": "^1.2.7", + "make-arrow-function": "^1.2.0", + "make-generator-function": "^2.0.0", + "npmignore": "^0.3.1", + "nyc": "^10.3.2", + "object-inspect": "^1.13.3", + "safe-publish-latest": "^2.0.0", + "tape": "^5.9.0", + "typescript": "next" + }, + "testling": { + "files": "test/index.js", + "browsers": [ + "iexplore/6.0..latest", + "firefox/3.0..6.0", + "firefox/15.0..latest", + "firefox/nightly", + "chrome/4.0..10.0", + "chrome/20.0..latest", + "chrome/canary", + "opera/10.0..latest", + "opera/next", + "safari/4.0..latest", + "ipad/6.0..latest", + "iphone/6.0..latest", + "android-browser/4.2" + ] + }, + "engines": { + "node": ">= 0.4" + }, + "auto-changelog": { + "output": "CHANGELOG.md", + "template": "keepachangelog", + "unreleased": false, + "commitLimit": false, + "backfillLimit": false, + "hideCredit": true, + "startingVersion": "1.1.10" + }, + "publishConfig": { + "ignore": [ + ".github/workflows" + ] + } +} diff --git a/novas/novacore-zephyr/groq-code-cli/node_modules/is-typed-array/tsconfig.json b/novas/novacore-zephyr/groq-code-cli/node_modules/is-typed-array/tsconfig.json new file mode 100644 index 0000000000000000000000000000000000000000..ac228e22653e8847873f9c675f7c7bc2ef16bb9e --- /dev/null +++ b/novas/novacore-zephyr/groq-code-cli/node_modules/is-typed-array/tsconfig.json @@ -0,0 +1,6 @@ +{ + "extends": "@ljharb/tsconfig", + "exclude": [ + "coverage", + ], +} diff --git a/novas/novacore-zephyr/groq-code-cli/node_modules/is-unicode-supported/index.d.ts b/novas/novacore-zephyr/groq-code-cli/node_modules/is-unicode-supported/index.d.ts new file mode 100644 index 0000000000000000000000000000000000000000..944a8783eba3c7974815646c109a38da698b44c2 --- /dev/null +++ b/novas/novacore-zephyr/groq-code-cli/node_modules/is-unicode-supported/index.d.ts @@ -0,0 +1,12 @@ +/** +Detect whether the terminal supports Unicode. + +@example +``` +import isUnicodeSupported from 'is-unicode-supported'; + +isUnicodeSupported(); +//=> true +``` +*/ +export default function isUnicodeSupported(): boolean; diff --git a/novas/novacore-zephyr/groq-code-cli/node_modules/is-unicode-supported/index.js b/novas/novacore-zephyr/groq-code-cli/node_modules/is-unicode-supported/index.js new file mode 100644 index 0000000000000000000000000000000000000000..d3938c58d8fea2aea980b6b7fe587f49c7430960 --- /dev/null +++ b/novas/novacore-zephyr/groq-code-cli/node_modules/is-unicode-supported/index.js @@ -0,0 +1,17 @@ +import process from 'node:process'; + +export default function isUnicodeSupported() { + if (process.platform !== 'win32') { + return process.env.TERM !== 'linux'; // Linux console (kernel) + } + + return Boolean(process.env.CI) + || Boolean(process.env.WT_SESSION) // Windows Terminal + || Boolean(process.env.TERMINUS_SUBLIME) // Terminus (<0.2.27) + || process.env.ConEmuTask === '{cmd::Cmder}' // ConEmu and cmder + || process.env.TERM_PROGRAM === 'Terminus-Sublime' + || process.env.TERM_PROGRAM === 'vscode' + || process.env.TERM === 'xterm-256color' + || process.env.TERM === 'alacritty' + || process.env.TERMINAL_EMULATOR === 'JetBrains-JediTerm'; +} diff --git a/novas/novacore-zephyr/groq-code-cli/node_modules/is-unicode-supported/license b/novas/novacore-zephyr/groq-code-cli/node_modules/is-unicode-supported/license new file mode 100644 index 0000000000000000000000000000000000000000..fa7ceba3eb4a9657a9db7f3ffca4e4e97a9019de --- /dev/null +++ b/novas/novacore-zephyr/groq-code-cli/node_modules/is-unicode-supported/license @@ -0,0 +1,9 @@ +MIT License + +Copyright (c) Sindre Sorhus (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. diff --git a/novas/novacore-zephyr/groq-code-cli/node_modules/is-unicode-supported/package.json b/novas/novacore-zephyr/groq-code-cli/node_modules/is-unicode-supported/package.json new file mode 100644 index 0000000000000000000000000000000000000000..072651f43b545d9b736956d5c9f1aa6299a0be6a --- /dev/null +++ b/novas/novacore-zephyr/groq-code-cli/node_modules/is-unicode-supported/package.json @@ -0,0 +1,43 @@ +{ + "name": "is-unicode-supported", + "version": "1.3.0", + "description": "Detect whether the terminal supports Unicode", + "license": "MIT", + "repository": "sindresorhus/is-unicode-supported", + "funding": "https://github.com/sponsors/sindresorhus", + "author": { + "name": "Sindre Sorhus", + "email": "sindresorhus@gmail.com", + "url": "https://sindresorhus.com" + }, + "type": "module", + "exports": "./index.js", + "engines": { + "node": ">=12" + }, + "scripts": { + "test": "xo && ava && tsd" + }, + "files": [ + "index.js", + "index.d.ts" + ], + "keywords": [ + "terminal", + "unicode", + "detect", + "utf8", + "console", + "shell", + "support", + "supports", + "supported", + "check", + "detection" + ], + "devDependencies": { + "ava": "^4.0.1", + "tsd": "^0.19.1", + "xo": "^0.47.0" + } +} diff --git a/novas/novacore-zephyr/groq-code-cli/node_modules/is-unicode-supported/readme.md b/novas/novacore-zephyr/groq-code-cli/node_modules/is-unicode-supported/readme.md new file mode 100644 index 0000000000000000000000000000000000000000..e1954ec37e14fb92d386b235beb6a6e766786f0c --- /dev/null +++ b/novas/novacore-zephyr/groq-code-cli/node_modules/is-unicode-supported/readme.md @@ -0,0 +1,35 @@ +# is-unicode-supported + +> Detect whether the terminal supports Unicode + +This can be useful to decide whether to use Unicode characters or fallback ASCII characters in command-line output. + +Note that the check is quite naive. It just assumes all non-Windows terminals support Unicode and hard-codes which Windows terminals that do support Unicode. However, I have been using this logic in some popular packages for years without problems. + +## Install + +```sh +npm install is-unicode-supported +``` + +## Usage + +```js +import isUnicodeSupported from 'is-unicode-supported'; + +isUnicodeSupported(); +//=> true +``` + +## API + +### isUnicodeSupported() + +Returns a `boolean` for whether the terminal supports Unicode. + +## Related + +- [is-interactive](https://github.com/sindresorhus/is-interactive) - Check if stdout or stderr is interactive +- [supports-color](https://github.com/chalk/supports-color) - Detect whether a terminal supports color +- [figures](https://github.com/sindresorhus/figures) - Unicode symbols with Windows fallbacks +- [log-symbols](https://github.com/sindresorhus/log-symbols) - Colored symbols for various log levels diff --git a/novas/novacore-zephyr/groq-code-cli/node_modules/is-weakmap/.editorconfig b/novas/novacore-zephyr/groq-code-cli/node_modules/is-weakmap/.editorconfig new file mode 100644 index 0000000000000000000000000000000000000000..8f9d77e2dc2ccfe65326efc167617a2f85fd5e30 --- /dev/null +++ b/novas/novacore-zephyr/groq-code-cli/node_modules/is-weakmap/.editorconfig @@ -0,0 +1,15 @@ +root = true + +[*] +indent_style = tab +end_of_line = lf +charset = utf-8 +trim_trailing_whitespace = true +insert_final_newline = true + +[{package.json,*.yml}] +indent_style = space +indent_size = 2 + +[*.md] +trim_trailing_whitespace = false diff --git a/novas/novacore-zephyr/groq-code-cli/node_modules/is-weakmap/.eslintrc b/novas/novacore-zephyr/groq-code-cli/node_modules/is-weakmap/.eslintrc new file mode 100644 index 0000000000000000000000000000000000000000..3b5d9e90ec405f85dd7f9066656efccc51193697 --- /dev/null +++ b/novas/novacore-zephyr/groq-code-cli/node_modules/is-weakmap/.eslintrc @@ -0,0 +1,5 @@ +{ + "root": true, + + "extends": "@ljharb", +} diff --git a/novas/novacore-zephyr/groq-code-cli/node_modules/is-weakmap/.nycrc b/novas/novacore-zephyr/groq-code-cli/node_modules/is-weakmap/.nycrc new file mode 100644 index 0000000000000000000000000000000000000000..bdd626ce91477abbdd489b79988baebadbd3c897 --- /dev/null +++ b/novas/novacore-zephyr/groq-code-cli/node_modules/is-weakmap/.nycrc @@ -0,0 +1,9 @@ +{ + "all": true, + "check-coverage": false, + "reporter": ["text-summary", "text", "html", "json"], + "exclude": [ + "coverage", + "test" + ] +} diff --git a/novas/novacore-zephyr/groq-code-cli/node_modules/is-weakmap/CHANGELOG.md b/novas/novacore-zephyr/groq-code-cli/node_modules/is-weakmap/CHANGELOG.md new file mode 100644 index 0000000000000000000000000000000000000000..d50c5b2c3ca922b878a392bc573ff311d9ca67d1 --- /dev/null +++ b/novas/novacore-zephyr/groq-code-cli/node_modules/is-weakmap/CHANGELOG.md @@ -0,0 +1,83 @@ +# Changelog + +All notable changes to this project will be documented in this file. + +The format is based on [Keep a Changelog](https://keepachangelog.com/en/1.0.0/) +and this project adheres to [Semantic Versioning](https://semver.org/spec/v2.0.0.html). + +## [v2.0.2](https://github.com/inspect-js/is-weakmap/compare/v2.0.1...v2.0.2) - 2024-03-08 + +### Commits + +- [actions] reuse common workflows [`0af1292`](https://github.com/inspect-js/is-weakmap/commit/0af1292f196cb1192acd4cea1b2eef00267a7e35) +- [Tests] migrate tests to Github Actions [`f35679b`](https://github.com/inspect-js/is-weakmap/commit/f35679bad4f11be0b6e46aae85cbcab14d8a107e) +- [actions] use `node/install` instead of `node/run`; use `codecov` action [`cd2f0fa`](https://github.com/inspect-js/is-weakmap/commit/cd2f0fa90293650cfdad8b933f976445071b34c9) +- add types [`6e28e6a`](https://github.com/inspect-js/is-weakmap/commit/6e28e6ab76e9227aefdf39049f261873e5b391b6) +- [Dev Deps] update `eslint`, `@ljharb/eslint-config`, `aud`, `auto-changelog`, `es6-shim`, `object-inspect`, `tape` [`95815ce`](https://github.com/inspect-js/is-weakmap/commit/95815ce0e51ce37fa799314828ad87e73a08b37d) +- [readme] update URLs [`2c4eb0b`](https://github.com/inspect-js/is-weakmap/commit/2c4eb0bec14e5015da378a8b6547b2740d7bcff3) +- [Tests] run `nyc` on all tests; use `tape` runner [`0a45b37`](https://github.com/inspect-js/is-weakmap/commit/0a45b37a18afc28476e39f9fdf0fb42c78a1ff4c) +- [Dev Deps] update `eslint`, `@ljharb/eslint-config`, `object-inspect`, `safe-publish-latest`, `tape` [`ffe9459`](https://github.com/inspect-js/is-weakmap/commit/ffe945997accbae9583f76bd695559b0ba50274d) +- [Dev Deps] update `eslint`, `@ljharb/eslint-config`, `aud`, `auto-changelog`, `es5-shim`, `object-inspect`, `tape` [`c3c2f11`](https://github.com/inspect-js/is-weakmap/commit/c3c2f1176078dedf5138b7928b539c3a26e72685) +- [actions] remove redundant finisher [`afa4018`](https://github.com/inspect-js/is-weakmap/commit/afa4018a6759b7c603c7c104a8035295ea6eb2eb) +- [Dev Deps] update `eslint`, `@ljharb/eslint-config`, `auto-changelog`, `core-js`, `es5-shim`, `object-inspect`, `safe-publish-latest`, `tape` [`3f22fc1`](https://github.com/inspect-js/is-weakmap/commit/3f22fc126fc442c020858266af7c46a741638e62) +- [Dev Deps] update `@ljharb/eslint-config`, `aud`, `es6-shim`, `npmignore`, `object-inspect`, `tape` [`84ba754`](https://github.com/inspect-js/is-weakmap/commit/84ba7549ce1ef2f01d4aae6436b821c52fe49b22) +- [actions] update rebase action to use reusable workflow [`def85cb`](https://github.com/inspect-js/is-weakmap/commit/def85cb49bff74528f5e13610ca8b823fbb02aae) +- [actions] update codecov uploader [`659031e`](https://github.com/inspect-js/is-weakmap/commit/659031e04714fe5a0225501a6f2589d8fae0d046) +- [actions] add "Allow Edits" workflow [`a916e89`](https://github.com/inspect-js/is-weakmap/commit/a916e8952f0ac5091704ce8fd3e7dfd3c265c2e1) +- [readme] remove travis badge [`01d0c7d`](https://github.com/inspect-js/is-weakmap/commit/01d0c7d19354ac73968be67290b81becfff428cf) +- [Dev Deps] update `eslint`, `@ljharb/eslint-config`, `aud`, `object-inspect`, `tape` [`ad90d06`](https://github.com/inspect-js/is-weakmap/commit/ad90d063213d305a6c8226f5a45d8991f74eb10a) +- [meta] use `npmignore` to autogenerate an npmignore file [`8b0b44f`](https://github.com/inspect-js/is-weakmap/commit/8b0b44f77be97b3c6c09c1ff7464a23774dd9ee6) +- [Dev Deps] update `eslint`, `@ljharb/eslint-config`, `es5-shim`, `tape` [`9d8a683`](https://github.com/inspect-js/is-weakmap/commit/9d8a683d23d755fe6d55364d0c7ebee65af572de) +- [Tests] add `core-js` tests [`8ba8d2b`](https://github.com/inspect-js/is-weakmap/commit/8ba8d2b07b126b5c87a2ba837984337cde9e9ab9) +- [readme] add actions and codecov badges [`49769ce`](https://github.com/inspect-js/is-weakmap/commit/49769ce6e57edb6a1461b4c786ca3ef7609a7972) +- [Dev Deps] update `eslint`, `@ljharb/eslint-config`, `tape` [`377dfac`](https://github.com/inspect-js/is-weakmap/commit/377dfac3dfc0ad193a45d1d2bd13c1e5f00194f8) +- [actions] switch Automatic Rease workflow to `pull_request_target` event [`00f8c17`](https://github.com/inspect-js/is-weakmap/commit/00f8c172d18c929dc6a5b43fe1854a7742200432) +- [Dev Deps] update `es5-shim`, `tape` [`3a82ee8`](https://github.com/inspect-js/is-weakmap/commit/3a82ee8aff1d5f3c450edac1d4c96d824918d42c) +- [meta] add missing `engines.node` [`3671b4f`](https://github.com/inspect-js/is-weakmap/commit/3671b4f0b2f07d03c447d2297807c17bbbaf313e) +- [meta] use `prepublishOnly` script for npm 7+ [`2a5d5ea`](https://github.com/inspect-js/is-weakmap/commit/2a5d5ea541d3a25667a549fbdc95f7969791c7ba) +- [Dev Deps] update `auto-changelog`; add `aud` [`595583b`](https://github.com/inspect-js/is-weakmap/commit/595583b5a1383ab3768038f8532d87e85d7fa1f2) +- [readme] remove dead badges [`4d6cb2c`](https://github.com/inspect-js/is-weakmap/commit/4d6cb2cc35abd931e52abc4bc915eafc9d6f74b9) +- [Tests] run all tests on `npm test` [`9da2487`](https://github.com/inspect-js/is-weakmap/commit/9da24874b64807159d1f80add60804ccf32ac84a) +- [Tests] only audit prod deps [`2f9281a`](https://github.com/inspect-js/is-weakmap/commit/2f9281aa6fc26b15353515a089f2a312cf48b081) +- [meta] add `sideEffects` flag [`b9c8797`](https://github.com/inspect-js/is-weakmap/commit/b9c87974922c16768f1cf11bf450ca7d5dc55ef9) + +## [v2.0.1](https://github.com/inspect-js/is-weakmap/compare/v2.0.0...v2.0.1) - 2019-12-17 + +### Fixed + +- [Refactor] avoid top-level return, because babel and webpack are broken [`#79`](https://github.com/inspect-js/node-deep-equal/issues/79) [`#78`](https://github.com/inspect-js/node-deep-equal/issues/78) [`#7`](https://github.com/es-shims/Promise.allSettled/issues/7) [`#12`](https://github.com/airbnb/js-shims/issues/12) + +### Commits + +- [actions] add automatic rebasing / merge commit blocking [`4fa3010`](https://github.com/inspect-js/is-weakmap/commit/4fa301026787589c5a061072fda64b11d65bda18) +- [Dev Deps] update `eslint`, `@ljharb/eslint-config`, `tape` [`44bafb6`](https://github.com/inspect-js/is-weakmap/commit/44bafb65829d687fcf8205d0c451cc407d96463c) + +## [v2.0.0](https://github.com/inspect-js/is-weakmap/compare/v1.0.1...v2.0.0) - 2019-11-12 + +### Commits + +- Initial commit [`6e9bd4a`](https://github.com/inspect-js/is-weakmap/commit/6e9bd4a0d61deadbf40d9875033ebdf430924236) +- Tests [`61985dd`](https://github.com/inspect-js/is-weakmap/commit/61985ddf042687f2c6d8c884200f576e9cc0f29d) +- implementation [`67b468d`](https://github.com/inspect-js/is-weakmap/commit/67b468db3390671c14ad656d3489e7422151b2bf) +- readme [`b0ed982`](https://github.com/inspect-js/is-weakmap/commit/b0ed9826547c25cfe2ed0c6e1258d407cb76e6f4) +- npm init [`54a1f81`](https://github.com/inspect-js/is-weakmap/commit/54a1f815702bde057a83d6bc0d69816c3644d698) +- [meta] add `funding` field; create `FUNDING.yml` [`74579bc`](https://github.com/inspect-js/is-weakmap/commit/74579bc96345f9d15392b384d765204f398fb3c3) +- [meta] add `safe-publish-latest`, `auto-changelog` [`9495b13`](https://github.com/inspect-js/is-weakmap/commit/9495b13cea989c344fbb5747f1471feb24f35959) +- [Tests] add `npm run lint` [`4d4657d`](https://github.com/inspect-js/is-weakmap/commit/4d4657d396ec9e2b6625b937fcc8794bd5583fd3) +- [Tests] use shared travis-ci configs [`1db25d5`](https://github.com/inspect-js/is-weakmap/commit/1db25d515fa042c39828c3cbfac65667722a679b) +- Only apps should have lockfiles [`f6b0152`](https://github.com/inspect-js/is-weakmap/commit/f6b015293a4702c9cb7672a364d725ae6cc8bca8) +- [Tests] add `npx aud` in `posttest` [`35dce96`](https://github.com/inspect-js/is-weakmap/commit/35dce964f73ef11237d12b0759468526e0e628a2) + +## [v1.0.1](https://github.com/inspect-js/is-weakmap/compare/v1.0.0...v1.0.1) - 2015-08-31 + +### Commits + +- Add XO [`180fb3e`](https://github.com/inspect-js/is-weakmap/commit/180fb3edf1ab1a2a449bdf5fae5911115d804f44) +- tweaks [`b0d7b30`](https://github.com/inspect-js/is-weakmap/commit/b0d7b307d191513ee6fae80dda81db4bfe9ace00) +- Add `related` section to readme [`5644247`](https://github.com/inspect-js/is-weakmap/commit/5644247240a74bc19ea2791f0b609a98a4af5f9f) + +## v1.0.0 - 2015-02-18 + +### Commits + +- init [`837063d`](https://github.com/inspect-js/is-weakmap/commit/837063d1ac83ce194eda9135562113c035df4346) diff --git a/novas/novacore-zephyr/groq-code-cli/node_modules/is-weakmap/LICENSE b/novas/novacore-zephyr/groq-code-cli/node_modules/is-weakmap/LICENSE new file mode 100644 index 0000000000000000000000000000000000000000..c05eb206bdf4955213919987028657acd99ed92c --- /dev/null +++ b/novas/novacore-zephyr/groq-code-cli/node_modules/is-weakmap/LICENSE @@ -0,0 +1,21 @@ +MIT License + +Copyright (c) 2019 Inspect JS + +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. diff --git a/novas/novacore-zephyr/groq-code-cli/node_modules/is-weakmap/README.md b/novas/novacore-zephyr/groq-code-cli/node_modules/is-weakmap/README.md new file mode 100644 index 0000000000000000000000000000000000000000..7487e5d790cf8a42929d262e58d20a4906b0fb5e --- /dev/null +++ b/novas/novacore-zephyr/groq-code-cli/node_modules/is-weakmap/README.md @@ -0,0 +1,50 @@ +# is-weakmap [![Version Badge][npm-version-svg]][package-url] + +[![github actions][actions-image]][actions-url] +[![coverage][codecov-image]][codecov-url] +[![License][license-image]][license-url] +[![Downloads][downloads-image]][downloads-url] + +[![npm badge][npm-badge-png]][package-url] + +Is this value a JS WeakMap? This module works cross-realm/iframe, and despite ES6 @@toStringTag. + +## Example + +```js +var isWeakMap = require('is-weakmap'); +assert(!isWeakMap(function () {})); +assert(!isWeakMap(null)); +assert(!isWeakMap(function* () { yield 42; return Infinity; }); +assert(!isWeakMap(Symbol('foo'))); +assert(!isWeakMap(1n)); +assert(!isWeakMap(Object(1n))); + +assert(!isWeakMap(new Set())); +assert(!isWeakMap(new WeakSet())); +assert(!isWeakMap(new Map())); + +assert(isWeakMap(new WeakMap())); + +class MyWeakMap extends WeakMap {} +assert(isWeakMap(new MyWeakMap())); +``` + +## Tests +Simply clone the repo, `npm install`, and run `npm test` + +[package-url]: https://npmjs.org/package/is-weakmap +[npm-version-svg]: https://versionbadg.es/inspect-js/is-weakmap.svg +[deps-svg]: https://david-dm.org/inspect-js/is-weakmap.svg +[deps-url]: https://david-dm.org/inspect-js/is-weakmap +[dev-deps-svg]: https://david-dm.org/inspect-js/is-weakmap/dev-status.svg +[dev-deps-url]: https://david-dm.org/inspect-js/is-weakmap#info=devDependencies +[npm-badge-png]: https://nodei.co/npm/is-weakmap.png?downloads=true&stars=true +[license-image]: https://img.shields.io/npm/l/is-weakmap.svg +[license-url]: LICENSE +[downloads-image]: https://img.shields.io/npm/dm/is-weakmap.svg +[downloads-url]: https://npm-stat.com/charts.html?package=is-weakmap +[codecov-image]: https://codecov.io/gh/inspect-js/is-weakmap/branch/main/graphs/badge.svg +[codecov-url]: https://app.codecov.io/gh/inspect-js/is-weakmap/ +[actions-image]: https://img.shields.io/endpoint?url=https://github-actions-badge-u3jn4tfpocch.runkit.sh/inspect-js/is-weakmap +[actions-url]: https://github.com/inspect-js/is-weakmap/actions diff --git a/novas/novacore-zephyr/groq-code-cli/node_modules/is-weakmap/index.d.ts b/novas/novacore-zephyr/groq-code-cli/node_modules/is-weakmap/index.d.ts new file mode 100644 index 0000000000000000000000000000000000000000..81ed323817ebe5b2a8e0f18ef8fc785f13b44ad6 --- /dev/null +++ b/novas/novacore-zephyr/groq-code-cli/node_modules/is-weakmap/index.d.ts @@ -0,0 +1,3 @@ +declare function isWeakMap(value: unknown): value is WeakMap; + +export = isWeakMap; \ No newline at end of file diff --git a/novas/novacore-zephyr/groq-code-cli/node_modules/is-weakmap/index.js b/novas/novacore-zephyr/groq-code-cli/node_modules/is-weakmap/index.js new file mode 100644 index 0000000000000000000000000000000000000000..b7f6e9f22d95fb293ad2b955a9bf01f2d203f87c --- /dev/null +++ b/novas/novacore-zephyr/groq-code-cli/node_modules/is-weakmap/index.js @@ -0,0 +1,46 @@ +'use strict'; + +var $WeakMap = typeof WeakMap === 'function' && WeakMap.prototype ? WeakMap : null; +var $WeakSet = typeof WeakSet === 'function' && WeakSet.prototype ? WeakSet : null; + +var exported; + +if (!$WeakMap) { + /** @type {import('.')} */ + // eslint-disable-next-line no-unused-vars + exported = function isWeakMap(x) { + // `WeakMap` is not present in this environment. + return false; + }; +} + +var $mapHas = $WeakMap ? $WeakMap.prototype.has : null; +var $setHas = $WeakSet ? $WeakSet.prototype.has : null; +if (!exported && !$mapHas) { + /** @type {import('.')} */ + // eslint-disable-next-line no-unused-vars + exported = function isWeakMap(x) { + // `WeakMap` does not have a `has` method + return false; + }; +} + +/** @type {import('.')} */ +module.exports = exported || function isWeakMap(x) { + if (!x || typeof x !== 'object') { + return false; + } + try { + $mapHas.call(x, $mapHas); + if ($setHas) { + try { + $setHas.call(x, $setHas); + } catch (e) { + return true; + } + } + // @ts-expect-error TS can't figure out that $WeakMap is always truthy here + return x instanceof $WeakMap; // core-js workaround, pre-v3 + } catch (e) {} + return false; +}; diff --git a/novas/novacore-zephyr/groq-code-cli/node_modules/is-weakmap/package.json b/novas/novacore-zephyr/groq-code-cli/node_modules/is-weakmap/package.json new file mode 100644 index 0000000000000000000000000000000000000000..7eb770598a6a7fe68e4efcef67a5571065496cb2 --- /dev/null +++ b/novas/novacore-zephyr/groq-code-cli/node_modules/is-weakmap/package.json @@ -0,0 +1,81 @@ +{ + "name": "is-weakmap", + "version": "2.0.2", + "description": "Is this value a JS WeakMap? This module works cross-realm/iframe, and despite ES6 @@toStringTag.", + "main": "index.js", + "sideEffects": true, + "scripts": { + "prepack": "npmignore --auto --commentLines=autogenerated", + "version": "auto-changelog && git add CHANGELOG.md", + "postversion": "auto-changelog && git add CHANGELOG.md && git commit --no-edit --amend && git tag -f \"v$(node -e \"console.log(require('./package.json').version)\")\"", + "prepublishOnly": "safe-publish-latest", + "prepublish": "not-in-publish || npm run prepublishOnly", + "pretest": "npm run lint", + "lint": "eslint --ext=js,mjs .", + "postlint": "tsc -p . && attw -P", + "tests-only": "nyc tape 'test/**/*.js'", + "tests:shims": "nyc tape --require=es5-shim --require=es5-shim 'test/**/*.js'", + "tests:corejs": "nyc tape --require=core-js 'test/**/*.js'", + "test": "npm run tests-only && npm run tests:shims && npm run tests:corejs", + "posttest": "aud --production" + }, + "repository": { + "type": "git", + "url": "git+https://github.com/inspect-js/is-weakmap.git" + }, + "keywords": [ + "map", + "weakmap", + "set", + "weakset", + "collection", + "is", + "robust" + ], + "author": "Jordan Harband ", + "funding": { + "url": "https://github.com/sponsors/ljharb" + }, + "license": "MIT", + "bugs": { + "url": "https://github.com/inspect-js/is-weakmap/issues" + }, + "homepage": "https://github.com/inspect-js/is-weakmap#readme", + "devDependencies": { + "@arethetypeswrong/cli": "^0.15.0", + "@ljharb/eslint-config": "^21.1.0", + "@types/for-each": "^0.3.3", + "@types/object-inspect": "^1.8.4", + "@types/tape": "^5.6.4", + "aud": "^2.0.4", + "auto-changelog": "^2.4.0", + "core-js": "^2.6.12", + "es5-shim": "^4.6.7", + "es6-shim": "^0.35.8", + "eslint": "=8.8.0", + "for-each": "^0.3.3", + "in-publish": "^2.0.1", + "npmignore": "^0.3.1", + "nyc": "^10.3.2", + "object-inspect": "^1.13.1", + "safe-publish-latest": "^2.0.0", + "tape": "^5.7.5", + "typescript": "next" + }, + "auto-changelog": { + "output": "CHANGELOG.md", + "template": "keepachangelog", + "unreleased": false, + "commitLimit": false, + "backfillLimit": false, + "hideCredit": true + }, + "publishConfig": { + "ignore": [ + ".github/workflows" + ] + }, + "engines": { + "node": ">= 0.4" + } +} diff --git a/novas/novacore-zephyr/groq-code-cli/node_modules/is-weakmap/tsconfig.json b/novas/novacore-zephyr/groq-code-cli/node_modules/is-weakmap/tsconfig.json new file mode 100644 index 0000000000000000000000000000000000000000..2002ce5a53532769b9b5bc561dac11518c384d13 --- /dev/null +++ b/novas/novacore-zephyr/groq-code-cli/node_modules/is-weakmap/tsconfig.json @@ -0,0 +1,49 @@ +{ + "compilerOptions": { + /* Visit https://aka.ms/tsconfig to read more about this file */ + + /* Projects */ + + /* Language and Environment */ + "target": "ESNext", /* Set the JavaScript language version for emitted JavaScript and include compatible library declarations. */ + // "lib": [], /* Specify a set of bundled library declaration files that describe the target runtime environment. */ + // "noLib": true, /* Disable including any library files, including the default lib.d.ts. */ + "useDefineForClassFields": true, /* Emit ECMAScript-standard-compliant class fields. */ + // "moduleDetection": "auto", /* Control what method is used to detect module-format JS files. */ + + /* Modules */ + "module": "commonjs", /* Specify what module code is generated. */ + // "rootDir": "./", /* Specify the root folder within your source files. */ + // "moduleResolution": "node10", /* Specify how TypeScript looks up a file from a given module specifier. */ + // "baseUrl": "./", /* Specify the base directory to resolve non-relative module names. */ + // "paths": {}, /* Specify a set of entries that re-map imports to additional lookup locations. */ + // "rootDirs": [], /* Allow multiple folders to be treated as one when resolving modules. */ + "typeRoots": ["types"], /* Specify multiple folders that act like './node_modules/@types'. */ + "resolveJsonModule": true, /* Enable importing .json files. */ + // "allowArbitraryExtensions": true, /* Enable importing files with any extension, provided a declaration file is present. */ + + /* JavaScript Support */ + "allowJs": true, /* Allow JavaScript files to be a part of your program. Use the 'checkJS' option to get errors from these files. */ + "checkJs": true, /* Enable error reporting in type-checked JavaScript files. */ + "maxNodeModuleJsDepth": 0, /* Specify the maximum folder depth used for checking JavaScript files from 'node_modules'. Only applicable with 'allowJs'. */ + + /* Emit */ + "declaration": true, /* Generate .d.ts files from TypeScript and JavaScript files in your project. */ + "declarationMap": true, /* Create sourcemaps for d.ts files. */ + "noEmit": true, /* Disable emitting files from a compilation. */ + + /* Interop Constraints */ + "allowSyntheticDefaultImports": true, /* Allow 'import x from y' when a module doesn't have a default export. */ + "esModuleInterop": true, /* Emit additional JavaScript to ease support for importing CommonJS modules. This enables 'allowSyntheticDefaultImports' for type compatibility. */ + "forceConsistentCasingInFileNames": true, /* Ensure that casing is correct in imports. */ + + /* Type Checking */ + "strict": true, /* Enable all strict type-checking options. */ + + /* Completeness */ + //"skipLibCheck": true /* Skip type checking all .d.ts files. */ + }, + "exclude": [ + "coverage" + ] +} diff --git a/novas/novacore-zephyr/groq-code-cli/node_modules/is-weakref/.eslintrc b/novas/novacore-zephyr/groq-code-cli/node_modules/is-weakref/.eslintrc new file mode 100644 index 0000000000000000000000000000000000000000..3b5d9e90ec405f85dd7f9066656efccc51193697 --- /dev/null +++ b/novas/novacore-zephyr/groq-code-cli/node_modules/is-weakref/.eslintrc @@ -0,0 +1,5 @@ +{ + "root": true, + + "extends": "@ljharb", +} diff --git a/novas/novacore-zephyr/groq-code-cli/node_modules/is-weakref/.nycrc b/novas/novacore-zephyr/groq-code-cli/node_modules/is-weakref/.nycrc new file mode 100644 index 0000000000000000000000000000000000000000..bdd626ce91477abbdd489b79988baebadbd3c897 --- /dev/null +++ b/novas/novacore-zephyr/groq-code-cli/node_modules/is-weakref/.nycrc @@ -0,0 +1,9 @@ +{ + "all": true, + "check-coverage": false, + "reporter": ["text-summary", "text", "html", "json"], + "exclude": [ + "coverage", + "test" + ] +} diff --git a/novas/novacore-zephyr/groq-code-cli/node_modules/is-weakref/CHANGELOG.md b/novas/novacore-zephyr/groq-code-cli/node_modules/is-weakref/CHANGELOG.md new file mode 100644 index 0000000000000000000000000000000000000000..a94bcc1bac3a32674b7033abc63568202d669789 --- /dev/null +++ b/novas/novacore-zephyr/groq-code-cli/node_modules/is-weakref/CHANGELOG.md @@ -0,0 +1,82 @@ +# Changelog + +All notable changes to this project will be documented in this file. + +The format is based on [Keep a Changelog](https://keepachangelog.com/en/1.0.0/) +and this project adheres to [Semantic Versioning](https://semver.org/spec/v2.0.0.html). + +## [v1.1.1](https://github.com/inspect-js/is-weakref/compare/v1.1.0...v1.1.1) - 2025-02-03 + +### Commits + +- [Dev Deps] update `@arethetypeswrong/cli`, `@ljharb/tsconfig`, `@types/tape`, `for-each` [`e0bccbc`](https://github.com/inspect-js/is-weakref/commit/e0bccbcfc4fa0176ef6e07876fcf67b2d7a99884) +- [types] use WeakKey instead of object [`9ec7583`](https://github.com/inspect-js/is-weakref/commit/9ec75834bfceb6b153bf6a55f9e410fe5ecdb90a) +- [Deps] update `call-bound` [`7655eb0`](https://github.com/inspect-js/is-weakref/commit/7655eb01853dda6ac7ad85c067e290ff18ce1879) + +## [v1.1.0](https://github.com/inspect-js/is-weakref/compare/v1.0.2...v1.1.0) - 2024-12-13 + +### Commits + +- [meta] use `npmignore` to autogenerate an npmignore file [`34494a3`](https://github.com/inspect-js/is-weakref/commit/34494a3a7df0b144fbb55b578ee383d676a5b3df) +- [actions] split out node 10-20, and 20+ [`78cb11d`](https://github.com/inspect-js/is-weakref/commit/78cb11d8a02f028c9566f8a75cfc516d4f789c15) +- [New] add types [`f4ceaf5`](https://github.com/inspect-js/is-weakref/commit/f4ceaf53638c97c65ebe2342080acd931443833d) +- [Dev Deps] update `eslint`, `@ljharb/eslint-config`, `aud`, `auto-changelog`, `object-inspect`, `tape` [`24fccf5`](https://github.com/inspect-js/is-weakref/commit/24fccf5ac81aa562a87fa5354fb9bb26e43fb95f) +- [actions] update rebase action to use reusable workflow [`b27c6e9`](https://github.com/inspect-js/is-weakref/commit/b27c6e90004d71627bebbac846213e980ea988ce) +- [Dev Deps] update `@ljharb/eslint-config`, `auto-changelog`, `npmignore`, `object-inspect`, `tape` [`30fe836`](https://github.com/inspect-js/is-weakref/commit/30fe836a57043092f400739c0e5190d5651bf8db) +- [Dev Deps] update `@ljharb/eslint-config`, `aud`, `object-inspect`, `tape` [`0185ba7`](https://github.com/inspect-js/is-weakref/commit/0185ba74824e9122bdcc42b929a4d3017779041f) +- [Refactor] use `call-bound` directly [`641d87c`](https://github.com/inspect-js/is-weakref/commit/641d87c36f6a7a19fafee6840be5fe06e216b355) +- [meta] add missing `engines.node` [`8543506`](https://github.com/inspect-js/is-weakref/commit/8543506b1a11dca0c7d041d5e822acae4a027f0b) +- [Tests] replace `aud` with `npm audit` [`883c75c`](https://github.com/inspect-js/is-weakref/commit/883c75cfa404dbbf1aba2547c023ee48745baad0) +- [Deps] update `call-bind` [`805de0e`](https://github.com/inspect-js/is-weakref/commit/805de0e6b9649bceb144cb323bcadc499ff42d66) +- [Deps] update `call-bind` [`6a7ee43`](https://github.com/inspect-js/is-weakref/commit/6a7ee43f7bd6a9197daa7f9fcd0378c22d7066ca) +- [Dev Deps] update `object-inspect` [`d3d6a99`](https://github.com/inspect-js/is-weakref/commit/d3d6a992e4ac41e93743b25556c4adeee3f0ab05) +- [meta] add `sideEffects` flag [`2b13054`](https://github.com/inspect-js/is-weakref/commit/2b13054ee66de02d38fdf3d18d61552c871ac5a3) +- [Dev Deps] add missing peer dep [`54cb0bc`](https://github.com/inspect-js/is-weakref/commit/54cb0bc2d4bd1aa11714d15feb671e3dc085eaf0) + +## [v1.0.2](https://github.com/inspect-js/is-weakref/compare/v1.0.1...v1.0.2) - 2021-12-10 + +### Commits + +- [actions] reuse common workflows [`2375b1f`](https://github.com/inspect-js/is-weakref/commit/2375b1f9798b08c7af98481bbb38b4105835dacf) +- [meta] do not publish workflow files [`4c1be42`](https://github.com/inspect-js/is-weakref/commit/4c1be423afacabf2f3aa9e8bf02f668bdeaf3a20) +- [actions] use `node/install` instead of `node/run`; use `codecov` action [`7ec78ce`](https://github.com/inspect-js/is-weakref/commit/7ec78ce58c7553469eee97ae82fe147dfccde611) +- [readme] update URLs [`6306f09`](https://github.com/inspect-js/is-weakref/commit/6306f09a7df388150fb1d0b855b6f9e60165a457) +- [Dev Deps] update `eslint`, `@ljharb/eslint-config`, `object-inspect`, `safe-publish-latest`, `tape` [`7a1601e`](https://github.com/inspect-js/is-weakref/commit/7a1601e93ae50a791751a96d33073f5e65f3d3c9) +- [readme] add actions and codecov badges [`67ecd14`](https://github.com/inspect-js/is-weakref/commit/67ecd14b8b0192456932d1d54838accbf90ff5c0) +- [Dev Deps] update `eslint`, `@ljharb/eslint-config`, `auto-changelog`, `object-inspect`, `safe-publish-latest`, `tape` [`1a5013b`](https://github.com/inspect-js/is-weakref/commit/1a5013bddcb9edc23025571810f9a2eebda53683) +- [actions] update codecov uploader [`b57b037`](https://github.com/inspect-js/is-weakref/commit/b57b037a547f3ecfa3d3f079a8015ec005c7181b) +- [Dev Deps] update `eslint`, `@ljharb/eslint-config`, `aud`, `object-inspect`, `tape` [`da49017`](https://github.com/inspect-js/is-weakref/commit/da49017800d628c9bcd2f094d49783d6ee649c50) +- [meta] simplify "exports" [`9b88835`](https://github.com/inspect-js/is-weakref/commit/9b8883585506c135a3fcb9f55d0944a13b4eb3e6) +- [Dev Deps] update `eslint`, `@ljharb/eslint-config`, `tape` [`c7e77f4`](https://github.com/inspect-js/is-weakref/commit/c7e77f495308f3385adfaa1f4ac78a2632e0bcde) +- [Dev Deps] update `eslint` [`417b29e`](https://github.com/inspect-js/is-weakref/commit/417b29e7ceacebe24aef15422544443f4b59e181) +- [meta] add `safe-publish-latest`; use `prepublishOnly` script for npm 7+ [`b1b99f4`](https://github.com/inspect-js/is-weakref/commit/b1b99f45e0977d10f8472e9272e48a696145c2b1) +- [Deps] update `call-bind` [`aea342e`](https://github.com/inspect-js/is-weakref/commit/aea342e9e301deeb938e62b92a37cf991c5f7dbc) +- [actions] update workflows [`786c2d3`](https://github.com/inspect-js/is-weakref/commit/786c2d3dd4486acec09786220d3dd9fd48e70e93) + +## [v1.0.1](https://github.com/inspect-js/is-weakref/compare/v1.0.0...v1.0.1) - 2020-12-04 + +### Commits + +- [Tests] migrate tests to Github Actions [`05b4faa`](https://github.com/inspect-js/is-weakref/commit/05b4faa167c67f42c792e35c07adcb6b87e7dea0) +- [Tests] run `nyc` on all tests [`8df2e4b`](https://github.com/inspect-js/is-weakref/commit/8df2e4bd66bb6b7d55f389f28e6bb167fe1deb5a) +- [actions] add "Allow Edits" workflow [`4a716b8`](https://github.com/inspect-js/is-weakref/commit/4a716b8fcc025fe889a0f09ccaee7a9f748b1c66) +- [Dev Deps] update `eslint`, `@ljharb/eslint-config`, `aud`, `auto-changelog`, `object-inspect` [`be23cf3`](https://github.com/inspect-js/is-weakref/commit/be23cf305f46db8b1c8a26d1c74b096fdba00056) +- [Refactor] use `call-bind` instead of `es-abstract` [`a933a96`](https://github.com/inspect-js/is-weakref/commit/a933a9643ddf7cddfd9f9f3cf44d675cc4c86ce5) +- [actions] switch Automatic Rebase workflow to `pull_request_target` event [`4473ed2`](https://github.com/inspect-js/is-weakref/commit/4473ed2e73fed47cd2fa42b8d9cac17e941d2c08) +- [readme] remove travis badge [`bd3bfcd`](https://github.com/inspect-js/is-weakref/commit/bd3bfcd2c187099d2215232a7621fb960e1e2807) + +## v1.0.0 - 2020-08-01 + +### Commits + +- Initial commit [`dd86394`](https://github.com/inspect-js/is-weakref/commit/dd86394d7da000724c6e17c79077879c381e9ea3) +- readme [`f4defca`](https://github.com/inspect-js/is-weakref/commit/f4defcac48d1d99b019b596ab26bd868de1adfe9) +- Tests [`13d8139`](https://github.com/inspect-js/is-weakref/commit/13d8139dedf424239daf357261c39d3f8c33d662) +- npm init [`55a2bb7`](https://github.com/inspect-js/is-weakref/commit/55a2bb7c53b893396a51da969e352702cafe9a0e) +- Implementation [`1ec84e3`](https://github.com/inspect-js/is-weakref/commit/1ec84e36de4315d44c8da540faa27836832bb0f3) +- [meta] add auto-changelog [`ab9ce44`](https://github.com/inspect-js/is-weakref/commit/ab9ce44be717312c5221bf3d2f3f6d2dd8c6ac88) +- [actions] add automatic rebasing / merge commit blocking [`3d3f4d5`](https://github.com/inspect-js/is-weakref/commit/3d3f4d54bed6e455b2a0d0f20c87d454bf78af26) +- [meta] add "funding"; create `FUNDING.yml` [`f35ef3d`](https://github.com/inspect-js/is-weakref/commit/f35ef3de16eb06447acf3c39bdc164ba0e7bdf45) +- [Tests] add `npm run lint` [`af2123d`](https://github.com/inspect-js/is-weakref/commit/af2123d4754c14f7befa66ba01e1d72858723651) +- [Tests] use shared travis-ci configs [`042b4de`](https://github.com/inspect-js/is-weakref/commit/042b4dec08d882ae9137f4ad05ae24a1457da0f8) +- Only apps should have lockfiles [`fcae604`](https://github.com/inspect-js/is-weakref/commit/fcae604cb1422faae9311dd4219032895c0a9a2e) diff --git a/novas/novacore-zephyr/groq-code-cli/node_modules/is-weakref/LICENSE b/novas/novacore-zephyr/groq-code-cli/node_modules/is-weakref/LICENSE new file mode 100644 index 0000000000000000000000000000000000000000..707437b5750a24d0ed2dd693ce221283ff4508a0 --- /dev/null +++ b/novas/novacore-zephyr/groq-code-cli/node_modules/is-weakref/LICENSE @@ -0,0 +1,21 @@ +MIT License + +Copyright (c) 2020 Inspect JS + +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. diff --git a/novas/novacore-zephyr/groq-code-cli/node_modules/is-weakref/README.md b/novas/novacore-zephyr/groq-code-cli/node_modules/is-weakref/README.md new file mode 100644 index 0000000000000000000000000000000000000000..abbb978bf32cf48d6bbbd546fe77dcb46bd34ce7 --- /dev/null +++ b/novas/novacore-zephyr/groq-code-cli/node_modules/is-weakref/README.md @@ -0,0 +1,52 @@ +# is-weakref [![Version Badge][npm-version-svg]][package-url] + +[![github actions][actions-image]][actions-url] +[![coverage][codecov-image]][codecov-url] +[![dependency status][deps-svg]][deps-url] +[![dev dependency status][dev-deps-svg]][dev-deps-url] +[![License][license-image]][license-url] +[![Downloads][downloads-image]][downloads-url] + +[![npm badge][11]][1] + +Is this value a JS WeakRef? This module works cross-realm/iframe, and despite ES6 @@toStringTag. + +## Example + +```js +var isWeakRef = require('is-weakref'); +assert(!isWeakRef(function () {})); +assert(!isWeakRef(null)); +assert(!isWeakRef(function* () { yield 42; return Infinity; }); +assert(!isWeakRef(Symbol('foo'))); +assert(!isWeakRef(1n)); +assert(!isWeakRef(Object(1n))); + +assert(!isWeakRef(new Set())); +assert(!isWeakRef(new WeakSet())); +assert(!isWeakRef(new Map())); +assert(!isWeakRef(new WeakMap())); + +assert(isWeakRef(new WeakRef({}))); + +class MyWeakRef extends WeakRef {} +assert(isWeakRef(new MyWeakRef({}))); +``` + +## Tests +Simply clone the repo, `npm install`, and run `npm test` + +[package-url]: https://npmjs.org/package/is-weakref +[npm-version-svg]: https://versionbadg.es/inspect-js/is-weakref.svg +[deps-svg]: https://david-dm.org/inspect-js/is-weakref.svg +[deps-url]: https://david-dm.org/inspect-js/is-weakref +[dev-deps-svg]: https://david-dm.org/inspect-js/is-weakref/dev-status.svg +[dev-deps-url]: https://david-dm.org/inspect-js/is-weakref#info=devDependencies +[license-image]: https://img.shields.io/npm/l/is-weakref.svg +[license-url]: LICENSE +[downloads-image]: https://img.shields.io/npm/dm/is-weakref.svg +[downloads-url]: https://npm-stat.com/charts.html?package=is-weakref +[codecov-image]: https://codecov.io/gh/inspect-js/is-weakref/branch/main/graphs/badge.svg +[codecov-url]: https://app.codecov.io/gh/inspect-js/is-weakref/ +[actions-image]: https://img.shields.io/endpoint?url=https://github-actions-badge-u3jn4tfpocch.runkit.sh/inspect-js/is-weakref +[actions-url]: https://github.com/inspect-js/is-weakref/actions diff --git a/novas/novacore-zephyr/groq-code-cli/node_modules/is-weakref/index.d.ts b/novas/novacore-zephyr/groq-code-cli/node_modules/is-weakref/index.d.ts new file mode 100644 index 0000000000000000000000000000000000000000..7f67ae4f0c8829795dfd2d480c31289bbb9bf2e1 --- /dev/null +++ b/novas/novacore-zephyr/groq-code-cli/node_modules/is-weakref/index.d.ts @@ -0,0 +1,3 @@ +declare function isWeakRef(value: unknown): value is WeakRef; + +export = isWeakRef; \ No newline at end of file diff --git a/novas/novacore-zephyr/groq-code-cli/node_modules/is-weakref/index.js b/novas/novacore-zephyr/groq-code-cli/node_modules/is-weakref/index.js new file mode 100644 index 0000000000000000000000000000000000000000..378e2b48b9723c7ec24810cfed739061dd6313bf --- /dev/null +++ b/novas/novacore-zephyr/groq-code-cli/node_modules/is-weakref/index.js @@ -0,0 +1,24 @@ +'use strict'; + +var callBound = require('call-bound'); + +// eslint-disable-next-line no-extra-parens +var $deref = /** @type {(thisArg: WeakRef) => T | undefined} */ (callBound('WeakRef.prototype.deref', true)); + +/** @type {import('.')} */ +module.exports = typeof WeakRef === 'undefined' + ? function isWeakRef(_value) { // eslint-disable-line no-unused-vars + return false; + } + : function isWeakRef(value) { + if (!value || typeof value !== 'object') { + return false; + } + try { + // @ts-expect-error + $deref(value); + return true; + } catch (e) { + return false; + } + }; diff --git a/novas/novacore-zephyr/groq-code-cli/node_modules/is-weakref/package.json b/novas/novacore-zephyr/groq-code-cli/node_modules/is-weakref/package.json new file mode 100644 index 0000000000000000000000000000000000000000..06de4d4541f2d7a93d5df8e538d8b28c3172ac1a --- /dev/null +++ b/novas/novacore-zephyr/groq-code-cli/node_modules/is-weakref/package.json @@ -0,0 +1,82 @@ +{ + "name": "is-weakref", + "version": "1.1.1", + "description": "Is this value a JS WeakRef? This module works cross-realm/iframe, and despite ES6 @@toStringTag.", + "main": "index.js", + "exports": { + ".": "./index.js", + "./package.json": "./package.json" + }, + "sideEffects": false, + "scripts": { + "prepack": "npmignore --auto --commentLines=autogenerated", + "version": "auto-changelog && git add CHANGELOG.md", + "postversion": "auto-changelog && git add CHANGELOG.md && git commit --no-edit --amend && git tag -f \"v$(node -e \"console.log(require('./package.json').version)\")\"", + "prepublishOnly": "safe-publish-latest", + "prepublish": "not-in-publish || npm run prepublishOnly", + "lint": "eslint --ext=js,mjs .", + "postlint": "tsc && attw -P", + "pretest": "npm run lint", + "tests-only": "nyc tape 'test/**/*.js'", + "test": "npm run tests-only", + "posttest": "npx npm@'>=10.2' audit --production" + }, + "repository": { + "type": "git", + "url": "git+https://github.com/inspect-js/is-weakref.git" + }, + "keywords": [ + "weakref", + "weak", + "ref", + "finalization", + "finalization registry" + ], + "author": "Jordan Harband ", + "funding": { + "url": "https://github.com/sponsors/ljharb" + }, + "license": "MIT", + "bugs": { + "url": "https://github.com/inspect-js/is-weakref/issues" + }, + "homepage": "https://github.com/inspect-js/is-weakref#readme", + "devDependencies": { + "@arethetypeswrong/cli": "^0.17.3", + "@ljharb/eslint-config": "^21.1.1", + "@ljharb/tsconfig": "^0.2.3", + "@types/for-each": "^0.3.3", + "@types/object-inspect": "^1.13.0", + "@types/tape": "^5.8.1", + "auto-changelog": "^2.5.0", + "encoding": "^0.1.13", + "eslint": "=8.8.0", + "for-each": "^0.3.4", + "in-publish": "^2.0.1", + "npmignore": "^0.3.1", + "nyc": "^10.3.2", + "object-inspect": "^1.13.3", + "safe-publish-latest": "^2.0.0", + "tape": "^5.9.0", + "typescript": "next" + }, + "dependencies": { + "call-bound": "^1.0.3" + }, + "auto-changelog": { + "output": "CHANGELOG.md", + "template": "keepachangelog", + "unreleased": false, + "commitLimit": false, + "backfillLimit": false, + "hideCredit": true + }, + "publishConfig": { + "ignore": [ + ".github/workflows" + ] + }, + "engines": { + "node": ">= 0.4" + } +} diff --git a/novas/novacore-zephyr/groq-code-cli/node_modules/is-weakref/tsconfig.json b/novas/novacore-zephyr/groq-code-cli/node_modules/is-weakref/tsconfig.json new file mode 100644 index 0000000000000000000000000000000000000000..6716d81ce28cf3af2a23d2d9237c7a3d53114217 --- /dev/null +++ b/novas/novacore-zephyr/groq-code-cli/node_modules/is-weakref/tsconfig.json @@ -0,0 +1,9 @@ +{ + "extends": "@ljharb/tsconfig", + "compilerOptions": { + "target": "ES2021", + }, + "exclude": [ + "coverage" + ] +} diff --git a/novas/novacore-zephyr/groq-code-cli/node_modules/is-weakset/.editorconfig b/novas/novacore-zephyr/groq-code-cli/node_modules/is-weakset/.editorconfig new file mode 100644 index 0000000000000000000000000000000000000000..86c8f59f7dab3aeb9f6ed9f2067dc689a2da5089 --- /dev/null +++ b/novas/novacore-zephyr/groq-code-cli/node_modules/is-weakset/.editorconfig @@ -0,0 +1,15 @@ +root = true + +[*] +indent_style = tab +end_of_line = lf +charset = utf-8 +trim_trailing_whitespace = true +insert_final_newline = true + +[package.json] +indent_style = space +indent_size = 2 + +[*.md] +trim_trailing_whitespace = false diff --git a/novas/novacore-zephyr/groq-code-cli/node_modules/is-weakset/.eslintrc b/novas/novacore-zephyr/groq-code-cli/node_modules/is-weakset/.eslintrc new file mode 100644 index 0000000000000000000000000000000000000000..46f3b120b8724f7a62ece8975157c2df19e5f1b3 --- /dev/null +++ b/novas/novacore-zephyr/groq-code-cli/node_modules/is-weakset/.eslintrc @@ -0,0 +1,13 @@ +{ + "root": true, + + "extends": "@ljharb", + + "rules": { + "new-cap": ["error", { + "capIsNewExceptions": [ + "GetIntrinsic", + ], + }], + }, +} diff --git a/novas/novacore-zephyr/groq-code-cli/node_modules/is-weakset/.gitattributes b/novas/novacore-zephyr/groq-code-cli/node_modules/is-weakset/.gitattributes new file mode 100644 index 0000000000000000000000000000000000000000..176a458f94e0ea5272ce67c36bf30b6be9caf623 --- /dev/null +++ b/novas/novacore-zephyr/groq-code-cli/node_modules/is-weakset/.gitattributes @@ -0,0 +1 @@ +* text=auto diff --git a/novas/novacore-zephyr/groq-code-cli/node_modules/is-weakset/.nycrc b/novas/novacore-zephyr/groq-code-cli/node_modules/is-weakset/.nycrc new file mode 100644 index 0000000000000000000000000000000000000000..bdd626ce91477abbdd489b79988baebadbd3c897 --- /dev/null +++ b/novas/novacore-zephyr/groq-code-cli/node_modules/is-weakset/.nycrc @@ -0,0 +1,9 @@ +{ + "all": true, + "check-coverage": false, + "reporter": ["text-summary", "text", "html", "json"], + "exclude": [ + "coverage", + "test" + ] +} diff --git a/novas/novacore-zephyr/groq-code-cli/node_modules/is-weakset/CHANGELOG.md b/novas/novacore-zephyr/groq-code-cli/node_modules/is-weakset/CHANGELOG.md new file mode 100644 index 0000000000000000000000000000000000000000..c43f88e502a2b958d2a717df0702195d10dd4796 --- /dev/null +++ b/novas/novacore-zephyr/groq-code-cli/node_modules/is-weakset/CHANGELOG.md @@ -0,0 +1,107 @@ +# Changelog + +All notable changes to this project will be documented in this file. + +The format is based on [Keep a Changelog](https://keepachangelog.com/en/1.0.0/) +and this project adheres to [Semantic Versioning](https://semver.org/spec/v2.0.0.html). + +## [v2.0.4](https://github.com/inspect-js/is-weakset/compare/v2.0.3...v2.0.4) - 2024-12-16 + +### Commits + +- [types] use shared config [`5fe9848`](https://github.com/inspect-js/is-weakset/commit/5fe98485c31c8269b90fe93b6f0d002259510786) +- [actions] split out node 10-20, and 20+ [`bd400b9`](https://github.com/inspect-js/is-weakset/commit/bd400b94a77eddeea29f940a2e18708f760deaab) +- [Dev Deps] update `@arethetypeswrong/cli`, `@ljharb/eslint-config`, `@types/object-inspect`, `auto-changelog`, `object-inspect`, `tape` [`8b290fc`](https://github.com/inspect-js/is-weakset/commit/8b290fc32cdd37e4464a2f3df192e71bf77a4636) +- [Refactor] use `call-bound` directly [`265971b`](https://github.com/inspect-js/is-weakset/commit/265971b6c1cf9d01b4c48b7182e13b4d46e4825a) +- [Dev Deps] update `@arethetypeswrong/cli`, `@ljharb/tsconfig`, `@types/tape` [`f39dc78`](https://github.com/inspect-js/is-weakset/commit/f39dc787ab85cd24f62013f1dd416e2f3bf2197a) +- [Dev Deps] update `@arethetypeswrong/cli`, `@types/get-intrinsic`, `object-inspect` [`ce6c6a9`](https://github.com/inspect-js/is-weakset/commit/ce6c6a936bbd40743021b6b96835d328dd924e1b) +- [Deps] update `call-bind`, `get-intrinsic` [`ebd5d82`](https://github.com/inspect-js/is-weakset/commit/ebd5d822ca3b8479ebebc99d8f268a7c2a264f8e) +- [Tests] replace `aud` with `npm audit` [`3eb16c8`](https://github.com/inspect-js/is-weakset/commit/3eb16c8b9e9b368f1e2a342867e10972e81b194b) +- [Dev Deps] update `@arethetypeswrong/cli` [`9fe99f3`](https://github.com/inspect-js/is-weakset/commit/9fe99f3ebc084129576e4f467df8eef834b2f25f) +- [Dev Deps] add missing peer dep [`a2fc30e`](https://github.com/inspect-js/is-weakset/commit/a2fc30ed83a6592c6ac56b425ebadc311dc96102) + +## [v2.0.3](https://github.com/inspect-js/is-weakset/compare/v2.0.2...v2.0.3) - 2024-03-08 + +### Commits + +- [meta] use `npmignore` to autogenerate an npmignore file [`e70d6aa`](https://github.com/inspect-js/is-weakset/commit/e70d6aa49d997930d3d88103090279ca1e480c7d) +- add types [`c9bbc35`](https://github.com/inspect-js/is-weakset/commit/c9bbc35f4d87cfa206281ddf6eb0e595f7994b7e) +- [readme] remove dead badges [`fb443f6`](https://github.com/inspect-js/is-weakset/commit/fb443f66e34a71a4d4ff41e09429f7479c9f4895) +- [actions] remove redundant finisher [`eb292cc`](https://github.com/inspect-js/is-weakset/commit/eb292cc1c056725c1a9c7d5861c3bca03734710e) +- [Dev Deps] update `eslint`, `@ljharb/eslint-config`, `aud`, `auto-changelog`, `es5-shim`, `object-inspect`, `tape` [`49d0c35`](https://github.com/inspect-js/is-weakset/commit/49d0c3583793fa2f097b66198a3a33dc2846c659) +- [Dev Deps] update `@ljharb/eslint-config`, `aud`, `es6-shim`, `npmignore`, `object-inspect`, `tape` [`6ec0a57`](https://github.com/inspect-js/is-weakset/commit/6ec0a5720c92ac3624283580d4af58a1b8846f43) +- [actions] update rebase action to use reusable workflow [`d996166`](https://github.com/inspect-js/is-weakset/commit/d9961664d6beb649e3ea8ee9b80309a0b60252fa) +- [Deps] update `call-bind`, `get-intrinsic` [`e207da3`](https://github.com/inspect-js/is-weakset/commit/e207da3865a658e83c1e9f453edfc5c52e63ccc3) +- [meta] add missing `engines.node` [`4d9dd14`](https://github.com/inspect-js/is-weakset/commit/4d9dd14f6919c969d7e6b8378d3aae2a7ea78a8f) +- [Deps] update `get-intrinsic` [`cf796dd`](https://github.com/inspect-js/is-weakset/commit/cf796dd7e71ea08abb81332f244ae3ffd34bffd5) +- [meta] add `sideEffects` flag [`c88a25d`](https://github.com/inspect-js/is-weakset/commit/c88a25df1f14630d937e730e75fd6b182356fc0b) + +## [v2.0.2](https://github.com/inspect-js/is-weakset/compare/v2.0.1...v2.0.2) - 2021-12-12 + +### Commits + +- [actions] reuse common workflows [`a8f7c7f`](https://github.com/inspect-js/is-weakset/commit/a8f7c7fa22088dabbadf82cd52cf962eca646c59) +- [Tests] migrate tests to Github Actions [`f38af72`](https://github.com/inspect-js/is-weakset/commit/f38af729300d425360caad1763e7f904dcd3e393) +- [Refactor] use `call-bind` and `get-intrinsic` to be more robust [`5102e7e`](https://github.com/inspect-js/is-weakset/commit/5102e7ef227f06da1bc8dcee2579af74f1e1a477) +- [meta] do not publish github action workflow files [`6ac6e8e`](https://github.com/inspect-js/is-weakset/commit/6ac6e8e5b15181e73d30f6d37e41955372b07792) +- [actions] use `node/install` instead of `node/run`; use `codecov` action [`304af52`](https://github.com/inspect-js/is-weakset/commit/304af52f4c40743b055e252d50c8e804cac4054f) +- [Dev Deps] update `eslint`, `@ljharb/eslint-config`, `aud`, `auto-changelog`, `es6-shim`, `object-inspect`, `tape` [`b82fb5f`](https://github.com/inspect-js/is-weakset/commit/b82fb5fafdeea05f93420e0966fe63785362649a) +- [Tests] run `nyc` on all tests; use `tape` runner [`89e2611`](https://github.com/inspect-js/is-weakset/commit/89e26115ab1aa58b37816d6b5e2aad62508bd79c) +- [Dev Deps] update `eslint`, `@ljharb/eslint-config`, `es5-shim`, `object-inspect`, `safe-publish-latest`, `tape` [`42b0bdc`](https://github.com/inspect-js/is-weakset/commit/42b0bdc5a8785ddb589ea16629c933ec01359ca8) +- [actions] update codecov uploader [`112697a`](https://github.com/inspect-js/is-weakset/commit/112697aaf3b6f2e22275575ce4b684059fa5dcaa) +- [actions] add "Allow Edits" workflow [`1af6ffe`](https://github.com/inspect-js/is-weakset/commit/1af6ffe2793a5784ac70048e50850f4d6e650de4) +- [readme] remove travis badge [`dff769b`](https://github.com/inspect-js/is-weakset/commit/dff769b367aa4886ab082dd6330cbc54d0dcf03f) +- [Dev Deps] update `eslint`, `@ljharb/eslint-config`, `aud`, `object-inspect`, `tape` [`4494ced`](https://github.com/inspect-js/is-weakset/commit/4494cedea891e3617768b30721e3b5ddee5c41e4) +- [Dev Deps] update `eslint`, `@ljharb/eslint-config`, `es5-shim`, `tape` [`a2c11c6`](https://github.com/inspect-js/is-weakset/commit/a2c11c6dcef990b7f6fabb26d58837a7fe4f3a3e) +- [Tests] add `core-js` tests [`cd619e9`](https://github.com/inspect-js/is-weakset/commit/cd619e95f64cc02cbec8f4b0b29a806f371eab9e) +- [readme] add actions and codecov badges [`d3cbefe`](https://github.com/inspect-js/is-weakset/commit/d3cbefeb526773a565eb4e501b2e7da7947b215d) +- [Dev Deps] update `eslint`, `@ljharb/eslint-config`, `tape` [`3d54035`](https://github.com/inspect-js/is-weakset/commit/3d54035e2ca66969f6cc779b85902ac3507d7297) +- [Dev Deps] update `auto-changelog`, `eslint` [`a80fb4a`](https://github.com/inspect-js/is-weakset/commit/a80fb4a7c1a90a2929d80f9b2a9adaa56c94d2d2) +- [actions] switch Automatic Rease workflow to `pull_request_target` event [`b3b8aee`](https://github.com/inspect-js/is-weakset/commit/b3b8aeeb3e133d88da897d42530aea4bcc729b23) +- [Dev Deps] update `es5-shim`, `tape` [`5ba5ca8`](https://github.com/inspect-js/is-weakset/commit/5ba5ca84a3d4bb4acacb9fd9265a21476d4f0457) +- [meta] use `prepublishOnly` script for npm 7+ [`b4f7636`](https://github.com/inspect-js/is-weakset/commit/b4f76366574ac4b4d854c330cbad33a8d9ff48ff) +- [Dev Deps] update `auto-changelog`; add `aud` [`2ccd594`](https://github.com/inspect-js/is-weakset/commit/2ccd5944c8fd161fa463620de268bd6f40ff0e59) +- [Fix] when `WeakSet` lacks a `has`, return false [`53a2cbc`](https://github.com/inspect-js/is-weakset/commit/53a2cbce11d2493b4ff82132f3d14e22c909b541) +- [Tests] only audit prod deps [`f74aaf5`](https://github.com/inspect-js/is-weakset/commit/f74aaf5746fc49d424742184025288d0d565639c) +- [meta] normalize line endings [`31f60a6`](https://github.com/inspect-js/is-weakset/commit/31f60a6a70e38851743e602e30bb0907cd3cc6ba) + +## [v2.0.1](https://github.com/inspect-js/is-weakset/compare/v2.0.0...v2.0.1) - 2019-12-17 + +### Fixed + +- [Refactor] avoid top-level return, because babel and webpack are broken [`#79`](https://github.com/inspect-js/node-deep-equal/issues/79) [`#78`](https://github.com/inspect-js/node-deep-equal/issues/78) [`#7`](https://github.com/es-shims/Promise.allSettled/issues/7) [`#12`](https://github.com/airbnb/js-shims/issues/12) + +### Commits + +- [actions] add automatic rebasing / merge commit blocking [`d85eb2c`](https://github.com/inspect-js/is-weakset/commit/d85eb2ca5fe1f1890a04c5504e4c23d68db68447) +- [Dev Deps] update `eslint`, `@ljharb/eslint-config` [`790128b`](https://github.com/inspect-js/is-weakset/commit/790128b8e7c2abe39f70a5c25a303646f8555487) +- [Dev Deps] update `tape` [`e4bda71`](https://github.com/inspect-js/is-weakset/commit/e4bda71a8a6b1233285e91f54a05a08b75cdbd6e) + +## [v2.0.0](https://github.com/inspect-js/is-weakset/compare/v1.0.1...v2.0.0) - 2019-11-12 + +### Commits + +- Initial commit [`095ce1f`](https://github.com/inspect-js/is-weakset/commit/095ce1f56c52aa547b57dd326e9b5c2c8a7c2765) +- Tests [`2e8f26d`](https://github.com/inspect-js/is-weakset/commit/2e8f26d1b632fbfe4ded276d046e34276780671b) +- implementation [`acae1ef`](https://github.com/inspect-js/is-weakset/commit/acae1ef8d29a84ff0729135ac4acfe42f18c1328) +- readme [`344db89`](https://github.com/inspect-js/is-weakset/commit/344db8951568a3206847e7b00820622c2364e1ff) +- npm init [`e318679`](https://github.com/inspect-js/is-weakset/commit/e318679acc2c3c168a32fb648ddf3d54ff3e6d5e) +- [meta] add `funding` field; create `FUNDING.yml` [`a1e9277`](https://github.com/inspect-js/is-weakset/commit/a1e927798405e643e570a43d0ee30f5ae16d9d18) +- [meta] add `safe-publish-latest`, `auto-changelog` [`066a08c`](https://github.com/inspect-js/is-weakset/commit/066a08cd939ec1efe433af23688f8c73d3524b5c) +- [Tests] add `npm run lint` [`6af0730`](https://github.com/inspect-js/is-weakset/commit/6af07301fda27f1450184f31b941cf9fbefe261d) +- [Tests] use shared travis-ci configs [`a44f4ec`](https://github.com/inspect-js/is-weakset/commit/a44f4ec03d734274e351acef37698272f3e500c1) +- Only apps should have lockfiles [`11e4115`](https://github.com/inspect-js/is-weakset/commit/11e41153e46eb3ead4be9187770fe8cb47a21e12) +- [Tests] add `npx aud` in `posttest` [`53ceba1`](https://github.com/inspect-js/is-weakset/commit/53ceba16b0a98f968e40439f7bd2ffc98a406de8) + +## [v1.0.1](https://github.com/inspect-js/is-weakset/compare/v1.0.0...v1.0.1) - 2015-06-03 + +### Commits + +- Tweaks [`cb3a689`](https://github.com/inspect-js/is-weakset/commit/cb3a68985d734632423ffe81704500bd04e95934) +- Add `related` section to readme [`7c2766b`](https://github.com/inspect-js/is-weakset/commit/7c2766b3e1992b34d5ad933f2cf8901352aa4fcd) + +## v1.0.0 - 2015-02-18 + +### Commits + +- init [`579f442`](https://github.com/inspect-js/is-weakset/commit/579f442c42afa4e3880f9f62b3ccea79e0b6edd5) diff --git a/novas/novacore-zephyr/groq-code-cli/node_modules/is-weakset/LICENSE b/novas/novacore-zephyr/groq-code-cli/node_modules/is-weakset/LICENSE new file mode 100644 index 0000000000000000000000000000000000000000..c05eb206bdf4955213919987028657acd99ed92c --- /dev/null +++ b/novas/novacore-zephyr/groq-code-cli/node_modules/is-weakset/LICENSE @@ -0,0 +1,21 @@ +MIT License + +Copyright (c) 2019 Inspect JS + +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. diff --git a/novas/novacore-zephyr/groq-code-cli/node_modules/is-weakset/README.md b/novas/novacore-zephyr/groq-code-cli/node_modules/is-weakset/README.md new file mode 100644 index 0000000000000000000000000000000000000000..a666d6d6472ab1afe5dd8961896018bd6172211b --- /dev/null +++ b/novas/novacore-zephyr/groq-code-cli/node_modules/is-weakset/README.md @@ -0,0 +1,50 @@ +# is-weakset [![Version Badge][npm-version-svg]][package-url] + +[![github actions][actions-image]][actions-url] +[![coverage][codecov-image]][codecov-url] +[![License][license-image]][license-url] +[![Downloads][downloads-image]][downloads-url] + +[![npm badge][npm-badge-png]][package-url] + +Is this value a JS WeakSet? This module works cross-realm/iframe, and despite ES6 @@toStringTag. + +## Example + +```js +var isWeakSet = require('is-weakset'); +assert(!isWeakSet(function () {})); +assert(!isWeakSet(null)); +assert(!isWeakSet(function* () { yield 42; return Infinity; }); +assert(!isWeakSet(Symbol('foo'))); +assert(!isWeakSet(1n)); +assert(!isWeakSet(Object(1n))); + +assert(!isWeakSet(new Set())); +assert(!isWeakSet(new WeakMap())); +assert(!isWeakSet(new Map())); + +assert(isWeakSet(new WeakSet())); + +class MyWeakSet extends WeakSet {} +assert(isWeakSet(new MyWeakSet())); +``` + +## Tests +Simply clone the repo, `npm install`, and run `npm test` + +[package-url]: https://npmjs.org/package/is-weakset +[npm-version-svg]: https://versionbadg.es/inspect-js/is-weakset.svg +[deps-svg]: https://david-dm.org/inspect-js/is-weakset.svg +[deps-url]: https://david-dm.org/inspect-js/is-weakset +[dev-deps-svg]: https://david-dm.org/inspect-js/is-weakset/dev-status.svg +[dev-deps-url]: https://david-dm.org/inspect-js/is-weakset#info=devDependencies +[npm-badge-png]: https://nodei.co/npm/is-weakset.png?downloads=true&stars=true +[license-image]: https://img.shields.io/npm/l/is-weakset.svg +[license-url]: LICENSE +[downloads-image]: https://img.shields.io/npm/dm/is-weakset.svg +[downloads-url]: https://npm-stat.com/charts.html?package=is-weakset +[codecov-image]: https://codecov.io/gh/inspect-js/is-weakset/branch/main/graphs/badge.svg +[codecov-url]: https://app.codecov.io/gh/inspect-js/is-weakset/ +[actions-image]: https://img.shields.io/endpoint?url=https://github-actions-badge-u3jn4tfpocch.runkit.sh/inspect-js/is-weakset +[actions-url]: https://github.com/inspect-js/is-weakset/actions diff --git a/novas/novacore-zephyr/groq-code-cli/node_modules/is-weakset/index.d.ts b/novas/novacore-zephyr/groq-code-cli/node_modules/is-weakset/index.d.ts new file mode 100644 index 0000000000000000000000000000000000000000..36192e6d26d82be57cfbe458060f5259ea78e7d8 --- /dev/null +++ b/novas/novacore-zephyr/groq-code-cli/node_modules/is-weakset/index.d.ts @@ -0,0 +1,3 @@ +declare function isWeakSet(value: unknown): value is WeakSet; + +export = isWeakSet; \ No newline at end of file diff --git a/novas/novacore-zephyr/groq-code-cli/node_modules/is-weakset/index.js b/novas/novacore-zephyr/groq-code-cli/node_modules/is-weakset/index.js new file mode 100644 index 0000000000000000000000000000000000000000..1cc58fa5aa8927c61258b07c801bf77d969b260e --- /dev/null +++ b/novas/novacore-zephyr/groq-code-cli/node_modules/is-weakset/index.js @@ -0,0 +1,43 @@ +'use strict'; + +var GetIntrinsic = require('get-intrinsic'); +var callBound = require('call-bound'); + +var $WeakSet = GetIntrinsic('%WeakSet%', true); + +/** @type {undefined | ((thisArg: Set, value: V) => boolean)} */ +var $setHas = callBound('WeakSet.prototype.has', true); + +if ($setHas) { + /** @type {undefined | ((thisArg: WeakMap, key: K) => boolean)} */ + var $mapHas = callBound('WeakMap.prototype.has', true); + + /** @type {import('.')} */ + module.exports = function isWeakSet(x) { + if (!x || typeof x !== 'object') { + return false; + } + try { + // @ts-expect-error TS can't figure out that $setHas is always truthy here + $setHas(x, $setHas); + if ($mapHas) { + try { + // @ts-expect-error this indeed might not be a weak collection + $mapHas(x, $mapHas); + } catch (e) { + return true; + } + } + // @ts-expect-error TS can't figure out that $WeakSet is always truthy here + return x instanceof $WeakSet; // core-js workaround, pre-v3 + } catch (e) {} + return false; + }; +} else { + /** @type {import('.')} */ + // @ts-expect-error + module.exports = function isWeakSet(x) { // eslint-disable-line no-unused-vars + // `WeakSet` does not exist, or does not have a `has` method + return false; + }; +} diff --git a/novas/novacore-zephyr/groq-code-cli/node_modules/is-weakset/package.json b/novas/novacore-zephyr/groq-code-cli/node_modules/is-weakset/package.json new file mode 100644 index 0000000000000000000000000000000000000000..89ff9bbb352c26c33463a008eeafa4acbc4e98f1 --- /dev/null +++ b/novas/novacore-zephyr/groq-code-cli/node_modules/is-weakset/package.json @@ -0,0 +1,87 @@ +{ + "name": "is-weakset", + "version": "2.0.4", + "description": "Is this value a JS WeakSet? This module works cross-realm/iframe, and despite ES6 @@toStringTag.", + "main": "index.js", + "sideEffects": false, + "scripts": { + "prepack": "npmignore --auto --commentLines=autogenerated", + "version": "auto-changelog && git add CHANGELOG.md", + "postversion": "auto-changelog && git add CHANGELOG.md && git commit --no-edit --amend && git tag -f \"v$(node -e \"console.log(require('./package.json').version)\")\"", + "prepublishOnly": "safe-publish-latest", + "prepublish": "not-in-publish || npm run prepublishOnly", + "pretest": "npm run lint", + "lint": "eslint --ext=js,mjs .", + "postlint": "tsc -p . && attw -P", + "tests-only": "nyc tape 'test/**/*.js'", + "tests:shims": "nyc tape --require=es5-shim --require=es6-shim 'test/**/*.js'", + "tests:corejs": "nyc tape --require=core-js 'test/**/*.js'", + "test": "npm run tests-only && npm run tests:shims && npm run tests:corejs", + "posttest": "npx npm@'>=10.2' audit --production" + }, + "repository": { + "type": "git", + "url": "git+https://github.com/inspect-js/is-weakset.git" + }, + "keywords": [ + "map", + "weakmap", + "set", + "weakset", + "collection", + "is", + "robust" + ], + "author": "Jordan Harband ", + "funding": { + "url": "https://github.com/sponsors/ljharb" + }, + "license": "MIT", + "bugs": { + "url": "https://github.com/inspect-js/is-weakset/issues" + }, + "homepage": "https://github.com/inspect-js/is-weakset#readme", + "dependencies": { + "call-bound": "^1.0.3", + "get-intrinsic": "^1.2.6" + }, + "devDependencies": { + "@arethetypeswrong/cli": "^0.17.1", + "@ljharb/eslint-config": "^21.1.1", + "@ljharb/tsconfig": "^0.2.2", + "@types/for-each": "^0.3.3", + "@types/get-intrinsic": "^1.2.3", + "@types/object-inspect": "^1.13.0", + "@types/tape": "^5.7.0", + "auto-changelog": "^2.5.0", + "core-js": "^2.6.12", + "encoding": "^0.1.13", + "es5-shim": "^4.6.7", + "es6-shim": "^0.35.8", + "eslint": "=8.8.0", + "for-each": "^0.3.3", + "in-publish": "^2.0.1", + "npmignore": "^0.3.1", + "nyc": "^10.3.2", + "object-inspect": "^1.13.3", + "safe-publish-latest": "^2.0.0", + "tape": "^5.9.0", + "typescript": "next" + }, + "auto-changelog": { + "output": "CHANGELOG.md", + "template": "keepachangelog", + "unreleased": false, + "commitLimit": false, + "backfillLimit": false, + "hideCredit": true + }, + "publishConfig": { + "ignore": [ + ".github/workflows" + ] + }, + "engines": { + "node": ">= 0.4" + } +} diff --git a/novas/novacore-zephyr/groq-code-cli/node_modules/is-weakset/tsconfig.json b/novas/novacore-zephyr/groq-code-cli/node_modules/is-weakset/tsconfig.json new file mode 100644 index 0000000000000000000000000000000000000000..dabbe230d74beb5962f67a6da7da18c707441ad5 --- /dev/null +++ b/novas/novacore-zephyr/groq-code-cli/node_modules/is-weakset/tsconfig.json @@ -0,0 +1,9 @@ +{ + "extends": "@ljharb/tsconfig", + "compilerOptions": { + "target": "ES2021", + }, + "exclude": [ + "coverage", + ], +} diff --git a/novas/novacore-zephyr/groq-code-cli/node_modules/is-wsl/index.d.ts b/novas/novacore-zephyr/groq-code-cli/node_modules/is-wsl/index.d.ts new file mode 100644 index 0000000000000000000000000000000000000000..381e9383d7a896793929eb3fbb592fb5adc9f607 --- /dev/null +++ b/novas/novacore-zephyr/groq-code-cli/node_modules/is-wsl/index.d.ts @@ -0,0 +1,15 @@ +/** +Check if the process is running inside [Windows Subsystem for Linux](https://msdn.microsoft.com/commandline/wsl/about) (Bash on Windows). + +@example +``` +import isWsl from 'is-wsl'; + +// When running inside Windows Subsystem for Linux +console.log(isWsl); +//=> true +``` +*/ +declare const isWsl: boolean; + +export default isWsl; diff --git a/novas/novacore-zephyr/groq-code-cli/node_modules/is-wsl/index.js b/novas/novacore-zephyr/groq-code-cli/node_modules/is-wsl/index.js new file mode 100644 index 0000000000000000000000000000000000000000..fe468b425b81fdaead563e79ffd11ce7f9ea9982 --- /dev/null +++ b/novas/novacore-zephyr/groq-code-cli/node_modules/is-wsl/index.js @@ -0,0 +1,27 @@ +import process from 'node:process'; +import os from 'node:os'; +import fs from 'node:fs'; +import isInsideContainer from 'is-inside-container'; + +const isWsl = () => { + if (process.platform !== 'linux') { + return false; + } + + if (os.release().toLowerCase().includes('microsoft')) { + if (isInsideContainer()) { + return false; + } + + return true; + } + + try { + return fs.readFileSync('/proc/version', 'utf8').toLowerCase().includes('microsoft') + ? !isInsideContainer() : false; + } catch { + return false; + } +}; + +export default process.env.__IS_WSL_TEST__ ? isWsl : isWsl(); diff --git a/novas/novacore-zephyr/groq-code-cli/node_modules/is-wsl/license b/novas/novacore-zephyr/groq-code-cli/node_modules/is-wsl/license new file mode 100644 index 0000000000000000000000000000000000000000..fa7ceba3eb4a9657a9db7f3ffca4e4e97a9019de --- /dev/null +++ b/novas/novacore-zephyr/groq-code-cli/node_modules/is-wsl/license @@ -0,0 +1,9 @@ +MIT License + +Copyright (c) Sindre Sorhus (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. diff --git a/novas/novacore-zephyr/groq-code-cli/node_modules/is-wsl/package.json b/novas/novacore-zephyr/groq-code-cli/node_modules/is-wsl/package.json new file mode 100644 index 0000000000000000000000000000000000000000..9ca2ee2fb265d33c0fbd7313820408564514ce82 --- /dev/null +++ b/novas/novacore-zephyr/groq-code-cli/node_modules/is-wsl/package.json @@ -0,0 +1,57 @@ +{ + "name": "is-wsl", + "version": "3.1.0", + "description": "Check if the process is running inside Windows Subsystem for Linux (Bash on Windows)", + "license": "MIT", + "repository": "sindresorhus/is-wsl", + "funding": "https://github.com/sponsors/sindresorhus", + "author": { + "name": "Sindre Sorhus", + "email": "sindresorhus@gmail.com", + "url": "https://sindresorhus.com" + }, + "type": "module", + "exports": { + "types": "./index.d.ts", + "default": "./index.js" + }, + "engines": { + "node": ">=16" + }, + "scripts": { + "test": "xo && ava && tsd" + }, + "files": [ + "index.js", + "index.d.ts" + ], + "keywords": [ + "check", + "wsl", + "windows", + "subsystem", + "linux", + "detect", + "bash", + "process", + "console", + "terminal", + "is" + ], + "dependencies": { + "is-inside-container": "^1.0.0" + }, + "devDependencies": { + "ava": "^5.3.1", + "esmock": "^2.3.6", + "tsd": "^0.28.1", + "xo": "^0.55.1" + }, + "ava": { + "serial": true, + "nodeArguments": [ + "--loader=esmock", + "--no-warnings" + ] + } +} diff --git a/novas/novacore-zephyr/groq-code-cli/node_modules/is-wsl/readme.md b/novas/novacore-zephyr/groq-code-cli/node_modules/is-wsl/readme.md new file mode 100644 index 0000000000000000000000000000000000000000..982975b7509d98e7fca9bb3c1412d50c75384f90 --- /dev/null +++ b/novas/novacore-zephyr/groq-code-cli/node_modules/is-wsl/readme.md @@ -0,0 +1,21 @@ +# is-wsl + +> Check if the process is running inside [Windows Subsystem for Linux](https://msdn.microsoft.com/commandline/wsl/about) (Bash on Windows) + +Can be useful if you need to work around unimplemented or buggy features in WSL. Supports both WSL 1 and WSL 2. + +## Install + +```sh +npm install is-wsl +``` + +## Usage + +```js +import isWsl from 'is-wsl'; + +// When running inside Windows Subsystem for Linux +console.log(isWsl); +//=> true +``` diff --git a/novas/novacore-zephyr/groq-code-cli/node_modules/isarray/LICENSE b/novas/novacore-zephyr/groq-code-cli/node_modules/isarray/LICENSE new file mode 100644 index 0000000000000000000000000000000000000000..de3226673c3874b1c6506db022393c753495655c --- /dev/null +++ b/novas/novacore-zephyr/groq-code-cli/node_modules/isarray/LICENSE @@ -0,0 +1,21 @@ +MIT License + +Copyright (c) 2013 Julian Gruber + +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. diff --git a/novas/novacore-zephyr/groq-code-cli/node_modules/isarray/README.md b/novas/novacore-zephyr/groq-code-cli/node_modules/isarray/README.md new file mode 100644 index 0000000000000000000000000000000000000000..3e160b2b7619fd9200501d019b02d70b6cf24214 --- /dev/null +++ b/novas/novacore-zephyr/groq-code-cli/node_modules/isarray/README.md @@ -0,0 +1,38 @@ + +# isarray + +`Array#isArray` for older browsers and deprecated Node.js versions. + +[![build status](https://secure.travis-ci.org/juliangruber/isarray.svg)](http://travis-ci.org/juliangruber/isarray) +[![downloads](https://img.shields.io/npm/dm/isarray.svg)](https://www.npmjs.org/package/isarray) + +[![browser support](https://ci.testling.com/juliangruber/isarray.png) +](https://ci.testling.com/juliangruber/isarray) + +__Just use Array.isArray directly__, unless you need to support those older versions. + +## Usage + +```js +var isArray = require('isarray'); + +console.log(isArray([])); // => true +console.log(isArray({})); // => false +``` + +## Installation + +With [npm](https://npmjs.org) do + +```bash +$ npm install isarray +``` + +Then bundle for the browser with +[browserify](https://github.com/substack/node-browserify). + +## Sponsors + +This module is proudly supported by my [Sponsors](https://github.com/juliangruber/sponsors)! + +Do you want to support modules like this to improve their quality, stability and weigh in on new features? Then please consider donating to my [Patreon](https://www.patreon.com/juliangruber). Not sure how much of my modules you're using? Try [feross/thanks](https://github.com/feross/thanks)! diff --git a/novas/novacore-zephyr/groq-code-cli/node_modules/isarray/index.js b/novas/novacore-zephyr/groq-code-cli/node_modules/isarray/index.js new file mode 100644 index 0000000000000000000000000000000000000000..a57f63495943a07b3b08d17e0f9ef6793548c801 --- /dev/null +++ b/novas/novacore-zephyr/groq-code-cli/node_modules/isarray/index.js @@ -0,0 +1,5 @@ +var toString = {}.toString; + +module.exports = Array.isArray || function (arr) { + return toString.call(arr) == '[object Array]'; +}; diff --git a/novas/novacore-zephyr/groq-code-cli/node_modules/isarray/package.json b/novas/novacore-zephyr/groq-code-cli/node_modules/isarray/package.json new file mode 100644 index 0000000000000000000000000000000000000000..fb0e89be343376824385f171963180582d356d80 --- /dev/null +++ b/novas/novacore-zephyr/groq-code-cli/node_modules/isarray/package.json @@ -0,0 +1,48 @@ +{ + "name": "isarray", + "description": "Array#isArray for older browsers", + "version": "2.0.5", + "repository": { + "type": "git", + "url": "git://github.com/juliangruber/isarray.git" + }, + "homepage": "https://github.com/juliangruber/isarray", + "main": "index.js", + "files": [ + "index.js" + ], + "dependencies": {}, + "devDependencies": { + "tape": "~2.13.4" + }, + "keywords": [ + "browser", + "isarray", + "array" + ], + "author": { + "name": "Julian Gruber", + "email": "mail@juliangruber.com", + "url": "http://juliangruber.com" + }, + "license": "MIT", + "testling": { + "files": "test.js", + "browsers": [ + "ie/8..latest", + "firefox/17..latest", + "firefox/nightly", + "chrome/22..latest", + "chrome/canary", + "opera/12..latest", + "opera/next", + "safari/5.1..latest", + "ipad/6.0..latest", + "iphone/6.0..latest", + "android-browser/4.2..latest" + ] + }, + "scripts": { + "test": "tape test.js" + } +} diff --git a/novas/novacore-zephyr/groq-code-cli/node_modules/isexe/.npmignore b/novas/novacore-zephyr/groq-code-cli/node_modules/isexe/.npmignore new file mode 100644 index 0000000000000000000000000000000000000000..c1cb757acf58a46c2c962c963c2d965f1d0eccec --- /dev/null +++ b/novas/novacore-zephyr/groq-code-cli/node_modules/isexe/.npmignore @@ -0,0 +1,2 @@ +.nyc_output/ +coverage/ diff --git a/novas/novacore-zephyr/groq-code-cli/node_modules/isexe/LICENSE b/novas/novacore-zephyr/groq-code-cli/node_modules/isexe/LICENSE new file mode 100644 index 0000000000000000000000000000000000000000..19129e315fe593965a2fdd50ec0d1253bcbd2ece --- /dev/null +++ b/novas/novacore-zephyr/groq-code-cli/node_modules/isexe/LICENSE @@ -0,0 +1,15 @@ +The ISC License + +Copyright (c) Isaac Z. Schlueter and Contributors + +Permission to use, copy, modify, and/or distribute this software for any +purpose with or without fee is hereby granted, provided that the above +copyright notice and this permission notice appear in all copies. + +THE SOFTWARE IS PROVIDED "AS IS" AND THE AUTHOR DISCLAIMS ALL WARRANTIES +WITH REGARD TO THIS SOFTWARE INCLUDING ALL IMPLIED WARRANTIES OF +MERCHANTABILITY AND FITNESS. IN NO EVENT SHALL THE AUTHOR BE LIABLE FOR +ANY SPECIAL, DIRECT, INDIRECT, OR CONSEQUENTIAL DAMAGES OR ANY DAMAGES +WHATSOEVER RESULTING FROM LOSS OF USE, DATA OR PROFITS, WHETHER IN AN +ACTION OF CONTRACT, NEGLIGENCE OR OTHER TORTIOUS ACTION, ARISING OUT OF OR +IN CONNECTION WITH THE USE OR PERFORMANCE OF THIS SOFTWARE. diff --git a/novas/novacore-zephyr/groq-code-cli/node_modules/isexe/README.md b/novas/novacore-zephyr/groq-code-cli/node_modules/isexe/README.md new file mode 100644 index 0000000000000000000000000000000000000000..35769e84408ce9076572c84e17d4a3f3eb611d08 --- /dev/null +++ b/novas/novacore-zephyr/groq-code-cli/node_modules/isexe/README.md @@ -0,0 +1,51 @@ +# isexe + +Minimal module to check if a file is executable, and a normal file. + +Uses `fs.stat` and tests against the `PATHEXT` environment variable on +Windows. + +## USAGE + +```javascript +var isexe = require('isexe') +isexe('some-file-name', function (err, isExe) { + if (err) { + console.error('probably file does not exist or something', err) + } else if (isExe) { + console.error('this thing can be run') + } else { + console.error('cannot be run') + } +}) + +// same thing but synchronous, throws errors +var isExe = isexe.sync('some-file-name') + +// treat errors as just "not executable" +isexe('maybe-missing-file', { ignoreErrors: true }, callback) +var isExe = isexe.sync('maybe-missing-file', { ignoreErrors: true }) +``` + +## API + +### `isexe(path, [options], [callback])` + +Check if the path is executable. If no callback provided, and a +global `Promise` object is available, then a Promise will be returned. + +Will raise whatever errors may be raised by `fs.stat`, unless +`options.ignoreErrors` is set to true. + +### `isexe.sync(path, [options])` + +Same as `isexe` but returns the value and throws any errors raised. + +### Options + +* `ignoreErrors` Treat all errors as "no, this is not executable", but + don't raise them. +* `uid` Number to use as the user id +* `gid` Number to use as the group id +* `pathExt` List of path extensions to use instead of `PATHEXT` + environment variable on Windows. diff --git a/novas/novacore-zephyr/groq-code-cli/node_modules/isexe/index.js b/novas/novacore-zephyr/groq-code-cli/node_modules/isexe/index.js new file mode 100644 index 0000000000000000000000000000000000000000..553fb32b119bdf2efaeffeefe1bef4bfd10f3e43 --- /dev/null +++ b/novas/novacore-zephyr/groq-code-cli/node_modules/isexe/index.js @@ -0,0 +1,57 @@ +var fs = require('fs') +var core +if (process.platform === 'win32' || global.TESTING_WINDOWS) { + core = require('./windows.js') +} else { + core = require('./mode.js') +} + +module.exports = isexe +isexe.sync = sync + +function isexe (path, options, cb) { + if (typeof options === 'function') { + cb = options + options = {} + } + + if (!cb) { + if (typeof Promise !== 'function') { + throw new TypeError('callback not provided') + } + + return new Promise(function (resolve, reject) { + isexe(path, options || {}, function (er, is) { + if (er) { + reject(er) + } else { + resolve(is) + } + }) + }) + } + + core(path, options || {}, function (er, is) { + // ignore EACCES because that just means we aren't allowed to run it + if (er) { + if (er.code === 'EACCES' || options && options.ignoreErrors) { + er = null + is = false + } + } + cb(er, is) + }) +} + +function sync (path, options) { + // my kingdom for a filtered catch + try { + return core.sync(path, options || {}) + } catch (er) { + if (options && options.ignoreErrors || er.code === 'EACCES') { + return false + } else { + throw er + } + } +} diff --git a/novas/novacore-zephyr/groq-code-cli/node_modules/isexe/mode.js b/novas/novacore-zephyr/groq-code-cli/node_modules/isexe/mode.js new file mode 100644 index 0000000000000000000000000000000000000000..1995ea4a06aec4c1506509b11f8e9ae941b86439 --- /dev/null +++ b/novas/novacore-zephyr/groq-code-cli/node_modules/isexe/mode.js @@ -0,0 +1,41 @@ +module.exports = isexe +isexe.sync = sync + +var fs = require('fs') + +function isexe (path, options, cb) { + fs.stat(path, function (er, stat) { + cb(er, er ? false : checkStat(stat, options)) + }) +} + +function sync (path, options) { + return checkStat(fs.statSync(path), options) +} + +function checkStat (stat, options) { + return stat.isFile() && checkMode(stat, options) +} + +function checkMode (stat, options) { + var mod = stat.mode + var uid = stat.uid + var gid = stat.gid + + var myUid = options.uid !== undefined ? + options.uid : process.getuid && process.getuid() + var myGid = options.gid !== undefined ? + options.gid : process.getgid && process.getgid() + + var u = parseInt('100', 8) + var g = parseInt('010', 8) + var o = parseInt('001', 8) + var ug = u | g + + var ret = (mod & o) || + (mod & g) && gid === myGid || + (mod & u) && uid === myUid || + (mod & ug) && myUid === 0 + + return ret +} diff --git a/novas/novacore-zephyr/groq-code-cli/node_modules/isexe/package.json b/novas/novacore-zephyr/groq-code-cli/node_modules/isexe/package.json new file mode 100644 index 0000000000000000000000000000000000000000..e452689442f2018bfa2b9ef3885cf4ce6a6e7912 --- /dev/null +++ b/novas/novacore-zephyr/groq-code-cli/node_modules/isexe/package.json @@ -0,0 +1,31 @@ +{ + "name": "isexe", + "version": "2.0.0", + "description": "Minimal module to check if a file is executable.", + "main": "index.js", + "directories": { + "test": "test" + }, + "devDependencies": { + "mkdirp": "^0.5.1", + "rimraf": "^2.5.0", + "tap": "^10.3.0" + }, + "scripts": { + "test": "tap test/*.js --100", + "preversion": "npm test", + "postversion": "npm publish", + "postpublish": "git push origin --all; git push origin --tags" + }, + "author": "Isaac Z. Schlueter (http://blog.izs.me/)", + "license": "ISC", + "repository": { + "type": "git", + "url": "git+https://github.com/isaacs/isexe.git" + }, + "keywords": [], + "bugs": { + "url": "https://github.com/isaacs/isexe/issues" + }, + "homepage": "https://github.com/isaacs/isexe#readme" +} diff --git a/novas/novacore-zephyr/groq-code-cli/node_modules/isexe/windows.js b/novas/novacore-zephyr/groq-code-cli/node_modules/isexe/windows.js new file mode 100644 index 0000000000000000000000000000000000000000..34996734d8ef3921c9590def676d79c58c06b61c --- /dev/null +++ b/novas/novacore-zephyr/groq-code-cli/node_modules/isexe/windows.js @@ -0,0 +1,42 @@ +module.exports = isexe +isexe.sync = sync + +var fs = require('fs') + +function checkPathExt (path, options) { + var pathext = options.pathExt !== undefined ? + options.pathExt : process.env.PATHEXT + + if (!pathext) { + return true + } + + pathext = pathext.split(';') + if (pathext.indexOf('') !== -1) { + return true + } + for (var i = 0; i < pathext.length; i++) { + var p = pathext[i].toLowerCase() + if (p && path.substr(-p.length).toLowerCase() === p) { + return true + } + } + return false +} + +function checkStat (stat, path, options) { + if (!stat.isSymbolicLink() && !stat.isFile()) { + return false + } + return checkPathExt(path, options) +} + +function isexe (path, options, cb) { + fs.stat(path, function (er, stat) { + cb(er, er ? false : checkStat(stat, path, options)) + }) +} + +function sync (path, options) { + return checkStat(fs.statSync(path), path, options) +} diff --git a/novas/novacore-zephyr/groq-code-cli/node_modules/iterator.prototype/.eslintrc b/novas/novacore-zephyr/groq-code-cli/node_modules/iterator.prototype/.eslintrc new file mode 100644 index 0000000000000000000000000000000000000000..2612ed8fefad45d3a68ae842a28e0353ebcb5cf1 --- /dev/null +++ b/novas/novacore-zephyr/groq-code-cli/node_modules/iterator.prototype/.eslintrc @@ -0,0 +1,13 @@ +{ + "root": true, + + "extends": "@ljharb", + + "rules": { + "new-cap": [2, { + "capIsNewExceptions": [ + "GetIntrinsic", + ], + }], + }, +} diff --git a/novas/novacore-zephyr/groq-code-cli/node_modules/iterator.prototype/CHANGELOG.md b/novas/novacore-zephyr/groq-code-cli/node_modules/iterator.prototype/CHANGELOG.md new file mode 100644 index 0000000000000000000000000000000000000000..58a63b64565cbba54bef0d44d73b8ab03ee73cc9 --- /dev/null +++ b/novas/novacore-zephyr/groq-code-cli/node_modules/iterator.prototype/CHANGELOG.md @@ -0,0 +1,71 @@ +# Changelog + +All notable changes to this project will be documented in this file. + +The format is based on [Keep a Changelog](https://keepachangelog.com/en/1.0.0/) +and this project adheres to [Semantic Versioning](https://semver.org/spec/v2.0.0.html). + +## [v1.1.5](https://github.com/ljharb/Iterator.prototype/compare/v1.1.4...v1.1.5) - 2025-01-01 + +### Commits + +- [Refactor] use `get-proto` directly [`c36361a`](https://github.com/ljharb/Iterator.prototype/commit/c36361a6a83b128c054cc8ebed15a16436332255) +- [Deps] update `reflect.getprototypeof` [`c3f9c2a`](https://github.com/ljharb/Iterator.prototype/commit/c3f9c2a4aa0b84585e4990f465ca28771337c4b9) + +## [v1.1.4](https://github.com/ljharb/Iterator.prototype/compare/v1.1.3...v1.1.4) - 2024-12-11 + +### Commits + +- [actions] split out node 10-20, and 20+ [`a6e7fa2`](https://github.com/ljharb/Iterator.prototype/commit/a6e7fa21e5f470551594db6caf497ac3a1e1aa29) +- [Refactor] use `define-data-property` directly instead of `define-properties` [`9c55a02`](https://github.com/ljharb/Iterator.prototype/commit/9c55a029f606e751deb3bcbca4cff622acf806bc) +- [Deps] update `get-intrinsic`, `has-symbols`, `reflect.getprototypeof`, `set-function-name` [`958fdf5`](https://github.com/ljharb/Iterator.prototype/commit/958fdf52e5a331a2c35d7c70ca51272e7800c2f9) +- [Dev Deps] update `@ljharb/eslint-config`, `auto-changelog`, `npmignore`, `tape` [`ab7c77d`](https://github.com/ljharb/Iterator.prototype/commit/ab7c77d7be8fe91b0a54b7e61eae85ba9c717bbe) +- [Robustness] use `es-object-atoms` [`ed8ee34`](https://github.com/ljharb/Iterator.prototype/commit/ed8ee3447ea912e6f915247d0245f59717ece94f) + +## [v1.1.3](https://github.com/ljharb/Iterator.prototype/compare/v1.1.2...v1.1.3) - 2024-10-08 + +### Commits + +- [Fix] in node 0.12 - 4, do not mutate Object.prototype [`4a4fa45`](https://github.com/ljharb/Iterator.prototype/commit/4a4fa458728ec2cb0c8e182956020989c7fb0573) +- [Tests] replace `aud` with `npm audit` [`ece6082`](https://github.com/ljharb/Iterator.prototype/commit/ece60822ffcd87c82db10add871cb9958c875e4f) +- [meta] add missing `engines.node` [`7ee3359`](https://github.com/ljharb/Iterator.prototype/commit/7ee335941706c5cebf940b541a73b4414fd47508) +- [Dev Deps] add missing peer dep [`fb90acc`](https://github.com/ljharb/Iterator.prototype/commit/fb90accee214ee8c40046edd6f90d6d0e983961a) + +## [v1.1.2](https://github.com/ljharb/Iterator.prototype/compare/v1.1.1...v1.1.2) - 2023-09-13 + +### Commits + +- [Fix] properly name `Iterator.prototype[Symbol.iterator]` method [`42ddaf7`](https://github.com/ljharb/Iterator.prototype/commit/42ddaf757d941ab3e5baf341ccb2598b8b86a1a1) +- [Deps] update `define-properties`, `reflect.getprototypeof` [`8b06aec`](https://github.com/ljharb/Iterator.prototype/commit/8b06aec1a6e79c14806a4ba1e783a2dc79de5e5d) + +## [v1.1.1](https://github.com/ljharb/Iterator.prototype/compare/v1.1.0...v1.1.1) - 2023-08-30 + +### Commits + +- [Fix] stop mutating node 4+ Iterator.prototype with Symbol.toStringTag [`74e9560`](https://github.com/ljharb/Iterator.prototype/commit/74e9560c10fcdadb207fea82577946976b9a87da) +- [Dev Deps] update `@ljharb/eslint-config`, `aud`, `tape` [`63fd269`](https://github.com/ljharb/Iterator.prototype/commit/63fd269da6a0a39f79bc48b887b7ec81b6e5e0a0) +- [Deps] update `define-properties`, `get-intrinsic` [`ef73f0e`](https://github.com/ljharb/Iterator.prototype/commit/ef73f0e78223e7eb09a987bc0614a802585e376a) + +## [v1.1.0](https://github.com/ljharb/Iterator.prototype/compare/v1.0.1...v1.1.0) - 2022-12-09 + +### Commits + +- [New] define `Symbol.toStringTag` [`d3f94aa`](https://github.com/ljharb/Iterator.prototype/commit/d3f94aaebf65eba391f702815216a32c5b6cbf18) + +## [v1.0.1](https://github.com/ljharb/Iterator.prototype/compare/v1.0.0...v1.0.1) - 2022-12-09 + +### Commits + +- [meta] fix repo URLs [`670823e`](https://github.com/ljharb/Iterator.prototype/commit/670823e0c547003a1006dcd0d27a22395a8dff1a) +- [Fix] move `has-symbols` to a runtime dep [`1b15df1`](https://github.com/ljharb/Iterator.prototype/commit/1b15df1dd481d9e12fbcf25f540b6ccfe9c51502) + +## v1.0.0 - 2022-12-05 + +### Commits + +- Initial implementation, tests, readme [`2db7663`](https://github.com/ljharb/Iterator.prototype/commit/2db76638655461506671b62ee97800288ae6d95b) +- Initial commit [`5c97994`](https://github.com/ljharb/Iterator.prototype/commit/5c979947a473848bf28d1bf286b813a6756a9700) +- npm init [`0c61e07`](https://github.com/ljharb/Iterator.prototype/commit/0c61e079e02b7604bfeaab3aa383171286bd4563) +- [meta] add `auto-changelog` [`8df6001`](https://github.com/ljharb/Iterator.prototype/commit/8df6001310793f8753fd776dc5db485e51624867) +- [meta] use `npmignore` to autogenerate an npmignore file [`d173afc`](https://github.com/ljharb/Iterator.prototype/commit/d173afcd7ef5bdfc1c5b9e90baf75885186a339e) +- Only apps should have lockfiles [`0fde03f`](https://github.com/ljharb/Iterator.prototype/commit/0fde03f141f5053fcba79a8bff09d410e25be201) diff --git a/novas/novacore-zephyr/groq-code-cli/node_modules/iterator.prototype/LICENSE b/novas/novacore-zephyr/groq-code-cli/node_modules/iterator.prototype/LICENSE new file mode 100644 index 0000000000000000000000000000000000000000..6abfe1434ebd5c15c245b9f0a7c25e36b581df19 --- /dev/null +++ b/novas/novacore-zephyr/groq-code-cli/node_modules/iterator.prototype/LICENSE @@ -0,0 +1,21 @@ +MIT License + +Copyright (c) 2022 Jordan Harband + +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. diff --git a/novas/novacore-zephyr/groq-code-cli/node_modules/iterator.prototype/README.md b/novas/novacore-zephyr/groq-code-cli/node_modules/iterator.prototype/README.md new file mode 100644 index 0000000000000000000000000000000000000000..978a362e11017d1f13f0e715826b0362f8c4a3ab --- /dev/null +++ b/novas/novacore-zephyr/groq-code-cli/node_modules/iterator.prototype/README.md @@ -0,0 +1,35 @@ +# iterator.prototype [![Version Badge][npm-version-svg]][package-url] + +[![github actions][actions-image]][actions-url] +[![coverage][codecov-image]][codecov-url] +[![License][license-image]][license-url] +[![Downloads][downloads-image]][downloads-url] + +[![npm badge][npm-badge-png]][package-url] + +`Iterator.prototype`, or a shared object to use. + +## Usage + +```javascript +var iterProto = require('iterator.prototype'); +var assert = require('assert'); + +assert.equal(Object.getPrototypeOf(Object.getPrototypeOf([].keys())), iterProto); +``` + +[package-url]: https://npmjs.org/package/iterator.prototype +[npm-version-svg]: https://versionbadg.es/ljharb/Iterator.prototype.svg +[deps-svg]: https://david-dm.org/ljharb/Iterator.prototype.svg +[deps-url]: https://david-dm.org/ljharb/Iterator.prototype +[dev-deps-svg]: https://david-dm.org/ljharb/Iterator.prototype/dev-status.svg +[dev-deps-url]: https://david-dm.org/ljharb/Iterator.prototype#info=devDependencies +[npm-badge-png]: https://nodei.co/npm/iterator.prototype.png?downloads=true&stars=true +[license-image]: https://img.shields.io/npm/l/iterator.prototype.svg +[license-url]: LICENSE +[downloads-image]: https://img.shields.io/npm/dm/iterator.prototype.svg +[downloads-url]: https://npm-stat.com/charts.html?package=iterator.prototype +[codecov-image]: https://codecov.io/gh/ljharb/Iterator.prototype/branch/main/graphs/badge.svg +[codecov-url]: https://app.codecov.io/gh/ljharb/Iterator.prototype/ +[actions-image]: https://img.shields.io/endpoint?url=https://github-actions-badge-u3jn4tfpocch.runkit.sh/ljharb/Iterator.prototype +[actions-url]: https://github.com/ljharb/Iterator.prototype/actions diff --git a/novas/novacore-zephyr/groq-code-cli/node_modules/iterator.prototype/index.js b/novas/novacore-zephyr/groq-code-cli/node_modules/iterator.prototype/index.js new file mode 100644 index 0000000000000000000000000000000000000000..65a999755d9875bc593d4070d73fb94015da7f94 --- /dev/null +++ b/novas/novacore-zephyr/groq-code-cli/node_modules/iterator.prototype/index.js @@ -0,0 +1,27 @@ +'use strict'; + +var GetIntrinsic = require('get-intrinsic'); +var gPO = require('get-proto'); +var hasSymbols = require('has-symbols'); +var setFunctionName = require('set-function-name'); +var defineDataProperty = require('define-data-property'); +var $Object = require('es-object-atoms'); + +var arrayIterProto = GetIntrinsic('%ArrayIteratorPrototype%', true); + +var iterProto = arrayIterProto && gPO(arrayIterProto); + +var result = (iterProto !== $Object.prototype && iterProto) || {}; + +if (hasSymbols()) { + if (!(Symbol.iterator in result)) { + // needed when result === iterProto, or, node 0.11.15 - 3 + var iter = setFunctionName(function SymbolIterator() { + return this; + }, '[Symbol.iterator]', true); + + defineDataProperty(result, Symbol.iterator, iter, true); + } +} + +module.exports = result; diff --git a/novas/novacore-zephyr/groq-code-cli/node_modules/iterator.prototype/package.json b/novas/novacore-zephyr/groq-code-cli/node_modules/iterator.prototype/package.json new file mode 100644 index 0000000000000000000000000000000000000000..ec236822d351ae0d54ca3a79dacc34d42bd0a240 --- /dev/null +++ b/novas/novacore-zephyr/groq-code-cli/node_modules/iterator.prototype/package.json @@ -0,0 +1,77 @@ +{ + "name": "iterator.prototype", + "version": "1.1.5", + "description": "`Iterator.prototype`, or a shared object to use.", + "main": "index.js", + "exports": { + ".": "./index.js", + "./package.json": "./package.json" + }, + "scripts": { + "prepack": "npmignore --auto --commentLines=autogenerated", + "prepublishOnly": "safe-publish-latest", + "prepublish": "not-in-publish || npm run prepublishOnly", + "prelint": "evalmd README.md", + "lint": "eslint --ext=js,mjs .", + "pretest": "npm run lint", + "tests-only": "tape 'test/**/*.js'", + "test": "npm run tests-only", + "posttest": "npx npm@'>=10.2' audit --production", + "version": "auto-changelog && git add CHANGELOG.md", + "postversion": "auto-changelog && git add CHANGELOG.md && git commit --no-edit --amend && git tag -f \"v$(node -e \"console.log(require('./package.json').version)\")\"" + }, + "repository": { + "type": "git", + "url": "git+https://github.com/ljharb/Iterator.prototype.git" + }, + "keywords": [ + "javascript", + "ecmascript", + "iterator", + "prototype" + ], + "author": "Jordan Harband ", + "license": "MIT", + "bugs": { + "url": "https://github.com/ljharb/Iterator.prototype/issues" + }, + "homepage": "https://github.com/ljharb/Iterator.prototype#readme", + "dependencies": { + "define-data-property": "^1.1.4", + "es-object-atoms": "^1.0.0", + "get-intrinsic": "^1.2.6", + "get-proto": "^1.0.0", + "has-symbols": "^1.1.0", + "set-function-name": "^2.0.2" + }, + "devDependencies": { + "@ljharb/eslint-config": "^21.1.1", + "auto-changelog": "^2.5.0", + "encoding": "^0.1.13", + "eslint": "=8.8.0", + "evalmd": "^0.0.19", + "in-publish": "^2.0.1", + "npmignore": "^0.3.1", + "safe-publish-latest": "^2.0.0", + "tape": "^5.9.0" + }, + "testling": { + "files": "test/index.js" + }, + "auto-changelog": { + "output": "CHANGELOG.md", + "template": "keepachangelog", + "unreleased": false, + "commitLimit": false, + "backfillLimit": false, + "hideCredit": true + }, + "publishConfig": { + "ignore": [ + ".github/workflows" + ] + }, + "engines": { + "node": ">= 0.4" + } +} diff --git a/novas/novacore-zephyr/groq-code-cli/node_modules/js-string-escape/CHANGELOG.md b/novas/novacore-zephyr/groq-code-cli/node_modules/js-string-escape/CHANGELOG.md new file mode 100644 index 0000000000000000000000000000000000000000..4318bf933300f95e7e2244e169f4b5d709c5cf5c --- /dev/null +++ b/novas/novacore-zephyr/groq-code-cli/node_modules/js-string-escape/CHANGELOG.md @@ -0,0 +1,13 @@ +# master + +# 1.0.1 + +* Exclude unused files from npm distribution + +# 1.0.0 + +* No change; version bumped to indicate that this package is considered stable + +# 0.0.1 + +* Initial release diff --git a/novas/novacore-zephyr/groq-code-cli/node_modules/js-string-escape/LICENSE b/novas/novacore-zephyr/groq-code-cli/node_modules/js-string-escape/LICENSE new file mode 100644 index 0000000000000000000000000000000000000000..4ce04998167c2f1822aae8ea859e3b683b00d544 --- /dev/null +++ b/novas/novacore-zephyr/groq-code-cli/node_modules/js-string-escape/LICENSE @@ -0,0 +1,21 @@ +The MIT License (MIT) + +Copyright (c) 2013 Jo Liss + +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. diff --git a/novas/novacore-zephyr/groq-code-cli/node_modules/js-string-escape/README.md b/novas/novacore-zephyr/groq-code-cli/node_modules/js-string-escape/README.md new file mode 100644 index 0000000000000000000000000000000000000000..3147c1b346e8f31afa67cef24989e53bbcd69242 --- /dev/null +++ b/novas/novacore-zephyr/groq-code-cli/node_modules/js-string-escape/README.md @@ -0,0 +1,44 @@ +# js-string-escape + +[![Build Status](https://travis-ci.org/joliss/js-string-escape.png?branch=master)](https://travis-ci.org/joliss/js-string-escape) + +Escape any string to be a valid JavaScript string literal between double +quotes or single quotes. + +## Installation + +``` +npm install js-string-escape +``` + +## Example + +If you need to generate JavaScript output, this library will help you safely +put arbitrary data in JavaScript strings: + +```js +jsStringEscape = require('js-string-escape') + +console.log('"' + jsStringEscape('Quotes (\", \'), newlines (\n), etc.') + '"') +// => "Quotes (\", \'), newlines (\n), etc." +``` + +In other words, given any string `s`, the following invariants hold: + +```js +eval('"' + jsStringEscape(s) + '"') === s +eval("'" + jsStringEscape(s) + "'") === s +``` + +These `eval` expressions are safe with untrusted strings `s`. + +Non-strings will be cast to strings. + +## Compliance + +This library has been checked against [ECMAScript +5.1](http://www.ecma-international.org/ecma-262/5.1/#sec-7.8.4) and tested +against all Unicode code points. + +Note that the returned string is not necessarily valid JSON, since JSON +disallows control characters, and `\'` is illegal in JSON. diff --git a/novas/novacore-zephyr/groq-code-cli/node_modules/js-string-escape/index.js b/novas/novacore-zephyr/groq-code-cli/node_modules/js-string-escape/index.js new file mode 100644 index 0000000000000000000000000000000000000000..256fdf4dc90ee1c998aada1f473350ed2bd8a8b2 --- /dev/null +++ b/novas/novacore-zephyr/groq-code-cli/node_modules/js-string-escape/index.js @@ -0,0 +1,22 @@ +module.exports = function (string) { + return ('' + string).replace(/["'\\\n\r\u2028\u2029]/g, function (character) { + // Escape all characters not included in SingleStringCharacters and + // DoubleStringCharacters on + // http://www.ecma-international.org/ecma-262/5.1/#sec-7.8.4 + switch (character) { + case '"': + case "'": + case '\\': + return '\\' + character + // Four possible LineTerminator characters need to be escaped: + case '\n': + return '\\n' + case '\r': + return '\\r' + case '\u2028': + return '\\u2028' + case '\u2029': + return '\\u2029' + } + }) +} diff --git a/novas/novacore-zephyr/groq-code-cli/node_modules/js-string-escape/package.json b/novas/novacore-zephyr/groq-code-cli/node_modules/js-string-escape/package.json new file mode 100644 index 0000000000000000000000000000000000000000..fc2be31ae9b98420a4bdbe1c86f431f5d53b811f --- /dev/null +++ b/novas/novacore-zephyr/groq-code-cli/node_modules/js-string-escape/package.json @@ -0,0 +1,38 @@ +{ + "name": "js-string-escape", + "version": "1.0.1", + "description": "Escape strings for use as JavaScript string literals", + "main": "index.js", + "scripts": { + "test": "tap test" + }, + "repository": { + "type": "git", + "url": "https://github.com/joliss/js-string-escape" + }, + "keywords": [ + "string", + "escape", + "backslash", + "javascript", + "ecmascript" + ], + "author": "Jo Liss ", + "contributors": [ + { + "name": "Mathias Bynens", + "url": "http://mathiasbynens.be/" + } + ], + "license": "MIT", + "devDependencies" : { + "tap": "~> 0.4.2", + "punycode": "~> 1.2.1" + }, + "engines": { + "node": ">= 0.8" + }, + "files": [ + "index.js" + ] +} diff --git a/novas/novacore-zephyr/groq-code-cli/node_modules/js-tokens/CHANGELOG.md b/novas/novacore-zephyr/groq-code-cli/node_modules/js-tokens/CHANGELOG.md new file mode 100644 index 0000000000000000000000000000000000000000..755e6f6ec82ec715a1bcb407608bbb6dab3ab7b7 --- /dev/null +++ b/novas/novacore-zephyr/groq-code-cli/node_modules/js-tokens/CHANGELOG.md @@ -0,0 +1,151 @@ +### Version 4.0.0 (2018-01-28) ### + +- Added: Support for ES2018. The only change needed was recognizing the `s` + regex flag. +- Changed: _All_ tokens returned by the `matchToToken` function now have a + `closed` property. It is set to `undefined` for the tokens where “closed” + doesn’t make sense. This means that all tokens objects have the same shape, + which might improve performance. + +These are the breaking changes: + +- `'/a/s'.match(jsTokens)` no longer returns `['/', 'a', '/', 's']`, but + `['/a/s']`. (There are of course other variations of this.) +- Code that rely on some token objects not having the `closed` property could + now behave differently. + + +### Version 3.0.2 (2017-06-28) ### + +- No code changes. Just updates to the readme. + + +### Version 3.0.1 (2017-01-30) ### + +- Fixed: ES2015 unicode escapes with more than 6 hex digits are now matched + correctly. + + +### Version 3.0.0 (2017-01-11) ### + +This release contains one breaking change, that should [improve performance in +V8][v8-perf]: + +> So how can you, as a JavaScript developer, ensure that your RegExps are fast? +> If you are not interested in hooking into RegExp internals, make sure that +> neither the RegExp instance, nor its prototype is modified in order to get the +> best performance: +> +> ```js +> var re = /./g; +> re.exec(''); // Fast path. +> re.new_property = 'slow'; +> ``` + +This module used to export a single regex, with `.matchToToken` bolted +on, just like in the above example. This release changes the exports of +the module to avoid this issue. + +Before: + +```js +import jsTokens from "js-tokens" +// or: +var jsTokens = require("js-tokens") +var matchToToken = jsTokens.matchToToken +``` + +After: + +```js +import jsTokens, {matchToToken} from "js-tokens" +// or: +var jsTokens = require("js-tokens").default +var matchToToken = require("js-tokens").matchToToken +``` + +[v8-perf]: http://v8project.blogspot.se/2017/01/speeding-up-v8-regular-expressions.html + + +### Version 2.0.0 (2016-06-19) ### + +- Added: Support for ES2016. In other words, support for the `**` exponentiation + operator. + +These are the breaking changes: + +- `'**'.match(jsTokens)` no longer returns `['*', '*']`, but `['**']`. +- `'**='.match(jsTokens)` no longer returns `['*', '*=']`, but `['**=']`. + + +### Version 1.0.3 (2016-03-27) ### + +- Improved: Made the regex ever so slightly smaller. +- Updated: The readme. + + +### Version 1.0.2 (2015-10-18) ### + +- Improved: Limited npm package contents for a smaller download. Thanks to + @zertosh! + + +### Version 1.0.1 (2015-06-20) ### + +- Fixed: Declared an undeclared variable. + + +### Version 1.0.0 (2015-02-26) ### + +- Changed: Merged the 'operator' and 'punctuation' types into 'punctuator'. That + type is now equivalent to the Punctuator token in the ECMAScript + specification. (Backwards-incompatible change.) +- Fixed: A `-` followed by a number is now correctly matched as a punctuator + followed by a number. It used to be matched as just a number, but there is no + such thing as negative number literals. (Possibly backwards-incompatible + change.) + + +### Version 0.4.1 (2015-02-21) ### + +- Added: Support for the regex `u` flag. + + +### Version 0.4.0 (2015-02-21) ### + +- Improved: `jsTokens.matchToToken` performance. +- Added: Support for octal and binary number literals. +- Added: Support for template strings. + + +### Version 0.3.1 (2015-01-06) ### + +- Fixed: Support for unicode spaces. They used to be allowed in names (which is + very confusing), and some unicode newlines were wrongly allowed in strings and + regexes. + + +### Version 0.3.0 (2014-12-19) ### + +- Changed: The `jsTokens.names` array has been replaced with the + `jsTokens.matchToToken` function. The capturing groups of `jsTokens` are no + longer part of the public API; instead use said function. See this [gist] for + an example. (Backwards-incompatible change.) +- Changed: The empty string is now considered an “invalid” token, instead an + “empty” token (its own group). (Backwards-incompatible change.) +- Removed: component support. (Backwards-incompatible change.) + +[gist]: https://gist.github.com/lydell/be49dbf80c382c473004 + + +### Version 0.2.0 (2014-06-19) ### + +- Changed: Match ES6 function arrows (`=>`) as an operator, instead of its own + category (“functionArrow”), for simplicity. (Backwards-incompatible change.) +- Added: ES6 splats (`...`) are now matched as an operator (instead of three + punctuations). (Backwards-incompatible change.) + + +### Version 0.1.0 (2014-03-08) ### + +- Initial release. diff --git a/novas/novacore-zephyr/groq-code-cli/node_modules/js-tokens/LICENSE b/novas/novacore-zephyr/groq-code-cli/node_modules/js-tokens/LICENSE new file mode 100644 index 0000000000000000000000000000000000000000..54aef52f3a464e59316eca4068f24717a40b0ec0 --- /dev/null +++ b/novas/novacore-zephyr/groq-code-cli/node_modules/js-tokens/LICENSE @@ -0,0 +1,21 @@ +The MIT License (MIT) + +Copyright (c) 2014, 2015, 2016, 2017, 2018 Simon Lydell + +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. diff --git a/novas/novacore-zephyr/groq-code-cli/node_modules/js-tokens/README.md b/novas/novacore-zephyr/groq-code-cli/node_modules/js-tokens/README.md new file mode 100644 index 0000000000000000000000000000000000000000..00cdf1634db1d9385ddb795e8814cd286cac43f6 --- /dev/null +++ b/novas/novacore-zephyr/groq-code-cli/node_modules/js-tokens/README.md @@ -0,0 +1,240 @@ +Overview [![Build Status](https://travis-ci.org/lydell/js-tokens.svg?branch=master)](https://travis-ci.org/lydell/js-tokens) +======== + +A regex that tokenizes JavaScript. + +```js +var jsTokens = require("js-tokens").default + +var jsString = "var foo=opts.foo;\n..." + +jsString.match(jsTokens) +// ["var", " ", "foo", "=", "opts", ".", "foo", ";", "\n", ...] +``` + + +Installation +============ + +`npm install js-tokens` + +```js +import jsTokens from "js-tokens" +// or: +var jsTokens = require("js-tokens").default +``` + + +Usage +===== + +### `jsTokens` ### + +A regex with the `g` flag that matches JavaScript tokens. + +The regex _always_ matches, even invalid JavaScript and the empty string. + +The next match is always directly after the previous. + +### `var token = matchToToken(match)` ### + +```js +import {matchToToken} from "js-tokens" +// or: +var matchToToken = require("js-tokens").matchToToken +``` + +Takes a `match` returned by `jsTokens.exec(string)`, and returns a `{type: +String, value: String}` object. The following types are available: + +- string +- comment +- regex +- number +- name +- punctuator +- whitespace +- invalid + +Multi-line comments and strings also have a `closed` property indicating if the +token was closed or not (see below). + +Comments and strings both come in several flavors. To distinguish them, check if +the token starts with `//`, `/*`, `'`, `"` or `` ` ``. + +Names are ECMAScript IdentifierNames, that is, including both identifiers and +keywords. You may use [is-keyword-js] to tell them apart. + +Whitespace includes both line terminators and other whitespace. + +[is-keyword-js]: https://github.com/crissdev/is-keyword-js + + +ECMAScript support +================== + +The intention is to always support the latest ECMAScript version whose feature +set has been finalized. + +If adding support for a newer version requires changes, a new version with a +major verion bump will be released. + +Currently, ECMAScript 2018 is supported. + + +Invalid code handling +===================== + +Unterminated strings are still matched as strings. JavaScript strings cannot +contain (unescaped) newlines, so unterminated strings simply end at the end of +the line. Unterminated template strings can contain unescaped newlines, though, +so they go on to the end of input. + +Unterminated multi-line comments are also still matched as comments. They +simply go on to the end of the input. + +Unterminated regex literals are likely matched as division and whatever is +inside the regex. + +Invalid ASCII characters have their own capturing group. + +Invalid non-ASCII characters are treated as names, to simplify the matching of +names (except unicode spaces which are treated as whitespace). Note: See also +the [ES2018](#es2018) section. + +Regex literals may contain invalid regex syntax. They are still matched as +regex literals. They may also contain repeated regex flags, to keep the regex +simple. + +Strings may contain invalid escape sequences. + + +Limitations +=========== + +Tokenizing JavaScript using regexes—in fact, _one single regex_—won’t be +perfect. But that’s not the point either. + +You may compare jsTokens with [esprima] by using `esprima-compare.js`. +See `npm run esprima-compare`! + +[esprima]: http://esprima.org/ + +### Template string interpolation ### + +Template strings are matched as single tokens, from the starting `` ` `` to the +ending `` ` ``, including interpolations (whose tokens are not matched +individually). + +Matching template string interpolations requires recursive balancing of `{` and +`}`—something that JavaScript regexes cannot do. Only one level of nesting is +supported. + +### Division and regex literals collision ### + +Consider this example: + +```js +var g = 9.82 +var number = bar / 2/g + +var regex = / 2/g +``` + +A human can easily understand that in the `number` line we’re dealing with +division, and in the `regex` line we’re dealing with a regex literal. How come? +Because humans can look at the whole code to put the `/` characters in context. +A JavaScript regex cannot. It only sees forwards. (Well, ES2018 regexes can also +look backwards. See the [ES2018](#es2018) section). + +When the `jsTokens` regex scans throught the above, it will see the following +at the end of both the `number` and `regex` rows: + +```js +/ 2/g +``` + +It is then impossible to know if that is a regex literal, or part of an +expression dealing with division. + +Here is a similar case: + +```js +foo /= 2/g +foo(/= 2/g) +``` + +The first line divides the `foo` variable with `2/g`. The second line calls the +`foo` function with the regex literal `/= 2/g`. Again, since `jsTokens` only +sees forwards, it cannot tell the two cases apart. + +There are some cases where we _can_ tell division and regex literals apart, +though. + +First off, we have the simple cases where there’s only one slash in the line: + +```js +var foo = 2/g +foo /= 2 +``` + +Regex literals cannot contain newlines, so the above cases are correctly +identified as division. Things are only problematic when there are more than +one non-comment slash in a single line. + +Secondly, not every character is a valid regex flag. + +```js +var number = bar / 2/e +``` + +The above example is also correctly identified as division, because `e` is not a +valid regex flag. I initially wanted to future-proof by allowing `[a-zA-Z]*` +(any letter) as flags, but it is not worth it since it increases the amount of +ambigous cases. So only the standard `g`, `m`, `i`, `y` and `u` flags are +allowed. This means that the above example will be identified as division as +long as you don’t rename the `e` variable to some permutation of `gmiyus` 1 to 6 +characters long. + +Lastly, we can look _forward_ for information. + +- If the token following what looks like a regex literal is not valid after a + regex literal, but is valid in a division expression, then the regex literal + is treated as division instead. For example, a flagless regex cannot be + followed by a string, number or name, but all of those three can be the + denominator of a division. +- Generally, if what looks like a regex literal is followed by an operator, the + regex literal is treated as division instead. This is because regexes are + seldomly used with operators (such as `+`, `*`, `&&` and `==`), but division + could likely be part of such an expression. + +Please consult the regex source and the test cases for precise information on +when regex or division is matched (should you need to know). In short, you +could sum it up as: + +If the end of a statement looks like a regex literal (even if it isn’t), it +will be treated as one. Otherwise it should work as expected (if you write sane +code). + +### ES2018 ### + +ES2018 added some nice regex improvements to the language. + +- [Unicode property escapes] should allow telling names and invalid non-ASCII + characters apart without blowing up the regex size. +- [Lookbehind assertions] should allow matching telling division and regex + literals apart in more cases. +- [Named capture groups] might simplify some things. + +These things would be nice to do, but are not critical. They probably have to +wait until the oldest maintained Node.js LTS release supports those features. + +[Unicode property escapes]: http://2ality.com/2017/07/regexp-unicode-property-escapes.html +[Lookbehind assertions]: http://2ality.com/2017/05/regexp-lookbehind-assertions.html +[Named capture groups]: http://2ality.com/2017/05/regexp-named-capture-groups.html + + +License +======= + +[MIT](LICENSE). diff --git a/novas/novacore-zephyr/groq-code-cli/node_modules/js-tokens/index.js b/novas/novacore-zephyr/groq-code-cli/node_modules/js-tokens/index.js new file mode 100644 index 0000000000000000000000000000000000000000..b23a4a0e7f4527221c37e5f3d0b8176878f0f600 --- /dev/null +++ b/novas/novacore-zephyr/groq-code-cli/node_modules/js-tokens/index.js @@ -0,0 +1,23 @@ +// Copyright 2014, 2015, 2016, 2017, 2018 Simon Lydell +// License: MIT. (See LICENSE.) + +Object.defineProperty(exports, "__esModule", { + value: true +}) + +// This regex comes from regex.coffee, and is inserted here by generate-index.js +// (run `npm run build`). +exports.default = /((['"])(?:(?!\2|\\).|\\(?:\r\n|[\s\S]))*(\2)?|`(?:[^`\\$]|\\[\s\S]|\$(?!\{)|\$\{(?:[^{}]|\{[^}]*\}?)*\}?)*(`)?)|(\/\/.*)|(\/\*(?:[^*]|\*(?!\/))*(\*\/)?)|(\/(?!\*)(?:\[(?:(?![\]\\]).|\\.)*\]|(?![\/\]\\]).|\\.)+\/(?:(?!\s*(?:\b|[\u0080-\uFFFF$\\'"~({]|[+\-!](?!=)|\.?\d))|[gmiyus]{1,6}\b(?![\u0080-\uFFFF$\\]|\s*(?:[+\-*%&|^<>!=?({]|\/(?![\/*])))))|(0[xX][\da-fA-F]+|0[oO][0-7]+|0[bB][01]+|(?:\d*\.\d+|\d+\.?)(?:[eE][+-]?\d+)?)|((?!\d)(?:(?!\s)[$\w\u0080-\uFFFF]|\\u[\da-fA-F]{4}|\\u\{[\da-fA-F]+\})+)|(--|\+\+|&&|\|\||=>|\.{3}|(?:[+\-\/%&|^]|\*{1,2}|<{1,2}|>{1,3}|!=?|={1,2})=?|[?~.,:;[\](){}])|(\s+)|(^$|[\s\S])/g + +exports.matchToToken = function(match) { + var token = {type: "invalid", value: match[0], closed: undefined} + if (match[ 1]) token.type = "string" , token.closed = !!(match[3] || match[4]) + else if (match[ 5]) token.type = "comment" + else if (match[ 6]) token.type = "comment", token.closed = !!match[7] + else if (match[ 8]) token.type = "regex" + else if (match[ 9]) token.type = "number" + else if (match[10]) token.type = "name" + else if (match[11]) token.type = "punctuator" + else if (match[12]) token.type = "whitespace" + return token +} diff --git a/novas/novacore-zephyr/groq-code-cli/node_modules/js-tokens/package.json b/novas/novacore-zephyr/groq-code-cli/node_modules/js-tokens/package.json new file mode 100644 index 0000000000000000000000000000000000000000..66752fab275101253f6ff42463b8765ad9e3ae41 --- /dev/null +++ b/novas/novacore-zephyr/groq-code-cli/node_modules/js-tokens/package.json @@ -0,0 +1,30 @@ +{ + "name": "js-tokens", + "version": "4.0.0", + "author": "Simon Lydell", + "license": "MIT", + "description": "A regex that tokenizes JavaScript.", + "keywords": [ + "JavaScript", + "js", + "token", + "tokenize", + "regex" + ], + "files": [ + "index.js" + ], + "repository": "lydell/js-tokens", + "scripts": { + "test": "mocha --ui tdd", + "esprima-compare": "node esprima-compare ./index.js everything.js/es5.js", + "build": "node generate-index.js", + "dev": "npm run build && npm test" + }, + "devDependencies": { + "coffeescript": "2.1.1", + "esprima": "4.0.0", + "everything.js": "1.0.3", + "mocha": "5.0.0" + } +} diff --git a/novas/novacore-zephyr/groq-code-cli/node_modules/js-types/js-types.json b/novas/novacore-zephyr/groq-code-cli/node_modules/js-types/js-types.json new file mode 100644 index 0000000000000000000000000000000000000000..5aff6a72f1dc59a21baa094792cf1bb17fd3b5aa --- /dev/null +++ b/novas/novacore-zephyr/groq-code-cli/node_modules/js-types/js-types.json @@ -0,0 +1,28 @@ +[ + "Array", + "ArrayBuffer", + "Boolean", + "DataView", + "Date", + "Error", + "Float32Array", + "Float64Array", + "Function", + "Int16Array", + "Int32Array", + "Int8Array", + "Map", + "Number", + "Object", + "Promise", + "RegExp", + "Set", + "String", + "Symbol", + "Uint16Array", + "Uint32Array", + "Uint8Array", + "Uint8ClampedArray", + "WeakMap", + "WeakSet" +] diff --git a/novas/novacore-zephyr/groq-code-cli/node_modules/js-types/license b/novas/novacore-zephyr/groq-code-cli/node_modules/js-types/license new file mode 100644 index 0000000000000000000000000000000000000000..654d0bfe943437d43242325b1fbcff5f400d84ee --- /dev/null +++ b/novas/novacore-zephyr/groq-code-cli/node_modules/js-types/license @@ -0,0 +1,21 @@ +The MIT License (MIT) + +Copyright (c) Sindre Sorhus (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. diff --git a/novas/novacore-zephyr/groq-code-cli/node_modules/js-types/package.json b/novas/novacore-zephyr/groq-code-cli/node_modules/js-types/package.json new file mode 100644 index 0000000000000000000000000000000000000000..0c1949a732042e4580e939274dbbca558b609780 --- /dev/null +++ b/novas/novacore-zephyr/groq-code-cli/node_modules/js-types/package.json @@ -0,0 +1,38 @@ +{ + "name": "js-types", + "version": "1.0.0", + "description": "List of JavaScript types", + "license": "MIT", + "repository": "sindresorhus/js-types", + "author": { + "name": "Sindre Sorhus", + "email": "sindresorhus@gmail.com", + "url": "sindresorhus.com" + }, + "engines": { + "node": ">=0.10.0" + }, + "scripts": { + "test": "xo && node test.js" + }, + "main": "js-types.json", + "files": [ + "js-types.json" + ], + "keywords": [ + "js", + "javascript", + "ecmascript", + "builtin", + "types", + "type", + "data", + "list", + "array", + "json" + ], + "devDependencies": { + "ava": "0.0.4", + "xo": "*" + } +} diff --git a/novas/novacore-zephyr/groq-code-cli/node_modules/js-types/readme.md b/novas/novacore-zephyr/groq-code-cli/node_modules/js-types/readme.md new file mode 100644 index 0000000000000000000000000000000000000000..092b2282fcc6e826a5941517abfbd53b7fa1f62e --- /dev/null +++ b/novas/novacore-zephyr/groq-code-cli/node_modules/js-types/readme.md @@ -0,0 +1,27 @@ +# js-types [![Build Status](https://travis-ci.org/sindresorhus/js-types.svg?branch=master)](https://travis-ci.org/sindresorhus/js-types) + +> List of [JavaScript types](https://developer.mozilla.org/en-US/docs/Web/JavaScript/Data_structures) + +The list is just a [JSON file](js-types.json) and can be used wherever. + + +## Install + +``` +$ npm install --save js-types +``` + + +## Usage + +```js +var jsTypes = require('js-types'); + +console.log(jsTypes); +//=> ['Array', 'ArrayBuffer', 'Boolean', ...] +``` + + +## License + +MIT © [Sindre Sorhus](http://sindresorhus.com) diff --git a/novas/novacore-zephyr/groq-code-cli/node_modules/js-yaml/CHANGELOG.md b/novas/novacore-zephyr/groq-code-cli/node_modules/js-yaml/CHANGELOG.md new file mode 100644 index 0000000000000000000000000000000000000000..ff2375e055dd221a18c0d1d76ee0073bcd0a33ec --- /dev/null +++ b/novas/novacore-zephyr/groq-code-cli/node_modules/js-yaml/CHANGELOG.md @@ -0,0 +1,616 @@ +# Changelog + +All notable changes to this project will be documented in this file. + +The format is based on [Keep a Changelog](https://keepachangelog.com/en/1.0.0/), +and this project adheres to [Semantic Versioning](https://semver.org/spec/v2.0.0.html). + + +## [4.1.0] - 2021-04-15 +### Added +- Types are now exported as `yaml.types.XXX`. +- Every type now has `options` property with original arguments kept as they were + (see `yaml.types.int.options` as an example). + +### Changed +- `Schema.extend()` now keeps old type order in case of conflicts + (e.g. Schema.extend([ a, b, c ]).extend([ b, a, d ]) is now ordered as `abcd` instead of `cbad`). + + +## [4.0.0] - 2021-01-03 +### Changed +- Check [migration guide](migrate_v3_to_v4.md) to see details for all breaking changes. +- Breaking: "unsafe" tags `!!js/function`, `!!js/regexp`, `!!js/undefined` are + moved to [js-yaml-js-types](https://github.com/nodeca/js-yaml-js-types) package. +- Breaking: removed `safe*` functions. Use `load`, `loadAll`, `dump` + instead which are all now safe by default. +- `yaml.DEFAULT_SAFE_SCHEMA` and `yaml.DEFAULT_FULL_SCHEMA` are removed, use + `yaml.DEFAULT_SCHEMA` instead. +- `yaml.Schema.create(schema, tags)` is removed, use `schema.extend(tags)` instead. +- `!!binary` now always mapped to `Uint8Array` on load. +- Reduced nesting of `/lib` folder. +- Parse numbers according to YAML 1.2 instead of YAML 1.1 (`01234` is now decimal, + `0o1234` is octal, `1:23` is parsed as string instead of base60). +- `dump()` no longer quotes `:`, `[`, `]`, `(`, `)` except when necessary, #470, #557. +- Line and column in exceptions are now formatted as `(X:Y)` instead of + `at line X, column Y` (also present in compact format), #332. +- Code snippet created in exceptions now contains multiple lines with line numbers. +- `dump()` now serializes `undefined` as `null` in collections and removes keys with + `undefined` in mappings, #571. +- `dump()` with `skipInvalid=true` now serializes invalid items in collections as null. +- Custom tags starting with `!` are now dumped as `!tag` instead of `!`, #576. +- Custom tags starting with `tag:yaml.org,2002:` are now shorthanded using `!!`, #258. + +### Added +- Added `.mjs` (es modules) support. +- Added `quotingType` and `forceQuotes` options for dumper to configure + string literal style, #290, #529. +- Added `styles: { '!!null': 'empty' }` option for dumper + (serializes `{ foo: null }` as "`foo: `"), #570. +- Added `replacer` option (similar to option in JSON.stringify), #339. +- Custom `Tag` can now handle all tags or multiple tags with the same prefix, #385. + +### Fixed +- Astral characters are no longer encoded by `dump()`, #587. +- "duplicate mapping key" exception now points at the correct column, #452. +- Extra commas in flow collections (e.g. `[foo,,bar]`) now throw an exception + instead of producing null, #321. +- `__proto__` key no longer overrides object prototype, #164. +- Removed `bower.json`. +- Tags are now url-decoded in `load()` and url-encoded in `dump()` + (previously usage of custom non-ascii tags may have led to invalid YAML that can't be parsed). +- Anchors now work correctly with empty nodes, #301. +- Fix incorrect parsing of invalid block mapping syntax, #418. +- Throw an error if block sequence/mapping indent contains a tab, #80. + + +## [3.14.1] - 2020-12-07 +### Security +- Fix possible code execution in (already unsafe) `.load()` (in &anchor). + + +## [3.14.0] - 2020-05-22 +### Changed +- Support `safe/loadAll(input, options)` variant of call. +- CI: drop outdated nodejs versions. +- Dev deps bump. + +### Fixed +- Quote `=` in plain scalars #519. +- Check the node type for `!` tag in case user manually specifies it. +- Verify that there are no null-bytes in input. +- Fix wrong quote position when writing condensed flow, #526. + + +## [3.13.1] - 2019-04-05 +### Security +- Fix possible code execution in (already unsafe) `.load()`, #480. + + +## [3.13.0] - 2019-03-20 +### Security +- Security fix: `safeLoad()` can hang when arrays with nested refs + used as key. Now throws exception for nested arrays. #475. + + +## [3.12.2] - 2019-02-26 +### Fixed +- Fix `noArrayIndent` option for root level, #468. + + +## [3.12.1] - 2019-01-05 +### Added +- Added `noArrayIndent` option, #432. + + +## [3.12.0] - 2018-06-02 +### Changed +- Support arrow functions without a block statement, #421. + + +## [3.11.0] - 2018-03-05 +### Added +- Add arrow functions suport for `!!js/function`. + +### Fixed +- Fix dump in bin/octal/hex formats for negative integers, #399. + + +## [3.10.0] - 2017-09-10 +### Fixed +- Fix `condenseFlow` output (quote keys for sure, instead of spaces), #371, #370. +- Dump astrals as codepoints instead of surrogate pair, #368. + + +## [3.9.1] - 2017-07-08 +### Fixed +- Ensure stack is present for custom errors in node 7.+, #351. + + +## [3.9.0] - 2017-07-08 +### Added +- Add `condenseFlow` option (to create pretty URL query params), #346. + +### Fixed +- Support array return from safeLoadAll/loadAll, #350. + + +## [3.8.4] - 2017-05-08 +### Fixed +- Dumper: prevent space after dash for arrays that wrap, #343. + + +## [3.8.3] - 2017-04-05 +### Fixed +- Should not allow numbers to begin and end with underscore, #335. + + +## [3.8.2] - 2017-03-02 +### Fixed +- Fix `!!float 123` (integers) parse, #333. +- Don't allow leading zeros in floats (except 0, 0.xxx). +- Allow positive exponent without sign in floats. + + +## [3.8.1] - 2017-02-07 +### Changed +- Maintenance: update browserified build. + + +## [3.8.0] - 2017-02-07 +### Fixed +- Fix reported position for `duplicated mapping key` errors. + Now points to block start instead of block end. + (#243, thanks to @shockey). + + +## [3.7.0] - 2016-11-12 +### Added +- Support polymorphism for tags (#300, thanks to @monken). + +### Fixed +- Fix parsing of quotes followed by newlines (#304, thanks to @dplepage). + + +## [3.6.1] - 2016-05-11 +### Fixed +- Fix output cut on a pipe, #286. + + +## [3.6.0] - 2016-04-16 +### Fixed +- Dumper rewrite, fix multiple bugs with trailing `\n`. + Big thanks to @aepsilon! +- Loader: fix leading/trailing newlines in block scalars, @aepsilon. + + +## [3.5.5] - 2016-03-17 +### Fixed +- Date parse fix: don't allow dates with on digit in month and day, #268. + + +## [3.5.4] - 2016-03-09 +### Added +- `noCompatMode` for dumper, to disable quoting YAML 1.1 values. + + +## [3.5.3] - 2016-02-11 +### Changed +- Maintenance release. + + +## [3.5.2] - 2016-01-11 +### Changed +- Maintenance: missed comma in bower config. + + +## [3.5.1] - 2016-01-11 +### Changed +- Removed `inherit` dependency, #239. +- Better browserify workaround for esprima load. +- Demo rewrite. + + +## [3.5.0] - 2016-01-10 +### Fixed +- Dumper. Fold strings only, #217. +- Dumper. `norefs` option, to clone linked objects, #229. +- Loader. Throw a warning for duplicate keys, #166. +- Improved browserify support (mark `esprima` & `Buffer` excluded). + + +## [3.4.6] - 2015-11-26 +### Changed +- Use standalone `inherit` to keep browserified files clear. + + +## [3.4.5] - 2015-11-23 +### Added +- Added `lineWidth` option to dumper. + + +## [3.4.4] - 2015-11-21 +### Fixed +- Fixed floats dump (missed dot for scientific format), #220. +- Allow non-printable characters inside quoted scalars, #192. + + +## [3.4.3] - 2015-10-10 +### Changed +- Maintenance release - deps bump (esprima, argparse). + + +## [3.4.2] - 2015-09-09 +### Fixed +- Fixed serialization of duplicated entries in sequences, #205. + Thanks to @vogelsgesang. + + +## [3.4.1] - 2015-09-05 +### Fixed +- Fixed stacktrace handling in generated errors, for browsers (FF/IE). + + +## [3.4.0] - 2015-08-23 +### Changed +- Don't throw on warnings anymore. Use `onWarning` option to catch. +- Throw error on unknown tags (was warning before). +- Reworked internals of error class. + +### Fixed +- Fixed multiline keys dump, #197. Thanks to @tcr. +- Fixed heading line breaks in some scalars (regression). + + +## [3.3.1] - 2015-05-13 +### Added +- Added `.sortKeys` dumper option, thanks to @rjmunro. + +### Fixed +- Fixed astral characters support, #191. + + +## [3.3.0] - 2015-04-26 +### Changed +- Significantly improved long strings formatting in dumper, thanks to @isaacs. +- Strip BOM if exists. + + +## [3.2.7] - 2015-02-19 +### Changed +- Maintenance release. +- Updated dependencies. +- HISTORY.md -> CHANGELOG.md + + +## [3.2.6] - 2015-02-07 +### Fixed +- Fixed encoding of UTF-16 surrogate pairs. (e.g. "\U0001F431" CAT FACE). +- Fixed demo dates dump (#113, thanks to @Hypercubed). + + +## [3.2.5] - 2014-12-28 +### Fixed +- Fixed resolving of all built-in types on empty nodes. +- Fixed invalid warning on empty lines within quoted scalars and flow collections. +- Fixed bug: Tag on an empty node didn't resolve in some cases. + + +## [3.2.4] - 2014-12-19 +### Fixed +- Fixed resolving of !!null tag on an empty node. + + +## [3.2.3] - 2014-11-08 +### Fixed +- Implemented dumping of objects with circular and cross references. +- Partially fixed aliasing of constructed objects. (see issue #141 for details) + + +## [3.2.2] - 2014-09-07 +### Fixed +- Fixed infinite loop on unindented block scalars. +- Rewritten base64 encode/decode in binary type, to keep code licence clear. + + +## [3.2.1] - 2014-08-24 +### Fixed +- Nothig new. Just fix npm publish error. + + +## [3.2.0] - 2014-08-24 +### Added +- Added input piping support to CLI. + +### Fixed +- Fixed typo, that could cause hand on initial indent (#139). + + +## [3.1.0] - 2014-07-07 +### Changed +- 1.5x-2x speed boost. +- Removed deprecated `require('xxx.yml')` support. +- Significant code cleanup and refactoring. +- Internal API changed. If you used custom types - see updated examples. + Others are not affected. +- Even if the input string has no trailing line break character, + it will be parsed as if it has one. +- Added benchmark scripts. +- Moved bower files to /dist folder +- Bugfixes. + + +## [3.0.2] - 2014-02-27 +### Fixed +- Fixed bug: "constructor" string parsed as `null`. + + +## [3.0.1] - 2013-12-22 +### Fixed +- Fixed parsing of literal scalars. (issue #108) +- Prevented adding unnecessary spaces in object dumps. (issue #68) +- Fixed dumping of objects with very long (> 1024 in length) keys. + + +## [3.0.0] - 2013-12-16 +### Changed +- Refactored code. Changed API for custom types. +- Removed output colors in CLI, dump json by default. +- Removed big dependencies from browser version (esprima, buffer). Load `esprima` manually, if `!!js/function` needed. `!!bin` now returns Array in browser +- AMD support. +- Don't quote dumped strings because of `-` & `?` (if not first char). +- __Deprecated__ loading yaml files via `require()`, as not recommended + behaviour for node. + + +## [2.1.3] - 2013-10-16 +### Fixed +- Fix wrong loading of empty block scalars. + + +## [2.1.2] - 2013-10-07 +### Fixed +- Fix unwanted line breaks in folded scalars. + + +## [2.1.1] - 2013-10-02 +### Fixed +- Dumper now respects deprecated booleans syntax from YAML 1.0/1.1 +- Fixed reader bug in JSON-like sequences/mappings. + + +## [2.1.0] - 2013-06-05 +### Added +- Add standard YAML schemas: Failsafe (`FAILSAFE_SCHEMA`), + JSON (`JSON_SCHEMA`) and Core (`CORE_SCHEMA`). +- Add `skipInvalid` dumper option. + +### Changed +- Rename `DEFAULT_SCHEMA` to `DEFAULT_FULL_SCHEMA` + and `SAFE_SCHEMA` to `DEFAULT_SAFE_SCHEMA`. +- Use `safeLoad` for `require` extension. + +### Fixed +- Bug fix: export `NIL` constant from the public interface. + + +## [2.0.5] - 2013-04-26 +### Security +- Close security issue in !!js/function constructor. + Big thanks to @nealpoole for security audit. + + +## [2.0.4] - 2013-04-08 +### Changed +- Updated .npmignore to reduce package size + + +## [2.0.3] - 2013-02-26 +### Fixed +- Fixed dumping of empty arrays ans objects. ([] and {} instead of null) + + +## [2.0.2] - 2013-02-15 +### Fixed +- Fixed input validation: tabs are printable characters. + + +## [2.0.1] - 2013-02-09 +### Fixed +- Fixed error, when options not passed to function cass + + +## [2.0.0] - 2013-02-09 +### Changed +- Full rewrite. New architecture. Fast one-stage parsing. +- Changed custom types API. +- Added YAML dumper. + + +## [1.0.3] - 2012-11-05 +### Fixed +- Fixed utf-8 files loading. + + +## [1.0.2] - 2012-08-02 +### Fixed +- Pull out hand-written shims. Use ES5-Shims for old browsers support. See #44. +- Fix timstamps incorectly parsed in local time when no time part specified. + + +## [1.0.1] - 2012-07-07 +### Fixed +- Fixes `TypeError: 'undefined' is not an object` under Safari. Thanks Phuong. +- Fix timestamps incorrectly parsed in local time. Thanks @caolan. Closes #46. + + +## [1.0.0] - 2012-07-01 +### Changed +- `y`, `yes`, `n`, `no`, `on`, `off` are not converted to Booleans anymore. + Fixes #42. +- `require(filename)` now returns a single document and throws an Error if + file contains more than one document. +- CLI was merged back from js-yaml.bin + + +## [0.3.7] - 2012-02-28 +### Fixed +- Fix export of `addConstructor()`. Closes #39. + + +## [0.3.6] - 2012-02-22 +### Changed +- Removed AMD parts - too buggy to use. Need help to rewrite from scratch + +### Fixed +- Removed YUI compressor warning (renamed `double` variable). Closes #40. + + +## [0.3.5] - 2012-01-10 +### Fixed +- Workagound for .npmignore fuckup under windows. Thanks to airportyh. + + +## [0.3.4] - 2011-12-24 +### Fixed +- Fixes str[] for oldIEs support. +- Adds better has change support for browserified demo. +- improves compact output of Error. Closes #33. + + +## [0.3.3] - 2011-12-20 +### Added +- adds `compact` stringification of Errors. + +### Changed +- jsyaml executable moved to separate module. + + +## [0.3.2] - 2011-12-16 +### Added +- Added jsyaml executable. +- Added !!js/function support. Closes #12. + +### Fixed +- Fixes ug with block style scalars. Closes #26. +- All sources are passing JSLint now. +- Fixes bug in Safari. Closes #28. +- Fixes bug in Opers. Closes #29. +- Improves browser support. Closes #20. + + +## [0.3.1] - 2011-11-18 +### Added +- Added AMD support for browserified version. +- Added permalinks for online demo YAML snippets. Now we have YPaste service, lol. +- Added !!js/regexp and !!js/undefined types. Partially solves #12. + +### Changed +- Wrapped browserified js-yaml into closure. + +### Fixed +- Fixed the resolvement of non-specific tags. Closes #17. +- Fixed !!set mapping. +- Fixed month parse in dates. Closes #19. + + +## [0.3.0] - 2011-11-09 +### Added +- Added browserified version. Closes #13. +- Added live demo of browserified version. +- Ported some of the PyYAML tests. See #14. + +### Fixed +- Removed JS.Class dependency. Closes #3. +- Fixed timestamp bug when fraction was given. + + +## [0.2.2] - 2011-11-06 +### Fixed +- Fixed crash on docs without ---. Closes #8. +- Fixed multiline string parse +- Fixed tests/comments for using array as key + + +## [0.2.1] - 2011-11-02 +### Fixed +- Fixed short file read (<4k). Closes #9. + + +## [0.2.0] - 2011-11-02 +### Changed +- First public release + + +[4.1.0]: https://github.com/nodeca/js-yaml/compare/4.0.0...4.1.0 +[4.0.0]: https://github.com/nodeca/js-yaml/compare/3.14.0...4.0.0 +[3.14.0]: https://github.com/nodeca/js-yaml/compare/3.13.1...3.14.0 +[3.13.1]: https://github.com/nodeca/js-yaml/compare/3.13.0...3.13.1 +[3.13.0]: https://github.com/nodeca/js-yaml/compare/3.12.2...3.13.0 +[3.12.2]: https://github.com/nodeca/js-yaml/compare/3.12.1...3.12.2 +[3.12.1]: https://github.com/nodeca/js-yaml/compare/3.12.0...3.12.1 +[3.12.0]: https://github.com/nodeca/js-yaml/compare/3.11.0...3.12.0 +[3.11.0]: https://github.com/nodeca/js-yaml/compare/3.10.0...3.11.0 +[3.10.0]: https://github.com/nodeca/js-yaml/compare/3.9.1...3.10.0 +[3.9.1]: https://github.com/nodeca/js-yaml/compare/3.9.0...3.9.1 +[3.9.0]: https://github.com/nodeca/js-yaml/compare/3.8.4...3.9.0 +[3.8.4]: https://github.com/nodeca/js-yaml/compare/3.8.3...3.8.4 +[3.8.3]: https://github.com/nodeca/js-yaml/compare/3.8.2...3.8.3 +[3.8.2]: https://github.com/nodeca/js-yaml/compare/3.8.1...3.8.2 +[3.8.1]: https://github.com/nodeca/js-yaml/compare/3.8.0...3.8.1 +[3.8.0]: https://github.com/nodeca/js-yaml/compare/3.7.0...3.8.0 +[3.7.0]: https://github.com/nodeca/js-yaml/compare/3.6.1...3.7.0 +[3.6.1]: https://github.com/nodeca/js-yaml/compare/3.6.0...3.6.1 +[3.6.0]: https://github.com/nodeca/js-yaml/compare/3.5.5...3.6.0 +[3.5.5]: https://github.com/nodeca/js-yaml/compare/3.5.4...3.5.5 +[3.5.4]: https://github.com/nodeca/js-yaml/compare/3.5.3...3.5.4 +[3.5.3]: https://github.com/nodeca/js-yaml/compare/3.5.2...3.5.3 +[3.5.2]: https://github.com/nodeca/js-yaml/compare/3.5.1...3.5.2 +[3.5.1]: https://github.com/nodeca/js-yaml/compare/3.5.0...3.5.1 +[3.5.0]: https://github.com/nodeca/js-yaml/compare/3.4.6...3.5.0 +[3.4.6]: https://github.com/nodeca/js-yaml/compare/3.4.5...3.4.6 +[3.4.5]: https://github.com/nodeca/js-yaml/compare/3.4.4...3.4.5 +[3.4.4]: https://github.com/nodeca/js-yaml/compare/3.4.3...3.4.4 +[3.4.3]: https://github.com/nodeca/js-yaml/compare/3.4.2...3.4.3 +[3.4.2]: https://github.com/nodeca/js-yaml/compare/3.4.1...3.4.2 +[3.4.1]: https://github.com/nodeca/js-yaml/compare/3.4.0...3.4.1 +[3.4.0]: https://github.com/nodeca/js-yaml/compare/3.3.1...3.4.0 +[3.3.1]: https://github.com/nodeca/js-yaml/compare/3.3.0...3.3.1 +[3.3.0]: https://github.com/nodeca/js-yaml/compare/3.2.7...3.3.0 +[3.2.7]: https://github.com/nodeca/js-yaml/compare/3.2.6...3.2.7 +[3.2.6]: https://github.com/nodeca/js-yaml/compare/3.2.5...3.2.6 +[3.2.5]: https://github.com/nodeca/js-yaml/compare/3.2.4...3.2.5 +[3.2.4]: https://github.com/nodeca/js-yaml/compare/3.2.3...3.2.4 +[3.2.3]: https://github.com/nodeca/js-yaml/compare/3.2.2...3.2.3 +[3.2.2]: https://github.com/nodeca/js-yaml/compare/3.2.1...3.2.2 +[3.2.1]: https://github.com/nodeca/js-yaml/compare/3.2.0...3.2.1 +[3.2.0]: https://github.com/nodeca/js-yaml/compare/3.1.0...3.2.0 +[3.1.0]: https://github.com/nodeca/js-yaml/compare/3.0.2...3.1.0 +[3.0.2]: https://github.com/nodeca/js-yaml/compare/3.0.1...3.0.2 +[3.0.1]: https://github.com/nodeca/js-yaml/compare/3.0.0...3.0.1 +[3.0.0]: https://github.com/nodeca/js-yaml/compare/2.1.3...3.0.0 +[2.1.3]: https://github.com/nodeca/js-yaml/compare/2.1.2...2.1.3 +[2.1.2]: https://github.com/nodeca/js-yaml/compare/2.1.1...2.1.2 +[2.1.1]: https://github.com/nodeca/js-yaml/compare/2.1.0...2.1.1 +[2.1.0]: https://github.com/nodeca/js-yaml/compare/2.0.5...2.1.0 +[2.0.5]: https://github.com/nodeca/js-yaml/compare/2.0.4...2.0.5 +[2.0.4]: https://github.com/nodeca/js-yaml/compare/2.0.3...2.0.4 +[2.0.3]: https://github.com/nodeca/js-yaml/compare/2.0.2...2.0.3 +[2.0.2]: https://github.com/nodeca/js-yaml/compare/2.0.1...2.0.2 +[2.0.1]: https://github.com/nodeca/js-yaml/compare/2.0.0...2.0.1 +[2.0.0]: https://github.com/nodeca/js-yaml/compare/1.0.3...2.0.0 +[1.0.3]: https://github.com/nodeca/js-yaml/compare/1.0.2...1.0.3 +[1.0.2]: https://github.com/nodeca/js-yaml/compare/1.0.1...1.0.2 +[1.0.1]: https://github.com/nodeca/js-yaml/compare/1.0.0...1.0.1 +[1.0.0]: https://github.com/nodeca/js-yaml/compare/0.3.7...1.0.0 +[0.3.7]: https://github.com/nodeca/js-yaml/compare/0.3.6...0.3.7 +[0.3.6]: https://github.com/nodeca/js-yaml/compare/0.3.5...0.3.6 +[0.3.5]: https://github.com/nodeca/js-yaml/compare/0.3.4...0.3.5 +[0.3.4]: https://github.com/nodeca/js-yaml/compare/0.3.3...0.3.4 +[0.3.3]: https://github.com/nodeca/js-yaml/compare/0.3.2...0.3.3 +[0.3.2]: https://github.com/nodeca/js-yaml/compare/0.3.1...0.3.2 +[0.3.1]: https://github.com/nodeca/js-yaml/compare/0.3.0...0.3.1 +[0.3.0]: https://github.com/nodeca/js-yaml/compare/0.2.2...0.3.0 +[0.2.2]: https://github.com/nodeca/js-yaml/compare/0.2.1...0.2.2 +[0.2.1]: https://github.com/nodeca/js-yaml/compare/0.2.0...0.2.1 +[0.2.0]: https://github.com/nodeca/js-yaml/releases/tag/0.2.0 diff --git a/novas/novacore-zephyr/groq-code-cli/node_modules/js-yaml/LICENSE b/novas/novacore-zephyr/groq-code-cli/node_modules/js-yaml/LICENSE new file mode 100644 index 0000000000000000000000000000000000000000..09d3a29e93d1239edf737a58fb1cd893808abc82 --- /dev/null +++ b/novas/novacore-zephyr/groq-code-cli/node_modules/js-yaml/LICENSE @@ -0,0 +1,21 @@ +(The MIT License) + +Copyright (C) 2011-2015 by Vitaly Puzrin + +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. diff --git a/novas/novacore-zephyr/groq-code-cli/node_modules/js-yaml/README.md b/novas/novacore-zephyr/groq-code-cli/node_modules/js-yaml/README.md new file mode 100644 index 0000000000000000000000000000000000000000..3cbc4bd2ddb33ac221b687487979166ab2cf4422 --- /dev/null +++ b/novas/novacore-zephyr/groq-code-cli/node_modules/js-yaml/README.md @@ -0,0 +1,246 @@ +JS-YAML - YAML 1.2 parser / writer for JavaScript +================================================= + +[![CI](https://github.com/nodeca/js-yaml/workflows/CI/badge.svg?branch=master)](https://github.com/nodeca/js-yaml/actions) +[![NPM version](https://img.shields.io/npm/v/js-yaml.svg)](https://www.npmjs.org/package/js-yaml) + +__[Online Demo](http://nodeca.github.com/js-yaml/)__ + + +This is an implementation of [YAML](http://yaml.org/), a human-friendly data +serialization language. Started as [PyYAML](http://pyyaml.org/) port, it was +completely rewritten from scratch. Now it's very fast, and supports 1.2 spec. + + +Installation +------------ + +### YAML module for node.js + +``` +npm install js-yaml +``` + + +### CLI executable + +If you want to inspect your YAML files from CLI, install js-yaml globally: + +``` +npm install -g js-yaml +``` + +#### Usage + +``` +usage: js-yaml [-h] [-v] [-c] [-t] file + +Positional arguments: + file File with YAML document(s) + +Optional arguments: + -h, --help Show this help message and exit. + -v, --version Show program's version number and exit. + -c, --compact Display errors in compact mode + -t, --trace Show stack trace on error +``` + + +API +--- + +Here we cover the most 'useful' methods. If you need advanced details (creating +your own tags), see [examples](https://github.com/nodeca/js-yaml/tree/master/examples) +for more info. + +``` javascript +const yaml = require('js-yaml'); +const fs = require('fs'); + +// Get document, or throw exception on error +try { + const doc = yaml.load(fs.readFileSync('/home/ixti/example.yml', 'utf8')); + console.log(doc); +} catch (e) { + console.log(e); +} +``` + + +### load (string [ , options ]) + +Parses `string` as single YAML document. Returns either a +plain object, a string, a number, `null` or `undefined`, or throws `YAMLException` on error. By default, does +not support regexps, functions and undefined. + +options: + +- `filename` _(default: null)_ - string to be used as a file path in + error/warning messages. +- `onWarning` _(default: null)_ - function to call on warning messages. + Loader will call this function with an instance of `YAMLException` for each warning. +- `schema` _(default: `DEFAULT_SCHEMA`)_ - specifies a schema to use. + - `FAILSAFE_SCHEMA` - only strings, arrays and plain objects: + http://www.yaml.org/spec/1.2/spec.html#id2802346 + - `JSON_SCHEMA` - all JSON-supported types: + http://www.yaml.org/spec/1.2/spec.html#id2803231 + - `CORE_SCHEMA` - same as `JSON_SCHEMA`: + http://www.yaml.org/spec/1.2/spec.html#id2804923 + - `DEFAULT_SCHEMA` - all supported YAML types. +- `json` _(default: false)_ - compatibility with JSON.parse behaviour. If true, then duplicate keys in a mapping will override values rather than throwing an error. + +NOTE: This function **does not** understand multi-document sources, it throws +exception on those. + +NOTE: JS-YAML **does not** support schema-specific tag resolution restrictions. +So, the JSON schema is not as strictly defined in the YAML specification. +It allows numbers in any notation, use `Null` and `NULL` as `null`, etc. +The core schema also has no such restrictions. It allows binary notation for integers. + + +### loadAll (string [, iterator] [, options ]) + +Same as `load()`, but understands multi-document sources. Applies +`iterator` to each document if specified, or returns array of documents. + +``` javascript +const yaml = require('js-yaml'); + +yaml.loadAll(data, function (doc) { + console.log(doc); +}); +``` + + +### dump (object [ , options ]) + +Serializes `object` as a YAML document. Uses `DEFAULT_SCHEMA`, so it will +throw an exception if you try to dump regexps or functions. However, you can +disable exceptions by setting the `skipInvalid` option to `true`. + +options: + +- `indent` _(default: 2)_ - indentation width to use (in spaces). +- `noArrayIndent` _(default: false)_ - when true, will not add an indentation level to array elements +- `skipInvalid` _(default: false)_ - do not throw on invalid types (like function + in the safe schema) and skip pairs and single values with such types. +- `flowLevel` _(default: -1)_ - specifies level of nesting, when to switch from + block to flow style for collections. -1 means block style everwhere +- `styles` - "tag" => "style" map. Each tag may have own set of styles. +- `schema` _(default: `DEFAULT_SCHEMA`)_ specifies a schema to use. +- `sortKeys` _(default: `false`)_ - if `true`, sort keys when dumping YAML. If a + function, use the function to sort the keys. +- `lineWidth` _(default: `80`)_ - set max line width. Set `-1` for unlimited width. +- `noRefs` _(default: `false`)_ - if `true`, don't convert duplicate objects into references +- `noCompatMode` _(default: `false`)_ - if `true` don't try to be compatible with older + yaml versions. Currently: don't quote "yes", "no" and so on, as required for YAML 1.1 +- `condenseFlow` _(default: `false`)_ - if `true` flow sequences will be condensed, omitting the space between `a, b`. Eg. `'[a,b]'`, and omitting the space between `key: value` and quoting the key. Eg. `'{"a":b}'` Can be useful when using yaml for pretty URL query params as spaces are %-encoded. +- `quotingType` _(`'` or `"`, default: `'`)_ - strings will be quoted using this quoting style. If you specify single quotes, double quotes will still be used for non-printable characters. +- `forceQuotes` _(default: `false`)_ - if `true`, all non-key strings will be quoted even if they normally don't need to. +- `replacer` - callback `function (key, value)` called recursively on each key/value in source object (see `replacer` docs for `JSON.stringify`). + +The following table show availlable styles (e.g. "canonical", +"binary"...) available for each tag (.e.g. !!null, !!int ...). Yaml +output is shown on the right side after `=>` (default setting) or `->`: + +``` none +!!null + "canonical" -> "~" + "lowercase" => "null" + "uppercase" -> "NULL" + "camelcase" -> "Null" + +!!int + "binary" -> "0b1", "0b101010", "0b1110001111010" + "octal" -> "0o1", "0o52", "0o16172" + "decimal" => "1", "42", "7290" + "hexadecimal" -> "0x1", "0x2A", "0x1C7A" + +!!bool + "lowercase" => "true", "false" + "uppercase" -> "TRUE", "FALSE" + "camelcase" -> "True", "False" + +!!float + "lowercase" => ".nan", '.inf' + "uppercase" -> ".NAN", '.INF' + "camelcase" -> ".NaN", '.Inf' +``` + +Example: + +``` javascript +dump(object, { + 'styles': { + '!!null': 'canonical' // dump null as ~ + }, + 'sortKeys': true // sort object keys +}); +``` + +Supported YAML types +-------------------- + +The list of standard YAML tags and corresponding JavaScript types. See also +[YAML tag discussion](http://pyyaml.org/wiki/YAMLTagDiscussion) and +[YAML types repository](http://yaml.org/type/). + +``` +!!null '' # null +!!bool 'yes' # bool +!!int '3...' # number +!!float '3.14...' # number +!!binary '...base64...' # buffer +!!timestamp 'YYYY-...' # date +!!omap [ ... ] # array of key-value pairs +!!pairs [ ... ] # array or array pairs +!!set { ... } # array of objects with given keys and null values +!!str '...' # string +!!seq [ ... ] # array +!!map { ... } # object +``` + +**JavaScript-specific tags** + +See [js-yaml-js-types](https://github.com/nodeca/js-yaml-js-types) for +extra types. + + +Caveats +------- + +Note, that you use arrays or objects as key in JS-YAML. JS does not allow objects +or arrays as keys, and stringifies (by calling `toString()` method) them at the +moment of adding them. + +``` yaml +--- +? [ foo, bar ] +: - baz +? { foo: bar } +: - baz + - baz +``` + +``` javascript +{ "foo,bar": ["baz"], "[object Object]": ["baz", "baz"] } +``` + +Also, reading of properties on implicit block mapping keys is not supported yet. +So, the following YAML document cannot be loaded. + +``` yaml +&anchor foo: + foo: bar + *anchor: duplicate key + baz: bat + *anchor: duplicate key +``` + + +js-yaml for enterprise +---------------------- + +Available as part of the Tidelift Subscription + +The maintainers of js-yaml and thousands of other packages are working with Tidelift to deliver commercial support and maintenance for the open source dependencies you use to build your applications. Save time, reduce risk, and improve code health, while paying the maintainers of the exact dependencies you use. [Learn more.](https://tidelift.com/subscription/pkg/npm-js-yaml?utm_source=npm-js-yaml&utm_medium=referral&utm_campaign=enterprise&utm_term=repo) diff --git a/novas/novacore-zephyr/groq-code-cli/node_modules/js-yaml/index.js b/novas/novacore-zephyr/groq-code-cli/node_modules/js-yaml/index.js new file mode 100644 index 0000000000000000000000000000000000000000..bcb7eba7ada7de0dae55924403c49c0e16aea384 --- /dev/null +++ b/novas/novacore-zephyr/groq-code-cli/node_modules/js-yaml/index.js @@ -0,0 +1,47 @@ +'use strict'; + + +var loader = require('./lib/loader'); +var dumper = require('./lib/dumper'); + + +function renamed(from, to) { + return function () { + throw new Error('Function yaml.' + from + ' is removed in js-yaml 4. ' + + 'Use yaml.' + to + ' instead, which is now safe by default.'); + }; +} + + +module.exports.Type = require('./lib/type'); +module.exports.Schema = require('./lib/schema'); +module.exports.FAILSAFE_SCHEMA = require('./lib/schema/failsafe'); +module.exports.JSON_SCHEMA = require('./lib/schema/json'); +module.exports.CORE_SCHEMA = require('./lib/schema/core'); +module.exports.DEFAULT_SCHEMA = require('./lib/schema/default'); +module.exports.load = loader.load; +module.exports.loadAll = loader.loadAll; +module.exports.dump = dumper.dump; +module.exports.YAMLException = require('./lib/exception'); + +// Re-export all types in case user wants to create custom schema +module.exports.types = { + binary: require('./lib/type/binary'), + float: require('./lib/type/float'), + map: require('./lib/type/map'), + null: require('./lib/type/null'), + pairs: require('./lib/type/pairs'), + set: require('./lib/type/set'), + timestamp: require('./lib/type/timestamp'), + bool: require('./lib/type/bool'), + int: require('./lib/type/int'), + merge: require('./lib/type/merge'), + omap: require('./lib/type/omap'), + seq: require('./lib/type/seq'), + str: require('./lib/type/str') +}; + +// Removed functions from JS-YAML 3.0.x +module.exports.safeLoad = renamed('safeLoad', 'load'); +module.exports.safeLoadAll = renamed('safeLoadAll', 'loadAll'); +module.exports.safeDump = renamed('safeDump', 'dump'); diff --git a/novas/novacore-zephyr/groq-code-cli/node_modules/js-yaml/package.json b/novas/novacore-zephyr/groq-code-cli/node_modules/js-yaml/package.json new file mode 100644 index 0000000000000000000000000000000000000000..17574da805a18032a9b7c584e2e39d685ec043c8 --- /dev/null +++ b/novas/novacore-zephyr/groq-code-cli/node_modules/js-yaml/package.json @@ -0,0 +1,66 @@ +{ + "name": "js-yaml", + "version": "4.1.0", + "description": "YAML 1.2 parser and serializer", + "keywords": [ + "yaml", + "parser", + "serializer", + "pyyaml" + ], + "author": "Vladimir Zapparov ", + "contributors": [ + "Aleksey V Zapparov (http://www.ixti.net/)", + "Vitaly Puzrin (https://github.com/puzrin)", + "Martin Grenfell (http://got-ravings.blogspot.com)" + ], + "license": "MIT", + "repository": "nodeca/js-yaml", + "files": [ + "index.js", + "lib/", + "bin/", + "dist/" + ], + "bin": { + "js-yaml": "bin/js-yaml.js" + }, + "module": "./dist/js-yaml.mjs", + "exports": { + ".": { + "import": "./dist/js-yaml.mjs", + "require": "./index.js" + }, + "./package.json": "./package.json" + }, + "scripts": { + "lint": "eslint .", + "test": "npm run lint && mocha", + "coverage": "npm run lint && nyc mocha && nyc report --reporter html", + "demo": "npm run lint && node support/build_demo.js", + "gh-demo": "npm run demo && gh-pages -d demo -f", + "browserify": "rollup -c support/rollup.config.js", + "prepublishOnly": "npm run gh-demo" + }, + "unpkg": "dist/js-yaml.min.js", + "jsdelivr": "dist/js-yaml.min.js", + "dependencies": { + "argparse": "^2.0.1" + }, + "devDependencies": { + "@rollup/plugin-commonjs": "^17.0.0", + "@rollup/plugin-node-resolve": "^11.0.0", + "ansi": "^0.3.1", + "benchmark": "^2.1.4", + "codemirror": "^5.13.4", + "eslint": "^7.0.0", + "fast-check": "^2.8.0", + "gh-pages": "^3.1.0", + "mocha": "^8.2.1", + "nyc": "^15.1.0", + "rollup": "^2.34.1", + "rollup-plugin-node-polyfills": "^0.2.1", + "rollup-plugin-terser": "^7.0.2", + "shelljs": "^0.8.4" + } +} diff --git a/novas/novacore-zephyr/groq-code-cli/node_modules/jsbn/.npmignore b/novas/novacore-zephyr/groq-code-cli/node_modules/jsbn/.npmignore new file mode 100644 index 0000000000000000000000000000000000000000..28f1ba7565f46fb5074ad9a4f07c4cfc86dff4cc --- /dev/null +++ b/novas/novacore-zephyr/groq-code-cli/node_modules/jsbn/.npmignore @@ -0,0 +1,2 @@ +node_modules +.DS_Store \ No newline at end of file diff --git a/novas/novacore-zephyr/groq-code-cli/node_modules/jsbn/CHANGELOG.md b/novas/novacore-zephyr/groq-code-cli/node_modules/jsbn/CHANGELOG.md new file mode 100644 index 0000000000000000000000000000000000000000..23f17f40e3033316e847b8273f0a27f310eb8f7b --- /dev/null +++ b/novas/novacore-zephyr/groq-code-cli/node_modules/jsbn/CHANGELOG.md @@ -0,0 +1,16 @@ +# v1.1.0 + +- Allow for es6 "default import", e.g. `import BigInteger from 'jsbn'`. +- Updated license file to read MIT + + +# v1.0.0 + +- breaking change: `require('jsbn')` no longer returns `BigInteger`. Use `require('jsbn').BigInteger` instead. + + + +# v0.1.1 + +- fixed backwards-incompatible change in v0.1.0 where `require('jsbn') != BigInteger`. This patch version allows for `var BigInteger = require('jsbn')` or `var BigInteger = require('jsbn').BigInteger`. + diff --git a/novas/novacore-zephyr/groq-code-cli/node_modules/jsbn/LICENSE b/novas/novacore-zephyr/groq-code-cli/node_modules/jsbn/LICENSE new file mode 100644 index 0000000000000000000000000000000000000000..24502a9cf7483647d0e4e5b35396082b1295d9c3 --- /dev/null +++ b/novas/novacore-zephyr/groq-code-cli/node_modules/jsbn/LICENSE @@ -0,0 +1,40 @@ +Licensing +--------- + +This software is covered under the following copyright: + +/* + * Copyright (c) 2003-2005 Tom Wu + * All Rights Reserved. + * + * 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" AND WITHOUT WARRANTY OF ANY KIND, + * EXPRESS, IMPLIED OR OTHERWISE, INCLUDING WITHOUT LIMITATION, ANY + * WARRANTY OF MERCHANTABILITY OR FITNESS FOR A PARTICULAR PURPOSE. + * + * IN NO EVENT SHALL TOM WU BE LIABLE FOR ANY SPECIAL, INCIDENTAL, + * INDIRECT OR CONSEQUENTIAL DAMAGES OF ANY KIND, OR ANY DAMAGES WHATSOEVER + * RESULTING FROM LOSS OF USE, DATA OR PROFITS, WHETHER OR NOT ADVISED OF + * THE POSSIBILITY OF DAMAGE, AND ON ANY THEORY OF LIABILITY, ARISING OUT + * OF OR IN CONNECTION WITH THE USE OR PERFORMANCE OF THIS SOFTWARE. + * + * In addition, the following condition applies: + * + * All redistributions must retain an intact copy of this copyright notice + * and disclaimer. + */ + +Address all questions regarding this license to: + + Tom Wu + tjw@cs.Stanford.EDU diff --git a/novas/novacore-zephyr/groq-code-cli/node_modules/jsbn/README.md b/novas/novacore-zephyr/groq-code-cli/node_modules/jsbn/README.md new file mode 100644 index 0000000000000000000000000000000000000000..62e8273bc8897ad0d3913cb6fc16796ec738282e --- /dev/null +++ b/novas/novacore-zephyr/groq-code-cli/node_modules/jsbn/README.md @@ -0,0 +1,173 @@ +# jsbn: javascript big number + +[Tom Wu's Original Website](http://www-cs-students.stanford.edu/~tjw/jsbn/) + +I felt compelled to put this on github and publish to npm. I haven't tested every other big integer library out there, but the few that I have tested in comparison to this one have not even come close in performance. I am aware of the `bi` module on npm, however it has been modified and I wanted to publish the original without modifications. This is jsbn and jsbn2 from Tom Wu's original website above, with the module pattern applied to prevent global leaks and to allow for use with node.js on the server side. + +## usage + + var BigInteger = require('jsbn').BigInteger; + + var bi = new BigInteger('91823918239182398123'); + console.log(bi.bitLength()); // 67 + + +## API + +### bi.toString() + +returns the base-10 number as a string + +### bi.negate() + +returns a new BigInteger equal to the negation of `bi` + +### bi.abs + +returns new BI of absolute value + +### bi.compareTo + + + +### bi.bitLength + + + +### bi.mod + + + +### bi.modPowInt + + + +### bi.clone + + + +### bi.intValue + + + +### bi.byteValue + + + +### bi.shortValue + + + +### bi.signum + + + +### bi.toByteArray + + + +### bi.equals + + + +### bi.min + + + +### bi.max + + + +### bi.and + + + +### bi.or + + + +### bi.xor + + + +### bi.andNot + + + +### bi.not + + + +### bi.shiftLeft + + + +### bi.shiftRight + + + +### bi.getLowestSetBit + + + +### bi.bitCount + + + +### bi.testBit + + + +### bi.setBit + + + +### bi.clearBit + + + +### bi.flipBit + + + +### bi.add + + + +### bi.subtract + + + +### bi.multiply + + + +### bi.divide + + + +### bi.remainder + + + +### bi.divideAndRemainder + + + +### bi.modPow + + + +### bi.modInverse + + + +### bi.pow + + + +### bi.gcd + + + +### bi.isProbablePrime diff --git a/novas/novacore-zephyr/groq-code-cli/node_modules/jsbn/example.html b/novas/novacore-zephyr/groq-code-cli/node_modules/jsbn/example.html new file mode 100644 index 0000000000000000000000000000000000000000..1c0489b13763522a95ec525c8e68c9d8ff92ec2b --- /dev/null +++ b/novas/novacore-zephyr/groq-code-cli/node_modules/jsbn/example.html @@ -0,0 +1,11 @@ + + + + + + + + + + + diff --git a/novas/novacore-zephyr/groq-code-cli/node_modules/jsbn/example.js b/novas/novacore-zephyr/groq-code-cli/node_modules/jsbn/example.js new file mode 100644 index 0000000000000000000000000000000000000000..85979909d7b1d8c0bd66dde42a60d28e798fdc94 --- /dev/null +++ b/novas/novacore-zephyr/groq-code-cli/node_modules/jsbn/example.js @@ -0,0 +1,5 @@ +(function () { + var BigInteger = jsbn.BigInteger; + var a = new BigInteger('91823918239182398123'); + console.log(a.bitLength()); +}()); diff --git a/novas/novacore-zephyr/groq-code-cli/node_modules/jsbn/index.js b/novas/novacore-zephyr/groq-code-cli/node_modules/jsbn/index.js new file mode 100644 index 0000000000000000000000000000000000000000..e9eb697b07a89144e0cee66904a147f49bc90046 --- /dev/null +++ b/novas/novacore-zephyr/groq-code-cli/node_modules/jsbn/index.js @@ -0,0 +1,1361 @@ +(function(){ + + // Copyright (c) 2005 Tom Wu + // All Rights Reserved. + // See "LICENSE" for details. + + // Basic JavaScript BN library - subset useful for RSA encryption. + + // Bits per digit + var dbits; + + // JavaScript engine analysis + var canary = 0xdeadbeefcafe; + var j_lm = ((canary&0xffffff)==0xefcafe); + + // (public) Constructor + function BigInteger(a,b,c) { + if(a != null) + if("number" == typeof a) this.fromNumber(a,b,c); + else if(b == null && "string" != typeof a) this.fromString(a,256); + else this.fromString(a,b); + } + + // return new, unset BigInteger + function nbi() { return new BigInteger(null); } + + // am: Compute w_j += (x*this_i), propagate carries, + // c is initial carry, returns final carry. + // c < 3*dvalue, x < 2*dvalue, this_i < dvalue + // We need to select the fastest one that works in this environment. + + // am1: use a single mult and divide to get the high bits, + // max digit bits should be 26 because + // max internal value = 2*dvalue^2-2*dvalue (< 2^53) + function am1(i,x,w,j,c,n) { + while(--n >= 0) { + var v = x*this[i++]+w[j]+c; + c = Math.floor(v/0x4000000); + w[j++] = v&0x3ffffff; + } + return c; + } + // am2 avoids a big mult-and-extract completely. + // Max digit bits should be <= 30 because we do bitwise ops + // on values up to 2*hdvalue^2-hdvalue-1 (< 2^31) + function am2(i,x,w,j,c,n) { + var xl = x&0x7fff, xh = x>>15; + while(--n >= 0) { + var l = this[i]&0x7fff; + var h = this[i++]>>15; + var m = xh*l+h*xl; + l = xl*l+((m&0x7fff)<<15)+w[j]+(c&0x3fffffff); + c = (l>>>30)+(m>>>15)+xh*h+(c>>>30); + w[j++] = l&0x3fffffff; + } + return c; + } + // Alternately, set max digit bits to 28 since some + // browsers slow down when dealing with 32-bit numbers. + function am3(i,x,w,j,c,n) { + var xl = x&0x3fff, xh = x>>14; + while(--n >= 0) { + var l = this[i]&0x3fff; + var h = this[i++]>>14; + var m = xh*l+h*xl; + l = xl*l+((m&0x3fff)<<14)+w[j]+c; + c = (l>>28)+(m>>14)+xh*h; + w[j++] = l&0xfffffff; + } + return c; + } + var inBrowser = typeof navigator !== "undefined"; + if(inBrowser && j_lm && (navigator.appName == "Microsoft Internet Explorer")) { + BigInteger.prototype.am = am2; + dbits = 30; + } + else if(inBrowser && j_lm && (navigator.appName != "Netscape")) { + BigInteger.prototype.am = am1; + dbits = 26; + } + else { // Mozilla/Netscape seems to prefer am3 + BigInteger.prototype.am = am3; + dbits = 28; + } + + BigInteger.prototype.DB = dbits; + BigInteger.prototype.DM = ((1<= 0; --i) r[i] = this[i]; + r.t = this.t; + r.s = this.s; + } + + // (protected) set from integer value x, -DV <= x < DV + function bnpFromInt(x) { + this.t = 1; + this.s = (x<0)?-1:0; + if(x > 0) this[0] = x; + else if(x < -1) this[0] = x+this.DV; + else this.t = 0; + } + + // return bigint initialized to value + function nbv(i) { var r = nbi(); r.fromInt(i); return r; } + + // (protected) set from string and radix + function bnpFromString(s,b) { + var k; + if(b == 16) k = 4; + else if(b == 8) k = 3; + else if(b == 256) k = 8; // byte array + else if(b == 2) k = 1; + else if(b == 32) k = 5; + else if(b == 4) k = 2; + else { this.fromRadix(s,b); return; } + this.t = 0; + this.s = 0; + var i = s.length, mi = false, sh = 0; + while(--i >= 0) { + var x = (k==8)?s[i]&0xff:intAt(s,i); + if(x < 0) { + if(s.charAt(i) == "-") mi = true; + continue; + } + mi = false; + if(sh == 0) + this[this.t++] = x; + else if(sh+k > this.DB) { + this[this.t-1] |= (x&((1<<(this.DB-sh))-1))<>(this.DB-sh)); + } + else + this[this.t-1] |= x<= this.DB) sh -= this.DB; + } + if(k == 8 && (s[0]&0x80) != 0) { + this.s = -1; + if(sh > 0) this[this.t-1] |= ((1<<(this.DB-sh))-1)< 0 && this[this.t-1] == c) --this.t; + } + + // (public) return string representation in given radix + function bnToString(b) { + if(this.s < 0) return "-"+this.negate().toString(b); + var k; + if(b == 16) k = 4; + else if(b == 8) k = 3; + else if(b == 2) k = 1; + else if(b == 32) k = 5; + else if(b == 4) k = 2; + else return this.toRadix(b); + var km = (1< 0) { + if(p < this.DB && (d = this[i]>>p) > 0) { m = true; r = int2char(d); } + while(i >= 0) { + if(p < k) { + d = (this[i]&((1<>(p+=this.DB-k); + } + else { + d = (this[i]>>(p-=k))&km; + if(p <= 0) { p += this.DB; --i; } + } + if(d > 0) m = true; + if(m) r += int2char(d); + } + } + return m?r:"0"; + } + + // (public) -this + function bnNegate() { var r = nbi(); BigInteger.ZERO.subTo(this,r); return r; } + + // (public) |this| + function bnAbs() { return (this.s<0)?this.negate():this; } + + // (public) return + if this > a, - if this < a, 0 if equal + function bnCompareTo(a) { + var r = this.s-a.s; + if(r != 0) return r; + var i = this.t; + r = i-a.t; + if(r != 0) return (this.s<0)?-r:r; + while(--i >= 0) if((r=this[i]-a[i]) != 0) return r; + return 0; + } + + // returns bit length of the integer x + function nbits(x) { + var r = 1, t; + if((t=x>>>16) != 0) { x = t; r += 16; } + if((t=x>>8) != 0) { x = t; r += 8; } + if((t=x>>4) != 0) { x = t; r += 4; } + if((t=x>>2) != 0) { x = t; r += 2; } + if((t=x>>1) != 0) { x = t; r += 1; } + return r; + } + + // (public) return the number of bits in "this" + function bnBitLength() { + if(this.t <= 0) return 0; + return this.DB*(this.t-1)+nbits(this[this.t-1]^(this.s&this.DM)); + } + + // (protected) r = this << n*DB + function bnpDLShiftTo(n,r) { + var i; + for(i = this.t-1; i >= 0; --i) r[i+n] = this[i]; + for(i = n-1; i >= 0; --i) r[i] = 0; + r.t = this.t+n; + r.s = this.s; + } + + // (protected) r = this >> n*DB + function bnpDRShiftTo(n,r) { + for(var i = n; i < this.t; ++i) r[i-n] = this[i]; + r.t = Math.max(this.t-n,0); + r.s = this.s; + } + + // (protected) r = this << n + function bnpLShiftTo(n,r) { + var bs = n%this.DB; + var cbs = this.DB-bs; + var bm = (1<= 0; --i) { + r[i+ds+1] = (this[i]>>cbs)|c; + c = (this[i]&bm)<= 0; --i) r[i] = 0; + r[ds] = c; + r.t = this.t+ds+1; + r.s = this.s; + r.clamp(); + } + + // (protected) r = this >> n + function bnpRShiftTo(n,r) { + r.s = this.s; + var ds = Math.floor(n/this.DB); + if(ds >= this.t) { r.t = 0; return; } + var bs = n%this.DB; + var cbs = this.DB-bs; + var bm = (1<>bs; + for(var i = ds+1; i < this.t; ++i) { + r[i-ds-1] |= (this[i]&bm)<>bs; + } + if(bs > 0) r[this.t-ds-1] |= (this.s&bm)<>= this.DB; + } + if(a.t < this.t) { + c -= a.s; + while(i < this.t) { + c += this[i]; + r[i++] = c&this.DM; + c >>= this.DB; + } + c += this.s; + } + else { + c += this.s; + while(i < a.t) { + c -= a[i]; + r[i++] = c&this.DM; + c >>= this.DB; + } + c -= a.s; + } + r.s = (c<0)?-1:0; + if(c < -1) r[i++] = this.DV+c; + else if(c > 0) r[i++] = c; + r.t = i; + r.clamp(); + } + + // (protected) r = this * a, r != this,a (HAC 14.12) + // "this" should be the larger one if appropriate. + function bnpMultiplyTo(a,r) { + var x = this.abs(), y = a.abs(); + var i = x.t; + r.t = i+y.t; + while(--i >= 0) r[i] = 0; + for(i = 0; i < y.t; ++i) r[i+x.t] = x.am(0,y[i],r,i,0,x.t); + r.s = 0; + r.clamp(); + if(this.s != a.s) BigInteger.ZERO.subTo(r,r); + } + + // (protected) r = this^2, r != this (HAC 14.16) + function bnpSquareTo(r) { + var x = this.abs(); + var i = r.t = 2*x.t; + while(--i >= 0) r[i] = 0; + for(i = 0; i < x.t-1; ++i) { + var c = x.am(i,x[i],r,2*i,0,1); + if((r[i+x.t]+=x.am(i+1,2*x[i],r,2*i+1,c,x.t-i-1)) >= x.DV) { + r[i+x.t] -= x.DV; + r[i+x.t+1] = 1; + } + } + if(r.t > 0) r[r.t-1] += x.am(i,x[i],r,2*i,0,1); + r.s = 0; + r.clamp(); + } + + // (protected) divide this by m, quotient and remainder to q, r (HAC 14.20) + // r != q, this != m. q or r may be null. + function bnpDivRemTo(m,q,r) { + var pm = m.abs(); + if(pm.t <= 0) return; + var pt = this.abs(); + if(pt.t < pm.t) { + if(q != null) q.fromInt(0); + if(r != null) this.copyTo(r); + return; + } + if(r == null) r = nbi(); + var y = nbi(), ts = this.s, ms = m.s; + var nsh = this.DB-nbits(pm[pm.t-1]); // normalize modulus + if(nsh > 0) { pm.lShiftTo(nsh,y); pt.lShiftTo(nsh,r); } + else { pm.copyTo(y); pt.copyTo(r); } + var ys = y.t; + var y0 = y[ys-1]; + if(y0 == 0) return; + var yt = y0*(1<1)?y[ys-2]>>this.F2:0); + var d1 = this.FV/yt, d2 = (1<= 0) { + r[r.t++] = 1; + r.subTo(t,r); + } + BigInteger.ONE.dlShiftTo(ys,t); + t.subTo(y,y); // "negative" y so we can replace sub with am later + while(y.t < ys) y[y.t++] = 0; + while(--j >= 0) { + // Estimate quotient digit + var qd = (r[--i]==y0)?this.DM:Math.floor(r[i]*d1+(r[i-1]+e)*d2); + if((r[i]+=y.am(0,qd,r,j,0,ys)) < qd) { // Try it out + y.dlShiftTo(j,t); + r.subTo(t,r); + while(r[i] < --qd) r.subTo(t,r); + } + } + if(q != null) { + r.drShiftTo(ys,q); + if(ts != ms) BigInteger.ZERO.subTo(q,q); + } + r.t = ys; + r.clamp(); + if(nsh > 0) r.rShiftTo(nsh,r); // Denormalize remainder + if(ts < 0) BigInteger.ZERO.subTo(r,r); + } + + // (public) this mod a + function bnMod(a) { + var r = nbi(); + this.abs().divRemTo(a,null,r); + if(this.s < 0 && r.compareTo(BigInteger.ZERO) > 0) a.subTo(r,r); + return r; + } + + // Modular reduction using "classic" algorithm + function Classic(m) { this.m = m; } + function cConvert(x) { + if(x.s < 0 || x.compareTo(this.m) >= 0) return x.mod(this.m); + else return x; + } + function cRevert(x) { return x; } + function cReduce(x) { x.divRemTo(this.m,null,x); } + function cMulTo(x,y,r) { x.multiplyTo(y,r); this.reduce(r); } + function cSqrTo(x,r) { x.squareTo(r); this.reduce(r); } + + Classic.prototype.convert = cConvert; + Classic.prototype.revert = cRevert; + Classic.prototype.reduce = cReduce; + Classic.prototype.mulTo = cMulTo; + Classic.prototype.sqrTo = cSqrTo; + + // (protected) return "-1/this % 2^DB"; useful for Mont. reduction + // justification: + // xy == 1 (mod m) + // xy = 1+km + // xy(2-xy) = (1+km)(1-km) + // x[y(2-xy)] = 1-k^2m^2 + // x[y(2-xy)] == 1 (mod m^2) + // if y is 1/x mod m, then y(2-xy) is 1/x mod m^2 + // should reduce x and y(2-xy) by m^2 at each step to keep size bounded. + // JS multiply "overflows" differently from C/C++, so care is needed here. + function bnpInvDigit() { + if(this.t < 1) return 0; + var x = this[0]; + if((x&1) == 0) return 0; + var y = x&3; // y == 1/x mod 2^2 + y = (y*(2-(x&0xf)*y))&0xf; // y == 1/x mod 2^4 + y = (y*(2-(x&0xff)*y))&0xff; // y == 1/x mod 2^8 + y = (y*(2-(((x&0xffff)*y)&0xffff)))&0xffff; // y == 1/x mod 2^16 + // last step - calculate inverse mod DV directly; + // assumes 16 < DB <= 32 and assumes ability to handle 48-bit ints + y = (y*(2-x*y%this.DV))%this.DV; // y == 1/x mod 2^dbits + // we really want the negative inverse, and -DV < y < DV + return (y>0)?this.DV-y:-y; + } + + // Montgomery reduction + function Montgomery(m) { + this.m = m; + this.mp = m.invDigit(); + this.mpl = this.mp&0x7fff; + this.mph = this.mp>>15; + this.um = (1<<(m.DB-15))-1; + this.mt2 = 2*m.t; + } + + // xR mod m + function montConvert(x) { + var r = nbi(); + x.abs().dlShiftTo(this.m.t,r); + r.divRemTo(this.m,null,r); + if(x.s < 0 && r.compareTo(BigInteger.ZERO) > 0) this.m.subTo(r,r); + return r; + } + + // x/R mod m + function montRevert(x) { + var r = nbi(); + x.copyTo(r); + this.reduce(r); + return r; + } + + // x = x/R mod m (HAC 14.32) + function montReduce(x) { + while(x.t <= this.mt2) // pad x so am has enough room later + x[x.t++] = 0; + for(var i = 0; i < this.m.t; ++i) { + // faster way of calculating u0 = x[i]*mp mod DV + var j = x[i]&0x7fff; + var u0 = (j*this.mpl+(((j*this.mph+(x[i]>>15)*this.mpl)&this.um)<<15))&x.DM; + // use am to combine the multiply-shift-add into one call + j = i+this.m.t; + x[j] += this.m.am(0,u0,x,i,0,this.m.t); + // propagate carry + while(x[j] >= x.DV) { x[j] -= x.DV; x[++j]++; } + } + x.clamp(); + x.drShiftTo(this.m.t,x); + if(x.compareTo(this.m) >= 0) x.subTo(this.m,x); + } + + // r = "x^2/R mod m"; x != r + function montSqrTo(x,r) { x.squareTo(r); this.reduce(r); } + + // r = "xy/R mod m"; x,y != r + function montMulTo(x,y,r) { x.multiplyTo(y,r); this.reduce(r); } + + Montgomery.prototype.convert = montConvert; + Montgomery.prototype.revert = montRevert; + Montgomery.prototype.reduce = montReduce; + Montgomery.prototype.mulTo = montMulTo; + Montgomery.prototype.sqrTo = montSqrTo; + + // (protected) true iff this is even + function bnpIsEven() { return ((this.t>0)?(this[0]&1):this.s) == 0; } + + // (protected) this^e, e < 2^32, doing sqr and mul with "r" (HAC 14.79) + function bnpExp(e,z) { + if(e > 0xffffffff || e < 1) return BigInteger.ONE; + var r = nbi(), r2 = nbi(), g = z.convert(this), i = nbits(e)-1; + g.copyTo(r); + while(--i >= 0) { + z.sqrTo(r,r2); + if((e&(1< 0) z.mulTo(r2,g,r); + else { var t = r; r = r2; r2 = t; } + } + return z.revert(r); + } + + // (public) this^e % m, 0 <= e < 2^32 + function bnModPowInt(e,m) { + var z; + if(e < 256 || m.isEven()) z = new Classic(m); else z = new Montgomery(m); + return this.exp(e,z); + } + + // protected + BigInteger.prototype.copyTo = bnpCopyTo; + BigInteger.prototype.fromInt = bnpFromInt; + BigInteger.prototype.fromString = bnpFromString; + BigInteger.prototype.clamp = bnpClamp; + BigInteger.prototype.dlShiftTo = bnpDLShiftTo; + BigInteger.prototype.drShiftTo = bnpDRShiftTo; + BigInteger.prototype.lShiftTo = bnpLShiftTo; + BigInteger.prototype.rShiftTo = bnpRShiftTo; + BigInteger.prototype.subTo = bnpSubTo; + BigInteger.prototype.multiplyTo = bnpMultiplyTo; + BigInteger.prototype.squareTo = bnpSquareTo; + BigInteger.prototype.divRemTo = bnpDivRemTo; + BigInteger.prototype.invDigit = bnpInvDigit; + BigInteger.prototype.isEven = bnpIsEven; + BigInteger.prototype.exp = bnpExp; + + // public + BigInteger.prototype.toString = bnToString; + BigInteger.prototype.negate = bnNegate; + BigInteger.prototype.abs = bnAbs; + BigInteger.prototype.compareTo = bnCompareTo; + BigInteger.prototype.bitLength = bnBitLength; + BigInteger.prototype.mod = bnMod; + BigInteger.prototype.modPowInt = bnModPowInt; + + // "constants" + BigInteger.ZERO = nbv(0); + BigInteger.ONE = nbv(1); + + // Copyright (c) 2005-2009 Tom Wu + // All Rights Reserved. + // See "LICENSE" for details. + + // Extended JavaScript BN functions, required for RSA private ops. + + // Version 1.1: new BigInteger("0", 10) returns "proper" zero + // Version 1.2: square() API, isProbablePrime fix + + // (public) + function bnClone() { var r = nbi(); this.copyTo(r); return r; } + + // (public) return value as integer + function bnIntValue() { + if(this.s < 0) { + if(this.t == 1) return this[0]-this.DV; + else if(this.t == 0) return -1; + } + else if(this.t == 1) return this[0]; + else if(this.t == 0) return 0; + // assumes 16 < DB < 32 + return ((this[1]&((1<<(32-this.DB))-1))<>24; } + + // (public) return value as short (assumes DB>=16) + function bnShortValue() { return (this.t==0)?this.s:(this[0]<<16)>>16; } + + // (protected) return x s.t. r^x < DV + function bnpChunkSize(r) { return Math.floor(Math.LN2*this.DB/Math.log(r)); } + + // (public) 0 if this == 0, 1 if this > 0 + function bnSigNum() { + if(this.s < 0) return -1; + else if(this.t <= 0 || (this.t == 1 && this[0] <= 0)) return 0; + else return 1; + } + + // (protected) convert to radix string + function bnpToRadix(b) { + if(b == null) b = 10; + if(this.signum() == 0 || b < 2 || b > 36) return "0"; + var cs = this.chunkSize(b); + var a = Math.pow(b,cs); + var d = nbv(a), y = nbi(), z = nbi(), r = ""; + this.divRemTo(d,y,z); + while(y.signum() > 0) { + r = (a+z.intValue()).toString(b).substr(1) + r; + y.divRemTo(d,y,z); + } + return z.intValue().toString(b) + r; + } + + // (protected) convert from radix string + function bnpFromRadix(s,b) { + this.fromInt(0); + if(b == null) b = 10; + var cs = this.chunkSize(b); + var d = Math.pow(b,cs), mi = false, j = 0, w = 0; + for(var i = 0; i < s.length; ++i) { + var x = intAt(s,i); + if(x < 0) { + if(s.charAt(i) == "-" && this.signum() == 0) mi = true; + continue; + } + w = b*w+x; + if(++j >= cs) { + this.dMultiply(d); + this.dAddOffset(w,0); + j = 0; + w = 0; + } + } + if(j > 0) { + this.dMultiply(Math.pow(b,j)); + this.dAddOffset(w,0); + } + if(mi) BigInteger.ZERO.subTo(this,this); + } + + // (protected) alternate constructor + function bnpFromNumber(a,b,c) { + if("number" == typeof b) { + // new BigInteger(int,int,RNG) + if(a < 2) this.fromInt(1); + else { + this.fromNumber(a,c); + if(!this.testBit(a-1)) // force MSB set + this.bitwiseTo(BigInteger.ONE.shiftLeft(a-1),op_or,this); + if(this.isEven()) this.dAddOffset(1,0); // force odd + while(!this.isProbablePrime(b)) { + this.dAddOffset(2,0); + if(this.bitLength() > a) this.subTo(BigInteger.ONE.shiftLeft(a-1),this); + } + } + } + else { + // new BigInteger(int,RNG) + var x = new Array(), t = a&7; + x.length = (a>>3)+1; + b.nextBytes(x); + if(t > 0) x[0] &= ((1< 0) { + if(p < this.DB && (d = this[i]>>p) != (this.s&this.DM)>>p) + r[k++] = d|(this.s<<(this.DB-p)); + while(i >= 0) { + if(p < 8) { + d = (this[i]&((1<>(p+=this.DB-8); + } + else { + d = (this[i]>>(p-=8))&0xff; + if(p <= 0) { p += this.DB; --i; } + } + if((d&0x80) != 0) d |= -256; + if(k == 0 && (this.s&0x80) != (d&0x80)) ++k; + if(k > 0 || d != this.s) r[k++] = d; + } + } + return r; + } + + function bnEquals(a) { return(this.compareTo(a)==0); } + function bnMin(a) { return(this.compareTo(a)<0)?this:a; } + function bnMax(a) { return(this.compareTo(a)>0)?this:a; } + + // (protected) r = this op a (bitwise) + function bnpBitwiseTo(a,op,r) { + var i, f, m = Math.min(a.t,this.t); + for(i = 0; i < m; ++i) r[i] = op(this[i],a[i]); + if(a.t < this.t) { + f = a.s&this.DM; + for(i = m; i < this.t; ++i) r[i] = op(this[i],f); + r.t = this.t; + } + else { + f = this.s&this.DM; + for(i = m; i < a.t; ++i) r[i] = op(f,a[i]); + r.t = a.t; + } + r.s = op(this.s,a.s); + r.clamp(); + } + + // (public) this & a + function op_and(x,y) { return x&y; } + function bnAnd(a) { var r = nbi(); this.bitwiseTo(a,op_and,r); return r; } + + // (public) this | a + function op_or(x,y) { return x|y; } + function bnOr(a) { var r = nbi(); this.bitwiseTo(a,op_or,r); return r; } + + // (public) this ^ a + function op_xor(x,y) { return x^y; } + function bnXor(a) { var r = nbi(); this.bitwiseTo(a,op_xor,r); return r; } + + // (public) this & ~a + function op_andnot(x,y) { return x&~y; } + function bnAndNot(a) { var r = nbi(); this.bitwiseTo(a,op_andnot,r); return r; } + + // (public) ~this + function bnNot() { + var r = nbi(); + for(var i = 0; i < this.t; ++i) r[i] = this.DM&~this[i]; + r.t = this.t; + r.s = ~this.s; + return r; + } + + // (public) this << n + function bnShiftLeft(n) { + var r = nbi(); + if(n < 0) this.rShiftTo(-n,r); else this.lShiftTo(n,r); + return r; + } + + // (public) this >> n + function bnShiftRight(n) { + var r = nbi(); + if(n < 0) this.lShiftTo(-n,r); else this.rShiftTo(n,r); + return r; + } + + // return index of lowest 1-bit in x, x < 2^31 + function lbit(x) { + if(x == 0) return -1; + var r = 0; + if((x&0xffff) == 0) { x >>= 16; r += 16; } + if((x&0xff) == 0) { x >>= 8; r += 8; } + if((x&0xf) == 0) { x >>= 4; r += 4; } + if((x&3) == 0) { x >>= 2; r += 2; } + if((x&1) == 0) ++r; + return r; + } + + // (public) returns index of lowest 1-bit (or -1 if none) + function bnGetLowestSetBit() { + for(var i = 0; i < this.t; ++i) + if(this[i] != 0) return i*this.DB+lbit(this[i]); + if(this.s < 0) return this.t*this.DB; + return -1; + } + + // return number of 1 bits in x + function cbit(x) { + var r = 0; + while(x != 0) { x &= x-1; ++r; } + return r; + } + + // (public) return number of set bits + function bnBitCount() { + var r = 0, x = this.s&this.DM; + for(var i = 0; i < this.t; ++i) r += cbit(this[i]^x); + return r; + } + + // (public) true iff nth bit is set + function bnTestBit(n) { + var j = Math.floor(n/this.DB); + if(j >= this.t) return(this.s!=0); + return((this[j]&(1<<(n%this.DB)))!=0); + } + + // (protected) this op (1<>= this.DB; + } + if(a.t < this.t) { + c += a.s; + while(i < this.t) { + c += this[i]; + r[i++] = c&this.DM; + c >>= this.DB; + } + c += this.s; + } + else { + c += this.s; + while(i < a.t) { + c += a[i]; + r[i++] = c&this.DM; + c >>= this.DB; + } + c += a.s; + } + r.s = (c<0)?-1:0; + if(c > 0) r[i++] = c; + else if(c < -1) r[i++] = this.DV+c; + r.t = i; + r.clamp(); + } + + // (public) this + a + function bnAdd(a) { var r = nbi(); this.addTo(a,r); return r; } + + // (public) this - a + function bnSubtract(a) { var r = nbi(); this.subTo(a,r); return r; } + + // (public) this * a + function bnMultiply(a) { var r = nbi(); this.multiplyTo(a,r); return r; } + + // (public) this^2 + function bnSquare() { var r = nbi(); this.squareTo(r); return r; } + + // (public) this / a + function bnDivide(a) { var r = nbi(); this.divRemTo(a,r,null); return r; } + + // (public) this % a + function bnRemainder(a) { var r = nbi(); this.divRemTo(a,null,r); return r; } + + // (public) [this/a,this%a] + function bnDivideAndRemainder(a) { + var q = nbi(), r = nbi(); + this.divRemTo(a,q,r); + return new Array(q,r); + } + + // (protected) this *= n, this >= 0, 1 < n < DV + function bnpDMultiply(n) { + this[this.t] = this.am(0,n-1,this,0,0,this.t); + ++this.t; + this.clamp(); + } + + // (protected) this += n << w words, this >= 0 + function bnpDAddOffset(n,w) { + if(n == 0) return; + while(this.t <= w) this[this.t++] = 0; + this[w] += n; + while(this[w] >= this.DV) { + this[w] -= this.DV; + if(++w >= this.t) this[this.t++] = 0; + ++this[w]; + } + } + + // A "null" reducer + function NullExp() {} + function nNop(x) { return x; } + function nMulTo(x,y,r) { x.multiplyTo(y,r); } + function nSqrTo(x,r) { x.squareTo(r); } + + NullExp.prototype.convert = nNop; + NullExp.prototype.revert = nNop; + NullExp.prototype.mulTo = nMulTo; + NullExp.prototype.sqrTo = nSqrTo; + + // (public) this^e + function bnPow(e) { return this.exp(e,new NullExp()); } + + // (protected) r = lower n words of "this * a", a.t <= n + // "this" should be the larger one if appropriate. + function bnpMultiplyLowerTo(a,n,r) { + var i = Math.min(this.t+a.t,n); + r.s = 0; // assumes a,this >= 0 + r.t = i; + while(i > 0) r[--i] = 0; + var j; + for(j = r.t-this.t; i < j; ++i) r[i+this.t] = this.am(0,a[i],r,i,0,this.t); + for(j = Math.min(a.t,n); i < j; ++i) this.am(0,a[i],r,i,0,n-i); + r.clamp(); + } + + // (protected) r = "this * a" without lower n words, n > 0 + // "this" should be the larger one if appropriate. + function bnpMultiplyUpperTo(a,n,r) { + --n; + var i = r.t = this.t+a.t-n; + r.s = 0; // assumes a,this >= 0 + while(--i >= 0) r[i] = 0; + for(i = Math.max(n-this.t,0); i < a.t; ++i) + r[this.t+i-n] = this.am(n-i,a[i],r,0,0,this.t+i-n); + r.clamp(); + r.drShiftTo(1,r); + } + + // Barrett modular reduction + function Barrett(m) { + // setup Barrett + this.r2 = nbi(); + this.q3 = nbi(); + BigInteger.ONE.dlShiftTo(2*m.t,this.r2); + this.mu = this.r2.divide(m); + this.m = m; + } + + function barrettConvert(x) { + if(x.s < 0 || x.t > 2*this.m.t) return x.mod(this.m); + else if(x.compareTo(this.m) < 0) return x; + else { var r = nbi(); x.copyTo(r); this.reduce(r); return r; } + } + + function barrettRevert(x) { return x; } + + // x = x mod m (HAC 14.42) + function barrettReduce(x) { + x.drShiftTo(this.m.t-1,this.r2); + if(x.t > this.m.t+1) { x.t = this.m.t+1; x.clamp(); } + this.mu.multiplyUpperTo(this.r2,this.m.t+1,this.q3); + this.m.multiplyLowerTo(this.q3,this.m.t+1,this.r2); + while(x.compareTo(this.r2) < 0) x.dAddOffset(1,this.m.t+1); + x.subTo(this.r2,x); + while(x.compareTo(this.m) >= 0) x.subTo(this.m,x); + } + + // r = x^2 mod m; x != r + function barrettSqrTo(x,r) { x.squareTo(r); this.reduce(r); } + + // r = x*y mod m; x,y != r + function barrettMulTo(x,y,r) { x.multiplyTo(y,r); this.reduce(r); } + + Barrett.prototype.convert = barrettConvert; + Barrett.prototype.revert = barrettRevert; + Barrett.prototype.reduce = barrettReduce; + Barrett.prototype.mulTo = barrettMulTo; + Barrett.prototype.sqrTo = barrettSqrTo; + + // (public) this^e % m (HAC 14.85) + function bnModPow(e,m) { + var i = e.bitLength(), k, r = nbv(1), z; + if(i <= 0) return r; + else if(i < 18) k = 1; + else if(i < 48) k = 3; + else if(i < 144) k = 4; + else if(i < 768) k = 5; + else k = 6; + if(i < 8) + z = new Classic(m); + else if(m.isEven()) + z = new Barrett(m); + else + z = new Montgomery(m); + + // precomputation + var g = new Array(), n = 3, k1 = k-1, km = (1< 1) { + var g2 = nbi(); + z.sqrTo(g[1],g2); + while(n <= km) { + g[n] = nbi(); + z.mulTo(g2,g[n-2],g[n]); + n += 2; + } + } + + var j = e.t-1, w, is1 = true, r2 = nbi(), t; + i = nbits(e[j])-1; + while(j >= 0) { + if(i >= k1) w = (e[j]>>(i-k1))&km; + else { + w = (e[j]&((1<<(i+1))-1))<<(k1-i); + if(j > 0) w |= e[j-1]>>(this.DB+i-k1); + } + + n = k; + while((w&1) == 0) { w >>= 1; --n; } + if((i -= n) < 0) { i += this.DB; --j; } + if(is1) { // ret == 1, don't bother squaring or multiplying it + g[w].copyTo(r); + is1 = false; + } + else { + while(n > 1) { z.sqrTo(r,r2); z.sqrTo(r2,r); n -= 2; } + if(n > 0) z.sqrTo(r,r2); else { t = r; r = r2; r2 = t; } + z.mulTo(r2,g[w],r); + } + + while(j >= 0 && (e[j]&(1< 0) { + x.rShiftTo(g,x); + y.rShiftTo(g,y); + } + while(x.signum() > 0) { + if((i = x.getLowestSetBit()) > 0) x.rShiftTo(i,x); + if((i = y.getLowestSetBit()) > 0) y.rShiftTo(i,y); + if(x.compareTo(y) >= 0) { + x.subTo(y,x); + x.rShiftTo(1,x); + } + else { + y.subTo(x,y); + y.rShiftTo(1,y); + } + } + if(g > 0) y.lShiftTo(g,y); + return y; + } + + // (protected) this % n, n < 2^26 + function bnpModInt(n) { + if(n <= 0) return 0; + var d = this.DV%n, r = (this.s<0)?n-1:0; + if(this.t > 0) + if(d == 0) r = this[0]%n; + else for(var i = this.t-1; i >= 0; --i) r = (d*r+this[i])%n; + return r; + } + + // (public) 1/this % m (HAC 14.61) + function bnModInverse(m) { + var ac = m.isEven(); + if((this.isEven() && ac) || m.signum() == 0) return BigInteger.ZERO; + var u = m.clone(), v = this.clone(); + var a = nbv(1), b = nbv(0), c = nbv(0), d = nbv(1); + while(u.signum() != 0) { + while(u.isEven()) { + u.rShiftTo(1,u); + if(ac) { + if(!a.isEven() || !b.isEven()) { a.addTo(this,a); b.subTo(m,b); } + a.rShiftTo(1,a); + } + else if(!b.isEven()) b.subTo(m,b); + b.rShiftTo(1,b); + } + while(v.isEven()) { + v.rShiftTo(1,v); + if(ac) { + if(!c.isEven() || !d.isEven()) { c.addTo(this,c); d.subTo(m,d); } + c.rShiftTo(1,c); + } + else if(!d.isEven()) d.subTo(m,d); + d.rShiftTo(1,d); + } + if(u.compareTo(v) >= 0) { + u.subTo(v,u); + if(ac) a.subTo(c,a); + b.subTo(d,b); + } + else { + v.subTo(u,v); + if(ac) c.subTo(a,c); + d.subTo(b,d); + } + } + if(v.compareTo(BigInteger.ONE) != 0) return BigInteger.ZERO; + if(d.compareTo(m) >= 0) return d.subtract(m); + if(d.signum() < 0) d.addTo(m,d); else return d; + if(d.signum() < 0) return d.add(m); else return d; + } + + var lowprimes = [2,3,5,7,11,13,17,19,23,29,31,37,41,43,47,53,59,61,67,71,73,79,83,89,97,101,103,107,109,113,127,131,137,139,149,151,157,163,167,173,179,181,191,193,197,199,211,223,227,229,233,239,241,251,257,263,269,271,277,281,283,293,307,311,313,317,331,337,347,349,353,359,367,373,379,383,389,397,401,409,419,421,431,433,439,443,449,457,461,463,467,479,487,491,499,503,509,521,523,541,547,557,563,569,571,577,587,593,599,601,607,613,617,619,631,641,643,647,653,659,661,673,677,683,691,701,709,719,727,733,739,743,751,757,761,769,773,787,797,809,811,821,823,827,829,839,853,857,859,863,877,881,883,887,907,911,919,929,937,941,947,953,967,971,977,983,991,997]; + var lplim = (1<<26)/lowprimes[lowprimes.length-1]; + + // (public) test primality with certainty >= 1-.5^t + function bnIsProbablePrime(t) { + var i, x = this.abs(); + if(x.t == 1 && x[0] <= lowprimes[lowprimes.length-1]) { + for(i = 0; i < lowprimes.length; ++i) + if(x[0] == lowprimes[i]) return true; + return false; + } + if(x.isEven()) return false; + i = 1; + while(i < lowprimes.length) { + var m = lowprimes[i], j = i+1; + while(j < lowprimes.length && m < lplim) m *= lowprimes[j++]; + m = x.modInt(m); + while(i < j) if(m%lowprimes[i++] == 0) return false; + } + return x.millerRabin(t); + } + + // (protected) true if probably prime (HAC 4.24, Miller-Rabin) + function bnpMillerRabin(t) { + var n1 = this.subtract(BigInteger.ONE); + var k = n1.getLowestSetBit(); + if(k <= 0) return false; + var r = n1.shiftRight(k); + t = (t+1)>>1; + if(t > lowprimes.length) t = lowprimes.length; + var a = nbi(); + for(var i = 0; i < t; ++i) { + //Pick bases at random, instead of starting at 2 + a.fromInt(lowprimes[Math.floor(Math.random()*lowprimes.length)]); + var y = a.modPow(r,this); + if(y.compareTo(BigInteger.ONE) != 0 && y.compareTo(n1) != 0) { + var j = 1; + while(j++ < k && y.compareTo(n1) != 0) { + y = y.modPowInt(2,this); + if(y.compareTo(BigInteger.ONE) == 0) return false; + } + if(y.compareTo(n1) != 0) return false; + } + } + return true; + } + + // protected + BigInteger.prototype.chunkSize = bnpChunkSize; + BigInteger.prototype.toRadix = bnpToRadix; + BigInteger.prototype.fromRadix = bnpFromRadix; + BigInteger.prototype.fromNumber = bnpFromNumber; + BigInteger.prototype.bitwiseTo = bnpBitwiseTo; + BigInteger.prototype.changeBit = bnpChangeBit; + BigInteger.prototype.addTo = bnpAddTo; + BigInteger.prototype.dMultiply = bnpDMultiply; + BigInteger.prototype.dAddOffset = bnpDAddOffset; + BigInteger.prototype.multiplyLowerTo = bnpMultiplyLowerTo; + BigInteger.prototype.multiplyUpperTo = bnpMultiplyUpperTo; + BigInteger.prototype.modInt = bnpModInt; + BigInteger.prototype.millerRabin = bnpMillerRabin; + + // public + BigInteger.prototype.clone = bnClone; + BigInteger.prototype.intValue = bnIntValue; + BigInteger.prototype.byteValue = bnByteValue; + BigInteger.prototype.shortValue = bnShortValue; + BigInteger.prototype.signum = bnSigNum; + BigInteger.prototype.toByteArray = bnToByteArray; + BigInteger.prototype.equals = bnEquals; + BigInteger.prototype.min = bnMin; + BigInteger.prototype.max = bnMax; + BigInteger.prototype.and = bnAnd; + BigInteger.prototype.or = bnOr; + BigInteger.prototype.xor = bnXor; + BigInteger.prototype.andNot = bnAndNot; + BigInteger.prototype.not = bnNot; + BigInteger.prototype.shiftLeft = bnShiftLeft; + BigInteger.prototype.shiftRight = bnShiftRight; + BigInteger.prototype.getLowestSetBit = bnGetLowestSetBit; + BigInteger.prototype.bitCount = bnBitCount; + BigInteger.prototype.testBit = bnTestBit; + BigInteger.prototype.setBit = bnSetBit; + BigInteger.prototype.clearBit = bnClearBit; + BigInteger.prototype.flipBit = bnFlipBit; + BigInteger.prototype.add = bnAdd; + BigInteger.prototype.subtract = bnSubtract; + BigInteger.prototype.multiply = bnMultiply; + BigInteger.prototype.divide = bnDivide; + BigInteger.prototype.remainder = bnRemainder; + BigInteger.prototype.divideAndRemainder = bnDivideAndRemainder; + BigInteger.prototype.modPow = bnModPow; + BigInteger.prototype.modInverse = bnModInverse; + BigInteger.prototype.pow = bnPow; + BigInteger.prototype.gcd = bnGCD; + BigInteger.prototype.isProbablePrime = bnIsProbablePrime; + + // JSBN-specific extension + BigInteger.prototype.square = bnSquare; + + // Expose the Barrett function + BigInteger.prototype.Barrett = Barrett + + // BigInteger interfaces not implemented in jsbn: + + // BigInteger(int signum, byte[] magnitude) + // double doubleValue() + // float floatValue() + // int hashCode() + // long longValue() + // static BigInteger valueOf(long val) + + // Random number generator - requires a PRNG backend, e.g. prng4.js + + // For best results, put code like + // + // in your main HTML document. + + var rng_state; + var rng_pool; + var rng_pptr; + + // Mix in a 32-bit integer into the pool + function rng_seed_int(x) { + rng_pool[rng_pptr++] ^= x & 255; + rng_pool[rng_pptr++] ^= (x >> 8) & 255; + rng_pool[rng_pptr++] ^= (x >> 16) & 255; + rng_pool[rng_pptr++] ^= (x >> 24) & 255; + if(rng_pptr >= rng_psize) rng_pptr -= rng_psize; + } + + // Mix in the current time (w/milliseconds) into the pool + function rng_seed_time() { + rng_seed_int(new Date().getTime()); + } + + // Initialize the pool with junk if needed. + if(rng_pool == null) { + rng_pool = new Array(); + rng_pptr = 0; + var t; + if(typeof window !== "undefined" && window.crypto) { + if (window.crypto.getRandomValues) { + // Use webcrypto if available + var ua = new Uint8Array(32); + window.crypto.getRandomValues(ua); + for(t = 0; t < 32; ++t) + rng_pool[rng_pptr++] = ua[t]; + } + else if(navigator.appName == "Netscape" && navigator.appVersion < "5") { + // Extract entropy (256 bits) from NS4 RNG if available + var z = window.crypto.random(32); + for(t = 0; t < z.length; ++t) + rng_pool[rng_pptr++] = z.charCodeAt(t) & 255; + } + } + while(rng_pptr < rng_psize) { // extract some randomness from Math.random() + t = Math.floor(65536 * Math.random()); + rng_pool[rng_pptr++] = t >>> 8; + rng_pool[rng_pptr++] = t & 255; + } + rng_pptr = 0; + rng_seed_time(); + //rng_seed_int(window.screenX); + //rng_seed_int(window.screenY); + } + + function rng_get_byte() { + if(rng_state == null) { + rng_seed_time(); + rng_state = prng_newstate(); + rng_state.init(rng_pool); + for(rng_pptr = 0; rng_pptr < rng_pool.length; ++rng_pptr) + rng_pool[rng_pptr] = 0; + rng_pptr = 0; + //rng_pool = null; + } + // TODO: allow reseeding after first request + return rng_state.next(); + } + + function rng_get_bytes(ba) { + var i; + for(i = 0; i < ba.length; ++i) ba[i] = rng_get_byte(); + } + + function SecureRandom() {} + + SecureRandom.prototype.nextBytes = rng_get_bytes; + + // prng4.js - uses Arcfour as a PRNG + + function Arcfour() { + this.i = 0; + this.j = 0; + this.S = new Array(); + } + + // Initialize arcfour context from key, an array of ints, each from [0..255] + function ARC4init(key) { + var i, j, t; + for(i = 0; i < 256; ++i) + this.S[i] = i; + j = 0; + for(i = 0; i < 256; ++i) { + j = (j + this.S[i] + key[i % key.length]) & 255; + t = this.S[i]; + this.S[i] = this.S[j]; + this.S[j] = t; + } + this.i = 0; + this.j = 0; + } + + function ARC4next() { + var t; + this.i = (this.i + 1) & 255; + this.j = (this.j + this.S[this.i]) & 255; + t = this.S[this.i]; + this.S[this.i] = this.S[this.j]; + this.S[this.j] = t; + return this.S[(t + this.S[this.i]) & 255]; + } + + Arcfour.prototype.init = ARC4init; + Arcfour.prototype.next = ARC4next; + + // Plug in your RNG constructor here + function prng_newstate() { + return new Arcfour(); + } + + // Pool size must be a multiple of 4 and greater than 32. + // An array of bytes the size of the pool will be passed to init() + var rng_psize = 256; + + if (typeof exports !== 'undefined') { + exports = module.exports = { + default: BigInteger, + BigInteger: BigInteger, + SecureRandom: SecureRandom, + }; + } else { + this.jsbn = { + BigInteger: BigInteger, + SecureRandom: SecureRandom + }; + } + +}).call(this); diff --git a/novas/novacore-zephyr/groq-code-cli/node_modules/jsbn/package.json b/novas/novacore-zephyr/groq-code-cli/node_modules/jsbn/package.json new file mode 100644 index 0000000000000000000000000000000000000000..97b137c2e2db9bb2524018caa165e362e6f91157 --- /dev/null +++ b/novas/novacore-zephyr/groq-code-cli/node_modules/jsbn/package.json @@ -0,0 +1,21 @@ +{ + "name": "jsbn", + "version": "1.1.0", + "description": "The jsbn library is a fast, portable implementation of large-number math in pure JavaScript, enabling public-key crypto and other applications on desktop and mobile browsers.", + "main": "index.js", + "scripts": { + "test": "mocha test.js" + }, + "repository": { + "type": "git", + "url": "https://github.com/andyperlitch/jsbn.git" + }, + "keywords": [ + "biginteger", + "bignumber", + "big", + "integer" + ], + "author": "Tom Wu", + "license": "MIT" +} diff --git a/novas/novacore-zephyr/groq-code-cli/node_modules/jsesc/LICENSE-MIT.txt b/novas/novacore-zephyr/groq-code-cli/node_modules/jsesc/LICENSE-MIT.txt new file mode 100644 index 0000000000000000000000000000000000000000..a41e0a7ef970ecdd83d82cd99bda97b22077bc62 --- /dev/null +++ b/novas/novacore-zephyr/groq-code-cli/node_modules/jsesc/LICENSE-MIT.txt @@ -0,0 +1,20 @@ +Copyright Mathias Bynens + +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. diff --git a/novas/novacore-zephyr/groq-code-cli/node_modules/jsesc/README.md b/novas/novacore-zephyr/groq-code-cli/node_modules/jsesc/README.md new file mode 100644 index 0000000000000000000000000000000000000000..840d2c857df885e8234aca979f3a136f88869ab8 --- /dev/null +++ b/novas/novacore-zephyr/groq-code-cli/node_modules/jsesc/README.md @@ -0,0 +1,422 @@ +# jsesc + +Given some data, _jsesc_ returns a stringified representation of that data. jsesc is similar to `JSON.stringify()` except: + +1. it outputs JavaScript instead of JSON [by default](#json), enabling support for data structures like ES6 maps and sets; +2. it offers [many options](#api) to customize the output; +3. its output is ASCII-safe [by default](#minimal), thanks to its use of [escape sequences](https://mathiasbynens.be/notes/javascript-escapes) where needed. + +For any input, jsesc generates the shortest possible valid printable-ASCII-only output. [Here’s an online demo.](https://mothereff.in/js-escapes) + +jsesc’s output can be used instead of `JSON.stringify`’s to avoid [mojibake](https://en.wikipedia.org/wiki/Mojibake) and other encoding issues, or even to [avoid errors](https://twitter.com/annevk/status/380000829643571200) when passing JSON-formatted data (which may contain U+2028 LINE SEPARATOR, U+2029 PARAGRAPH SEPARATOR, or [lone surrogates](https://esdiscuss.org/topic/code-points-vs-unicode-scalar-values#content-14)) to a JavaScript parser or an UTF-8 encoder. + +## Installation + +Via [npm](https://www.npmjs.com/): + +```bash +npm install jsesc +``` + +In [Node.js](https://nodejs.org/): + +```js +const jsesc = require('jsesc'); +``` + +## API + +### `jsesc(value, options)` + +This function takes a value and returns an escaped version of the value where any characters that are not printable ASCII symbols are escaped using the shortest possible (but valid) [escape sequences for use in JavaScript strings](https://mathiasbynens.be/notes/javascript-escapes). The first supported value type is strings: + +```js +jsesc('Ich ♥ Bücher'); +// → 'Ich \\u2665 B\\xFCcher' + +jsesc('foo 𝌆 bar'); +// → 'foo \\uD834\\uDF06 bar' +``` + +Instead of a string, the `value` can also be an array, an object, a map, a set, or a buffer. In such cases, `jsesc` returns a stringified version of the value where any characters that are not printable ASCII symbols are escaped in the same way. + +```js +// Escaping an array +jsesc([ + 'Ich ♥ Bücher', 'foo 𝌆 bar' +]); +// → '[\'Ich \\u2665 B\\xFCcher\',\'foo \\uD834\\uDF06 bar\']' + +// Escaping an object +jsesc({ + 'Ich ♥ Bücher': 'foo 𝌆 bar' +}); +// → '{\'Ich \\u2665 B\\xFCcher\':\'foo \\uD834\\uDF06 bar\'}' +``` + +The optional `options` argument accepts an object with the following options: + +#### `quotes` + +The default value for the `quotes` option is `'single'`. This means that any occurrences of `'` in the input string are escaped as `\'`, so that the output can be used in a string literal wrapped in single quotes. + +```js +jsesc('`Lorem` ipsum "dolor" sit \'amet\' etc.'); +// → 'Lorem ipsum "dolor" sit \\\'amet\\\' etc.' + +jsesc('`Lorem` ipsum "dolor" sit \'amet\' etc.', { + 'quotes': 'single' +}); +// → '`Lorem` ipsum "dolor" sit \\\'amet\\\' etc.' +// → "`Lorem` ipsum \"dolor\" sit \\'amet\\' etc." +``` + +If you want to use the output as part of a string literal wrapped in double quotes, set the `quotes` option to `'double'`. + +```js +jsesc('`Lorem` ipsum "dolor" sit \'amet\' etc.', { + 'quotes': 'double' +}); +// → '`Lorem` ipsum \\"dolor\\" sit \'amet\' etc.' +// → "`Lorem` ipsum \\\"dolor\\\" sit 'amet' etc." +``` + +If you want to use the output as part of a template literal (i.e. wrapped in backticks), set the `quotes` option to `'backtick'`. + +```js +jsesc('`Lorem` ipsum "dolor" sit \'amet\' etc.', { + 'quotes': 'backtick' +}); +// → '\\`Lorem\\` ipsum "dolor" sit \'amet\' etc.' +// → "\\`Lorem\\` ipsum \"dolor\" sit 'amet' etc." +// → `\\\`Lorem\\\` ipsum "dolor" sit 'amet' etc.` +``` + +This setting also affects the output for arrays and objects: + +```js +jsesc({ 'Ich ♥ Bücher': 'foo 𝌆 bar' }, { + 'quotes': 'double' +}); +// → '{"Ich \\u2665 B\\xFCcher":"foo \\uD834\\uDF06 bar"}' + +jsesc([ 'Ich ♥ Bücher', 'foo 𝌆 bar' ], { + 'quotes': 'double' +}); +// → '["Ich \\u2665 B\\xFCcher","foo \\uD834\\uDF06 bar"]' +``` + +#### `numbers` + +The default value for the `numbers` option is `'decimal'`. This means that any numeric values are represented using decimal integer literals. Other valid options are `binary`, `octal`, and `hexadecimal`, which result in binary integer literals, octal integer literals, and hexadecimal integer literals, respectively. + +```js +jsesc(42, { + 'numbers': 'binary' +}); +// → '0b101010' + +jsesc(42, { + 'numbers': 'octal' +}); +// → '0o52' + +jsesc(42, { + 'numbers': 'decimal' +}); +// → '42' + +jsesc(42, { + 'numbers': 'hexadecimal' +}); +// → '0x2A' +``` + +#### `wrap` + +The `wrap` option takes a boolean value (`true` or `false`), and defaults to `false` (disabled). When enabled, the output is a valid JavaScript string literal wrapped in quotes. The type of quotes can be specified through the `quotes` setting. + +```js +jsesc('Lorem ipsum "dolor" sit \'amet\' etc.', { + 'quotes': 'single', + 'wrap': true +}); +// → '\'Lorem ipsum "dolor" sit \\\'amet\\\' etc.\'' +// → "\'Lorem ipsum \"dolor\" sit \\\'amet\\\' etc.\'" + +jsesc('Lorem ipsum "dolor" sit \'amet\' etc.', { + 'quotes': 'double', + 'wrap': true +}); +// → '"Lorem ipsum \\"dolor\\" sit \'amet\' etc."' +// → "\"Lorem ipsum \\\"dolor\\\" sit \'amet\' etc.\"" +``` + +#### `es6` + +The `es6` option takes a boolean value (`true` or `false`), and defaults to `false` (disabled). When enabled, any astral Unicode symbols in the input are escaped using [ECMAScript 6 Unicode code point escape sequences](https://mathiasbynens.be/notes/javascript-escapes#unicode-code-point) instead of using separate escape sequences for each surrogate half. If backwards compatibility with ES5 environments is a concern, don’t enable this setting. If the `json` setting is enabled, the value for the `es6` setting is ignored (as if it was `false`). + +```js +// By default, the `es6` option is disabled: +jsesc('foo 𝌆 bar 💩 baz'); +// → 'foo \\uD834\\uDF06 bar \\uD83D\\uDCA9 baz' + +// To explicitly disable it: +jsesc('foo 𝌆 bar 💩 baz', { + 'es6': false +}); +// → 'foo \\uD834\\uDF06 bar \\uD83D\\uDCA9 baz' + +// To enable it: +jsesc('foo 𝌆 bar 💩 baz', { + 'es6': true +}); +// → 'foo \\u{1D306} bar \\u{1F4A9} baz' +``` + +#### `escapeEverything` + +The `escapeEverything` option takes a boolean value (`true` or `false`), and defaults to `false` (disabled). When enabled, all the symbols in the output are escaped — even printable ASCII symbols. + +```js +jsesc('lolwat"foo\'bar', { + 'escapeEverything': true +}); +// → '\\x6C\\x6F\\x6C\\x77\\x61\\x74\\"\\x66\\x6F\\x6F\\\'\\x62\\x61\\x72' +// → "\\x6C\\x6F\\x6C\\x77\\x61\\x74\\\"\\x66\\x6F\\x6F\\'\\x62\\x61\\x72" +``` + +This setting also affects the output for string literals within arrays and objects. + +#### `minimal` + +The `minimal` option takes a boolean value (`true` or `false`), and defaults to `false` (disabled). When enabled, only a limited set of symbols in the output are escaped: + +* U+0000 `\0` +* U+0008 `\b` +* U+0009 `\t` +* U+000A `\n` +* U+000C `\f` +* U+000D `\r` +* U+005C `\\` +* U+2028 `\u2028` +* U+2029 `\u2029` +* whatever symbol is being used for wrapping string literals (based on [the `quotes` option](#quotes)) +* [lone surrogates](https://esdiscuss.org/topic/code-points-vs-unicode-scalar-values#content-14) + +Note: with this option enabled, jsesc output is no longer guaranteed to be ASCII-safe. + +```js +jsesc('foo\u2029bar\nbaz©qux𝌆flops', { + 'minimal': false +}); +// → 'foo\\u2029bar\\nbaz©qux𝌆flops' +``` + +#### `isScriptContext` + +The `isScriptContext` option takes a boolean value (`true` or `false`), and defaults to `false` (disabled). When enabled, occurrences of [`` or `