immosquare-cleaner 0.1.4 → 0.1.6
Sign up to get free protection for your applications and to get access to all the features.
- checksums.yaml +4 -4
- data/bin/immosquare-cleaner +1 -2
- data/lib/{immosquare-cleaner → immosquare_cleaner}/railtie.rb +1 -1
- data/lib/{immosquare-cleaner → immosquare_cleaner}/version.rb +1 -1
- data/lib/{immosquare-cleaner.rb → immosquare_cleaner.rb} +60 -25
- data/linters/eslintrc.json +36 -0
- data/linters/rubocop.yml +94 -2
- data/node_modules/@aashutoshrathi/word-wrap/LICENSE +21 -0
- data/node_modules/@aashutoshrathi/word-wrap/README.md +182 -0
- data/node_modules/@aashutoshrathi/word-wrap/index.d.ts +50 -0
- data/node_modules/@aashutoshrathi/word-wrap/index.js +52 -0
- data/node_modules/@aashutoshrathi/word-wrap/package.json +81 -0
- data/node_modules/@eslint/eslintrc/LICENSE +19 -0
- data/node_modules/@eslint/eslintrc/README.md +71 -0
- data/node_modules/@eslint/eslintrc/conf/config-schema.js +79 -0
- data/node_modules/@eslint/eslintrc/conf/environments.js +215 -0
- data/node_modules/@eslint/eslintrc/dist/eslintrc-universal.cjs +1104 -0
- data/node_modules/@eslint/eslintrc/dist/eslintrc-universal.cjs.map +1 -0
- data/node_modules/@eslint/eslintrc/dist/eslintrc.cjs +4333 -0
- data/node_modules/@eslint/eslintrc/dist/eslintrc.cjs.map +1 -0
- data/node_modules/@eslint/eslintrc/lib/cascading-config-array-factory.js +532 -0
- data/node_modules/@eslint/eslintrc/lib/config-array/config-array.js +523 -0
- data/node_modules/@eslint/eslintrc/lib/config-array/config-dependency.js +115 -0
- data/node_modules/@eslint/eslintrc/lib/config-array/extracted-config.js +145 -0
- data/node_modules/@eslint/eslintrc/lib/config-array/ignore-pattern.js +238 -0
- data/node_modules/@eslint/eslintrc/lib/config-array/index.js +19 -0
- data/node_modules/@eslint/eslintrc/lib/config-array/override-tester.js +225 -0
- data/node_modules/@eslint/eslintrc/lib/config-array-factory.js +1149 -0
- data/node_modules/@eslint/eslintrc/lib/flat-compat.js +318 -0
- data/node_modules/@eslint/eslintrc/lib/index-universal.js +29 -0
- data/node_modules/@eslint/eslintrc/lib/index.js +56 -0
- data/node_modules/@eslint/eslintrc/lib/shared/ajv.js +191 -0
- data/node_modules/@eslint/eslintrc/lib/shared/config-ops.js +135 -0
- data/node_modules/@eslint/eslintrc/lib/shared/config-validator.js +325 -0
- data/node_modules/@eslint/eslintrc/lib/shared/deprecation-warnings.js +63 -0
- data/node_modules/@eslint/eslintrc/lib/shared/naming.js +96 -0
- data/node_modules/@eslint/eslintrc/lib/shared/relative-module-resolver.js +42 -0
- data/node_modules/@eslint/eslintrc/lib/shared/types.js +149 -0
- data/node_modules/@eslint/eslintrc/package.json +82 -0
- data/node_modules/@eslint/eslintrc/universal.js +9 -0
- data/node_modules/@eslint/js/LICENSE +19 -0
- data/node_modules/@eslint/js/README.md +57 -0
- data/node_modules/@eslint/js/package.json +31 -0
- data/node_modules/@eslint/js/src/configs/eslint-all.js +278 -0
- data/node_modules/@eslint/js/src/configs/eslint-recommended.js +76 -0
- data/node_modules/@eslint/js/src/index.js +17 -0
- data/node_modules/@eslint-community/eslint-utils/LICENSE +21 -0
- data/node_modules/@eslint-community/eslint-utils/README.md +37 -0
- data/node_modules/@eslint-community/eslint-utils/index.js +2068 -0
- data/node_modules/@eslint-community/eslint-utils/index.js.map +1 -0
- data/node_modules/@eslint-community/eslint-utils/index.mjs +2027 -0
- data/node_modules/@eslint-community/eslint-utils/index.mjs.map +1 -0
- data/node_modules/@eslint-community/eslint-utils/package.json +73 -0
- data/node_modules/@eslint-community/regexpp/LICENSE +21 -0
- data/node_modules/@eslint-community/regexpp/README.md +177 -0
- data/node_modules/@eslint-community/regexpp/index.d.ts +1044 -0
- data/node_modules/@eslint-community/regexpp/index.js +2752 -0
- data/node_modules/@eslint-community/regexpp/index.js.map +1 -0
- data/node_modules/@eslint-community/regexpp/index.mjs +2743 -0
- data/node_modules/@eslint-community/regexpp/index.mjs.map +1 -0
- data/node_modules/@eslint-community/regexpp/package.json +93 -0
- data/node_modules/@humanwhocodes/config-array/LICENSE +201 -0
- data/node_modules/@humanwhocodes/config-array/README.md +342 -0
- data/node_modules/@humanwhocodes/config-array/api.js +1061 -0
- data/node_modules/@humanwhocodes/config-array/node_modules/minimatch/LICENSE +15 -0
- data/node_modules/@humanwhocodes/config-array/node_modules/minimatch/README.md +224 -0
- data/node_modules/@humanwhocodes/config-array/node_modules/minimatch/minimatch.js +947 -0
- data/node_modules/@humanwhocodes/config-array/node_modules/minimatch/package.json +33 -0
- data/node_modules/@humanwhocodes/config-array/package.json +61 -0
- data/node_modules/@humanwhocodes/module-importer/CHANGELOG.md +15 -0
- data/node_modules/@humanwhocodes/module-importer/LICENSE +201 -0
- data/node_modules/@humanwhocodes/module-importer/README.md +80 -0
- data/node_modules/@humanwhocodes/module-importer/dist/module-importer.cjs +22 -0
- data/node_modules/@humanwhocodes/module-importer/dist/module-importer.d.cts +27 -0
- data/node_modules/@humanwhocodes/module-importer/dist/module-importer.d.ts +2 -0
- data/node_modules/@humanwhocodes/module-importer/dist/module-importer.js +18 -0
- data/node_modules/@humanwhocodes/module-importer/package.json +65 -0
- data/node_modules/@humanwhocodes/module-importer/src/module-importer.cjs +81 -0
- data/node_modules/@humanwhocodes/module-importer/src/module-importer.js +22 -0
- data/node_modules/@humanwhocodes/object-schema/CHANGELOG.md +8 -0
- data/node_modules/@humanwhocodes/object-schema/LICENSE +29 -0
- data/node_modules/@humanwhocodes/object-schema/README.md +234 -0
- data/node_modules/@humanwhocodes/object-schema/package.json +33 -0
- data/node_modules/@humanwhocodes/object-schema/src/index.js +7 -0
- data/node_modules/@humanwhocodes/object-schema/src/merge-strategy.js +53 -0
- data/node_modules/@humanwhocodes/object-schema/src/object-schema.js +235 -0
- data/node_modules/@humanwhocodes/object-schema/src/validation-strategy.js +102 -0
- data/node_modules/@humanwhocodes/object-schema/tests/merge-strategy.js +66 -0
- data/node_modules/@humanwhocodes/object-schema/tests/object-schema.js +611 -0
- data/node_modules/@humanwhocodes/object-schema/tests/validation-strategy.js +186 -0
- data/node_modules/@nodelib/fs.scandir/LICENSE +21 -0
- data/node_modules/@nodelib/fs.scandir/README.md +171 -0
- data/node_modules/@nodelib/fs.scandir/out/adapters/fs.d.ts +20 -0
- data/node_modules/@nodelib/fs.scandir/out/adapters/fs.js +19 -0
- data/node_modules/@nodelib/fs.scandir/out/constants.d.ts +4 -0
- data/node_modules/@nodelib/fs.scandir/out/constants.js +17 -0
- data/node_modules/@nodelib/fs.scandir/out/index.d.ts +12 -0
- data/node_modules/@nodelib/fs.scandir/out/index.js +26 -0
- data/node_modules/@nodelib/fs.scandir/out/providers/async.d.ts +7 -0
- data/node_modules/@nodelib/fs.scandir/out/providers/async.js +104 -0
- data/node_modules/@nodelib/fs.scandir/out/providers/common.d.ts +1 -0
- data/node_modules/@nodelib/fs.scandir/out/providers/common.js +13 -0
- data/node_modules/@nodelib/fs.scandir/out/providers/sync.d.ts +5 -0
- data/node_modules/@nodelib/fs.scandir/out/providers/sync.js +54 -0
- data/node_modules/@nodelib/fs.scandir/out/settings.d.ts +20 -0
- data/node_modules/@nodelib/fs.scandir/out/settings.js +24 -0
- data/node_modules/@nodelib/fs.scandir/out/types/index.d.ts +20 -0
- data/node_modules/@nodelib/fs.scandir/out/types/index.js +2 -0
- data/node_modules/@nodelib/fs.scandir/out/utils/fs.d.ts +2 -0
- data/node_modules/@nodelib/fs.scandir/out/utils/fs.js +19 -0
- data/node_modules/@nodelib/fs.scandir/out/utils/index.d.ts +2 -0
- data/node_modules/@nodelib/fs.scandir/out/utils/index.js +5 -0
- data/node_modules/@nodelib/fs.scandir/package.json +44 -0
- data/node_modules/@nodelib/fs.stat/LICENSE +21 -0
- data/node_modules/@nodelib/fs.stat/README.md +126 -0
- data/node_modules/@nodelib/fs.stat/out/adapters/fs.d.ts +13 -0
- data/node_modules/@nodelib/fs.stat/out/adapters/fs.js +17 -0
- data/node_modules/@nodelib/fs.stat/out/index.d.ts +12 -0
- data/node_modules/@nodelib/fs.stat/out/index.js +26 -0
- data/node_modules/@nodelib/fs.stat/out/providers/async.d.ts +4 -0
- data/node_modules/@nodelib/fs.stat/out/providers/async.js +36 -0
- data/node_modules/@nodelib/fs.stat/out/providers/sync.d.ts +3 -0
- data/node_modules/@nodelib/fs.stat/out/providers/sync.js +23 -0
- data/node_modules/@nodelib/fs.stat/out/settings.d.ts +16 -0
- data/node_modules/@nodelib/fs.stat/out/settings.js +16 -0
- data/node_modules/@nodelib/fs.stat/out/types/index.d.ts +4 -0
- data/node_modules/@nodelib/fs.stat/out/types/index.js +2 -0
- data/node_modules/@nodelib/fs.stat/package.json +37 -0
- data/node_modules/@nodelib/fs.walk/LICENSE +21 -0
- data/node_modules/@nodelib/fs.walk/README.md +215 -0
- data/node_modules/@nodelib/fs.walk/out/index.d.ts +14 -0
- data/node_modules/@nodelib/fs.walk/out/index.js +34 -0
- data/node_modules/@nodelib/fs.walk/out/providers/async.d.ts +12 -0
- data/node_modules/@nodelib/fs.walk/out/providers/async.js +30 -0
- data/node_modules/@nodelib/fs.walk/out/providers/index.d.ts +4 -0
- data/node_modules/@nodelib/fs.walk/out/providers/index.js +9 -0
- data/node_modules/@nodelib/fs.walk/out/providers/stream.d.ts +12 -0
- data/node_modules/@nodelib/fs.walk/out/providers/stream.js +34 -0
- data/node_modules/@nodelib/fs.walk/out/providers/sync.d.ts +10 -0
- data/node_modules/@nodelib/fs.walk/out/providers/sync.js +14 -0
- data/node_modules/@nodelib/fs.walk/out/readers/async.d.ts +30 -0
- data/node_modules/@nodelib/fs.walk/out/readers/async.js +97 -0
- data/node_modules/@nodelib/fs.walk/out/readers/common.d.ts +7 -0
- data/node_modules/@nodelib/fs.walk/out/readers/common.js +31 -0
- data/node_modules/@nodelib/fs.walk/out/readers/reader.d.ts +6 -0
- data/node_modules/@nodelib/fs.walk/out/readers/reader.js +11 -0
- data/node_modules/@nodelib/fs.walk/out/readers/sync.d.ts +15 -0
- data/node_modules/@nodelib/fs.walk/out/readers/sync.js +59 -0
- data/node_modules/@nodelib/fs.walk/out/settings.d.ts +30 -0
- data/node_modules/@nodelib/fs.walk/out/settings.js +26 -0
- data/node_modules/@nodelib/fs.walk/out/types/index.d.ts +8 -0
- data/node_modules/@nodelib/fs.walk/out/types/index.js +2 -0
- data/node_modules/@nodelib/fs.walk/package.json +44 -0
- data/node_modules/@types/json5/README.md +18 -0
- data/node_modules/@types/json5/index.d.ts +44 -0
- data/node_modules/@types/json5/package.json +16 -0
- data/node_modules/@types/json5/types-metadata.json +25 -0
- data/node_modules/acorn/CHANGELOG.md +844 -0
- data/node_modules/acorn/LICENSE +21 -0
- data/node_modules/acorn/README.md +278 -0
- data/node_modules/acorn/bin/acorn +4 -0
- data/node_modules/acorn/dist/acorn.d.mts +26 -0
- data/node_modules/acorn/dist/acorn.d.ts +292 -0
- data/node_modules/acorn/dist/acorn.js +5990 -0
- data/node_modules/acorn/dist/acorn.mjs +5961 -0
- data/node_modules/acorn/dist/bin.js +90 -0
- data/node_modules/acorn/package.json +50 -0
- data/node_modules/acorn-jsx/LICENSE +19 -0
- data/node_modules/acorn-jsx/README.md +40 -0
- data/node_modules/acorn-jsx/index.d.ts +12 -0
- data/node_modules/acorn-jsx/index.js +488 -0
- data/node_modules/acorn-jsx/package.json +27 -0
- data/node_modules/acorn-jsx/xhtml.js +255 -0
- data/node_modules/ajv/LICENSE +22 -0
- data/node_modules/ajv/README.md +1497 -0
- data/node_modules/ajv/dist/ajv.bundle.js +7189 -0
- data/node_modules/ajv/dist/ajv.min.js +3 -0
- data/node_modules/ajv/dist/ajv.min.js.map +1 -0
- data/node_modules/ajv/lib/ajv.d.ts +397 -0
- data/node_modules/ajv/lib/ajv.js +506 -0
- data/node_modules/ajv/lib/cache.js +26 -0
- data/node_modules/ajv/lib/compile/async.js +90 -0
- data/node_modules/ajv/lib/compile/equal.js +5 -0
- data/node_modules/ajv/lib/compile/error_classes.js +34 -0
- data/node_modules/ajv/lib/compile/formats.js +142 -0
- data/node_modules/ajv/lib/compile/index.js +387 -0
- data/node_modules/ajv/lib/compile/resolve.js +270 -0
- data/node_modules/ajv/lib/compile/rules.js +66 -0
- data/node_modules/ajv/lib/compile/schema_obj.js +9 -0
- data/node_modules/ajv/lib/compile/ucs2length.js +20 -0
- data/node_modules/ajv/lib/compile/util.js +239 -0
- data/node_modules/ajv/lib/data.js +49 -0
- data/node_modules/ajv/lib/definition_schema.js +37 -0
- data/node_modules/ajv/lib/dot/_limit.jst +113 -0
- data/node_modules/ajv/lib/dot/_limitItems.jst +12 -0
- data/node_modules/ajv/lib/dot/_limitLength.jst +12 -0
- data/node_modules/ajv/lib/dot/_limitProperties.jst +12 -0
- data/node_modules/ajv/lib/dot/allOf.jst +32 -0
- data/node_modules/ajv/lib/dot/anyOf.jst +46 -0
- data/node_modules/ajv/lib/dot/coerce.def +51 -0
- data/node_modules/ajv/lib/dot/comment.jst +9 -0
- data/node_modules/ajv/lib/dot/const.jst +11 -0
- data/node_modules/ajv/lib/dot/contains.jst +55 -0
- data/node_modules/ajv/lib/dot/custom.jst +191 -0
- data/node_modules/ajv/lib/dot/defaults.def +47 -0
- data/node_modules/ajv/lib/dot/definitions.def +203 -0
- data/node_modules/ajv/lib/dot/dependencies.jst +79 -0
- data/node_modules/ajv/lib/dot/enum.jst +30 -0
- data/node_modules/ajv/lib/dot/errors.def +194 -0
- data/node_modules/ajv/lib/dot/format.jst +106 -0
- data/node_modules/ajv/lib/dot/if.jst +73 -0
- data/node_modules/ajv/lib/dot/items.jst +98 -0
- data/node_modules/ajv/lib/dot/missing.def +39 -0
- data/node_modules/ajv/lib/dot/multipleOf.jst +22 -0
- data/node_modules/ajv/lib/dot/not.jst +43 -0
- data/node_modules/ajv/lib/dot/oneOf.jst +54 -0
- data/node_modules/ajv/lib/dot/pattern.jst +14 -0
- data/node_modules/ajv/lib/dot/properties.jst +245 -0
- data/node_modules/ajv/lib/dot/propertyNames.jst +52 -0
- data/node_modules/ajv/lib/dot/ref.jst +85 -0
- data/node_modules/ajv/lib/dot/required.jst +108 -0
- data/node_modules/ajv/lib/dot/uniqueItems.jst +62 -0
- data/node_modules/ajv/lib/dot/validate.jst +276 -0
- data/node_modules/ajv/lib/dotjs/README.md +3 -0
- data/node_modules/ajv/lib/dotjs/_limit.js +163 -0
- data/node_modules/ajv/lib/dotjs/_limitItems.js +80 -0
- data/node_modules/ajv/lib/dotjs/_limitLength.js +85 -0
- data/node_modules/ajv/lib/dotjs/_limitProperties.js +80 -0
- data/node_modules/ajv/lib/dotjs/allOf.js +42 -0
- data/node_modules/ajv/lib/dotjs/anyOf.js +73 -0
- data/node_modules/ajv/lib/dotjs/comment.js +14 -0
- data/node_modules/ajv/lib/dotjs/const.js +56 -0
- data/node_modules/ajv/lib/dotjs/contains.js +81 -0
- data/node_modules/ajv/lib/dotjs/custom.js +228 -0
- data/node_modules/ajv/lib/dotjs/dependencies.js +168 -0
- data/node_modules/ajv/lib/dotjs/enum.js +66 -0
- data/node_modules/ajv/lib/dotjs/format.js +150 -0
- data/node_modules/ajv/lib/dotjs/if.js +103 -0
- data/node_modules/ajv/lib/dotjs/index.js +33 -0
- data/node_modules/ajv/lib/dotjs/items.js +140 -0
- data/node_modules/ajv/lib/dotjs/multipleOf.js +80 -0
- data/node_modules/ajv/lib/dotjs/not.js +84 -0
- data/node_modules/ajv/lib/dotjs/oneOf.js +73 -0
- data/node_modules/ajv/lib/dotjs/pattern.js +75 -0
- data/node_modules/ajv/lib/dotjs/properties.js +335 -0
- data/node_modules/ajv/lib/dotjs/propertyNames.js +81 -0
- data/node_modules/ajv/lib/dotjs/ref.js +124 -0
- data/node_modules/ajv/lib/dotjs/required.js +270 -0
- data/node_modules/ajv/lib/dotjs/uniqueItems.js +86 -0
- data/node_modules/ajv/lib/dotjs/validate.js +482 -0
- data/node_modules/ajv/lib/keyword.js +146 -0
- data/node_modules/ajv/lib/refs/data.json +17 -0
- data/node_modules/ajv/lib/refs/json-schema-draft-04.json +149 -0
- data/node_modules/ajv/lib/refs/json-schema-draft-06.json +154 -0
- data/node_modules/ajv/lib/refs/json-schema-draft-07.json +168 -0
- data/node_modules/ajv/lib/refs/json-schema-secure.json +94 -0
- data/node_modules/ajv/package.json +106 -0
- data/node_modules/ajv/scripts/bundle.js +61 -0
- data/node_modules/ajv/scripts/compile-dots.js +73 -0
- data/node_modules/ajv/scripts/info +10 -0
- data/node_modules/ajv/scripts/prepare-tests +12 -0
- data/node_modules/ajv/scripts/publish-built-version +32 -0
- data/node_modules/ajv/scripts/travis-gh-pages +23 -0
- data/node_modules/ansi-regex/index.d.ts +37 -0
- data/node_modules/ansi-regex/index.js +10 -0
- data/node_modules/ansi-regex/license +9 -0
- data/node_modules/ansi-regex/package.json +55 -0
- data/node_modules/ansi-regex/readme.md +78 -0
- data/node_modules/ansi-styles/index.d.ts +345 -0
- data/node_modules/ansi-styles/index.js +163 -0
- data/node_modules/ansi-styles/license +9 -0
- data/node_modules/ansi-styles/package.json +56 -0
- data/node_modules/ansi-styles/readme.md +152 -0
- data/node_modules/argparse/CHANGELOG.md +216 -0
- data/node_modules/argparse/LICENSE +254 -0
- data/node_modules/argparse/README.md +84 -0
- data/node_modules/argparse/argparse.js +3707 -0
- data/node_modules/argparse/lib/sub.js +67 -0
- data/node_modules/argparse/lib/textwrap.js +440 -0
- data/node_modules/argparse/package.json +31 -0
- data/node_modules/array-buffer-byte-length/CHANGELOG.md +15 -0
- data/node_modules/array-buffer-byte-length/LICENSE +21 -0
- data/node_modules/array-buffer-byte-length/README.md +40 -0
- data/node_modules/array-buffer-byte-length/index.js +13 -0
- data/node_modules/array-buffer-byte-length/package.json +81 -0
- data/node_modules/array-buffer-byte-length/test/index.js +26 -0
- data/node_modules/array-includes/CHANGELOG.md +167 -0
- data/node_modules/array-includes/LICENSE +21 -0
- data/node_modules/array-includes/README.md +105 -0
- data/node_modules/array-includes/auto.js +3 -0
- data/node_modules/array-includes/implementation.js +36 -0
- data/node_modules/array-includes/index.js +27 -0
- data/node_modules/array-includes/package.json +114 -0
- data/node_modules/array-includes/polyfill.js +13 -0
- data/node_modules/array-includes/shim.js +14 -0
- data/node_modules/array-includes/test/implementation.js +20 -0
- data/node_modules/array-includes/test/index.js +17 -0
- data/node_modules/array-includes/test/shimmed.js +39 -0
- data/node_modules/array-includes/test/tests.js +94 -0
- data/node_modules/array.prototype.findlastindex/CHANGELOG.md +75 -0
- data/node_modules/array.prototype.findlastindex/LICENSE +21 -0
- data/node_modules/array.prototype.findlastindex/README.md +74 -0
- data/node_modules/array.prototype.findlastindex/auto.js +3 -0
- data/node_modules/array.prototype.findlastindex/implementation.js +39 -0
- data/node_modules/array.prototype.findlastindex/index.js +28 -0
- data/node_modules/array.prototype.findlastindex/index.mjs +18 -0
- data/node_modules/array.prototype.findlastindex/package.json +120 -0
- data/node_modules/array.prototype.findlastindex/polyfill.js +7 -0
- data/node_modules/array.prototype.findlastindex/shim.js +18 -0
- data/node_modules/array.prototype.findlastindex/test/implementation.js +20 -0
- data/node_modules/array.prototype.findlastindex/test/index.js +18 -0
- data/node_modules/array.prototype.findlastindex/test/index.mjs +31 -0
- data/node_modules/array.prototype.findlastindex/test/shimmed.js +47 -0
- data/node_modules/array.prototype.findlastindex/test/tests.js +246 -0
- data/node_modules/array.prototype.flat/CHANGELOG.md +109 -0
- data/node_modules/array.prototype.flat/LICENSE +21 -0
- data/node_modules/array.prototype.flat/README.md +75 -0
- data/node_modules/array.prototype.flat/auto.js +3 -0
- data/node_modules/array.prototype.flat/implementation.js +22 -0
- data/node_modules/array.prototype.flat/index.js +19 -0
- data/node_modules/array.prototype.flat/package.json +113 -0
- data/node_modules/array.prototype.flat/polyfill.js +7 -0
- data/node_modules/array.prototype.flat/shim.js +20 -0
- data/node_modules/array.prototype.flat/test/implementation.js +20 -0
- data/node_modules/array.prototype.flat/test/index.js +17 -0
- data/node_modules/array.prototype.flat/test/shimmed.js +36 -0
- data/node_modules/array.prototype.flat/test/tests.js +30 -0
- data/node_modules/array.prototype.flatmap/CHANGELOG.md +109 -0
- data/node_modules/array.prototype.flatmap/LICENSE +21 -0
- data/node_modules/array.prototype.flatmap/README.md +82 -0
- data/node_modules/array.prototype.flatmap/auto.js +3 -0
- data/node_modules/array.prototype.flatmap/implementation.js +26 -0
- data/node_modules/array.prototype.flatmap/index.js +19 -0
- data/node_modules/array.prototype.flatmap/package.json +112 -0
- data/node_modules/array.prototype.flatmap/polyfill.js +7 -0
- data/node_modules/array.prototype.flatmap/shim.js +20 -0
- data/node_modules/array.prototype.flatmap/test/implementation.js +20 -0
- data/node_modules/array.prototype.flatmap/test/index.js +18 -0
- data/node_modules/array.prototype.flatmap/test/shimmed.js +36 -0
- data/node_modules/array.prototype.flatmap/test/tests.js +43 -0
- data/node_modules/arraybuffer.prototype.slice/CHANGELOG.md +31 -0
- data/node_modules/arraybuffer.prototype.slice/LICENSE +21 -0
- data/node_modules/arraybuffer.prototype.slice/README.md +61 -0
- data/node_modules/arraybuffer.prototype.slice/auto.js +3 -0
- data/node_modules/arraybuffer.prototype.slice/implementation.js +84 -0
- data/node_modules/arraybuffer.prototype.slice/index.js +18 -0
- data/node_modules/arraybuffer.prototype.slice/package.json +103 -0
- data/node_modules/arraybuffer.prototype.slice/polyfill.js +21 -0
- data/node_modules/arraybuffer.prototype.slice/shim.js +18 -0
- data/node_modules/arraybuffer.prototype.slice/test/implementation.js +32 -0
- data/node_modules/arraybuffer.prototype.slice/test/index.js +29 -0
- data/node_modules/arraybuffer.prototype.slice/test/shimmed.js +54 -0
- data/node_modules/arraybuffer.prototype.slice/test/tests.js +81 -0
- data/node_modules/available-typed-arrays/CHANGELOG.md +79 -0
- data/node_modules/available-typed-arrays/LICENSE +21 -0
- data/node_modules/available-typed-arrays/README.md +52 -0
- data/node_modules/available-typed-arrays/index.js +27 -0
- data/node_modules/available-typed-arrays/package.json +82 -0
- data/node_modules/available-typed-arrays/test/index.js +18 -0
- data/node_modules/balanced-match/LICENSE.md +21 -0
- data/node_modules/balanced-match/README.md +97 -0
- data/node_modules/balanced-match/index.js +62 -0
- data/node_modules/balanced-match/package.json +48 -0
- data/node_modules/brace-expansion/LICENSE +21 -0
- data/node_modules/brace-expansion/README.md +129 -0
- data/node_modules/brace-expansion/index.js +201 -0
- data/node_modules/brace-expansion/package.json +47 -0
- data/node_modules/call-bind/CHANGELOG.md +42 -0
- data/node_modules/call-bind/LICENSE +21 -0
- data/node_modules/call-bind/README.md +2 -0
- data/node_modules/call-bind/callBound.js +15 -0
- data/node_modules/call-bind/index.js +47 -0
- data/node_modules/call-bind/package.json +80 -0
- data/node_modules/call-bind/test/callBound.js +55 -0
- data/node_modules/call-bind/test/index.js +66 -0
- data/node_modules/callsites/index.d.ts +96 -0
- data/node_modules/callsites/index.js +13 -0
- data/node_modules/callsites/license +9 -0
- data/node_modules/callsites/package.json +39 -0
- data/node_modules/callsites/readme.md +48 -0
- data/node_modules/chalk/index.d.ts +415 -0
- data/node_modules/chalk/license +9 -0
- data/node_modules/chalk/package.json +68 -0
- data/node_modules/chalk/readme.md +341 -0
- data/node_modules/chalk/source/index.js +229 -0
- data/node_modules/chalk/source/templates.js +134 -0
- data/node_modules/chalk/source/util.js +39 -0
- data/node_modules/color-convert/CHANGELOG.md +54 -0
- data/node_modules/color-convert/LICENSE +21 -0
- data/node_modules/color-convert/README.md +68 -0
- data/node_modules/color-convert/conversions.js +839 -0
- data/node_modules/color-convert/index.js +81 -0
- data/node_modules/color-convert/package.json +48 -0
- data/node_modules/color-convert/route.js +97 -0
- data/node_modules/color-name/LICENSE +8 -0
- data/node_modules/color-name/README.md +11 -0
- data/node_modules/color-name/index.js +152 -0
- data/node_modules/color-name/package.json +28 -0
- data/node_modules/concat-map/LICENSE +18 -0
- data/node_modules/concat-map/README.markdown +62 -0
- data/node_modules/concat-map/example/map.js +6 -0
- data/node_modules/concat-map/index.js +13 -0
- data/node_modules/concat-map/package.json +43 -0
- data/node_modules/concat-map/test/map.js +39 -0
- data/node_modules/confusing-browser-globals/LICENSE +21 -0
- data/node_modules/confusing-browser-globals/README.md +45 -0
- data/node_modules/confusing-browser-globals/index.js +69 -0
- data/node_modules/confusing-browser-globals/package.json +26 -0
- data/node_modules/cross-spawn/CHANGELOG.md +130 -0
- data/node_modules/cross-spawn/LICENSE +21 -0
- data/node_modules/cross-spawn/README.md +96 -0
- data/node_modules/cross-spawn/index.js +39 -0
- data/node_modules/cross-spawn/lib/enoent.js +59 -0
- data/node_modules/cross-spawn/lib/parse.js +91 -0
- data/node_modules/cross-spawn/lib/util/escape.js +45 -0
- data/node_modules/cross-spawn/lib/util/readShebang.js +23 -0
- data/node_modules/cross-spawn/lib/util/resolveCommand.js +52 -0
- data/node_modules/cross-spawn/package.json +73 -0
- data/node_modules/debug/LICENSE +20 -0
- data/node_modules/debug/README.md +481 -0
- data/node_modules/debug/package.json +59 -0
- data/node_modules/debug/src/browser.js +269 -0
- data/node_modules/debug/src/common.js +274 -0
- data/node_modules/debug/src/index.js +10 -0
- data/node_modules/debug/src/node.js +263 -0
- data/node_modules/deep-is/LICENSE +22 -0
- data/node_modules/deep-is/README.markdown +70 -0
- data/node_modules/deep-is/example/cmp.js +11 -0
- data/node_modules/deep-is/index.js +102 -0
- data/node_modules/deep-is/package.json +58 -0
- data/node_modules/deep-is/test/NaN.js +16 -0
- data/node_modules/deep-is/test/cmp.js +23 -0
- data/node_modules/deep-is/test/neg-vs-pos-0.js +15 -0
- data/node_modules/define-data-property/CHANGELOG.md +31 -0
- data/node_modules/define-data-property/LICENSE +21 -0
- data/node_modules/define-data-property/README.md +67 -0
- data/node_modules/define-data-property/index.d.ts +3 -0
- data/node_modules/define-data-property/index.d.ts.map +1 -0
- data/node_modules/define-data-property/index.js +60 -0
- data/node_modules/define-data-property/package.json +111 -0
- data/node_modules/define-data-property/test/index.js +397 -0
- data/node_modules/define-data-property/tsconfig.json +58 -0
- data/node_modules/define-data-property/tsinit +109 -0
- data/node_modules/define-properties/CHANGELOG.md +91 -0
- data/node_modules/define-properties/LICENSE +21 -0
- data/node_modules/define-properties/README.md +84 -0
- data/node_modules/define-properties/index.js +47 -0
- data/node_modules/define-properties/package.json +88 -0
- data/node_modules/doctrine/CHANGELOG.md +101 -0
- data/node_modules/doctrine/LICENSE +177 -0
- data/node_modules/doctrine/LICENSE.closure-compiler +202 -0
- data/node_modules/doctrine/LICENSE.esprima +19 -0
- data/node_modules/doctrine/README.md +165 -0
- data/node_modules/doctrine/lib/doctrine.js +898 -0
- data/node_modules/doctrine/lib/typed.js +1305 -0
- data/node_modules/doctrine/lib/utility.js +35 -0
- data/node_modules/doctrine/package.json +58 -0
- data/node_modules/es-abstract/2015/AbstractEqualityComparison.js +37 -0
- data/node_modules/es-abstract/2015/AbstractRelationalComparison.js +63 -0
- data/node_modules/es-abstract/2015/AdvanceStringIndex.js +47 -0
- data/node_modules/es-abstract/2015/ArrayCreate.js +54 -0
- data/node_modules/es-abstract/2015/ArraySetLength.js +85 -0
- data/node_modules/es-abstract/2015/ArraySpeciesCreate.js +47 -0
- data/node_modules/es-abstract/2015/Call.js +20 -0
- data/node_modules/es-abstract/2015/CanonicalNumericIndexString.js +22 -0
- data/node_modules/es-abstract/2015/Canonicalize.js +55 -0
- data/node_modules/es-abstract/2015/CharacterRange.js +31 -0
- data/node_modules/es-abstract/2015/CompletePropertyDescriptor.js +39 -0
- data/node_modules/es-abstract/2015/CompletionRecord.js +53 -0
- data/node_modules/es-abstract/2015/CreateDataProperty.js +27 -0
- data/node_modules/es-abstract/2015/CreateDataPropertyOrThrow.js +25 -0
- data/node_modules/es-abstract/2015/CreateHTML.js +30 -0
- data/node_modules/es-abstract/2015/CreateIterResultObject.js +19 -0
- data/node_modules/es-abstract/2015/CreateListFromArrayLike.js +45 -0
- data/node_modules/es-abstract/2015/CreateMethodProperty.js +40 -0
- data/node_modules/es-abstract/2015/DateFromTime.js +54 -0
- data/node_modules/es-abstract/2015/Day.js +11 -0
- data/node_modules/es-abstract/2015/DayFromYear.js +10 -0
- data/node_modules/es-abstract/2015/DayWithinYear.js +11 -0
- data/node_modules/es-abstract/2015/DaysInYear.js +18 -0
- data/node_modules/es-abstract/2015/DefinePropertyOrThrow.js +50 -0
- data/node_modules/es-abstract/2015/DeletePropertyOrThrow.js +27 -0
- data/node_modules/es-abstract/2015/DetachArrayBuffer.js +34 -0
- data/node_modules/es-abstract/2015/EnumerableOwnNames.js +19 -0
- data/node_modules/es-abstract/2015/FromPropertyDescriptor.js +16 -0
- data/node_modules/es-abstract/2015/Get.js +25 -0
- data/node_modules/es-abstract/2015/GetGlobalObject.js +9 -0
- data/node_modules/es-abstract/2015/GetIterator.js +34 -0
- data/node_modules/es-abstract/2015/GetMethod.js +36 -0
- data/node_modules/es-abstract/2015/GetOwnPropertyKeys.js +31 -0
- data/node_modules/es-abstract/2015/GetPrototypeFromConstructor.js +32 -0
- data/node_modules/es-abstract/2015/GetSubstitution.js +100 -0
- data/node_modules/es-abstract/2015/GetV.js +25 -0
- data/node_modules/es-abstract/2015/GetValueFromBuffer.js +97 -0
- data/node_modules/es-abstract/2015/HasOwnProperty.js +22 -0
- data/node_modules/es-abstract/2015/HasProperty.js +20 -0
- data/node_modules/es-abstract/2015/HourFromTime.js +14 -0
- data/node_modules/es-abstract/2015/InLeapYear.js +21 -0
- data/node_modules/es-abstract/2015/InstanceofOperator.js +30 -0
- data/node_modules/es-abstract/2015/Invoke.js +24 -0
- data/node_modules/es-abstract/2015/IsAccessorDescriptor.js +23 -0
- data/node_modules/es-abstract/2015/IsArray.js +4 -0
- data/node_modules/es-abstract/2015/IsCallable.js +5 -0
- data/node_modules/es-abstract/2015/IsCompatiblePropertyDescriptor.js +9 -0
- data/node_modules/es-abstract/2015/IsConcatSpreadable.js +25 -0
- data/node_modules/es-abstract/2015/IsConstructor.js +40 -0
- data/node_modules/es-abstract/2015/IsDataDescriptor.js +23 -0
- data/node_modules/es-abstract/2015/IsDetachedBuffer.js +27 -0
- data/node_modules/es-abstract/2015/IsExtensible.js +18 -0
- data/node_modules/es-abstract/2015/IsGenericDescriptor.js +23 -0
- data/node_modules/es-abstract/2015/IsInteger.js +9 -0
- data/node_modules/es-abstract/2015/IsPromise.js +24 -0
- data/node_modules/es-abstract/2015/IsPropertyDescriptor.js +19 -0
- data/node_modules/es-abstract/2015/IsPropertyKey.js +7 -0
- data/node_modules/es-abstract/2015/IsRegExp.js +24 -0
- data/node_modules/es-abstract/2015/IsWordChar.js +39 -0
- data/node_modules/es-abstract/2015/IteratorClose.js +51 -0
- data/node_modules/es-abstract/2015/IteratorComplete.js +18 -0
- data/node_modules/es-abstract/2015/IteratorNext.js +18 -0
- data/node_modules/es-abstract/2015/IteratorStep.js +13 -0
- data/node_modules/es-abstract/2015/IteratorValue.js +18 -0
- data/node_modules/es-abstract/2015/MakeDate.js +13 -0
- data/node_modules/es-abstract/2015/MakeDay.js +33 -0
- data/node_modules/es-abstract/2015/MakeTime.js +23 -0
- data/node_modules/es-abstract/2015/MinFromTime.js +14 -0
- data/node_modules/es-abstract/2015/MonthFromTime.js +47 -0
- data/node_modules/es-abstract/2015/NewPromiseCapability.js +36 -0
- data/node_modules/es-abstract/2015/NormalCompletion.js +9 -0
- data/node_modules/es-abstract/2015/ObjectCreate.js +50 -0
- data/node_modules/es-abstract/2015/ObjectDefineProperties.js +38 -0
- data/node_modules/es-abstract/2015/OrdinaryCreateFromConstructor.js +20 -0
- data/node_modules/es-abstract/2015/OrdinaryDefineOwnProperty.js +61 -0
- data/node_modules/es-abstract/2015/OrdinaryGetOwnProperty.js +44 -0
- data/node_modules/es-abstract/2015/OrdinaryHasInstance.js +25 -0
- data/node_modules/es-abstract/2015/OrdinaryHasProperty.js +20 -0
- data/node_modules/es-abstract/2015/QuoteJSONString.js +52 -0
- data/node_modules/es-abstract/2015/RegExpCreate.js +21 -0
- data/node_modules/es-abstract/2015/RegExpExec.js +32 -0
- data/node_modules/es-abstract/2015/RequireObjectCoercible.js +3 -0
- data/node_modules/es-abstract/2015/SameValue.js +13 -0
- data/node_modules/es-abstract/2015/SameValueZero.js +9 -0
- data/node_modules/es-abstract/2015/SecFromTime.js +14 -0
- data/node_modules/es-abstract/2015/Set.js +47 -0
- data/node_modules/es-abstract/2015/SetFunctionName.js +44 -0
- data/node_modules/es-abstract/2015/SetIntegrityLevel.js +57 -0
- data/node_modules/es-abstract/2015/SetValueInBuffer.js +120 -0
- data/node_modules/es-abstract/2015/SpeciesConstructor.js +32 -0
- data/node_modules/es-abstract/2015/SplitMatch.js +39 -0
- data/node_modules/es-abstract/2015/StrictEqualityComparison.js +17 -0
- data/node_modules/es-abstract/2015/StringCreate.js +40 -0
- data/node_modules/es-abstract/2015/StringGetIndexProperty.js +52 -0
- data/node_modules/es-abstract/2015/SymbolDescriptiveString.js +20 -0
- data/node_modules/es-abstract/2015/TestIntegrityLevel.js +42 -0
- data/node_modules/es-abstract/2015/TimeClip.js +21 -0
- data/node_modules/es-abstract/2015/TimeFromYear.js +11 -0
- data/node_modules/es-abstract/2015/TimeWithinDay.js +12 -0
- data/node_modules/es-abstract/2015/ToBoolean.js +5 -0
- data/node_modules/es-abstract/2015/ToDateString.js +23 -0
- data/node_modules/es-abstract/2015/ToInt16.js +10 -0
- data/node_modules/es-abstract/2015/ToInt32.js +9 -0
- data/node_modules/es-abstract/2015/ToInt8.js +10 -0
- data/node_modules/es-abstract/2015/ToInteger.js +12 -0
- data/node_modules/es-abstract/2015/ToLength.js +12 -0
- data/node_modules/es-abstract/2015/ToNumber.js +48 -0
- data/node_modules/es-abstract/2015/ToObject.js +14 -0
- data/node_modules/es-abstract/2015/ToPrimitive.js +12 -0
- data/node_modules/es-abstract/2015/ToPropertyDescriptor.js +52 -0
- data/node_modules/es-abstract/2015/ToPropertyKey.js +15 -0
- data/node_modules/es-abstract/2015/ToString.js +15 -0
- data/node_modules/es-abstract/2015/ToUint16.js +19 -0
- data/node_modules/es-abstract/2015/ToUint32.js +9 -0
- data/node_modules/es-abstract/2015/ToUint8.js +20 -0
- data/node_modules/es-abstract/2015/ToUint8Clamp.js +19 -0
- data/node_modules/es-abstract/2015/Type.js +12 -0
- data/node_modules/es-abstract/2015/ValidateAndApplyPropertyDescriptor.js +170 -0
- data/node_modules/es-abstract/2015/ValidateTypedArray.js +30 -0
- data/node_modules/es-abstract/2015/WeekDay.js +10 -0
- data/node_modules/es-abstract/2015/YearFromTime.js +16 -0
- data/node_modules/es-abstract/2015/abs.js +11 -0
- data/node_modules/es-abstract/2015/floor.js +11 -0
- data/node_modules/es-abstract/2015/max.js +7 -0
- data/node_modules/es-abstract/2015/min.js +7 -0
- data/node_modules/es-abstract/2015/modulo.js +9 -0
- data/node_modules/es-abstract/2015/msFromTime.js +11 -0
- data/node_modules/es-abstract/2015/thisBooleanValue.js +15 -0
- data/node_modules/es-abstract/2015/thisNumberValue.js +18 -0
- data/node_modules/es-abstract/2015/thisStringValue.js +15 -0
- data/node_modules/es-abstract/2015/thisTimeValue.js +9 -0
- data/node_modules/es-abstract/2016/AbstractEqualityComparison.js +37 -0
- data/node_modules/es-abstract/2016/AbstractRelationalComparison.js +63 -0
- data/node_modules/es-abstract/2016/AdvanceStringIndex.js +47 -0
- data/node_modules/es-abstract/2016/ArrayCreate.js +54 -0
- data/node_modules/es-abstract/2016/ArraySetLength.js +85 -0
- data/node_modules/es-abstract/2016/ArraySpeciesCreate.js +47 -0
- data/node_modules/es-abstract/2016/Call.js +20 -0
- data/node_modules/es-abstract/2016/CanonicalNumericIndexString.js +22 -0
- data/node_modules/es-abstract/2016/Canonicalize.js +55 -0
- data/node_modules/es-abstract/2016/CharacterRange.js +31 -0
- data/node_modules/es-abstract/2016/CompletePropertyDescriptor.js +39 -0
- data/node_modules/es-abstract/2016/CompletionRecord.js +53 -0
- data/node_modules/es-abstract/2016/CreateDataProperty.js +27 -0
- data/node_modules/es-abstract/2016/CreateDataPropertyOrThrow.js +25 -0
- data/node_modules/es-abstract/2016/CreateHTML.js +30 -0
- data/node_modules/es-abstract/2016/CreateIterResultObject.js +19 -0
- data/node_modules/es-abstract/2016/CreateListFromArrayLike.js +45 -0
- data/node_modules/es-abstract/2016/CreateMethodProperty.js +40 -0
- data/node_modules/es-abstract/2016/DateFromTime.js +54 -0
- data/node_modules/es-abstract/2016/Day.js +11 -0
- data/node_modules/es-abstract/2016/DayFromYear.js +10 -0
- data/node_modules/es-abstract/2016/DayWithinYear.js +11 -0
- data/node_modules/es-abstract/2016/DaysInYear.js +18 -0
- data/node_modules/es-abstract/2016/DefinePropertyOrThrow.js +50 -0
- data/node_modules/es-abstract/2016/DeletePropertyOrThrow.js +27 -0
- data/node_modules/es-abstract/2016/DetachArrayBuffer.js +34 -0
- data/node_modules/es-abstract/2016/EnumerableOwnNames.js +19 -0
- data/node_modules/es-abstract/2016/FromPropertyDescriptor.js +16 -0
- data/node_modules/es-abstract/2016/Get.js +25 -0
- data/node_modules/es-abstract/2016/GetGlobalObject.js +9 -0
- data/node_modules/es-abstract/2016/GetIterator.js +34 -0
- data/node_modules/es-abstract/2016/GetMethod.js +36 -0
- data/node_modules/es-abstract/2016/GetOwnPropertyKeys.js +31 -0
- data/node_modules/es-abstract/2016/GetPrototypeFromConstructor.js +32 -0
- data/node_modules/es-abstract/2016/GetSubstitution.js +100 -0
- data/node_modules/es-abstract/2016/GetV.js +25 -0
- data/node_modules/es-abstract/2016/GetValueFromBuffer.js +97 -0
- data/node_modules/es-abstract/2016/HasOwnProperty.js +22 -0
- data/node_modules/es-abstract/2016/HasProperty.js +20 -0
- data/node_modules/es-abstract/2016/HourFromTime.js +14 -0
- data/node_modules/es-abstract/2016/InLeapYear.js +21 -0
- data/node_modules/es-abstract/2016/InstanceofOperator.js +30 -0
- data/node_modules/es-abstract/2016/Invoke.js +24 -0
- data/node_modules/es-abstract/2016/IsAccessorDescriptor.js +23 -0
- data/node_modules/es-abstract/2016/IsArray.js +4 -0
- data/node_modules/es-abstract/2016/IsCallable.js +5 -0
- data/node_modules/es-abstract/2016/IsCompatiblePropertyDescriptor.js +9 -0
- data/node_modules/es-abstract/2016/IsConcatSpreadable.js +25 -0
- data/node_modules/es-abstract/2016/IsConstructor.js +40 -0
- data/node_modules/es-abstract/2016/IsDataDescriptor.js +23 -0
- data/node_modules/es-abstract/2016/IsDetachedBuffer.js +27 -0
- data/node_modules/es-abstract/2016/IsExtensible.js +18 -0
- data/node_modules/es-abstract/2016/IsGenericDescriptor.js +23 -0
- data/node_modules/es-abstract/2016/IsInteger.js +9 -0
- data/node_modules/es-abstract/2016/IsPromise.js +24 -0
- data/node_modules/es-abstract/2016/IsPropertyDescriptor.js +19 -0
- data/node_modules/es-abstract/2016/IsPropertyKey.js +7 -0
- data/node_modules/es-abstract/2016/IsRegExp.js +24 -0
- data/node_modules/es-abstract/2016/IsWordChar.js +39 -0
- data/node_modules/es-abstract/2016/IterableToArrayLike.js +39 -0
- data/node_modules/es-abstract/2016/IteratorClose.js +51 -0
- data/node_modules/es-abstract/2016/IteratorComplete.js +18 -0
- data/node_modules/es-abstract/2016/IteratorNext.js +18 -0
- data/node_modules/es-abstract/2016/IteratorStep.js +13 -0
- data/node_modules/es-abstract/2016/IteratorValue.js +18 -0
- data/node_modules/es-abstract/2016/MakeDate.js +13 -0
- data/node_modules/es-abstract/2016/MakeDay.js +33 -0
- data/node_modules/es-abstract/2016/MakeTime.js +23 -0
- data/node_modules/es-abstract/2016/MinFromTime.js +14 -0
- data/node_modules/es-abstract/2016/MonthFromTime.js +47 -0
- data/node_modules/es-abstract/2016/NewPromiseCapability.js +36 -0
- data/node_modules/es-abstract/2016/NormalCompletion.js +9 -0
- data/node_modules/es-abstract/2016/ObjectCreate.js +50 -0
- data/node_modules/es-abstract/2016/ObjectDefineProperties.js +38 -0
- data/node_modules/es-abstract/2016/OrdinaryCreateFromConstructor.js +20 -0
- data/node_modules/es-abstract/2016/OrdinaryDefineOwnProperty.js +61 -0
- data/node_modules/es-abstract/2016/OrdinaryGetOwnProperty.js +44 -0
- data/node_modules/es-abstract/2016/OrdinaryGetPrototypeOf.js +21 -0
- data/node_modules/es-abstract/2016/OrdinaryHasInstance.js +25 -0
- data/node_modules/es-abstract/2016/OrdinaryHasProperty.js +20 -0
- data/node_modules/es-abstract/2016/OrdinarySetPrototypeOf.js +53 -0
- data/node_modules/es-abstract/2016/QuoteJSONString.js +52 -0
- data/node_modules/es-abstract/2016/RegExpCreate.js +21 -0
- data/node_modules/es-abstract/2016/RegExpExec.js +32 -0
- data/node_modules/es-abstract/2016/RequireObjectCoercible.js +3 -0
- data/node_modules/es-abstract/2016/SameValue.js +13 -0
- data/node_modules/es-abstract/2016/SameValueNonNumber.js +16 -0
- data/node_modules/es-abstract/2016/SameValueZero.js +9 -0
- data/node_modules/es-abstract/2016/SecFromTime.js +14 -0
- data/node_modules/es-abstract/2016/Set.js +47 -0
- data/node_modules/es-abstract/2016/SetFunctionName.js +44 -0
- data/node_modules/es-abstract/2016/SetIntegrityLevel.js +57 -0
- data/node_modules/es-abstract/2016/SetValueInBuffer.js +120 -0
- data/node_modules/es-abstract/2016/SpeciesConstructor.js +32 -0
- data/node_modules/es-abstract/2016/SplitMatch.js +39 -0
- data/node_modules/es-abstract/2016/StrictEqualityComparison.js +17 -0
- data/node_modules/es-abstract/2016/StringCreate.js +40 -0
- data/node_modules/es-abstract/2016/SymbolDescriptiveString.js +20 -0
- data/node_modules/es-abstract/2016/TestIntegrityLevel.js +42 -0
- data/node_modules/es-abstract/2016/TimeClip.js +21 -0
- data/node_modules/es-abstract/2016/TimeFromYear.js +11 -0
- data/node_modules/es-abstract/2016/TimeWithinDay.js +12 -0
- data/node_modules/es-abstract/2016/ToBoolean.js +5 -0
- data/node_modules/es-abstract/2016/ToDateString.js +23 -0
- data/node_modules/es-abstract/2016/ToInt16.js +10 -0
- data/node_modules/es-abstract/2016/ToInt32.js +9 -0
- data/node_modules/es-abstract/2016/ToInt8.js +10 -0
- data/node_modules/es-abstract/2016/ToInteger.js +12 -0
- data/node_modules/es-abstract/2016/ToLength.js +12 -0
- data/node_modules/es-abstract/2016/ToNumber.js +48 -0
- data/node_modules/es-abstract/2016/ToObject.js +14 -0
- data/node_modules/es-abstract/2016/ToPrimitive.js +12 -0
- data/node_modules/es-abstract/2016/ToPropertyDescriptor.js +52 -0
- data/node_modules/es-abstract/2016/ToPropertyKey.js +15 -0
- data/node_modules/es-abstract/2016/ToString.js +15 -0
- data/node_modules/es-abstract/2016/ToUint16.js +19 -0
- data/node_modules/es-abstract/2016/ToUint32.js +9 -0
- data/node_modules/es-abstract/2016/ToUint8.js +20 -0
- data/node_modules/es-abstract/2016/ToUint8Clamp.js +19 -0
- data/node_modules/es-abstract/2016/Type.js +12 -0
- data/node_modules/es-abstract/2016/TypedArrayCreate.js +50 -0
- data/node_modules/es-abstract/2016/TypedArraySpeciesCreate.js +39 -0
- data/node_modules/es-abstract/2016/UTF16Decode.js +21 -0
- data/node_modules/es-abstract/2016/UTF16Encoding.js +25 -0
- data/node_modules/es-abstract/2016/ValidateAndApplyPropertyDescriptor.js +170 -0
- data/node_modules/es-abstract/2016/ValidateTypedArray.js +30 -0
- data/node_modules/es-abstract/2016/WeekDay.js +10 -0
- data/node_modules/es-abstract/2016/YearFromTime.js +16 -0
- data/node_modules/es-abstract/2016/abs.js +11 -0
- data/node_modules/es-abstract/2016/floor.js +11 -0
- data/node_modules/es-abstract/2016/max.js +7 -0
- data/node_modules/es-abstract/2016/min.js +7 -0
- data/node_modules/es-abstract/2016/modulo.js +9 -0
- data/node_modules/es-abstract/2016/msFromTime.js +11 -0
- data/node_modules/es-abstract/2016/thisBooleanValue.js +15 -0
- data/node_modules/es-abstract/2016/thisNumberValue.js +18 -0
- data/node_modules/es-abstract/2016/thisStringValue.js +15 -0
- data/node_modules/es-abstract/2016/thisTimeValue.js +9 -0
- data/node_modules/es-abstract/2017/AbstractEqualityComparison.js +37 -0
- data/node_modules/es-abstract/2017/AbstractRelationalComparison.js +63 -0
- data/node_modules/es-abstract/2017/AdvanceStringIndex.js +47 -0
- data/node_modules/es-abstract/2017/ArrayCreate.js +54 -0
- data/node_modules/es-abstract/2017/ArraySetLength.js +85 -0
- data/node_modules/es-abstract/2017/ArraySpeciesCreate.js +47 -0
- data/node_modules/es-abstract/2017/Call.js +20 -0
- data/node_modules/es-abstract/2017/CanonicalNumericIndexString.js +22 -0
- data/node_modules/es-abstract/2017/Canonicalize.js +55 -0
- data/node_modules/es-abstract/2017/CharacterRange.js +31 -0
- data/node_modules/es-abstract/2017/CompletePropertyDescriptor.js +39 -0
- data/node_modules/es-abstract/2017/CompletionRecord.js +53 -0
- data/node_modules/es-abstract/2017/CreateDataProperty.js +27 -0
- data/node_modules/es-abstract/2017/CreateDataPropertyOrThrow.js +25 -0
- data/node_modules/es-abstract/2017/CreateHTML.js +30 -0
- data/node_modules/es-abstract/2017/CreateIterResultObject.js +19 -0
- data/node_modules/es-abstract/2017/CreateListFromArrayLike.js +45 -0
- data/node_modules/es-abstract/2017/CreateMethodProperty.js +40 -0
- data/node_modules/es-abstract/2017/DateFromTime.js +54 -0
- data/node_modules/es-abstract/2017/Day.js +11 -0
- data/node_modules/es-abstract/2017/DayFromYear.js +10 -0
- data/node_modules/es-abstract/2017/DayWithinYear.js +11 -0
- data/node_modules/es-abstract/2017/DaysInYear.js +18 -0
- data/node_modules/es-abstract/2017/DefinePropertyOrThrow.js +50 -0
- data/node_modules/es-abstract/2017/DeletePropertyOrThrow.js +27 -0
- data/node_modules/es-abstract/2017/DetachArrayBuffer.js +35 -0
- data/node_modules/es-abstract/2017/EnumerableOwnProperties.js +43 -0
- data/node_modules/es-abstract/2017/FromPropertyDescriptor.js +16 -0
- data/node_modules/es-abstract/2017/Get.js +25 -0
- data/node_modules/es-abstract/2017/GetGlobalObject.js +9 -0
- data/node_modules/es-abstract/2017/GetIterator.js +34 -0
- data/node_modules/es-abstract/2017/GetMethod.js +36 -0
- data/node_modules/es-abstract/2017/GetOwnPropertyKeys.js +31 -0
- data/node_modules/es-abstract/2017/GetPrototypeFromConstructor.js +32 -0
- data/node_modules/es-abstract/2017/GetSubstitution.js +100 -0
- data/node_modules/es-abstract/2017/GetV.js +25 -0
- data/node_modules/es-abstract/2017/GetValueFromBuffer.js +108 -0
- data/node_modules/es-abstract/2017/HasOwnProperty.js +22 -0
- data/node_modules/es-abstract/2017/HasProperty.js +20 -0
- data/node_modules/es-abstract/2017/HourFromTime.js +14 -0
- data/node_modules/es-abstract/2017/InLeapYear.js +21 -0
- data/node_modules/es-abstract/2017/InstanceofOperator.js +30 -0
- data/node_modules/es-abstract/2017/Invoke.js +24 -0
- data/node_modules/es-abstract/2017/IsAccessorDescriptor.js +23 -0
- data/node_modules/es-abstract/2017/IsArray.js +4 -0
- data/node_modules/es-abstract/2017/IsCallable.js +5 -0
- data/node_modules/es-abstract/2017/IsCompatiblePropertyDescriptor.js +9 -0
- data/node_modules/es-abstract/2017/IsConcatSpreadable.js +25 -0
- data/node_modules/es-abstract/2017/IsConstructor.js +40 -0
- data/node_modules/es-abstract/2017/IsDataDescriptor.js +23 -0
- data/node_modules/es-abstract/2017/IsDetachedBuffer.js +27 -0
- data/node_modules/es-abstract/2017/IsExtensible.js +18 -0
- data/node_modules/es-abstract/2017/IsGenericDescriptor.js +23 -0
- data/node_modules/es-abstract/2017/IsInteger.js +9 -0
- data/node_modules/es-abstract/2017/IsPromise.js +24 -0
- data/node_modules/es-abstract/2017/IsPropertyDescriptor.js +19 -0
- data/node_modules/es-abstract/2017/IsPropertyKey.js +7 -0
- data/node_modules/es-abstract/2017/IsRegExp.js +24 -0
- data/node_modules/es-abstract/2017/IsSharedArrayBuffer.js +19 -0
- data/node_modules/es-abstract/2017/IsWordChar.js +48 -0
- data/node_modules/es-abstract/2017/IterableToList.js +24 -0
- data/node_modules/es-abstract/2017/IteratorClose.js +51 -0
- data/node_modules/es-abstract/2017/IteratorComplete.js +18 -0
- data/node_modules/es-abstract/2017/IteratorNext.js +18 -0
- data/node_modules/es-abstract/2017/IteratorStep.js +13 -0
- data/node_modules/es-abstract/2017/IteratorValue.js +18 -0
- data/node_modules/es-abstract/2017/MakeDate.js +13 -0
- data/node_modules/es-abstract/2017/MakeDay.js +33 -0
- data/node_modules/es-abstract/2017/MakeTime.js +23 -0
- data/node_modules/es-abstract/2017/MinFromTime.js +14 -0
- data/node_modules/es-abstract/2017/MonthFromTime.js +47 -0
- data/node_modules/es-abstract/2017/NewPromiseCapability.js +36 -0
- data/node_modules/es-abstract/2017/NormalCompletion.js +9 -0
- data/node_modules/es-abstract/2017/NumberToRawBytes.js +74 -0
- data/node_modules/es-abstract/2017/ObjectCreate.js +50 -0
- data/node_modules/es-abstract/2017/ObjectDefineProperties.js +38 -0
- data/node_modules/es-abstract/2017/OrdinaryCreateFromConstructor.js +20 -0
- data/node_modules/es-abstract/2017/OrdinaryDefineOwnProperty.js +61 -0
- data/node_modules/es-abstract/2017/OrdinaryGetOwnProperty.js +44 -0
- data/node_modules/es-abstract/2017/OrdinaryGetPrototypeOf.js +21 -0
- data/node_modules/es-abstract/2017/OrdinaryHasInstance.js +25 -0
- data/node_modules/es-abstract/2017/OrdinaryHasProperty.js +20 -0
- data/node_modules/es-abstract/2017/OrdinarySetPrototypeOf.js +53 -0
- data/node_modules/es-abstract/2017/OrdinaryToPrimitive.js +38 -0
- data/node_modules/es-abstract/2017/QuoteJSONString.js +52 -0
- data/node_modules/es-abstract/2017/RawBytesToNumber.js +74 -0
- data/node_modules/es-abstract/2017/RegExpCreate.js +21 -0
- data/node_modules/es-abstract/2017/RegExpExec.js +32 -0
- data/node_modules/es-abstract/2017/RequireObjectCoercible.js +3 -0
- data/node_modules/es-abstract/2017/SameValue.js +13 -0
- data/node_modules/es-abstract/2017/SameValueNonNumber.js +16 -0
- data/node_modules/es-abstract/2017/SameValueZero.js +9 -0
- data/node_modules/es-abstract/2017/SecFromTime.js +14 -0
- data/node_modules/es-abstract/2017/Set.js +47 -0
- data/node_modules/es-abstract/2017/SetFunctionName.js +44 -0
- data/node_modules/es-abstract/2017/SetIntegrityLevel.js +57 -0
- data/node_modules/es-abstract/2017/SetValueInBuffer.js +120 -0
- data/node_modules/es-abstract/2017/SpeciesConstructor.js +32 -0
- data/node_modules/es-abstract/2017/SplitMatch.js +39 -0
- data/node_modules/es-abstract/2017/StrictEqualityComparison.js +17 -0
- data/node_modules/es-abstract/2017/StringCreate.js +40 -0
- data/node_modules/es-abstract/2017/StringGetOwnProperty.js +48 -0
- data/node_modules/es-abstract/2017/SymbolDescriptiveString.js +20 -0
- data/node_modules/es-abstract/2017/TestIntegrityLevel.js +42 -0
- data/node_modules/es-abstract/2017/TimeClip.js +21 -0
- data/node_modules/es-abstract/2017/TimeFromYear.js +11 -0
- data/node_modules/es-abstract/2017/TimeWithinDay.js +12 -0
- data/node_modules/es-abstract/2017/ToBoolean.js +5 -0
- data/node_modules/es-abstract/2017/ToDateString.js +23 -0
- data/node_modules/es-abstract/2017/ToIndex.js +26 -0
- data/node_modules/es-abstract/2017/ToInt16.js +10 -0
- data/node_modules/es-abstract/2017/ToInt32.js +9 -0
- data/node_modules/es-abstract/2017/ToInt8.js +10 -0
- data/node_modules/es-abstract/2017/ToInteger.js +12 -0
- data/node_modules/es-abstract/2017/ToLength.js +12 -0
- data/node_modules/es-abstract/2017/ToNumber.js +48 -0
- data/node_modules/es-abstract/2017/ToObject.js +14 -0
- data/node_modules/es-abstract/2017/ToPrimitive.js +12 -0
- data/node_modules/es-abstract/2017/ToPropertyDescriptor.js +52 -0
- data/node_modules/es-abstract/2017/ToPropertyKey.js +15 -0
- data/node_modules/es-abstract/2017/ToString.js +15 -0
- data/node_modules/es-abstract/2017/ToUint16.js +19 -0
- data/node_modules/es-abstract/2017/ToUint32.js +9 -0
- data/node_modules/es-abstract/2017/ToUint8.js +20 -0
- data/node_modules/es-abstract/2017/ToUint8Clamp.js +19 -0
- data/node_modules/es-abstract/2017/Type.js +12 -0
- data/node_modules/es-abstract/2017/TypedArrayCreate.js +50 -0
- data/node_modules/es-abstract/2017/TypedArraySpeciesCreate.js +39 -0
- data/node_modules/es-abstract/2017/UTF16Decode.js +21 -0
- data/node_modules/es-abstract/2017/UTF16Encoding.js +25 -0
- data/node_modules/es-abstract/2017/ValidateAndApplyPropertyDescriptor.js +170 -0
- data/node_modules/es-abstract/2017/ValidateAtomicAccess.js +36 -0
- data/node_modules/es-abstract/2017/ValidateTypedArray.js +30 -0
- data/node_modules/es-abstract/2017/WeekDay.js +10 -0
- data/node_modules/es-abstract/2017/WordCharacters.js +49 -0
- data/node_modules/es-abstract/2017/YearFromTime.js +16 -0
- data/node_modules/es-abstract/2017/abs.js +11 -0
- data/node_modules/es-abstract/2017/floor.js +11 -0
- data/node_modules/es-abstract/2017/max.js +7 -0
- data/node_modules/es-abstract/2017/min.js +7 -0
- data/node_modules/es-abstract/2017/modulo.js +9 -0
- data/node_modules/es-abstract/2017/msFromTime.js +11 -0
- data/node_modules/es-abstract/2017/thisBooleanValue.js +15 -0
- data/node_modules/es-abstract/2017/thisNumberValue.js +18 -0
- data/node_modules/es-abstract/2017/thisStringValue.js +15 -0
- data/node_modules/es-abstract/2017/thisTimeValue.js +9 -0
- data/node_modules/es-abstract/2018/AbstractEqualityComparison.js +37 -0
- data/node_modules/es-abstract/2018/AbstractRelationalComparison.js +61 -0
- data/node_modules/es-abstract/2018/AdvanceStringIndex.js +47 -0
- data/node_modules/es-abstract/2018/ArrayCreate.js +54 -0
- data/node_modules/es-abstract/2018/ArraySetLength.js +85 -0
- data/node_modules/es-abstract/2018/ArraySpeciesCreate.js +47 -0
- data/node_modules/es-abstract/2018/AsyncIteratorClose.js +62 -0
- data/node_modules/es-abstract/2018/Call.js +20 -0
- data/node_modules/es-abstract/2018/CanonicalNumericIndexString.js +22 -0
- data/node_modules/es-abstract/2018/Canonicalize.js +55 -0
- data/node_modules/es-abstract/2018/CharacterRange.js +31 -0
- data/node_modules/es-abstract/2018/CompletePropertyDescriptor.js +39 -0
- data/node_modules/es-abstract/2018/CompletionRecord.js +53 -0
- data/node_modules/es-abstract/2018/CopyDataProperties.js +68 -0
- data/node_modules/es-abstract/2018/CreateAsyncFromSyncIterator.js +155 -0
- data/node_modules/es-abstract/2018/CreateDataProperty.js +27 -0
- data/node_modules/es-abstract/2018/CreateDataPropertyOrThrow.js +25 -0
- data/node_modules/es-abstract/2018/CreateHTML.js +30 -0
- data/node_modules/es-abstract/2018/CreateIterResultObject.js +19 -0
- data/node_modules/es-abstract/2018/CreateListFromArrayLike.js +45 -0
- data/node_modules/es-abstract/2018/CreateMethodProperty.js +40 -0
- data/node_modules/es-abstract/2018/DateFromTime.js +54 -0
- data/node_modules/es-abstract/2018/DateString.js +30 -0
- data/node_modules/es-abstract/2018/Day.js +11 -0
- data/node_modules/es-abstract/2018/DayFromYear.js +10 -0
- data/node_modules/es-abstract/2018/DayWithinYear.js +11 -0
- data/node_modules/es-abstract/2018/DaysInYear.js +18 -0
- data/node_modules/es-abstract/2018/DefinePropertyOrThrow.js +50 -0
- data/node_modules/es-abstract/2018/DeletePropertyOrThrow.js +27 -0
- data/node_modules/es-abstract/2018/DetachArrayBuffer.js +43 -0
- data/node_modules/es-abstract/2018/EnumerableOwnPropertyNames.js +43 -0
- data/node_modules/es-abstract/2018/FromPropertyDescriptor.js +16 -0
- data/node_modules/es-abstract/2018/Get.js +25 -0
- data/node_modules/es-abstract/2018/GetGlobalObject.js +9 -0
- data/node_modules/es-abstract/2018/GetIterator.js +34 -0
- data/node_modules/es-abstract/2018/GetMethod.js +36 -0
- data/node_modules/es-abstract/2018/GetOwnPropertyKeys.js +31 -0
- data/node_modules/es-abstract/2018/GetPrototypeFromConstructor.js +32 -0
- data/node_modules/es-abstract/2018/GetSubstitution.js +124 -0
- data/node_modules/es-abstract/2018/GetV.js +25 -0
- data/node_modules/es-abstract/2018/GetValueFromBuffer.js +108 -0
- data/node_modules/es-abstract/2018/HasOwnProperty.js +22 -0
- data/node_modules/es-abstract/2018/HasProperty.js +20 -0
- data/node_modules/es-abstract/2018/HourFromTime.js +14 -0
- data/node_modules/es-abstract/2018/InLeapYear.js +21 -0
- data/node_modules/es-abstract/2018/InstanceofOperator.js +30 -0
- data/node_modules/es-abstract/2018/Invoke.js +24 -0
- data/node_modules/es-abstract/2018/IsAccessorDescriptor.js +23 -0
- data/node_modules/es-abstract/2018/IsArray.js +4 -0
- data/node_modules/es-abstract/2018/IsCallable.js +5 -0
- data/node_modules/es-abstract/2018/IsCompatiblePropertyDescriptor.js +9 -0
- data/node_modules/es-abstract/2018/IsConcatSpreadable.js +25 -0
- data/node_modules/es-abstract/2018/IsConstructor.js +40 -0
- data/node_modules/es-abstract/2018/IsDataDescriptor.js +23 -0
- data/node_modules/es-abstract/2018/IsDetachedBuffer.js +27 -0
- data/node_modules/es-abstract/2018/IsExtensible.js +18 -0
- data/node_modules/es-abstract/2018/IsGenericDescriptor.js +23 -0
- data/node_modules/es-abstract/2018/IsInteger.js +9 -0
- data/node_modules/es-abstract/2018/IsPromise.js +24 -0
- data/node_modules/es-abstract/2018/IsPropertyKey.js +7 -0
- data/node_modules/es-abstract/2018/IsRegExp.js +24 -0
- data/node_modules/es-abstract/2018/IsSharedArrayBuffer.js +19 -0
- data/node_modules/es-abstract/2018/IsStringPrefix.js +47 -0
- data/node_modules/es-abstract/2018/IsWordChar.js +48 -0
- data/node_modules/es-abstract/2018/IterableToList.js +24 -0
- data/node_modules/es-abstract/2018/IteratorClose.js +51 -0
- data/node_modules/es-abstract/2018/IteratorComplete.js +18 -0
- data/node_modules/es-abstract/2018/IteratorNext.js +18 -0
- data/node_modules/es-abstract/2018/IteratorStep.js +13 -0
- data/node_modules/es-abstract/2018/IteratorValue.js +18 -0
- data/node_modules/es-abstract/2018/MakeDate.js +13 -0
- data/node_modules/es-abstract/2018/MakeDay.js +33 -0
- data/node_modules/es-abstract/2018/MakeTime.js +23 -0
- data/node_modules/es-abstract/2018/MinFromTime.js +14 -0
- data/node_modules/es-abstract/2018/MonthFromTime.js +47 -0
- data/node_modules/es-abstract/2018/NewPromiseCapability.js +36 -0
- data/node_modules/es-abstract/2018/NormalCompletion.js +9 -0
- data/node_modules/es-abstract/2018/NumberToRawBytes.js +74 -0
- data/node_modules/es-abstract/2018/NumberToString.js +19 -0
- data/node_modules/es-abstract/2018/ObjectCreate.js +50 -0
- data/node_modules/es-abstract/2018/ObjectDefineProperties.js +38 -0
- data/node_modules/es-abstract/2018/OrdinaryCreateFromConstructor.js +20 -0
- data/node_modules/es-abstract/2018/OrdinaryDefineOwnProperty.js +61 -0
- data/node_modules/es-abstract/2018/OrdinaryGetOwnProperty.js +44 -0
- data/node_modules/es-abstract/2018/OrdinaryGetPrototypeOf.js +21 -0
- data/node_modules/es-abstract/2018/OrdinaryHasInstance.js +25 -0
- data/node_modules/es-abstract/2018/OrdinaryHasProperty.js +20 -0
- data/node_modules/es-abstract/2018/OrdinarySetPrototypeOf.js +53 -0
- data/node_modules/es-abstract/2018/OrdinaryToPrimitive.js +38 -0
- data/node_modules/es-abstract/2018/PromiseResolve.js +17 -0
- data/node_modules/es-abstract/2018/QuoteJSONString.js +48 -0
- data/node_modules/es-abstract/2018/RawBytesToNumber.js +74 -0
- data/node_modules/es-abstract/2018/RegExpCreate.js +21 -0
- data/node_modules/es-abstract/2018/RegExpExec.js +32 -0
- data/node_modules/es-abstract/2018/RequireObjectCoercible.js +3 -0
- data/node_modules/es-abstract/2018/SameValue.js +13 -0
- data/node_modules/es-abstract/2018/SameValueNonNumber.js +16 -0
- data/node_modules/es-abstract/2018/SameValueZero.js +9 -0
- data/node_modules/es-abstract/2018/SecFromTime.js +14 -0
- data/node_modules/es-abstract/2018/Set.js +47 -0
- data/node_modules/es-abstract/2018/SetFunctionLength.js +32 -0
- data/node_modules/es-abstract/2018/SetFunctionName.js +44 -0
- data/node_modules/es-abstract/2018/SetIntegrityLevel.js +57 -0
- data/node_modules/es-abstract/2018/SetValueInBuffer.js +120 -0
- data/node_modules/es-abstract/2018/SpeciesConstructor.js +32 -0
- data/node_modules/es-abstract/2018/SplitMatch.js +39 -0
- data/node_modules/es-abstract/2018/StrictEqualityComparison.js +17 -0
- data/node_modules/es-abstract/2018/StringCreate.js +40 -0
- data/node_modules/es-abstract/2018/StringGetOwnProperty.js +48 -0
- data/node_modules/es-abstract/2018/SymbolDescriptiveString.js +20 -0
- data/node_modules/es-abstract/2018/TestIntegrityLevel.js +42 -0
- data/node_modules/es-abstract/2018/ThrowCompletion.js +9 -0
- data/node_modules/es-abstract/2018/TimeClip.js +21 -0
- data/node_modules/es-abstract/2018/TimeFromYear.js +11 -0
- data/node_modules/es-abstract/2018/TimeString.js +25 -0
- data/node_modules/es-abstract/2018/TimeWithinDay.js +12 -0
- data/node_modules/es-abstract/2018/ToBoolean.js +5 -0
- data/node_modules/es-abstract/2018/ToDateString.js +23 -0
- data/node_modules/es-abstract/2018/ToIndex.js +26 -0
- data/node_modules/es-abstract/2018/ToInt16.js +10 -0
- data/node_modules/es-abstract/2018/ToInt32.js +9 -0
- data/node_modules/es-abstract/2018/ToInt8.js +10 -0
- data/node_modules/es-abstract/2018/ToInteger.js +12 -0
- data/node_modules/es-abstract/2018/ToLength.js +12 -0
- data/node_modules/es-abstract/2018/ToNumber.js +48 -0
- data/node_modules/es-abstract/2018/ToObject.js +14 -0
- data/node_modules/es-abstract/2018/ToPrimitive.js +12 -0
- data/node_modules/es-abstract/2018/ToPropertyDescriptor.js +52 -0
- data/node_modules/es-abstract/2018/ToPropertyKey.js +15 -0
- data/node_modules/es-abstract/2018/ToString.js +15 -0
- data/node_modules/es-abstract/2018/ToUint16.js +19 -0
- data/node_modules/es-abstract/2018/ToUint32.js +9 -0
- data/node_modules/es-abstract/2018/ToUint8.js +20 -0
- data/node_modules/es-abstract/2018/ToUint8Clamp.js +19 -0
- data/node_modules/es-abstract/2018/Type.js +12 -0
- data/node_modules/es-abstract/2018/TypedArrayCreate.js +50 -0
- data/node_modules/es-abstract/2018/TypedArraySpeciesCreate.js +39 -0
- data/node_modules/es-abstract/2018/UTF16Decode.js +21 -0
- data/node_modules/es-abstract/2018/UTF16Encoding.js +25 -0
- data/node_modules/es-abstract/2018/UnicodeEscape.js +26 -0
- data/node_modules/es-abstract/2018/ValidateAndApplyPropertyDescriptor.js +170 -0
- data/node_modules/es-abstract/2018/ValidateAtomicAccess.js +36 -0
- data/node_modules/es-abstract/2018/ValidateTypedArray.js +30 -0
- data/node_modules/es-abstract/2018/WeekDay.js +10 -0
- data/node_modules/es-abstract/2018/WordCharacters.js +49 -0
- data/node_modules/es-abstract/2018/YearFromTime.js +16 -0
- data/node_modules/es-abstract/2018/abs.js +11 -0
- data/node_modules/es-abstract/2018/floor.js +11 -0
- data/node_modules/es-abstract/2018/max.js +7 -0
- data/node_modules/es-abstract/2018/min.js +7 -0
- data/node_modules/es-abstract/2018/modulo.js +9 -0
- data/node_modules/es-abstract/2018/msFromTime.js +11 -0
- data/node_modules/es-abstract/2018/thisBooleanValue.js +15 -0
- data/node_modules/es-abstract/2018/thisNumberValue.js +18 -0
- data/node_modules/es-abstract/2018/thisStringValue.js +15 -0
- data/node_modules/es-abstract/2018/thisSymbolValue.js +19 -0
- data/node_modules/es-abstract/2018/thisTimeValue.js +9 -0
- data/node_modules/es-abstract/2019/AbstractEqualityComparison.js +37 -0
- data/node_modules/es-abstract/2019/AbstractRelationalComparison.js +61 -0
- data/node_modules/es-abstract/2019/AddEntriesFromIterable.js +47 -0
- data/node_modules/es-abstract/2019/AdvanceStringIndex.js +47 -0
- data/node_modules/es-abstract/2019/ArrayCreate.js +54 -0
- data/node_modules/es-abstract/2019/ArraySetLength.js +85 -0
- data/node_modules/es-abstract/2019/ArraySpeciesCreate.js +47 -0
- data/node_modules/es-abstract/2019/AsyncFromSyncIteratorContinuation.js +45 -0
- data/node_modules/es-abstract/2019/AsyncIteratorClose.js +62 -0
- data/node_modules/es-abstract/2019/Call.js +20 -0
- data/node_modules/es-abstract/2019/CanonicalNumericIndexString.js +22 -0
- data/node_modules/es-abstract/2019/Canonicalize.js +55 -0
- data/node_modules/es-abstract/2019/CharacterRange.js +31 -0
- data/node_modules/es-abstract/2019/CompletePropertyDescriptor.js +39 -0
- data/node_modules/es-abstract/2019/CompletionRecord.js +53 -0
- data/node_modules/es-abstract/2019/CopyDataProperties.js +68 -0
- data/node_modules/es-abstract/2019/CreateAsyncFromSyncIterator.js +121 -0
- data/node_modules/es-abstract/2019/CreateDataProperty.js +27 -0
- data/node_modules/es-abstract/2019/CreateDataPropertyOrThrow.js +25 -0
- data/node_modules/es-abstract/2019/CreateHTML.js +30 -0
- data/node_modules/es-abstract/2019/CreateIterResultObject.js +19 -0
- data/node_modules/es-abstract/2019/CreateListFromArrayLike.js +45 -0
- data/node_modules/es-abstract/2019/CreateMethodProperty.js +40 -0
- data/node_modules/es-abstract/2019/DateFromTime.js +54 -0
- data/node_modules/es-abstract/2019/DateString.js +30 -0
- data/node_modules/es-abstract/2019/Day.js +11 -0
- data/node_modules/es-abstract/2019/DayFromYear.js +10 -0
- data/node_modules/es-abstract/2019/DayWithinYear.js +11 -0
- data/node_modules/es-abstract/2019/DaysInYear.js +18 -0
- data/node_modules/es-abstract/2019/DefinePropertyOrThrow.js +50 -0
- data/node_modules/es-abstract/2019/DeletePropertyOrThrow.js +27 -0
- data/node_modules/es-abstract/2019/DetachArrayBuffer.js +43 -0
- data/node_modules/es-abstract/2019/EnumerableOwnPropertyNames.js +43 -0
- data/node_modules/es-abstract/2019/FlattenIntoArray.js +57 -0
- data/node_modules/es-abstract/2019/FromPropertyDescriptor.js +16 -0
- data/node_modules/es-abstract/2019/Get.js +25 -0
- data/node_modules/es-abstract/2019/GetGlobalObject.js +9 -0
- data/node_modules/es-abstract/2019/GetIterator.js +34 -0
- data/node_modules/es-abstract/2019/GetMethod.js +36 -0
- data/node_modules/es-abstract/2019/GetOwnPropertyKeys.js +31 -0
- data/node_modules/es-abstract/2019/GetPrototypeFromConstructor.js +32 -0
- data/node_modules/es-abstract/2019/GetSubstitution.js +124 -0
- data/node_modules/es-abstract/2019/GetV.js +25 -0
- data/node_modules/es-abstract/2019/GetValueFromBuffer.js +106 -0
- data/node_modules/es-abstract/2019/HasOwnProperty.js +22 -0
- data/node_modules/es-abstract/2019/HasProperty.js +20 -0
- data/node_modules/es-abstract/2019/HourFromTime.js +14 -0
- data/node_modules/es-abstract/2019/InLeapYear.js +21 -0
- data/node_modules/es-abstract/2019/InstanceofOperator.js +30 -0
- data/node_modules/es-abstract/2019/Invoke.js +24 -0
- data/node_modules/es-abstract/2019/IsAccessorDescriptor.js +23 -0
- data/node_modules/es-abstract/2019/IsArray.js +4 -0
- data/node_modules/es-abstract/2019/IsCallable.js +5 -0
- data/node_modules/es-abstract/2019/IsCompatiblePropertyDescriptor.js +9 -0
- data/node_modules/es-abstract/2019/IsConcatSpreadable.js +25 -0
- data/node_modules/es-abstract/2019/IsConstructor.js +40 -0
- data/node_modules/es-abstract/2019/IsDataDescriptor.js +23 -0
- data/node_modules/es-abstract/2019/IsDetachedBuffer.js +27 -0
- data/node_modules/es-abstract/2019/IsExtensible.js +18 -0
- data/node_modules/es-abstract/2019/IsGenericDescriptor.js +23 -0
- data/node_modules/es-abstract/2019/IsInteger.js +9 -0
- data/node_modules/es-abstract/2019/IsPromise.js +24 -0
- data/node_modules/es-abstract/2019/IsPropertyKey.js +7 -0
- data/node_modules/es-abstract/2019/IsRegExp.js +24 -0
- data/node_modules/es-abstract/2019/IsSharedArrayBuffer.js +19 -0
- data/node_modules/es-abstract/2019/IsStringPrefix.js +47 -0
- data/node_modules/es-abstract/2019/IsWordChar.js +48 -0
- data/node_modules/es-abstract/2019/IterableToList.js +24 -0
- data/node_modules/es-abstract/2019/IteratorClose.js +51 -0
- data/node_modules/es-abstract/2019/IteratorComplete.js +18 -0
- data/node_modules/es-abstract/2019/IteratorNext.js +18 -0
- data/node_modules/es-abstract/2019/IteratorStep.js +13 -0
- data/node_modules/es-abstract/2019/IteratorValue.js +18 -0
- data/node_modules/es-abstract/2019/MakeDate.js +13 -0
- data/node_modules/es-abstract/2019/MakeDay.js +33 -0
- data/node_modules/es-abstract/2019/MakeTime.js +23 -0
- data/node_modules/es-abstract/2019/MinFromTime.js +14 -0
- data/node_modules/es-abstract/2019/MonthFromTime.js +47 -0
- data/node_modules/es-abstract/2019/NewPromiseCapability.js +36 -0
- data/node_modules/es-abstract/2019/NormalCompletion.js +9 -0
- data/node_modules/es-abstract/2019/NumberToRawBytes.js +74 -0
- data/node_modules/es-abstract/2019/NumberToString.js +19 -0
- data/node_modules/es-abstract/2019/ObjectCreate.js +50 -0
- data/node_modules/es-abstract/2019/ObjectDefineProperties.js +38 -0
- data/node_modules/es-abstract/2019/OrdinaryCreateFromConstructor.js +20 -0
- data/node_modules/es-abstract/2019/OrdinaryDefineOwnProperty.js +61 -0
- data/node_modules/es-abstract/2019/OrdinaryGetOwnProperty.js +44 -0
- data/node_modules/es-abstract/2019/OrdinaryGetPrototypeOf.js +21 -0
- data/node_modules/es-abstract/2019/OrdinaryHasInstance.js +25 -0
- data/node_modules/es-abstract/2019/OrdinaryHasProperty.js +20 -0
- data/node_modules/es-abstract/2019/OrdinarySetPrototypeOf.js +53 -0
- data/node_modules/es-abstract/2019/OrdinaryToPrimitive.js +38 -0
- data/node_modules/es-abstract/2019/PromiseResolve.js +17 -0
- data/node_modules/es-abstract/2019/QuoteJSONString.js +54 -0
- data/node_modules/es-abstract/2019/RawBytesToNumber.js +74 -0
- data/node_modules/es-abstract/2019/RegExpCreate.js +21 -0
- data/node_modules/es-abstract/2019/RegExpExec.js +32 -0
- data/node_modules/es-abstract/2019/RequireObjectCoercible.js +3 -0
- data/node_modules/es-abstract/2019/SameValue.js +13 -0
- data/node_modules/es-abstract/2019/SameValueNonNumber.js +16 -0
- data/node_modules/es-abstract/2019/SameValueZero.js +9 -0
- data/node_modules/es-abstract/2019/SecFromTime.js +14 -0
- data/node_modules/es-abstract/2019/Set.js +47 -0
- data/node_modules/es-abstract/2019/SetFunctionLength.js +32 -0
- data/node_modules/es-abstract/2019/SetFunctionName.js +44 -0
- data/node_modules/es-abstract/2019/SetIntegrityLevel.js +57 -0
- data/node_modules/es-abstract/2019/SetValueInBuffer.js +120 -0
- data/node_modules/es-abstract/2019/SpeciesConstructor.js +32 -0
- data/node_modules/es-abstract/2019/SplitMatch.js +39 -0
- data/node_modules/es-abstract/2019/StrictEqualityComparison.js +17 -0
- data/node_modules/es-abstract/2019/StringCreate.js +40 -0
- data/node_modules/es-abstract/2019/StringGetOwnProperty.js +48 -0
- data/node_modules/es-abstract/2019/SymbolDescriptiveString.js +20 -0
- data/node_modules/es-abstract/2019/TestIntegrityLevel.js +42 -0
- data/node_modules/es-abstract/2019/ThrowCompletion.js +9 -0
- data/node_modules/es-abstract/2019/TimeClip.js +21 -0
- data/node_modules/es-abstract/2019/TimeFromYear.js +11 -0
- data/node_modules/es-abstract/2019/TimeString.js +25 -0
- data/node_modules/es-abstract/2019/TimeWithinDay.js +12 -0
- data/node_modules/es-abstract/2019/ToBoolean.js +5 -0
- data/node_modules/es-abstract/2019/ToDateString.js +23 -0
- data/node_modules/es-abstract/2019/ToIndex.js +26 -0
- data/node_modules/es-abstract/2019/ToInt16.js +10 -0
- data/node_modules/es-abstract/2019/ToInt32.js +9 -0
- data/node_modules/es-abstract/2019/ToInt8.js +10 -0
- data/node_modules/es-abstract/2019/ToInteger.js +12 -0
- data/node_modules/es-abstract/2019/ToLength.js +12 -0
- data/node_modules/es-abstract/2019/ToNumber.js +48 -0
- data/node_modules/es-abstract/2019/ToObject.js +14 -0
- data/node_modules/es-abstract/2019/ToPrimitive.js +12 -0
- data/node_modules/es-abstract/2019/ToPropertyDescriptor.js +52 -0
- data/node_modules/es-abstract/2019/ToPropertyKey.js +15 -0
- data/node_modules/es-abstract/2019/ToString.js +15 -0
- data/node_modules/es-abstract/2019/ToUint16.js +19 -0
- data/node_modules/es-abstract/2019/ToUint32.js +9 -0
- data/node_modules/es-abstract/2019/ToUint8.js +20 -0
- data/node_modules/es-abstract/2019/ToUint8Clamp.js +19 -0
- data/node_modules/es-abstract/2019/TrimString.js +29 -0
- data/node_modules/es-abstract/2019/Type.js +12 -0
- data/node_modules/es-abstract/2019/TypedArrayCreate.js +50 -0
- data/node_modules/es-abstract/2019/TypedArraySpeciesCreate.js +39 -0
- data/node_modules/es-abstract/2019/UTF16Decode.js +21 -0
- data/node_modules/es-abstract/2019/UTF16Encoding.js +25 -0
- data/node_modules/es-abstract/2019/UnicodeEscape.js +26 -0
- data/node_modules/es-abstract/2019/ValidateAndApplyPropertyDescriptor.js +170 -0
- data/node_modules/es-abstract/2019/ValidateAtomicAccess.js +36 -0
- data/node_modules/es-abstract/2019/ValidateTypedArray.js +30 -0
- data/node_modules/es-abstract/2019/WeekDay.js +10 -0
- data/node_modules/es-abstract/2019/WordCharacters.js +49 -0
- data/node_modules/es-abstract/2019/YearFromTime.js +16 -0
- data/node_modules/es-abstract/2019/abs.js +11 -0
- data/node_modules/es-abstract/2019/floor.js +11 -0
- data/node_modules/es-abstract/2019/max.js +7 -0
- data/node_modules/es-abstract/2019/min.js +7 -0
- data/node_modules/es-abstract/2019/modulo.js +9 -0
- data/node_modules/es-abstract/2019/msFromTime.js +11 -0
- data/node_modules/es-abstract/2019/thisBooleanValue.js +15 -0
- data/node_modules/es-abstract/2019/thisNumberValue.js +18 -0
- data/node_modules/es-abstract/2019/thisStringValue.js +15 -0
- data/node_modules/es-abstract/2019/thisSymbolValue.js +19 -0
- data/node_modules/es-abstract/2019/thisTimeValue.js +9 -0
- data/node_modules/es-abstract/2020/AbstractEqualityComparison.js +57 -0
- data/node_modules/es-abstract/2020/AbstractRelationalComparison.js +82 -0
- data/node_modules/es-abstract/2020/AddEntriesFromIterable.js +47 -0
- data/node_modules/es-abstract/2020/AdvanceStringIndex.js +34 -0
- data/node_modules/es-abstract/2020/ArrayCreate.js +54 -0
- data/node_modules/es-abstract/2020/ArraySetLength.js +85 -0
- data/node_modules/es-abstract/2020/ArraySpeciesCreate.js +47 -0
- data/node_modules/es-abstract/2020/AsyncFromSyncIteratorContinuation.js +45 -0
- data/node_modules/es-abstract/2020/AsyncIteratorClose.js +62 -0
- data/node_modules/es-abstract/2020/BigInt/add.js +18 -0
- data/node_modules/es-abstract/2020/BigInt/bitwiseAND.js +17 -0
- data/node_modules/es-abstract/2020/BigInt/bitwiseNOT.js +17 -0
- data/node_modules/es-abstract/2020/BigInt/bitwiseOR.js +17 -0
- data/node_modules/es-abstract/2020/BigInt/bitwiseXOR.js +17 -0
- data/node_modules/es-abstract/2020/BigInt/divide.js +22 -0
- data/node_modules/es-abstract/2020/BigInt/equal.js +17 -0
- data/node_modules/es-abstract/2020/BigInt/exponentiate.js +31 -0
- data/node_modules/es-abstract/2020/BigInt/index.js +43 -0
- data/node_modules/es-abstract/2020/BigInt/leftShift.js +18 -0
- data/node_modules/es-abstract/2020/BigInt/lessThan.js +18 -0
- data/node_modules/es-abstract/2020/BigInt/multiply.js +18 -0
- data/node_modules/es-abstract/2020/BigInt/remainder.js +30 -0
- data/node_modules/es-abstract/2020/BigInt/sameValue.js +18 -0
- data/node_modules/es-abstract/2020/BigInt/sameValueZero.js +18 -0
- data/node_modules/es-abstract/2020/BigInt/signedRightShift.js +18 -0
- data/node_modules/es-abstract/2020/BigInt/subtract.js +18 -0
- data/node_modules/es-abstract/2020/BigInt/toString.js +18 -0
- data/node_modules/es-abstract/2020/BigInt/unaryMinus.js +24 -0
- data/node_modules/es-abstract/2020/BigInt/unsignedRightShift.js +17 -0
- data/node_modules/es-abstract/2020/BigIntBitwiseOp.js +66 -0
- data/node_modules/es-abstract/2020/BinaryAnd.js +14 -0
- data/node_modules/es-abstract/2020/BinaryOr.js +14 -0
- data/node_modules/es-abstract/2020/BinaryXor.js +14 -0
- data/node_modules/es-abstract/2020/Call.js +20 -0
- data/node_modules/es-abstract/2020/CanonicalNumericIndexString.js +22 -0
- data/node_modules/es-abstract/2020/Canonicalize.js +55 -0
- data/node_modules/es-abstract/2020/CharacterRange.js +31 -0
- data/node_modules/es-abstract/2020/CodePointAt.js +58 -0
- data/node_modules/es-abstract/2020/CompletePropertyDescriptor.js +39 -0
- data/node_modules/es-abstract/2020/CompletionRecord.js +53 -0
- data/node_modules/es-abstract/2020/CopyDataProperties.js +64 -0
- data/node_modules/es-abstract/2020/CreateAsyncFromSyncIterator.js +121 -0
- data/node_modules/es-abstract/2020/CreateDataProperty.js +27 -0
- data/node_modules/es-abstract/2020/CreateDataPropertyOrThrow.js +25 -0
- data/node_modules/es-abstract/2020/CreateHTML.js +30 -0
- data/node_modules/es-abstract/2020/CreateIterResultObject.js +19 -0
- data/node_modules/es-abstract/2020/CreateListFromArrayLike.js +46 -0
- data/node_modules/es-abstract/2020/CreateMethodProperty.js +40 -0
- data/node_modules/es-abstract/2020/CreateRegExpStringIterator.js +100 -0
- data/node_modules/es-abstract/2020/DateFromTime.js +54 -0
- data/node_modules/es-abstract/2020/DateString.js +30 -0
- data/node_modules/es-abstract/2020/Day.js +11 -0
- data/node_modules/es-abstract/2020/DayFromYear.js +10 -0
- data/node_modules/es-abstract/2020/DayWithinYear.js +11 -0
- data/node_modules/es-abstract/2020/DaysInYear.js +18 -0
- data/node_modules/es-abstract/2020/DefinePropertyOrThrow.js +50 -0
- data/node_modules/es-abstract/2020/DeletePropertyOrThrow.js +27 -0
- data/node_modules/es-abstract/2020/DetachArrayBuffer.js +43 -0
- data/node_modules/es-abstract/2020/EnumerableOwnPropertyNames.js +43 -0
- data/node_modules/es-abstract/2020/FlattenIntoArray.js +57 -0
- data/node_modules/es-abstract/2020/FromPropertyDescriptor.js +16 -0
- data/node_modules/es-abstract/2020/Get.js +25 -0
- data/node_modules/es-abstract/2020/GetGlobalObject.js +9 -0
- data/node_modules/es-abstract/2020/GetIterator.js +66 -0
- data/node_modules/es-abstract/2020/GetMethod.js +36 -0
- data/node_modules/es-abstract/2020/GetOwnPropertyKeys.js +31 -0
- data/node_modules/es-abstract/2020/GetPrototypeFromConstructor.js +32 -0
- data/node_modules/es-abstract/2020/GetSubstitution.js +124 -0
- data/node_modules/es-abstract/2020/GetV.js +25 -0
- data/node_modules/es-abstract/2020/GetValueFromBuffer.js +110 -0
- data/node_modules/es-abstract/2020/HasOwnProperty.js +22 -0
- data/node_modules/es-abstract/2020/HasProperty.js +20 -0
- data/node_modules/es-abstract/2020/HourFromTime.js +14 -0
- data/node_modules/es-abstract/2020/InLeapYear.js +21 -0
- data/node_modules/es-abstract/2020/InstanceofOperator.js +30 -0
- data/node_modules/es-abstract/2020/Invoke.js +24 -0
- data/node_modules/es-abstract/2020/IsAccessorDescriptor.js +23 -0
- data/node_modules/es-abstract/2020/IsArray.js +4 -0
- data/node_modules/es-abstract/2020/IsBigIntElementType.js +7 -0
- data/node_modules/es-abstract/2020/IsCallable.js +5 -0
- data/node_modules/es-abstract/2020/IsCompatiblePropertyDescriptor.js +9 -0
- data/node_modules/es-abstract/2020/IsConcatSpreadable.js +25 -0
- data/node_modules/es-abstract/2020/IsConstructor.js +40 -0
- data/node_modules/es-abstract/2020/IsDataDescriptor.js +23 -0
- data/node_modules/es-abstract/2020/IsDetachedBuffer.js +27 -0
- data/node_modules/es-abstract/2020/IsExtensible.js +18 -0
- data/node_modules/es-abstract/2020/IsGenericDescriptor.js +23 -0
- data/node_modules/es-abstract/2020/IsInteger.js +9 -0
- data/node_modules/es-abstract/2020/IsNoTearConfiguration.js +16 -0
- data/node_modules/es-abstract/2020/IsNonNegativeInteger.js +9 -0
- data/node_modules/es-abstract/2020/IsPromise.js +24 -0
- data/node_modules/es-abstract/2020/IsPropertyKey.js +7 -0
- data/node_modules/es-abstract/2020/IsRegExp.js +24 -0
- data/node_modules/es-abstract/2020/IsSharedArrayBuffer.js +19 -0
- data/node_modules/es-abstract/2020/IsStringPrefix.js +47 -0
- data/node_modules/es-abstract/2020/IsUnclampedIntegerElementType.js +12 -0
- data/node_modules/es-abstract/2020/IsUnsignedElementType.js +11 -0
- data/node_modules/es-abstract/2020/IsValidIntegerIndex.js +30 -0
- data/node_modules/es-abstract/2020/IsWordChar.js +48 -0
- data/node_modules/es-abstract/2020/IterableToList.js +24 -0
- data/node_modules/es-abstract/2020/IteratorClose.js +51 -0
- data/node_modules/es-abstract/2020/IteratorComplete.js +18 -0
- data/node_modules/es-abstract/2020/IteratorNext.js +18 -0
- data/node_modules/es-abstract/2020/IteratorStep.js +13 -0
- data/node_modules/es-abstract/2020/IteratorValue.js +18 -0
- data/node_modules/es-abstract/2020/LengthOfArrayLike.js +20 -0
- data/node_modules/es-abstract/2020/MakeDate.js +13 -0
- data/node_modules/es-abstract/2020/MakeDay.js +33 -0
- data/node_modules/es-abstract/2020/MakeTime.js +23 -0
- data/node_modules/es-abstract/2020/MinFromTime.js +14 -0
- data/node_modules/es-abstract/2020/MonthFromTime.js +47 -0
- data/node_modules/es-abstract/2020/NewPromiseCapability.js +36 -0
- data/node_modules/es-abstract/2020/NormalCompletion.js +9 -0
- data/node_modules/es-abstract/2020/Number/add.js +44 -0
- data/node_modules/es-abstract/2020/Number/bitwiseAND.js +17 -0
- data/node_modules/es-abstract/2020/Number/bitwiseNOT.js +19 -0
- data/node_modules/es-abstract/2020/Number/bitwiseOR.js +17 -0
- data/node_modules/es-abstract/2020/Number/bitwiseXOR.js +17 -0
- data/node_modules/es-abstract/2020/Number/divide.js +22 -0
- data/node_modules/es-abstract/2020/Number/equal.js +21 -0
- data/node_modules/es-abstract/2020/Number/exponentiate.js +77 -0
- data/node_modules/es-abstract/2020/Number/index.js +43 -0
- data/node_modules/es-abstract/2020/Number/leftShift.js +24 -0
- data/node_modules/es-abstract/2020/Number/lessThan.js +26 -0
- data/node_modules/es-abstract/2020/Number/multiply.js +33 -0
- data/node_modules/es-abstract/2020/Number/remainder.js +32 -0
- data/node_modules/es-abstract/2020/Number/sameValue.js +21 -0
- data/node_modules/es-abstract/2020/Number/sameValueZero.js +24 -0
- data/node_modules/es-abstract/2020/Number/signedRightShift.js +24 -0
- data/node_modules/es-abstract/2020/Number/subtract.js +16 -0
- data/node_modules/es-abstract/2020/Number/toString.js +18 -0
- data/node_modules/es-abstract/2020/Number/unaryMinus.js +21 -0
- data/node_modules/es-abstract/2020/Number/unsignedRightShift.js +24 -0
- data/node_modules/es-abstract/2020/NumberBitwiseOp.js +29 -0
- data/node_modules/es-abstract/2020/NumberToBigInt.js +27 -0
- data/node_modules/es-abstract/2020/NumericToRawBytes.js +80 -0
- data/node_modules/es-abstract/2020/ObjectDefineProperties.js +38 -0
- data/node_modules/es-abstract/2020/OrdinaryCreateFromConstructor.js +20 -0
- data/node_modules/es-abstract/2020/OrdinaryDefineOwnProperty.js +61 -0
- data/node_modules/es-abstract/2020/OrdinaryGetOwnProperty.js +44 -0
- data/node_modules/es-abstract/2020/OrdinaryGetPrototypeOf.js +21 -0
- data/node_modules/es-abstract/2020/OrdinaryHasInstance.js +25 -0
- data/node_modules/es-abstract/2020/OrdinaryHasProperty.js +20 -0
- data/node_modules/es-abstract/2020/OrdinaryObjectCreate.js +56 -0
- data/node_modules/es-abstract/2020/OrdinarySetPrototypeOf.js +53 -0
- data/node_modules/es-abstract/2020/OrdinaryToPrimitive.js +38 -0
- data/node_modules/es-abstract/2020/PromiseResolve.js +17 -0
- data/node_modules/es-abstract/2020/QuoteJSONString.js +54 -0
- data/node_modules/es-abstract/2020/RawBytesToNumeric.js +84 -0
- data/node_modules/es-abstract/2020/RegExpCreate.js +21 -0
- data/node_modules/es-abstract/2020/RegExpExec.js +32 -0
- data/node_modules/es-abstract/2020/RequireObjectCoercible.js +3 -0
- data/node_modules/es-abstract/2020/SameValue.js +13 -0
- data/node_modules/es-abstract/2020/SameValueNonNumeric.js +21 -0
- data/node_modules/es-abstract/2020/SameValueZero.js +9 -0
- data/node_modules/es-abstract/2020/SecFromTime.js +14 -0
- data/node_modules/es-abstract/2020/Set.js +47 -0
- data/node_modules/es-abstract/2020/SetFunctionLength.js +31 -0
- data/node_modules/es-abstract/2020/SetFunctionName.js +44 -0
- data/node_modules/es-abstract/2020/SetIntegrityLevel.js +57 -0
- data/node_modules/es-abstract/2020/SetValueInBuffer.js +109 -0
- data/node_modules/es-abstract/2020/SpeciesConstructor.js +32 -0
- data/node_modules/es-abstract/2020/SplitMatch.js +39 -0
- data/node_modules/es-abstract/2020/StrictEqualityComparison.js +17 -0
- data/node_modules/es-abstract/2020/StringCreate.js +40 -0
- data/node_modules/es-abstract/2020/StringGetOwnProperty.js +48 -0
- data/node_modules/es-abstract/2020/StringPad.js +43 -0
- data/node_modules/es-abstract/2020/StringToBigInt.js +23 -0
- data/node_modules/es-abstract/2020/SymbolDescriptiveString.js +20 -0
- data/node_modules/es-abstract/2020/TestIntegrityLevel.js +42 -0
- data/node_modules/es-abstract/2020/ThrowCompletion.js +9 -0
- data/node_modules/es-abstract/2020/TimeClip.js +21 -0
- data/node_modules/es-abstract/2020/TimeFromYear.js +11 -0
- data/node_modules/es-abstract/2020/TimeString.js +25 -0
- data/node_modules/es-abstract/2020/TimeWithinDay.js +12 -0
- data/node_modules/es-abstract/2020/ToBigInt.js +53 -0
- data/node_modules/es-abstract/2020/ToBigInt64.js +25 -0
- data/node_modules/es-abstract/2020/ToBigUint64.js +22 -0
- data/node_modules/es-abstract/2020/ToBoolean.js +5 -0
- data/node_modules/es-abstract/2020/ToDateString.js +23 -0
- data/node_modules/es-abstract/2020/ToIndex.js +26 -0
- data/node_modules/es-abstract/2020/ToInt16.js +10 -0
- data/node_modules/es-abstract/2020/ToInt32.js +9 -0
- data/node_modules/es-abstract/2020/ToInt8.js +10 -0
- data/node_modules/es-abstract/2020/ToInteger.js +15 -0
- data/node_modules/es-abstract/2020/ToLength.js +12 -0
- data/node_modules/es-abstract/2020/ToNumber.js +51 -0
- data/node_modules/es-abstract/2020/ToNumeric.js +21 -0
- data/node_modules/es-abstract/2020/ToObject.js +14 -0
- data/node_modules/es-abstract/2020/ToPrimitive.js +12 -0
- data/node_modules/es-abstract/2020/ToPropertyDescriptor.js +52 -0
- data/node_modules/es-abstract/2020/ToPropertyKey.js +15 -0
- data/node_modules/es-abstract/2020/ToString.js +15 -0
- data/node_modules/es-abstract/2020/ToUint16.js +19 -0
- data/node_modules/es-abstract/2020/ToUint32.js +9 -0
- data/node_modules/es-abstract/2020/ToUint8.js +20 -0
- data/node_modules/es-abstract/2020/ToUint8Clamp.js +19 -0
- data/node_modules/es-abstract/2020/TrimString.js +29 -0
- data/node_modules/es-abstract/2020/Type.js +15 -0
- data/node_modules/es-abstract/2020/TypedArrayCreate.js +50 -0
- data/node_modules/es-abstract/2020/TypedArraySpeciesCreate.js +39 -0
- data/node_modules/es-abstract/2020/UTF16DecodeString.js +29 -0
- data/node_modules/es-abstract/2020/UTF16DecodeSurrogatePair.js +19 -0
- data/node_modules/es-abstract/2020/UTF16Encoding.js +25 -0
- data/node_modules/es-abstract/2020/UnicodeEscape.js +27 -0
- data/node_modules/es-abstract/2020/ValidateAndApplyPropertyDescriptor.js +170 -0
- data/node_modules/es-abstract/2020/ValidateAtomicAccess.js +36 -0
- data/node_modules/es-abstract/2020/ValidateTypedArray.js +30 -0
- data/node_modules/es-abstract/2020/WeekDay.js +10 -0
- data/node_modules/es-abstract/2020/WordCharacters.js +49 -0
- data/node_modules/es-abstract/2020/YearFromTime.js +16 -0
- data/node_modules/es-abstract/2020/abs.js +11 -0
- data/node_modules/es-abstract/2020/floor.js +16 -0
- data/node_modules/es-abstract/2020/max.js +7 -0
- data/node_modules/es-abstract/2020/min.js +7 -0
- data/node_modules/es-abstract/2020/modulo.js +9 -0
- data/node_modules/es-abstract/2020/msFromTime.js +11 -0
- data/node_modules/es-abstract/2020/thisBigIntValue.js +22 -0
- data/node_modules/es-abstract/2020/thisBooleanValue.js +15 -0
- data/node_modules/es-abstract/2020/thisNumberValue.js +18 -0
- data/node_modules/es-abstract/2020/thisStringValue.js +15 -0
- data/node_modules/es-abstract/2020/thisSymbolValue.js +19 -0
- data/node_modules/es-abstract/2020/thisTimeValue.js +9 -0
- data/node_modules/es-abstract/2021/AbstractEqualityComparison.js +57 -0
- data/node_modules/es-abstract/2021/AbstractRelationalComparison.js +82 -0
- data/node_modules/es-abstract/2021/AddEntriesFromIterable.js +47 -0
- data/node_modules/es-abstract/2021/AddToKeptObjects.js +21 -0
- data/node_modules/es-abstract/2021/AdvanceStringIndex.js +34 -0
- data/node_modules/es-abstract/2021/ApplyStringOrNumericBinaryOperator.js +80 -0
- data/node_modules/es-abstract/2021/ArrayCreate.js +54 -0
- data/node_modules/es-abstract/2021/ArraySetLength.js +85 -0
- data/node_modules/es-abstract/2021/ArraySpeciesCreate.js +49 -0
- data/node_modules/es-abstract/2021/AsyncFromSyncIteratorContinuation.js +45 -0
- data/node_modules/es-abstract/2021/AsyncIteratorClose.js +68 -0
- data/node_modules/es-abstract/2021/BigInt/add.js +18 -0
- data/node_modules/es-abstract/2021/BigInt/bitwiseAND.js +17 -0
- data/node_modules/es-abstract/2021/BigInt/bitwiseNOT.js +17 -0
- data/node_modules/es-abstract/2021/BigInt/bitwiseOR.js +17 -0
- data/node_modules/es-abstract/2021/BigInt/bitwiseXOR.js +17 -0
- data/node_modules/es-abstract/2021/BigInt/divide.js +22 -0
- data/node_modules/es-abstract/2021/BigInt/equal.js +17 -0
- data/node_modules/es-abstract/2021/BigInt/exponentiate.js +31 -0
- data/node_modules/es-abstract/2021/BigInt/index.js +43 -0
- data/node_modules/es-abstract/2021/BigInt/leftShift.js +18 -0
- data/node_modules/es-abstract/2021/BigInt/lessThan.js +18 -0
- data/node_modules/es-abstract/2021/BigInt/multiply.js +18 -0
- data/node_modules/es-abstract/2021/BigInt/remainder.js +30 -0
- data/node_modules/es-abstract/2021/BigInt/sameValue.js +18 -0
- data/node_modules/es-abstract/2021/BigInt/sameValueZero.js +18 -0
- data/node_modules/es-abstract/2021/BigInt/signedRightShift.js +18 -0
- data/node_modules/es-abstract/2021/BigInt/subtract.js +18 -0
- data/node_modules/es-abstract/2021/BigInt/toString.js +18 -0
- data/node_modules/es-abstract/2021/BigInt/unaryMinus.js +24 -0
- data/node_modules/es-abstract/2021/BigInt/unsignedRightShift.js +17 -0
- data/node_modules/es-abstract/2021/BigIntBitwiseOp.js +66 -0
- data/node_modules/es-abstract/2021/BinaryAnd.js +14 -0
- data/node_modules/es-abstract/2021/BinaryOr.js +14 -0
- data/node_modules/es-abstract/2021/BinaryXor.js +14 -0
- data/node_modules/es-abstract/2021/ByteListBitwiseOp.js +44 -0
- data/node_modules/es-abstract/2021/ByteListEqual.js +33 -0
- data/node_modules/es-abstract/2021/Call.js +20 -0
- data/node_modules/es-abstract/2021/CanonicalNumericIndexString.js +22 -0
- data/node_modules/es-abstract/2021/Canonicalize.js +55 -0
- data/node_modules/es-abstract/2021/CharacterRange.js +31 -0
- data/node_modules/es-abstract/2021/ClearKeptObjects.js +12 -0
- data/node_modules/es-abstract/2021/CloneArrayBuffer.js +49 -0
- data/node_modules/es-abstract/2021/CodePointAt.js +58 -0
- data/node_modules/es-abstract/2021/CodePointsToString.js +27 -0
- data/node_modules/es-abstract/2021/CompletePropertyDescriptor.js +39 -0
- data/node_modules/es-abstract/2021/CompletionRecord.js +53 -0
- data/node_modules/es-abstract/2021/CopyDataProperties.js +70 -0
- data/node_modules/es-abstract/2021/CreateAsyncFromSyncIterator.js +121 -0
- data/node_modules/es-abstract/2021/CreateDataProperty.js +27 -0
- data/node_modules/es-abstract/2021/CreateDataPropertyOrThrow.js +25 -0
- data/node_modules/es-abstract/2021/CreateHTML.js +30 -0
- data/node_modules/es-abstract/2021/CreateIterResultObject.js +19 -0
- data/node_modules/es-abstract/2021/CreateListFromArrayLike.js +46 -0
- data/node_modules/es-abstract/2021/CreateMethodProperty.js +40 -0
- data/node_modules/es-abstract/2021/CreateRegExpStringIterator.js +100 -0
- data/node_modules/es-abstract/2021/DateFromTime.js +54 -0
- data/node_modules/es-abstract/2021/DateString.js +30 -0
- data/node_modules/es-abstract/2021/Day.js +11 -0
- data/node_modules/es-abstract/2021/DayFromYear.js +10 -0
- data/node_modules/es-abstract/2021/DayWithinYear.js +11 -0
- data/node_modules/es-abstract/2021/DaysInYear.js +18 -0
- data/node_modules/es-abstract/2021/DefinePropertyOrThrow.js +50 -0
- data/node_modules/es-abstract/2021/DeletePropertyOrThrow.js +27 -0
- data/node_modules/es-abstract/2021/DetachArrayBuffer.js +43 -0
- data/node_modules/es-abstract/2021/EnumerableOwnPropertyNames.js +43 -0
- data/node_modules/es-abstract/2021/FlattenIntoArray.js +57 -0
- data/node_modules/es-abstract/2021/FromPropertyDescriptor.js +16 -0
- data/node_modules/es-abstract/2021/Get.js +25 -0
- data/node_modules/es-abstract/2021/GetGlobalObject.js +9 -0
- data/node_modules/es-abstract/2021/GetIterator.js +66 -0
- data/node_modules/es-abstract/2021/GetMethod.js +36 -0
- data/node_modules/es-abstract/2021/GetOwnPropertyKeys.js +31 -0
- data/node_modules/es-abstract/2021/GetPromiseResolve.js +22 -0
- data/node_modules/es-abstract/2021/GetPrototypeFromConstructor.js +32 -0
- data/node_modules/es-abstract/2021/GetSubstitution.js +124 -0
- data/node_modules/es-abstract/2021/GetV.js +25 -0
- data/node_modules/es-abstract/2021/GetValueFromBuffer.js +110 -0
- data/node_modules/es-abstract/2021/HasOwnProperty.js +22 -0
- data/node_modules/es-abstract/2021/HasProperty.js +20 -0
- data/node_modules/es-abstract/2021/HourFromTime.js +14 -0
- data/node_modules/es-abstract/2021/InLeapYear.js +21 -0
- data/node_modules/es-abstract/2021/InstanceofOperator.js +30 -0
- data/node_modules/es-abstract/2021/Invoke.js +24 -0
- data/node_modules/es-abstract/2021/IsAccessorDescriptor.js +23 -0
- data/node_modules/es-abstract/2021/IsArray.js +4 -0
- data/node_modules/es-abstract/2021/IsBigIntElementType.js +7 -0
- data/node_modules/es-abstract/2021/IsCallable.js +5 -0
- data/node_modules/es-abstract/2021/IsCompatiblePropertyDescriptor.js +9 -0
- data/node_modules/es-abstract/2021/IsConcatSpreadable.js +25 -0
- data/node_modules/es-abstract/2021/IsConstructor.js +40 -0
- data/node_modules/es-abstract/2021/IsDataDescriptor.js +23 -0
- data/node_modules/es-abstract/2021/IsDetachedBuffer.js +27 -0
- data/node_modules/es-abstract/2021/IsExtensible.js +18 -0
- data/node_modules/es-abstract/2021/IsGenericDescriptor.js +23 -0
- data/node_modules/es-abstract/2021/IsIntegralNumber.js +9 -0
- data/node_modules/es-abstract/2021/IsNoTearConfiguration.js +16 -0
- data/node_modules/es-abstract/2021/IsPromise.js +24 -0
- data/node_modules/es-abstract/2021/IsPropertyKey.js +7 -0
- data/node_modules/es-abstract/2021/IsRegExp.js +24 -0
- data/node_modules/es-abstract/2021/IsSharedArrayBuffer.js +19 -0
- data/node_modules/es-abstract/2021/IsStringPrefix.js +47 -0
- data/node_modules/es-abstract/2021/IsUnclampedIntegerElementType.js +12 -0
- data/node_modules/es-abstract/2021/IsUnsignedElementType.js +11 -0
- data/node_modules/es-abstract/2021/IsValidIntegerIndex.js +33 -0
- data/node_modules/es-abstract/2021/IsWordChar.js +48 -0
- data/node_modules/es-abstract/2021/IterableToList.js +29 -0
- data/node_modules/es-abstract/2021/IteratorClose.js +51 -0
- data/node_modules/es-abstract/2021/IteratorComplete.js +18 -0
- data/node_modules/es-abstract/2021/IteratorNext.js +18 -0
- data/node_modules/es-abstract/2021/IteratorStep.js +13 -0
- data/node_modules/es-abstract/2021/IteratorValue.js +18 -0
- data/node_modules/es-abstract/2021/LengthOfArrayLike.js +20 -0
- data/node_modules/es-abstract/2021/MakeDate.js +13 -0
- data/node_modules/es-abstract/2021/MakeDay.js +36 -0
- data/node_modules/es-abstract/2021/MakeTime.js +23 -0
- data/node_modules/es-abstract/2021/MinFromTime.js +14 -0
- data/node_modules/es-abstract/2021/MonthFromTime.js +47 -0
- data/node_modules/es-abstract/2021/NewPromiseCapability.js +36 -0
- data/node_modules/es-abstract/2021/NormalCompletion.js +9 -0
- data/node_modules/es-abstract/2021/Number/add.js +36 -0
- data/node_modules/es-abstract/2021/Number/bitwiseAND.js +17 -0
- data/node_modules/es-abstract/2021/Number/bitwiseNOT.js +19 -0
- data/node_modules/es-abstract/2021/Number/bitwiseOR.js +17 -0
- data/node_modules/es-abstract/2021/Number/bitwiseXOR.js +17 -0
- data/node_modules/es-abstract/2021/Number/divide.js +22 -0
- data/node_modules/es-abstract/2021/Number/equal.js +21 -0
- data/node_modules/es-abstract/2021/Number/exponentiate.js +77 -0
- data/node_modules/es-abstract/2021/Number/index.js +43 -0
- data/node_modules/es-abstract/2021/Number/leftShift.js +25 -0
- data/node_modules/es-abstract/2021/Number/lessThan.js +26 -0
- data/node_modules/es-abstract/2021/Number/multiply.js +33 -0
- data/node_modules/es-abstract/2021/Number/remainder.js +32 -0
- data/node_modules/es-abstract/2021/Number/sameValue.js +21 -0
- data/node_modules/es-abstract/2021/Number/sameValueZero.js +24 -0
- data/node_modules/es-abstract/2021/Number/signedRightShift.js +25 -0
- data/node_modules/es-abstract/2021/Number/subtract.js +19 -0
- data/node_modules/es-abstract/2021/Number/toString.js +18 -0
- data/node_modules/es-abstract/2021/Number/unaryMinus.js +21 -0
- data/node_modules/es-abstract/2021/Number/unsignedRightShift.js +25 -0
- data/node_modules/es-abstract/2021/NumberBitwiseOp.js +29 -0
- data/node_modules/es-abstract/2021/NumberToBigInt.js +26 -0
- data/node_modules/es-abstract/2021/NumericToRawBytes.js +80 -0
- data/node_modules/es-abstract/2021/ObjectDefineProperties.js +38 -0
- data/node_modules/es-abstract/2021/OrdinaryCreateFromConstructor.js +20 -0
- data/node_modules/es-abstract/2021/OrdinaryDefineOwnProperty.js +61 -0
- data/node_modules/es-abstract/2021/OrdinaryGetOwnProperty.js +44 -0
- data/node_modules/es-abstract/2021/OrdinaryGetPrototypeOf.js +21 -0
- data/node_modules/es-abstract/2021/OrdinaryHasInstance.js +25 -0
- data/node_modules/es-abstract/2021/OrdinaryHasProperty.js +20 -0
- data/node_modules/es-abstract/2021/OrdinaryObjectCreate.js +56 -0
- data/node_modules/es-abstract/2021/OrdinarySetPrototypeOf.js +53 -0
- data/node_modules/es-abstract/2021/OrdinaryToPrimitive.js +38 -0
- data/node_modules/es-abstract/2021/PromiseResolve.js +17 -0
- data/node_modules/es-abstract/2021/QuoteJSONString.js +54 -0
- data/node_modules/es-abstract/2021/RawBytesToNumeric.js +84 -0
- data/node_modules/es-abstract/2021/RegExpCreate.js +21 -0
- data/node_modules/es-abstract/2021/RegExpExec.js +32 -0
- data/node_modules/es-abstract/2021/RequireObjectCoercible.js +3 -0
- data/node_modules/es-abstract/2021/SameValue.js +13 -0
- data/node_modules/es-abstract/2021/SameValueNonNumeric.js +21 -0
- data/node_modules/es-abstract/2021/SameValueZero.js +9 -0
- data/node_modules/es-abstract/2021/SecFromTime.js +14 -0
- data/node_modules/es-abstract/2021/Set.js +47 -0
- data/node_modules/es-abstract/2021/SetFunctionLength.js +32 -0
- data/node_modules/es-abstract/2021/SetFunctionName.js +44 -0
- data/node_modules/es-abstract/2021/SetIntegrityLevel.js +57 -0
- data/node_modules/es-abstract/2021/SetTypedArrayFromArrayLike.js +127 -0
- data/node_modules/es-abstract/2021/SetTypedArrayFromTypedArray.js +167 -0
- data/node_modules/es-abstract/2021/SetValueInBuffer.js +105 -0
- data/node_modules/es-abstract/2021/SpeciesConstructor.js +32 -0
- data/node_modules/es-abstract/2021/SplitMatch.js +39 -0
- data/node_modules/es-abstract/2021/StrictEqualityComparison.js +17 -0
- data/node_modules/es-abstract/2021/StringCreate.js +40 -0
- data/node_modules/es-abstract/2021/StringGetOwnProperty.js +48 -0
- data/node_modules/es-abstract/2021/StringIndexOf.js +40 -0
- data/node_modules/es-abstract/2021/StringPad.js +43 -0
- data/node_modules/es-abstract/2021/StringToBigInt.js +23 -0
- data/node_modules/es-abstract/2021/StringToCodePoints.js +29 -0
- data/node_modules/es-abstract/2021/SymbolDescriptiveString.js +20 -0
- data/node_modules/es-abstract/2021/TestIntegrityLevel.js +42 -0
- data/node_modules/es-abstract/2021/ThrowCompletion.js +9 -0
- data/node_modules/es-abstract/2021/TimeClip.js +21 -0
- data/node_modules/es-abstract/2021/TimeFromYear.js +11 -0
- data/node_modules/es-abstract/2021/TimeString.js +25 -0
- data/node_modules/es-abstract/2021/TimeWithinDay.js +12 -0
- data/node_modules/es-abstract/2021/ToBigInt.js +53 -0
- data/node_modules/es-abstract/2021/ToBigInt64.js +25 -0
- data/node_modules/es-abstract/2021/ToBigUint64.js +22 -0
- data/node_modules/es-abstract/2021/ToBoolean.js +5 -0
- data/node_modules/es-abstract/2021/ToDateString.js +23 -0
- data/node_modules/es-abstract/2021/ToIndex.js +26 -0
- data/node_modules/es-abstract/2021/ToInt16.js +10 -0
- data/node_modules/es-abstract/2021/ToInt32.js +9 -0
- data/node_modules/es-abstract/2021/ToInt8.js +10 -0
- data/node_modules/es-abstract/2021/ToIntegerOrInfinity.js +20 -0
- data/node_modules/es-abstract/2021/ToLength.js +12 -0
- data/node_modules/es-abstract/2021/ToNumber.js +51 -0
- data/node_modules/es-abstract/2021/ToNumeric.js +21 -0
- data/node_modules/es-abstract/2021/ToObject.js +14 -0
- data/node_modules/es-abstract/2021/ToPrimitive.js +12 -0
- data/node_modules/es-abstract/2021/ToPropertyDescriptor.js +52 -0
- data/node_modules/es-abstract/2021/ToPropertyKey.js +15 -0
- data/node_modules/es-abstract/2021/ToString.js +15 -0
- data/node_modules/es-abstract/2021/ToUint16.js +19 -0
- data/node_modules/es-abstract/2021/ToUint32.js +9 -0
- data/node_modules/es-abstract/2021/ToUint8.js +20 -0
- data/node_modules/es-abstract/2021/ToUint8Clamp.js +19 -0
- data/node_modules/es-abstract/2021/TrimString.js +29 -0
- data/node_modules/es-abstract/2021/Type.js +15 -0
- data/node_modules/es-abstract/2021/TypedArrayCreate.js +50 -0
- data/node_modules/es-abstract/2021/TypedArraySpeciesCreate.js +39 -0
- data/node_modules/es-abstract/2021/UTF16EncodeCodePoint.js +25 -0
- data/node_modules/es-abstract/2021/UTF16SurrogatePairToCodePoint.js +19 -0
- data/node_modules/es-abstract/2021/UnicodeEscape.js +27 -0
- data/node_modules/es-abstract/2021/ValidateAndApplyPropertyDescriptor.js +170 -0
- data/node_modules/es-abstract/2021/ValidateAtomicAccess.js +59 -0
- data/node_modules/es-abstract/2021/ValidateIntegerTypedArray.js +53 -0
- data/node_modules/es-abstract/2021/ValidateTypedArray.js +30 -0
- data/node_modules/es-abstract/2021/WeakRefDeref.js +24 -0
- data/node_modules/es-abstract/2021/WeekDay.js +10 -0
- data/node_modules/es-abstract/2021/WordCharacters.js +49 -0
- data/node_modules/es-abstract/2021/YearFromTime.js +16 -0
- data/node_modules/es-abstract/2021/abs.js +11 -0
- data/node_modules/es-abstract/2021/clamp.js +18 -0
- data/node_modules/es-abstract/2021/floor.js +16 -0
- data/node_modules/es-abstract/2021/max.js +7 -0
- data/node_modules/es-abstract/2021/min.js +7 -0
- data/node_modules/es-abstract/2021/modulo.js +9 -0
- data/node_modules/es-abstract/2021/msFromTime.js +11 -0
- data/node_modules/es-abstract/2021/substring.js +21 -0
- data/node_modules/es-abstract/2021/thisBigIntValue.js +22 -0
- data/node_modules/es-abstract/2021/thisBooleanValue.js +15 -0
- data/node_modules/es-abstract/2021/thisNumberValue.js +18 -0
- data/node_modules/es-abstract/2021/thisStringValue.js +15 -0
- data/node_modules/es-abstract/2021/thisSymbolValue.js +19 -0
- data/node_modules/es-abstract/2021/thisTimeValue.js +9 -0
- data/node_modules/es-abstract/2022/AddEntriesFromIterable.js +47 -0
- data/node_modules/es-abstract/2022/AddToKeptObjects.js +21 -0
- data/node_modules/es-abstract/2022/AdvanceStringIndex.js +34 -0
- data/node_modules/es-abstract/2022/ApplyStringOrNumericBinaryOperator.js +80 -0
- data/node_modules/es-abstract/2022/ArrayCreate.js +54 -0
- data/node_modules/es-abstract/2022/ArraySetLength.js +85 -0
- data/node_modules/es-abstract/2022/ArraySpeciesCreate.js +49 -0
- data/node_modules/es-abstract/2022/AsyncFromSyncIteratorContinuation.js +45 -0
- data/node_modules/es-abstract/2022/AsyncIteratorClose.js +68 -0
- data/node_modules/es-abstract/2022/BigInt/add.js +18 -0
- data/node_modules/es-abstract/2022/BigInt/bitwiseAND.js +17 -0
- data/node_modules/es-abstract/2022/BigInt/bitwiseNOT.js +17 -0
- data/node_modules/es-abstract/2022/BigInt/bitwiseOR.js +17 -0
- data/node_modules/es-abstract/2022/BigInt/bitwiseXOR.js +17 -0
- data/node_modules/es-abstract/2022/BigInt/divide.js +22 -0
- data/node_modules/es-abstract/2022/BigInt/equal.js +17 -0
- data/node_modules/es-abstract/2022/BigInt/exponentiate.js +31 -0
- data/node_modules/es-abstract/2022/BigInt/index.js +43 -0
- data/node_modules/es-abstract/2022/BigInt/leftShift.js +18 -0
- data/node_modules/es-abstract/2022/BigInt/lessThan.js +18 -0
- data/node_modules/es-abstract/2022/BigInt/multiply.js +18 -0
- data/node_modules/es-abstract/2022/BigInt/remainder.js +30 -0
- data/node_modules/es-abstract/2022/BigInt/sameValue.js +18 -0
- data/node_modules/es-abstract/2022/BigInt/sameValueZero.js +18 -0
- data/node_modules/es-abstract/2022/BigInt/signedRightShift.js +18 -0
- data/node_modules/es-abstract/2022/BigInt/subtract.js +18 -0
- data/node_modules/es-abstract/2022/BigInt/toString.js +18 -0
- data/node_modules/es-abstract/2022/BigInt/unaryMinus.js +24 -0
- data/node_modules/es-abstract/2022/BigInt/unsignedRightShift.js +17 -0
- data/node_modules/es-abstract/2022/BigIntBitwiseOp.js +66 -0
- data/node_modules/es-abstract/2022/BinaryAnd.js +14 -0
- data/node_modules/es-abstract/2022/BinaryOr.js +14 -0
- data/node_modules/es-abstract/2022/BinaryXor.js +14 -0
- data/node_modules/es-abstract/2022/ByteListBitwiseOp.js +44 -0
- data/node_modules/es-abstract/2022/ByteListEqual.js +33 -0
- data/node_modules/es-abstract/2022/Call.js +20 -0
- data/node_modules/es-abstract/2022/CanonicalNumericIndexString.js +22 -0
- data/node_modules/es-abstract/2022/Canonicalize.js +55 -0
- data/node_modules/es-abstract/2022/CharacterRange.js +31 -0
- data/node_modules/es-abstract/2022/ClearKeptObjects.js +12 -0
- data/node_modules/es-abstract/2022/CloneArrayBuffer.js +49 -0
- data/node_modules/es-abstract/2022/CodePointAt.js +58 -0
- data/node_modules/es-abstract/2022/CodePointsToString.js +27 -0
- data/node_modules/es-abstract/2022/CompletePropertyDescriptor.js +39 -0
- data/node_modules/es-abstract/2022/CompletionRecord.js +53 -0
- data/node_modules/es-abstract/2022/CopyDataProperties.js +70 -0
- data/node_modules/es-abstract/2022/CreateAsyncFromSyncIterator.js +121 -0
- data/node_modules/es-abstract/2022/CreateDataProperty.js +27 -0
- data/node_modules/es-abstract/2022/CreateDataPropertyOrThrow.js +25 -0
- data/node_modules/es-abstract/2022/CreateHTML.js +30 -0
- data/node_modules/es-abstract/2022/CreateIterResultObject.js +19 -0
- data/node_modules/es-abstract/2022/CreateListFromArrayLike.js +46 -0
- data/node_modules/es-abstract/2022/CreateMethodProperty.js +40 -0
- data/node_modules/es-abstract/2022/CreateNonEnumerableDataPropertyOrThrow.js +29 -0
- data/node_modules/es-abstract/2022/CreateRegExpStringIterator.js +100 -0
- data/node_modules/es-abstract/2022/DateFromTime.js +54 -0
- data/node_modules/es-abstract/2022/DateString.js +30 -0
- data/node_modules/es-abstract/2022/Day.js +11 -0
- data/node_modules/es-abstract/2022/DayFromYear.js +10 -0
- data/node_modules/es-abstract/2022/DayWithinYear.js +11 -0
- data/node_modules/es-abstract/2022/DaysInYear.js +18 -0
- data/node_modules/es-abstract/2022/DefinePropertyOrThrow.js +50 -0
- data/node_modules/es-abstract/2022/DeletePropertyOrThrow.js +27 -0
- data/node_modules/es-abstract/2022/DetachArrayBuffer.js +43 -0
- data/node_modules/es-abstract/2022/EnumerableOwnPropertyNames.js +43 -0
- data/node_modules/es-abstract/2022/FlattenIntoArray.js +57 -0
- data/node_modules/es-abstract/2022/FromPropertyDescriptor.js +16 -0
- data/node_modules/es-abstract/2022/Get.js +25 -0
- data/node_modules/es-abstract/2022/GetGlobalObject.js +9 -0
- data/node_modules/es-abstract/2022/GetIterator.js +66 -0
- data/node_modules/es-abstract/2022/GetMatchIndexPair.js +26 -0
- data/node_modules/es-abstract/2022/GetMatchString.js +27 -0
- data/node_modules/es-abstract/2022/GetMethod.js +36 -0
- data/node_modules/es-abstract/2022/GetOwnPropertyKeys.js +31 -0
- data/node_modules/es-abstract/2022/GetPromiseResolve.js +22 -0
- data/node_modules/es-abstract/2022/GetPrototypeFromConstructor.js +32 -0
- data/node_modules/es-abstract/2022/GetStringIndex.js +31 -0
- data/node_modules/es-abstract/2022/GetSubstitution.js +124 -0
- data/node_modules/es-abstract/2022/GetV.js +25 -0
- data/node_modules/es-abstract/2022/GetValueFromBuffer.js +110 -0
- data/node_modules/es-abstract/2022/HasOwnProperty.js +22 -0
- data/node_modules/es-abstract/2022/HasProperty.js +20 -0
- data/node_modules/es-abstract/2022/HourFromTime.js +14 -0
- data/node_modules/es-abstract/2022/InLeapYear.js +21 -0
- data/node_modules/es-abstract/2022/InstallErrorCause.js +23 -0
- data/node_modules/es-abstract/2022/InstanceofOperator.js +30 -0
- data/node_modules/es-abstract/2022/Invoke.js +24 -0
- data/node_modules/es-abstract/2022/IsAccessorDescriptor.js +23 -0
- data/node_modules/es-abstract/2022/IsArray.js +4 -0
- data/node_modules/es-abstract/2022/IsBigIntElementType.js +7 -0
- data/node_modules/es-abstract/2022/IsCallable.js +5 -0
- data/node_modules/es-abstract/2022/IsCompatiblePropertyDescriptor.js +9 -0
- data/node_modules/es-abstract/2022/IsConcatSpreadable.js +25 -0
- data/node_modules/es-abstract/2022/IsConstructor.js +40 -0
- data/node_modules/es-abstract/2022/IsDataDescriptor.js +23 -0
- data/node_modules/es-abstract/2022/IsDetachedBuffer.js +27 -0
- data/node_modules/es-abstract/2022/IsExtensible.js +18 -0
- data/node_modules/es-abstract/2022/IsGenericDescriptor.js +23 -0
- data/node_modules/es-abstract/2022/IsIntegralNumber.js +9 -0
- data/node_modules/es-abstract/2022/IsLessThan.js +90 -0
- data/node_modules/es-abstract/2022/IsLooselyEqual.js +58 -0
- data/node_modules/es-abstract/2022/IsNoTearConfiguration.js +16 -0
- data/node_modules/es-abstract/2022/IsPromise.js +24 -0
- data/node_modules/es-abstract/2022/IsPropertyKey.js +7 -0
- data/node_modules/es-abstract/2022/IsRegExp.js +24 -0
- data/node_modules/es-abstract/2022/IsSharedArrayBuffer.js +19 -0
- data/node_modules/es-abstract/2022/IsStrictlyEqual.js +20 -0
- data/node_modules/es-abstract/2022/IsStringPrefix.js +22 -0
- data/node_modules/es-abstract/2022/IsStringWellFormedUnicode.js +26 -0
- data/node_modules/es-abstract/2022/IsUnclampedIntegerElementType.js +12 -0
- data/node_modules/es-abstract/2022/IsUnsignedElementType.js +11 -0
- data/node_modules/es-abstract/2022/IsValidIntegerIndex.js +33 -0
- data/node_modules/es-abstract/2022/IsWordChar.js +48 -0
- data/node_modules/es-abstract/2022/IterableToList.js +29 -0
- data/node_modules/es-abstract/2022/IteratorClose.js +51 -0
- data/node_modules/es-abstract/2022/IteratorComplete.js +18 -0
- data/node_modules/es-abstract/2022/IteratorNext.js +18 -0
- data/node_modules/es-abstract/2022/IteratorStep.js +13 -0
- data/node_modules/es-abstract/2022/IteratorValue.js +18 -0
- data/node_modules/es-abstract/2022/LengthOfArrayLike.js +20 -0
- data/node_modules/es-abstract/2022/MakeDate.js +13 -0
- data/node_modules/es-abstract/2022/MakeDay.js +36 -0
- data/node_modules/es-abstract/2022/MakeMatchIndicesIndexPairArray.js +69 -0
- data/node_modules/es-abstract/2022/MakeTime.js +23 -0
- data/node_modules/es-abstract/2022/MinFromTime.js +14 -0
- data/node_modules/es-abstract/2022/MonthFromTime.js +47 -0
- data/node_modules/es-abstract/2022/NewPromiseCapability.js +36 -0
- data/node_modules/es-abstract/2022/NormalCompletion.js +9 -0
- data/node_modules/es-abstract/2022/Number/add.js +36 -0
- data/node_modules/es-abstract/2022/Number/bitwiseAND.js +17 -0
- data/node_modules/es-abstract/2022/Number/bitwiseNOT.js +19 -0
- data/node_modules/es-abstract/2022/Number/bitwiseOR.js +17 -0
- data/node_modules/es-abstract/2022/Number/bitwiseXOR.js +17 -0
- data/node_modules/es-abstract/2022/Number/divide.js +22 -0
- data/node_modules/es-abstract/2022/Number/equal.js +21 -0
- data/node_modules/es-abstract/2022/Number/exponentiate.js +77 -0
- data/node_modules/es-abstract/2022/Number/index.js +43 -0
- data/node_modules/es-abstract/2022/Number/leftShift.js +25 -0
- data/node_modules/es-abstract/2022/Number/lessThan.js +26 -0
- data/node_modules/es-abstract/2022/Number/multiply.js +33 -0
- data/node_modules/es-abstract/2022/Number/remainder.js +32 -0
- data/node_modules/es-abstract/2022/Number/sameValue.js +21 -0
- data/node_modules/es-abstract/2022/Number/sameValueZero.js +24 -0
- data/node_modules/es-abstract/2022/Number/signedRightShift.js +25 -0
- data/node_modules/es-abstract/2022/Number/subtract.js +19 -0
- data/node_modules/es-abstract/2022/Number/toString.js +18 -0
- data/node_modules/es-abstract/2022/Number/unaryMinus.js +21 -0
- data/node_modules/es-abstract/2022/Number/unsignedRightShift.js +25 -0
- data/node_modules/es-abstract/2022/NumberBitwiseOp.js +29 -0
- data/node_modules/es-abstract/2022/NumberToBigInt.js +26 -0
- data/node_modules/es-abstract/2022/NumericToRawBytes.js +80 -0
- data/node_modules/es-abstract/2022/ObjectDefineProperties.js +38 -0
- data/node_modules/es-abstract/2022/OrdinaryCreateFromConstructor.js +20 -0
- data/node_modules/es-abstract/2022/OrdinaryDefineOwnProperty.js +61 -0
- data/node_modules/es-abstract/2022/OrdinaryGetOwnProperty.js +44 -0
- data/node_modules/es-abstract/2022/OrdinaryGetPrototypeOf.js +21 -0
- data/node_modules/es-abstract/2022/OrdinaryHasInstance.js +25 -0
- data/node_modules/es-abstract/2022/OrdinaryHasProperty.js +20 -0
- data/node_modules/es-abstract/2022/OrdinaryObjectCreate.js +56 -0
- data/node_modules/es-abstract/2022/OrdinarySetPrototypeOf.js +53 -0
- data/node_modules/es-abstract/2022/OrdinaryToPrimitive.js +38 -0
- data/node_modules/es-abstract/2022/PromiseResolve.js +17 -0
- data/node_modules/es-abstract/2022/QuoteJSONString.js +54 -0
- data/node_modules/es-abstract/2022/RawBytesToNumeric.js +84 -0
- data/node_modules/es-abstract/2022/RegExpCreate.js +21 -0
- data/node_modules/es-abstract/2022/RegExpExec.js +32 -0
- data/node_modules/es-abstract/2022/RegExpHasFlag.js +38 -0
- data/node_modules/es-abstract/2022/RequireObjectCoercible.js +3 -0
- data/node_modules/es-abstract/2022/SameValue.js +13 -0
- data/node_modules/es-abstract/2022/SameValueNonNumeric.js +21 -0
- data/node_modules/es-abstract/2022/SameValueZero.js +9 -0
- data/node_modules/es-abstract/2022/SecFromTime.js +14 -0
- data/node_modules/es-abstract/2022/Set.js +47 -0
- data/node_modules/es-abstract/2022/SetFunctionLength.js +32 -0
- data/node_modules/es-abstract/2022/SetFunctionName.js +44 -0
- data/node_modules/es-abstract/2022/SetIntegrityLevel.js +57 -0
- data/node_modules/es-abstract/2022/SetTypedArrayFromArrayLike.js +97 -0
- data/node_modules/es-abstract/2022/SetTypedArrayFromTypedArray.js +135 -0
- data/node_modules/es-abstract/2022/SetValueInBuffer.js +105 -0
- data/node_modules/es-abstract/2022/SortIndexedProperties.js +64 -0
- data/node_modules/es-abstract/2022/SpeciesConstructor.js +32 -0
- data/node_modules/es-abstract/2022/StringCreate.js +40 -0
- data/node_modules/es-abstract/2022/StringGetOwnProperty.js +48 -0
- data/node_modules/es-abstract/2022/StringIndexOf.js +40 -0
- data/node_modules/es-abstract/2022/StringPad.js +43 -0
- data/node_modules/es-abstract/2022/StringToBigInt.js +23 -0
- data/node_modules/es-abstract/2022/StringToCodePoints.js +29 -0
- data/node_modules/es-abstract/2022/StringToNumber.js +45 -0
- data/node_modules/es-abstract/2022/SymbolDescriptiveString.js +20 -0
- data/node_modules/es-abstract/2022/TestIntegrityLevel.js +42 -0
- data/node_modules/es-abstract/2022/ThrowCompletion.js +9 -0
- data/node_modules/es-abstract/2022/TimeClip.js +21 -0
- data/node_modules/es-abstract/2022/TimeFromYear.js +11 -0
- data/node_modules/es-abstract/2022/TimeString.js +25 -0
- data/node_modules/es-abstract/2022/TimeWithinDay.js +12 -0
- data/node_modules/es-abstract/2022/ToBigInt.js +53 -0
- data/node_modules/es-abstract/2022/ToBigInt64.js +25 -0
- data/node_modules/es-abstract/2022/ToBigUint64.js +22 -0
- data/node_modules/es-abstract/2022/ToBoolean.js +5 -0
- data/node_modules/es-abstract/2022/ToDateString.js +23 -0
- data/node_modules/es-abstract/2022/ToIndex.js +26 -0
- data/node_modules/es-abstract/2022/ToInt16.js +10 -0
- data/node_modules/es-abstract/2022/ToInt32.js +9 -0
- data/node_modules/es-abstract/2022/ToInt8.js +10 -0
- data/node_modules/es-abstract/2022/ToIntegerOrInfinity.js +20 -0
- data/node_modules/es-abstract/2022/ToLength.js +12 -0
- data/node_modules/es-abstract/2022/ToNumber.js +26 -0
- data/node_modules/es-abstract/2022/ToNumeric.js +21 -0
- data/node_modules/es-abstract/2022/ToObject.js +14 -0
- data/node_modules/es-abstract/2022/ToPrimitive.js +12 -0
- data/node_modules/es-abstract/2022/ToPropertyDescriptor.js +52 -0
- data/node_modules/es-abstract/2022/ToPropertyKey.js +15 -0
- data/node_modules/es-abstract/2022/ToString.js +15 -0
- data/node_modules/es-abstract/2022/ToUint16.js +19 -0
- data/node_modules/es-abstract/2022/ToUint32.js +9 -0
- data/node_modules/es-abstract/2022/ToUint8.js +20 -0
- data/node_modules/es-abstract/2022/ToUint8Clamp.js +19 -0
- data/node_modules/es-abstract/2022/ToZeroPaddedDecimalString.js +20 -0
- data/node_modules/es-abstract/2022/TrimString.js +29 -0
- data/node_modules/es-abstract/2022/Type.js +15 -0
- data/node_modules/es-abstract/2022/TypedArrayCreate.js +50 -0
- data/node_modules/es-abstract/2022/TypedArrayElementSize.js +40 -0
- data/node_modules/es-abstract/2022/TypedArrayElementType.js +38 -0
- data/node_modules/es-abstract/2022/TypedArraySpeciesCreate.js +39 -0
- data/node_modules/es-abstract/2022/UTF16EncodeCodePoint.js +25 -0
- data/node_modules/es-abstract/2022/UTF16SurrogatePairToCodePoint.js +19 -0
- data/node_modules/es-abstract/2022/UnicodeEscape.js +27 -0
- data/node_modules/es-abstract/2022/ValidateAndApplyPropertyDescriptor.js +177 -0
- data/node_modules/es-abstract/2022/ValidateAtomicAccess.js +42 -0
- data/node_modules/es-abstract/2022/ValidateIntegerTypedArray.js +39 -0
- data/node_modules/es-abstract/2022/ValidateTypedArray.js +30 -0
- data/node_modules/es-abstract/2022/WeakRefDeref.js +24 -0
- data/node_modules/es-abstract/2022/WeekDay.js +10 -0
- data/node_modules/es-abstract/2022/WordCharacters.js +49 -0
- data/node_modules/es-abstract/2022/YearFromTime.js +16 -0
- data/node_modules/es-abstract/2022/abs.js +11 -0
- data/node_modules/es-abstract/2022/clamp.js +18 -0
- data/node_modules/es-abstract/2022/floor.js +16 -0
- data/node_modules/es-abstract/2022/max.js +7 -0
- data/node_modules/es-abstract/2022/min.js +7 -0
- data/node_modules/es-abstract/2022/modulo.js +9 -0
- data/node_modules/es-abstract/2022/msFromTime.js +11 -0
- data/node_modules/es-abstract/2022/substring.js +21 -0
- data/node_modules/es-abstract/2022/thisBigIntValue.js +22 -0
- data/node_modules/es-abstract/2022/thisBooleanValue.js +15 -0
- data/node_modules/es-abstract/2022/thisNumberValue.js +18 -0
- data/node_modules/es-abstract/2022/thisStringValue.js +15 -0
- data/node_modules/es-abstract/2022/thisSymbolValue.js +19 -0
- data/node_modules/es-abstract/2022/thisTimeValue.js +9 -0
- data/node_modules/es-abstract/2023/AddEntriesFromIterable.js +47 -0
- data/node_modules/es-abstract/2023/AddToKeptObjects.js +21 -0
- data/node_modules/es-abstract/2023/AdvanceStringIndex.js +34 -0
- data/node_modules/es-abstract/2023/ApplyStringOrNumericBinaryOperator.js +80 -0
- data/node_modules/es-abstract/2023/ArrayCreate.js +54 -0
- data/node_modules/es-abstract/2023/ArraySetLength.js +85 -0
- data/node_modules/es-abstract/2023/ArraySpeciesCreate.js +49 -0
- data/node_modules/es-abstract/2023/AsyncFromSyncIteratorContinuation.js +45 -0
- data/node_modules/es-abstract/2023/AsyncIteratorClose.js +68 -0
- data/node_modules/es-abstract/2023/BigInt/add.js +18 -0
- data/node_modules/es-abstract/2023/BigInt/bitwiseAND.js +17 -0
- data/node_modules/es-abstract/2023/BigInt/bitwiseNOT.js +17 -0
- data/node_modules/es-abstract/2023/BigInt/bitwiseOR.js +17 -0
- data/node_modules/es-abstract/2023/BigInt/bitwiseXOR.js +17 -0
- data/node_modules/es-abstract/2023/BigInt/divide.js +22 -0
- data/node_modules/es-abstract/2023/BigInt/equal.js +17 -0
- data/node_modules/es-abstract/2023/BigInt/exponentiate.js +31 -0
- data/node_modules/es-abstract/2023/BigInt/index.js +39 -0
- data/node_modules/es-abstract/2023/BigInt/leftShift.js +18 -0
- data/node_modules/es-abstract/2023/BigInt/lessThan.js +18 -0
- data/node_modules/es-abstract/2023/BigInt/multiply.js +18 -0
- data/node_modules/es-abstract/2023/BigInt/remainder.js +30 -0
- data/node_modules/es-abstract/2023/BigInt/signedRightShift.js +18 -0
- data/node_modules/es-abstract/2023/BigInt/subtract.js +18 -0
- data/node_modules/es-abstract/2023/BigInt/toString.js +32 -0
- data/node_modules/es-abstract/2023/BigInt/unaryMinus.js +24 -0
- data/node_modules/es-abstract/2023/BigInt/unsignedRightShift.js +17 -0
- data/node_modules/es-abstract/2023/BigIntBitwiseOp.js +66 -0
- data/node_modules/es-abstract/2023/BinaryAnd.js +14 -0
- data/node_modules/es-abstract/2023/BinaryOr.js +14 -0
- data/node_modules/es-abstract/2023/BinaryXor.js +14 -0
- data/node_modules/es-abstract/2023/ByteListBitwiseOp.js +44 -0
- data/node_modules/es-abstract/2023/ByteListEqual.js +33 -0
- data/node_modules/es-abstract/2023/Call.js +20 -0
- data/node_modules/es-abstract/2023/CanBeHeldWeakly.js +16 -0
- data/node_modules/es-abstract/2023/CanonicalNumericIndexString.js +22 -0
- data/node_modules/es-abstract/2023/Canonicalize.js +53 -0
- data/node_modules/es-abstract/2023/CharacterRange.js +31 -0
- data/node_modules/es-abstract/2023/ClearKeptObjects.js +12 -0
- data/node_modules/es-abstract/2023/CloneArrayBuffer.js +49 -0
- data/node_modules/es-abstract/2023/CodePointAt.js +58 -0
- data/node_modules/es-abstract/2023/CodePointsToString.js +27 -0
- data/node_modules/es-abstract/2023/CompareArrayElements.js +52 -0
- data/node_modules/es-abstract/2023/CompareTypedArrayElements.js +65 -0
- data/node_modules/es-abstract/2023/CompletePropertyDescriptor.js +39 -0
- data/node_modules/es-abstract/2023/CompletionRecord.js +53 -0
- data/node_modules/es-abstract/2023/CopyDataProperties.js +70 -0
- data/node_modules/es-abstract/2023/CreateAsyncFromSyncIterator.js +121 -0
- data/node_modules/es-abstract/2023/CreateDataProperty.js +27 -0
- data/node_modules/es-abstract/2023/CreateDataPropertyOrThrow.js +24 -0
- data/node_modules/es-abstract/2023/CreateHTML.js +30 -0
- data/node_modules/es-abstract/2023/CreateIterResultObject.js +19 -0
- data/node_modules/es-abstract/2023/CreateListFromArrayLike.js +46 -0
- data/node_modules/es-abstract/2023/CreateMethodProperty.js +40 -0
- data/node_modules/es-abstract/2023/CreateNonEnumerableDataPropertyOrThrow.js +29 -0
- data/node_modules/es-abstract/2023/CreateRegExpStringIterator.js +100 -0
- data/node_modules/es-abstract/2023/DateFromTime.js +54 -0
- data/node_modules/es-abstract/2023/DateString.js +30 -0
- data/node_modules/es-abstract/2023/Day.js +11 -0
- data/node_modules/es-abstract/2023/DayFromYear.js +10 -0
- data/node_modules/es-abstract/2023/DayWithinYear.js +11 -0
- data/node_modules/es-abstract/2023/DaysInYear.js +18 -0
- data/node_modules/es-abstract/2023/DefinePropertyOrThrow.js +50 -0
- data/node_modules/es-abstract/2023/DeletePropertyOrThrow.js +27 -0
- data/node_modules/es-abstract/2023/DetachArrayBuffer.js +43 -0
- data/node_modules/es-abstract/2023/EnumerableOwnProperties.js +43 -0
- data/node_modules/es-abstract/2023/FindViaPredicate.js +44 -0
- data/node_modules/es-abstract/2023/FlattenIntoArray.js +57 -0
- data/node_modules/es-abstract/2023/FromPropertyDescriptor.js +16 -0
- data/node_modules/es-abstract/2023/Get.js +25 -0
- data/node_modules/es-abstract/2023/GetGlobalObject.js +9 -0
- data/node_modules/es-abstract/2023/GetIterator.js +56 -0
- data/node_modules/es-abstract/2023/GetIteratorFromMethod.js +30 -0
- data/node_modules/es-abstract/2023/GetMatchIndexPair.js +26 -0
- data/node_modules/es-abstract/2023/GetMatchString.js +27 -0
- data/node_modules/es-abstract/2023/GetMethod.js +36 -0
- data/node_modules/es-abstract/2023/GetOwnPropertyKeys.js +31 -0
- data/node_modules/es-abstract/2023/GetPromiseResolve.js +22 -0
- data/node_modules/es-abstract/2023/GetPrototypeFromConstructor.js +32 -0
- data/node_modules/es-abstract/2023/GetStringIndex.js +31 -0
- data/node_modules/es-abstract/2023/GetSubstitution.js +124 -0
- data/node_modules/es-abstract/2023/GetV.js +25 -0
- data/node_modules/es-abstract/2023/GetValueFromBuffer.js +110 -0
- data/node_modules/es-abstract/2023/HasOwnProperty.js +22 -0
- data/node_modules/es-abstract/2023/HasProperty.js +20 -0
- data/node_modules/es-abstract/2023/HourFromTime.js +14 -0
- data/node_modules/es-abstract/2023/InLeapYear.js +21 -0
- data/node_modules/es-abstract/2023/InstallErrorCause.js +23 -0
- data/node_modules/es-abstract/2023/InstanceofOperator.js +30 -0
- data/node_modules/es-abstract/2023/Invoke.js +24 -0
- data/node_modules/es-abstract/2023/IsAccessorDescriptor.js +23 -0
- data/node_modules/es-abstract/2023/IsArray.js +4 -0
- data/node_modules/es-abstract/2023/IsBigIntElementType.js +7 -0
- data/node_modules/es-abstract/2023/IsCallable.js +5 -0
- data/node_modules/es-abstract/2023/IsCompatiblePropertyDescriptor.js +9 -0
- data/node_modules/es-abstract/2023/IsConcatSpreadable.js +25 -0
- data/node_modules/es-abstract/2023/IsConstructor.js +40 -0
- data/node_modules/es-abstract/2023/IsDataDescriptor.js +23 -0
- data/node_modules/es-abstract/2023/IsDetachedBuffer.js +27 -0
- data/node_modules/es-abstract/2023/IsExtensible.js +18 -0
- data/node_modules/es-abstract/2023/IsGenericDescriptor.js +23 -0
- data/node_modules/es-abstract/2023/IsIntegralNumber.js +15 -0
- data/node_modules/es-abstract/2023/IsLessThan.js +100 -0
- data/node_modules/es-abstract/2023/IsLooselyEqual.js +58 -0
- data/node_modules/es-abstract/2023/IsNoTearConfiguration.js +16 -0
- data/node_modules/es-abstract/2023/IsPromise.js +24 -0
- data/node_modules/es-abstract/2023/IsPropertyKey.js +7 -0
- data/node_modules/es-abstract/2023/IsRegExp.js +24 -0
- data/node_modules/es-abstract/2023/IsSharedArrayBuffer.js +19 -0
- data/node_modules/es-abstract/2023/IsStrictlyEqual.js +16 -0
- data/node_modules/es-abstract/2023/IsStringWellFormedUnicode.js +26 -0
- data/node_modules/es-abstract/2023/IsUnclampedIntegerElementType.js +12 -0
- data/node_modules/es-abstract/2023/IsUnsignedElementType.js +11 -0
- data/node_modules/es-abstract/2023/IsValidIntegerIndex.js +33 -0
- data/node_modules/es-abstract/2023/IsWordChar.js +45 -0
- data/node_modules/es-abstract/2023/IteratorClose.js +62 -0
- data/node_modules/es-abstract/2023/IteratorComplete.js +18 -0
- data/node_modules/es-abstract/2023/IteratorNext.js +28 -0
- data/node_modules/es-abstract/2023/IteratorStep.js +18 -0
- data/node_modules/es-abstract/2023/IteratorToList.js +28 -0
- data/node_modules/es-abstract/2023/IteratorValue.js +18 -0
- data/node_modules/es-abstract/2023/KeyForSymbol.js +20 -0
- data/node_modules/es-abstract/2023/LengthOfArrayLike.js +20 -0
- data/node_modules/es-abstract/2023/MakeDate.js +13 -0
- data/node_modules/es-abstract/2023/MakeDay.js +36 -0
- data/node_modules/es-abstract/2023/MakeMatchIndicesIndexPairArray.js +69 -0
- data/node_modules/es-abstract/2023/MakeTime.js +23 -0
- data/node_modules/es-abstract/2023/MinFromTime.js +14 -0
- data/node_modules/es-abstract/2023/MonthFromTime.js +47 -0
- data/node_modules/es-abstract/2023/NewPromiseCapability.js +36 -0
- data/node_modules/es-abstract/2023/NormalCompletion.js +9 -0
- data/node_modules/es-abstract/2023/Number/add.js +36 -0
- data/node_modules/es-abstract/2023/Number/bitwiseAND.js +17 -0
- data/node_modules/es-abstract/2023/Number/bitwiseNOT.js +19 -0
- data/node_modules/es-abstract/2023/Number/bitwiseOR.js +17 -0
- data/node_modules/es-abstract/2023/Number/bitwiseXOR.js +17 -0
- data/node_modules/es-abstract/2023/Number/divide.js +22 -0
- data/node_modules/es-abstract/2023/Number/equal.js +21 -0
- data/node_modules/es-abstract/2023/Number/exponentiate.js +77 -0
- data/node_modules/es-abstract/2023/Number/index.js +43 -0
- data/node_modules/es-abstract/2023/Number/leftShift.js +25 -0
- data/node_modules/es-abstract/2023/Number/lessThan.js +26 -0
- data/node_modules/es-abstract/2023/Number/multiply.js +33 -0
- data/node_modules/es-abstract/2023/Number/remainder.js +42 -0
- data/node_modules/es-abstract/2023/Number/sameValue.js +21 -0
- data/node_modules/es-abstract/2023/Number/sameValueZero.js +24 -0
- data/node_modules/es-abstract/2023/Number/signedRightShift.js +25 -0
- data/node_modules/es-abstract/2023/Number/subtract.js +19 -0
- data/node_modules/es-abstract/2023/Number/toString.js +26 -0
- data/node_modules/es-abstract/2023/Number/unaryMinus.js +21 -0
- data/node_modules/es-abstract/2023/Number/unsignedRightShift.js +25 -0
- data/node_modules/es-abstract/2023/NumberBitwiseOp.js +29 -0
- data/node_modules/es-abstract/2023/NumberToBigInt.js +26 -0
- data/node_modules/es-abstract/2023/NumericToRawBytes.js +80 -0
- data/node_modules/es-abstract/2023/ObjectDefineProperties.js +38 -0
- data/node_modules/es-abstract/2023/OrdinaryCreateFromConstructor.js +20 -0
- data/node_modules/es-abstract/2023/OrdinaryDefineOwnProperty.js +61 -0
- data/node_modules/es-abstract/2023/OrdinaryGetOwnProperty.js +44 -0
- data/node_modules/es-abstract/2023/OrdinaryGetPrototypeOf.js +21 -0
- data/node_modules/es-abstract/2023/OrdinaryHasInstance.js +25 -0
- data/node_modules/es-abstract/2023/OrdinaryHasProperty.js +20 -0
- data/node_modules/es-abstract/2023/OrdinaryObjectCreate.js +56 -0
- data/node_modules/es-abstract/2023/OrdinarySetPrototypeOf.js +53 -0
- data/node_modules/es-abstract/2023/OrdinaryToPrimitive.js +38 -0
- data/node_modules/es-abstract/2023/ParseHexOctet.js +44 -0
- data/node_modules/es-abstract/2023/PromiseResolve.js +17 -0
- data/node_modules/es-abstract/2023/QuoteJSONString.js +54 -0
- data/node_modules/es-abstract/2023/RawBytesToNumeric.js +84 -0
- data/node_modules/es-abstract/2023/RegExpCreate.js +21 -0
- data/node_modules/es-abstract/2023/RegExpExec.js +32 -0
- data/node_modules/es-abstract/2023/RegExpHasFlag.js +38 -0
- data/node_modules/es-abstract/2023/RequireObjectCoercible.js +3 -0
- data/node_modules/es-abstract/2023/SameValue.js +13 -0
- data/node_modules/es-abstract/2023/SameValueNonNumber.js +21 -0
- data/node_modules/es-abstract/2023/SameValueZero.js +9 -0
- data/node_modules/es-abstract/2023/SecFromTime.js +14 -0
- data/node_modules/es-abstract/2023/Set.js +47 -0
- data/node_modules/es-abstract/2023/SetFunctionLength.js +32 -0
- data/node_modules/es-abstract/2023/SetFunctionName.js +44 -0
- data/node_modules/es-abstract/2023/SetIntegrityLevel.js +57 -0
- data/node_modules/es-abstract/2023/SetTypedArrayFromArrayLike.js +97 -0
- data/node_modules/es-abstract/2023/SetTypedArrayFromTypedArray.js +135 -0
- data/node_modules/es-abstract/2023/SetValueInBuffer.js +105 -0
- data/node_modules/es-abstract/2023/SortIndexedProperties.js +52 -0
- data/node_modules/es-abstract/2023/SpeciesConstructor.js +32 -0
- data/node_modules/es-abstract/2023/StringCreate.js +40 -0
- data/node_modules/es-abstract/2023/StringGetOwnProperty.js +48 -0
- data/node_modules/es-abstract/2023/StringIndexOf.js +40 -0
- data/node_modules/es-abstract/2023/StringPad.js +43 -0
- data/node_modules/es-abstract/2023/StringToBigInt.js +23 -0
- data/node_modules/es-abstract/2023/StringToCodePoints.js +29 -0
- data/node_modules/es-abstract/2023/StringToNumber.js +45 -0
- data/node_modules/es-abstract/2023/SymbolDescriptiveString.js +20 -0
- data/node_modules/es-abstract/2023/TestIntegrityLevel.js +42 -0
- data/node_modules/es-abstract/2023/ThrowCompletion.js +9 -0
- data/node_modules/es-abstract/2023/TimeClip.js +21 -0
- data/node_modules/es-abstract/2023/TimeFromYear.js +11 -0
- data/node_modules/es-abstract/2023/TimeString.js +25 -0
- data/node_modules/es-abstract/2023/TimeWithinDay.js +12 -0
- data/node_modules/es-abstract/2023/ToBigInt.js +53 -0
- data/node_modules/es-abstract/2023/ToBigInt64.js +25 -0
- data/node_modules/es-abstract/2023/ToBigUint64.js +22 -0
- data/node_modules/es-abstract/2023/ToBoolean.js +5 -0
- data/node_modules/es-abstract/2023/ToDateString.js +23 -0
- data/node_modules/es-abstract/2023/ToIndex.js +26 -0
- data/node_modules/es-abstract/2023/ToInt16.js +21 -0
- data/node_modules/es-abstract/2023/ToInt32.js +23 -0
- data/node_modules/es-abstract/2023/ToInt8.js +19 -0
- data/node_modules/es-abstract/2023/ToIntegerOrInfinity.js +16 -0
- data/node_modules/es-abstract/2023/ToLength.js +12 -0
- data/node_modules/es-abstract/2023/ToNumber.js +26 -0
- data/node_modules/es-abstract/2023/ToNumeric.js +21 -0
- data/node_modules/es-abstract/2023/ToObject.js +14 -0
- data/node_modules/es-abstract/2023/ToPrimitive.js +12 -0
- data/node_modules/es-abstract/2023/ToPropertyDescriptor.js +52 -0
- data/node_modules/es-abstract/2023/ToPropertyKey.js +15 -0
- data/node_modules/es-abstract/2023/ToString.js +15 -0
- data/node_modules/es-abstract/2023/ToUint16.js +21 -0
- data/node_modules/es-abstract/2023/ToUint32.js +21 -0
- data/node_modules/es-abstract/2023/ToUint8.js +19 -0
- data/node_modules/es-abstract/2023/ToUint8Clamp.js +19 -0
- data/node_modules/es-abstract/2023/ToZeroPaddedDecimalString.js +20 -0
- data/node_modules/es-abstract/2023/TrimString.js +29 -0
- data/node_modules/es-abstract/2023/Type.js +15 -0
- data/node_modules/es-abstract/2023/TypedArrayCreate.js +50 -0
- data/node_modules/es-abstract/2023/TypedArrayCreateSameType.js +37 -0
- data/node_modules/es-abstract/2023/TypedArrayElementSize.js +40 -0
- data/node_modules/es-abstract/2023/TypedArrayElementType.js +38 -0
- data/node_modules/es-abstract/2023/TypedArraySpeciesCreate.js +39 -0
- data/node_modules/es-abstract/2023/UTF16EncodeCodePoint.js +25 -0
- data/node_modules/es-abstract/2023/UTF16SurrogatePairToCodePoint.js +19 -0
- data/node_modules/es-abstract/2023/UnicodeEscape.js +27 -0
- data/node_modules/es-abstract/2023/ValidateAndApplyPropertyDescriptor.js +177 -0
- data/node_modules/es-abstract/2023/ValidateAtomicAccess.js +42 -0
- data/node_modules/es-abstract/2023/ValidateIntegerTypedArray.js +39 -0
- data/node_modules/es-abstract/2023/ValidateTypedArray.js +30 -0
- data/node_modules/es-abstract/2023/WeakRefDeref.js +24 -0
- data/node_modules/es-abstract/2023/WeekDay.js +10 -0
- data/node_modules/es-abstract/2023/WordCharacters.js +48 -0
- data/node_modules/es-abstract/2023/YearFromTime.js +16 -0
- data/node_modules/es-abstract/2023/abs.js +11 -0
- data/node_modules/es-abstract/2023/clamp.js +18 -0
- data/node_modules/es-abstract/2023/floor.js +16 -0
- data/node_modules/es-abstract/2023/max.js +7 -0
- data/node_modules/es-abstract/2023/min.js +7 -0
- data/node_modules/es-abstract/2023/modulo.js +9 -0
- data/node_modules/es-abstract/2023/msFromTime.js +11 -0
- data/node_modules/es-abstract/2023/substring.js +21 -0
- data/node_modules/es-abstract/2023/thisBigIntValue.js +22 -0
- data/node_modules/es-abstract/2023/thisBooleanValue.js +15 -0
- data/node_modules/es-abstract/2023/thisNumberValue.js +18 -0
- data/node_modules/es-abstract/2023/thisStringValue.js +15 -0
- data/node_modules/es-abstract/2023/thisSymbolValue.js +19 -0
- data/node_modules/es-abstract/2023/thisTimeValue.js +9 -0
- data/node_modules/es-abstract/2023/truncate.js +17 -0
- data/node_modules/es-abstract/5/AbstractEqualityComparison.js +37 -0
- data/node_modules/es-abstract/5/AbstractRelationalComparison.js +63 -0
- data/node_modules/es-abstract/5/Canonicalize.js +42 -0
- data/node_modules/es-abstract/5/CheckObjectCoercible.js +14 -0
- data/node_modules/es-abstract/5/DateFromTime.js +54 -0
- data/node_modules/es-abstract/5/Day.js +11 -0
- data/node_modules/es-abstract/5/DayFromYear.js +10 -0
- data/node_modules/es-abstract/5/DayWithinYear.js +11 -0
- data/node_modules/es-abstract/5/DaysInYear.js +18 -0
- data/node_modules/es-abstract/5/FromPropertyDescriptor.js +39 -0
- data/node_modules/es-abstract/5/HourFromTime.js +14 -0
- data/node_modules/es-abstract/5/InLeapYear.js +21 -0
- data/node_modules/es-abstract/5/IsAccessorDescriptor.js +23 -0
- data/node_modules/es-abstract/5/IsCallable.js +5 -0
- data/node_modules/es-abstract/5/IsDataDescriptor.js +23 -0
- data/node_modules/es-abstract/5/IsGenericDescriptor.js +23 -0
- data/node_modules/es-abstract/5/IsPropertyDescriptor.js +19 -0
- data/node_modules/es-abstract/5/MakeDate.js +13 -0
- data/node_modules/es-abstract/5/MakeDay.js +33 -0
- data/node_modules/es-abstract/5/MakeTime.js +23 -0
- data/node_modules/es-abstract/5/MinFromTime.js +14 -0
- data/node_modules/es-abstract/5/MonthFromTime.js +47 -0
- data/node_modules/es-abstract/5/SameValue.js +13 -0
- data/node_modules/es-abstract/5/SecFromTime.js +14 -0
- data/node_modules/es-abstract/5/StrictEqualityComparison.js +17 -0
- data/node_modules/es-abstract/5/TimeClip.js +21 -0
- data/node_modules/es-abstract/5/TimeFromYear.js +11 -0
- data/node_modules/es-abstract/5/TimeWithinDay.js +12 -0
- data/node_modules/es-abstract/5/ToBoolean.js +5 -0
- data/node_modules/es-abstract/5/ToInt32.js +9 -0
- data/node_modules/es-abstract/5/ToInteger.js +18 -0
- data/node_modules/es-abstract/5/ToNumber.js +32 -0
- data/node_modules/es-abstract/5/ToObject.js +14 -0
- data/node_modules/es-abstract/5/ToPrimitive.js +5 -0
- data/node_modules/es-abstract/5/ToPropertyDescriptor.js +52 -0
- data/node_modules/es-abstract/5/ToString.js +12 -0
- data/node_modules/es-abstract/5/ToUint16.js +19 -0
- data/node_modules/es-abstract/5/ToUint32.js +9 -0
- data/node_modules/es-abstract/5/Type.js +24 -0
- data/node_modules/es-abstract/5/WeekDay.js +10 -0
- data/node_modules/es-abstract/5/YearFromTime.js +16 -0
- data/node_modules/es-abstract/5/abs.js +11 -0
- data/node_modules/es-abstract/5/floor.js +11 -0
- data/node_modules/es-abstract/5/modulo.js +9 -0
- data/node_modules/es-abstract/5/msFromTime.js +11 -0
- data/node_modules/es-abstract/CHANGELOG.md +761 -0
- data/node_modules/es-abstract/GetIntrinsic.js +5 -0
- data/node_modules/es-abstract/LICENSE +21 -0
- data/node_modules/es-abstract/README.md +43 -0
- data/node_modules/es-abstract/es2015.js +139 -0
- data/node_modules/es-abstract/es2016.js +146 -0
- data/node_modules/es-abstract/es2017.js +154 -0
- data/node_modules/es-abstract/es2018.js +165 -0
- data/node_modules/es-abstract/es2019.js +169 -0
- data/node_modules/es-abstract/es2020.js +193 -0
- data/node_modules/es-abstract/es2021.js +207 -0
- data/node_modules/es-abstract/es2022.js +219 -0
- data/node_modules/es-abstract/es2023.js +227 -0
- data/node_modules/es-abstract/es5.js +52 -0
- data/node_modules/es-abstract/es6.js +3 -0
- data/node_modules/es-abstract/es7.js +3 -0
- data/node_modules/es-abstract/helpers/DefineOwnProperty.js +55 -0
- data/node_modules/es-abstract/helpers/IsArray.js +12 -0
- data/node_modules/es-abstract/helpers/OwnPropertyKeys.js +22 -0
- data/node_modules/es-abstract/helpers/assertRecord.js +87 -0
- data/node_modules/es-abstract/helpers/assign.js +22 -0
- data/node_modules/es-abstract/helpers/bytesAsFloat32.js +38 -0
- data/node_modules/es-abstract/helpers/bytesAsFloat64.js +44 -0
- data/node_modules/es-abstract/helpers/bytesAsInteger.js +31 -0
- data/node_modules/es-abstract/helpers/callBind.js +5 -0
- data/node_modules/es-abstract/helpers/callBound.js +5 -0
- data/node_modules/es-abstract/helpers/caseFolding.json +1430 -0
- data/node_modules/es-abstract/helpers/defaultEndianness.js +21 -0
- data/node_modules/es-abstract/helpers/every.js +10 -0
- data/node_modules/es-abstract/helpers/forEach.js +7 -0
- data/node_modules/es-abstract/helpers/fractionToBinaryString.js +33 -0
- data/node_modules/es-abstract/helpers/fromPropertyDescriptor.js +27 -0
- data/node_modules/es-abstract/helpers/getInferredName.js +4 -0
- data/node_modules/es-abstract/helpers/getIteratorMethod.js +47 -0
- data/node_modules/es-abstract/helpers/getOwnPropertyDescriptor.js +5 -0
- data/node_modules/es-abstract/helpers/getProto.js +15 -0
- data/node_modules/es-abstract/helpers/getSymbolDescription.js +4 -0
- data/node_modules/es-abstract/helpers/intToBinaryString.js +23 -0
- data/node_modules/es-abstract/helpers/integerToNBytes.js +28 -0
- data/node_modules/es-abstract/helpers/isAbstractClosure.js +9 -0
- data/node_modules/es-abstract/helpers/isByteValue.js +5 -0
- data/node_modules/es-abstract/helpers/isCodePoint.js +5 -0
- data/node_modules/es-abstract/helpers/isFinite.js +5 -0
- data/node_modules/es-abstract/helpers/isFullyPopulatedPropertyDescriptor.js +9 -0
- data/node_modules/es-abstract/helpers/isInteger.js +18 -0
- data/node_modules/es-abstract/helpers/isLeadingSurrogate.js +5 -0
- data/node_modules/es-abstract/helpers/isLineTerminator.js +7 -0
- data/node_modules/es-abstract/helpers/isMatchRecord.js +16 -0
- data/node_modules/es-abstract/helpers/isNaN.js +5 -0
- data/node_modules/es-abstract/helpers/isNegativeZero.js +5 -0
- data/node_modules/es-abstract/helpers/isPrefixOf.js +13 -0
- data/node_modules/es-abstract/helpers/isPrimitive.js +5 -0
- data/node_modules/es-abstract/helpers/isPropertyDescriptor.js +31 -0
- data/node_modules/es-abstract/helpers/isSamePropertyDescriptor.js +20 -0
- data/node_modules/es-abstract/helpers/isStringOrHole.js +7 -0
- data/node_modules/es-abstract/helpers/isTrailingSurrogate.js +5 -0
- data/node_modules/es-abstract/helpers/maxSafeInteger.js +3 -0
- data/node_modules/es-abstract/helpers/maxValue.js +3 -0
- data/node_modules/es-abstract/helpers/mod.js +8 -0
- data/node_modules/es-abstract/helpers/modBigInt.js +6 -0
- data/node_modules/es-abstract/helpers/padTimeComponent.js +9 -0
- data/node_modules/es-abstract/helpers/reduce.js +9 -0
- data/node_modules/es-abstract/helpers/regexTester.js +5 -0
- data/node_modules/es-abstract/helpers/setProto.js +17 -0
- data/node_modules/es-abstract/helpers/sign.js +5 -0
- data/node_modules/es-abstract/helpers/some.js +10 -0
- data/node_modules/es-abstract/helpers/timeConstants.js +19 -0
- data/node_modules/es-abstract/helpers/typedArrayConstructors.js +22 -0
- data/node_modules/es-abstract/helpers/valueToFloat32Bytes.js +69 -0
- data/node_modules/es-abstract/helpers/valueToFloat64Bytes.js +83 -0
- data/node_modules/es-abstract/index.js +34 -0
- data/node_modules/es-abstract/operations/2015.js +744 -0
- data/node_modules/es-abstract/operations/2016.js +813 -0
- data/node_modules/es-abstract/operations/2017.js +954 -0
- data/node_modules/es-abstract/operations/2018.js +1033 -0
- data/node_modules/es-abstract/operations/2019.js +1048 -0
- data/node_modules/es-abstract/operations/2020.js +1228 -0
- data/node_modules/es-abstract/operations/2021.js +1282 -0
- data/node_modules/es-abstract/operations/2022.js +1372 -0
- data/node_modules/es-abstract/operations/2023.js +1441 -0
- data/node_modules/es-abstract/operations/build-unicode.mjs +19 -0
- data/node_modules/es-abstract/package.json +166 -0
- data/node_modules/es-set-tostringtag/CHANGELOG.md +33 -0
- data/node_modules/es-set-tostringtag/LICENSE +21 -0
- data/node_modules/es-set-tostringtag/README.md +43 -0
- data/node_modules/es-set-tostringtag/index.js +26 -0
- data/node_modules/es-set-tostringtag/package.json +69 -0
- data/node_modules/es-set-tostringtag/test/index.js +53 -0
- data/node_modules/es-shim-unscopables/CHANGELOG.md +13 -0
- data/node_modules/es-shim-unscopables/LICENSE +21 -0
- data/node_modules/es-shim-unscopables/README.md +57 -0
- data/node_modules/es-shim-unscopables/index.js +21 -0
- data/node_modules/es-shim-unscopables/package.json +49 -0
- data/node_modules/es-shim-unscopables/test/index.js +67 -0
- data/node_modules/es-shim-unscopables/test/with.js +35 -0
- data/node_modules/es-to-primitive/CHANGELOG.md +49 -0
- data/node_modules/es-to-primitive/LICENSE +22 -0
- data/node_modules/es-to-primitive/Makefile +61 -0
- data/node_modules/es-to-primitive/README.md +49 -0
- data/node_modules/es-to-primitive/es2015.js +75 -0
- data/node_modules/es-to-primitive/es5.js +45 -0
- data/node_modules/es-to-primitive/es6.js +3 -0
- data/node_modules/es-to-primitive/helpers/isPrimitive.js +5 -0
- data/node_modules/es-to-primitive/index.js +17 -0
- data/node_modules/es-to-primitive/package.json +81 -0
- data/node_modules/es-to-primitive/test/es2015.js +151 -0
- data/node_modules/es-to-primitive/test/es5.js +118 -0
- data/node_modules/es-to-primitive/test/es6.js +151 -0
- data/node_modules/es-to-primitive/test/index.js +20 -0
- data/node_modules/escape-string-regexp/index.d.ts +18 -0
- data/node_modules/escape-string-regexp/index.js +13 -0
- data/node_modules/escape-string-regexp/license +9 -0
- data/node_modules/escape-string-regexp/package.json +38 -0
- data/node_modules/escape-string-regexp/readme.md +34 -0
- data/node_modules/eslint/LICENSE +19 -0
- data/node_modules/eslint/README.md +299 -0
- data/node_modules/eslint/bin/eslint.js +140 -0
- data/node_modules/eslint/conf/config-schema.js +93 -0
- data/node_modules/eslint/conf/default-cli-options.js +32 -0
- data/node_modules/eslint/conf/globals.js +154 -0
- data/node_modules/eslint/conf/replacements.json +22 -0
- data/node_modules/eslint/conf/rule-type-list.json +36 -0
- data/node_modules/eslint/lib/api.js +26 -0
- data/node_modules/eslint/lib/cli-engine/cli-engine.js +1078 -0
- data/node_modules/eslint/lib/cli-engine/file-enumerator.js +547 -0
- data/node_modules/eslint/lib/cli-engine/formatters/checkstyle.js +60 -0
- data/node_modules/eslint/lib/cli-engine/formatters/compact.js +60 -0
- data/node_modules/eslint/lib/cli-engine/formatters/formatters-meta.json +46 -0
- data/node_modules/eslint/lib/cli-engine/formatters/html.js +351 -0
- data/node_modules/eslint/lib/cli-engine/formatters/jslint-xml.js +41 -0
- data/node_modules/eslint/lib/cli-engine/formatters/json-with-metadata.js +16 -0
- data/node_modules/eslint/lib/cli-engine/formatters/json.js +13 -0
- data/node_modules/eslint/lib/cli-engine/formatters/junit.js +82 -0
- data/node_modules/eslint/lib/cli-engine/formatters/stylish.js +101 -0
- data/node_modules/eslint/lib/cli-engine/formatters/tap.js +95 -0
- data/node_modules/eslint/lib/cli-engine/formatters/unix.js +58 -0
- data/node_modules/eslint/lib/cli-engine/formatters/visualstudio.js +63 -0
- data/node_modules/eslint/lib/cli-engine/hash.js +35 -0
- data/node_modules/eslint/lib/cli-engine/index.js +7 -0
- data/node_modules/eslint/lib/cli-engine/lint-result-cache.js +191 -0
- data/node_modules/eslint/lib/cli-engine/load-rules.js +46 -0
- data/node_modules/eslint/lib/cli-engine/xml-escape.js +34 -0
- data/node_modules/eslint/lib/cli.js +441 -0
- data/node_modules/eslint/lib/config/default-config.js +67 -0
- data/node_modules/eslint/lib/config/flat-config-array.js +274 -0
- data/node_modules/eslint/lib/config/flat-config-helpers.js +111 -0
- data/node_modules/eslint/lib/config/flat-config-schema.js +545 -0
- data/node_modules/eslint/lib/config/rule-validator.js +158 -0
- data/node_modules/eslint/lib/eslint/eslint-helpers.js +904 -0
- data/node_modules/eslint/lib/eslint/eslint.js +700 -0
- data/node_modules/eslint/lib/eslint/flat-eslint.js +1140 -0
- data/node_modules/eslint/lib/eslint/index.js +9 -0
- data/node_modules/eslint/lib/linter/apply-disable-directives.js +351 -0
- data/node_modules/eslint/lib/linter/code-path-analysis/code-path-analyzer.js +852 -0
- data/node_modules/eslint/lib/linter/code-path-analysis/code-path-segment.js +263 -0
- data/node_modules/eslint/lib/linter/code-path-analysis/code-path-state.js +1483 -0
- data/node_modules/eslint/lib/linter/code-path-analysis/code-path.js +248 -0
- data/node_modules/eslint/lib/linter/code-path-analysis/debug-helpers.js +203 -0
- data/node_modules/eslint/lib/linter/code-path-analysis/fork-context.js +248 -0
- data/node_modules/eslint/lib/linter/code-path-analysis/id-generator.js +45 -0
- data/node_modules/eslint/lib/linter/config-comment-parser.js +151 -0
- data/node_modules/eslint/lib/linter/index.js +13 -0
- data/node_modules/eslint/lib/linter/interpolate.js +28 -0
- data/node_modules/eslint/lib/linter/linter.js +2134 -0
- data/node_modules/eslint/lib/linter/node-event-generator.js +354 -0
- data/node_modules/eslint/lib/linter/report-translator.js +369 -0
- data/node_modules/eslint/lib/linter/rule-fixer.js +140 -0
- data/node_modules/eslint/lib/linter/rules.js +80 -0
- data/node_modules/eslint/lib/linter/safe-emitter.js +52 -0
- data/node_modules/eslint/lib/linter/source-code-fixer.js +152 -0
- data/node_modules/eslint/lib/linter/timing.js +161 -0
- data/node_modules/eslint/lib/options.js +377 -0
- data/node_modules/eslint/lib/rule-tester/flat-rule-tester.js +1122 -0
- data/node_modules/eslint/lib/rule-tester/index.js +5 -0
- data/node_modules/eslint/lib/rule-tester/rule-tester.js +1206 -0
- data/node_modules/eslint/lib/rules/accessor-pairs.js +346 -0
- data/node_modules/eslint/lib/rules/array-bracket-newline.js +258 -0
- data/node_modules/eslint/lib/rules/array-bracket-spacing.js +241 -0
- data/node_modules/eslint/lib/rules/array-callback-return.js +446 -0
- data/node_modules/eslint/lib/rules/array-element-newline.js +308 -0
- data/node_modules/eslint/lib/rules/arrow-body-style.js +296 -0
- data/node_modules/eslint/lib/rules/arrow-parens.js +183 -0
- data/node_modules/eslint/lib/rules/arrow-spacing.js +161 -0
- data/node_modules/eslint/lib/rules/block-scoped-var.js +135 -0
- data/node_modules/eslint/lib/rules/block-spacing.js +171 -0
- data/node_modules/eslint/lib/rules/brace-style.js +194 -0
- data/node_modules/eslint/lib/rules/callback-return.js +187 -0
- data/node_modules/eslint/lib/rules/camelcase.js +399 -0
- data/node_modules/eslint/lib/rules/capitalized-comments.js +300 -0
- data/node_modules/eslint/lib/rules/class-methods-use-this.js +187 -0
- data/node_modules/eslint/lib/rules/comma-dangle.js +370 -0
- data/node_modules/eslint/lib/rules/comma-spacing.js +189 -0
- data/node_modules/eslint/lib/rules/comma-style.js +311 -0
- data/node_modules/eslint/lib/rules/complexity.js +165 -0
- data/node_modules/eslint/lib/rules/computed-property-spacing.js +205 -0
- data/node_modules/eslint/lib/rules/consistent-return.js +210 -0
- data/node_modules/eslint/lib/rules/consistent-this.js +153 -0
- data/node_modules/eslint/lib/rules/constructor-super.js +446 -0
- data/node_modules/eslint/lib/rules/curly.js +486 -0
- data/node_modules/eslint/lib/rules/default-case-last.js +44 -0
- data/node_modules/eslint/lib/rules/default-case.js +97 -0
- data/node_modules/eslint/lib/rules/default-param-last.js +62 -0
- data/node_modules/eslint/lib/rules/dot-location.js +105 -0
- data/node_modules/eslint/lib/rules/dot-notation.js +176 -0
- data/node_modules/eslint/lib/rules/eol-last.js +112 -0
- data/node_modules/eslint/lib/rules/eqeqeq.js +174 -0
- data/node_modules/eslint/lib/rules/for-direction.js +133 -0
- data/node_modules/eslint/lib/rules/func-call-spacing.js +230 -0
- data/node_modules/eslint/lib/rules/func-name-matching.js +253 -0
- data/node_modules/eslint/lib/rules/func-names.js +191 -0
- data/node_modules/eslint/lib/rules/func-style.js +98 -0
- data/node_modules/eslint/lib/rules/function-call-argument-newline.js +122 -0
- data/node_modules/eslint/lib/rules/function-paren-newline.js +289 -0
- data/node_modules/eslint/lib/rules/generator-star-spacing.js +206 -0
- data/node_modules/eslint/lib/rules/getter-return.js +204 -0
- data/node_modules/eslint/lib/rules/global-require.js +90 -0
- data/node_modules/eslint/lib/rules/grouped-accessor-pairs.js +215 -0
- data/node_modules/eslint/lib/rules/guard-for-in.js +76 -0
- data/node_modules/eslint/lib/rules/handle-callback-err.js +101 -0
- data/node_modules/eslint/lib/rules/id-blacklist.js +246 -0
- data/node_modules/eslint/lib/rules/id-denylist.js +228 -0
- data/node_modules/eslint/lib/rules/id-length.js +177 -0
- data/node_modules/eslint/lib/rules/id-match.js +299 -0
- data/node_modules/eslint/lib/rules/implicit-arrow-linebreak.js +81 -0
- data/node_modules/eslint/lib/rules/indent-legacy.js +1126 -0
- data/node_modules/eslint/lib/rules/indent.js +1800 -0
- data/node_modules/eslint/lib/rules/index.js +306 -0
- data/node_modules/eslint/lib/rules/init-declarations.js +139 -0
- data/node_modules/eslint/lib/rules/jsx-quotes.js +95 -0
- data/node_modules/eslint/lib/rules/key-spacing.js +684 -0
- data/node_modules/eslint/lib/rules/keyword-spacing.js +637 -0
- data/node_modules/eslint/lib/rules/line-comment-position.js +122 -0
- data/node_modules/eslint/lib/rules/linebreak-style.js +105 -0
- data/node_modules/eslint/lib/rules/lines-around-comment.js +468 -0
- data/node_modules/eslint/lib/rules/lines-around-directive.js +201 -0
- data/node_modules/eslint/lib/rules/lines-between-class-members.js +266 -0
- data/node_modules/eslint/lib/rules/logical-assignment-operators.js +476 -0
- data/node_modules/eslint/lib/rules/max-classes-per-file.js +89 -0
- data/node_modules/eslint/lib/rules/max-depth.js +156 -0
- data/node_modules/eslint/lib/rules/max-len.js +437 -0
- data/node_modules/eslint/lib/rules/max-lines-per-function.js +213 -0
- data/node_modules/eslint/lib/rules/max-lines.js +193 -0
- data/node_modules/eslint/lib/rules/max-nested-callbacks.js +117 -0
- data/node_modules/eslint/lib/rules/max-params.js +102 -0
- data/node_modules/eslint/lib/rules/max-statements-per-line.js +196 -0
- data/node_modules/eslint/lib/rules/max-statements.js +184 -0
- data/node_modules/eslint/lib/rules/multiline-comment-style.js +474 -0
- data/node_modules/eslint/lib/rules/multiline-ternary.js +171 -0
- data/node_modules/eslint/lib/rules/new-cap.js +276 -0
- data/node_modules/eslint/lib/rules/new-parens.js +90 -0
- data/node_modules/eslint/lib/rules/newline-after-var.js +253 -0
- data/node_modules/eslint/lib/rules/newline-before-return.js +217 -0
- data/node_modules/eslint/lib/rules/newline-per-chained-call.js +123 -0
- data/node_modules/eslint/lib/rules/no-alert.js +138 -0
- data/node_modules/eslint/lib/rules/no-array-constructor.js +54 -0
- data/node_modules/eslint/lib/rules/no-async-promise-executor.js +39 -0
- data/node_modules/eslint/lib/rules/no-await-in-loop.js +106 -0
- data/node_modules/eslint/lib/rules/no-bitwise.js +119 -0
- data/node_modules/eslint/lib/rules/no-buffer-constructor.js +50 -0
- data/node_modules/eslint/lib/rules/no-caller.js +46 -0
- data/node_modules/eslint/lib/rules/no-case-declarations.js +64 -0
- data/node_modules/eslint/lib/rules/no-catch-shadow.js +82 -0
- data/node_modules/eslint/lib/rules/no-class-assign.js +63 -0
- data/node_modules/eslint/lib/rules/no-compare-neg-zero.js +60 -0
- data/node_modules/eslint/lib/rules/no-cond-assign.js +159 -0
- data/node_modules/eslint/lib/rules/no-confusing-arrow.js +89 -0
- data/node_modules/eslint/lib/rules/no-console.js +135 -0
- data/node_modules/eslint/lib/rules/no-const-assign.js +56 -0
- data/node_modules/eslint/lib/rules/no-constant-binary-expression.js +509 -0
- data/node_modules/eslint/lib/rules/no-constant-condition.js +150 -0
- data/node_modules/eslint/lib/rules/no-constructor-return.js +62 -0
- data/node_modules/eslint/lib/rules/no-continue.js +39 -0
- data/node_modules/eslint/lib/rules/no-control-regex.js +138 -0
- data/node_modules/eslint/lib/rules/no-debugger.js +43 -0
- data/node_modules/eslint/lib/rules/no-delete-var.js +42 -0
- data/node_modules/eslint/lib/rules/no-div-regex.js +53 -0
- data/node_modules/eslint/lib/rules/no-dupe-args.js +82 -0
- data/node_modules/eslint/lib/rules/no-dupe-class-members.js +104 -0
- data/node_modules/eslint/lib/rules/no-dupe-else-if.js +122 -0
- data/node_modules/eslint/lib/rules/no-dupe-keys.js +142 -0
- data/node_modules/eslint/lib/rules/no-duplicate-case.js +71 -0
- data/node_modules/eslint/lib/rules/no-duplicate-imports.js +290 -0
- data/node_modules/eslint/lib/rules/no-else-return.js +405 -0
- data/node_modules/eslint/lib/rules/no-empty-character-class.js +76 -0
- data/node_modules/eslint/lib/rules/no-empty-function.js +167 -0
- data/node_modules/eslint/lib/rules/no-empty-pattern.js +78 -0
- data/node_modules/eslint/lib/rules/no-empty-static-block.js +47 -0
- data/node_modules/eslint/lib/rules/no-empty.js +103 -0
- data/node_modules/eslint/lib/rules/no-eq-null.js +46 -0
- data/node_modules/eslint/lib/rules/no-eval.js +286 -0
- data/node_modules/eslint/lib/rules/no-ex-assign.js +54 -0
- data/node_modules/eslint/lib/rules/no-extend-native.js +179 -0
- data/node_modules/eslint/lib/rules/no-extra-bind.js +213 -0
- data/node_modules/eslint/lib/rules/no-extra-boolean-cast.js +317 -0
- data/node_modules/eslint/lib/rules/no-extra-label.js +149 -0
- data/node_modules/eslint/lib/rules/no-extra-parens.js +1319 -0
- data/node_modules/eslint/lib/rules/no-extra-semi.js +144 -0
- data/node_modules/eslint/lib/rules/no-fallthrough.js +196 -0
- data/node_modules/eslint/lib/rules/no-floating-decimal.js +70 -0
- data/node_modules/eslint/lib/rules/no-func-assign.js +78 -0
- data/node_modules/eslint/lib/rules/no-global-assign.js +95 -0
- data/node_modules/eslint/lib/rules/no-implicit-coercion.js +380 -0
- data/node_modules/eslint/lib/rules/no-implicit-globals.js +146 -0
- data/node_modules/eslint/lib/rules/no-implied-eval.js +132 -0
- data/node_modules/eslint/lib/rules/no-import-assign.js +241 -0
- data/node_modules/eslint/lib/rules/no-inline-comments.js +110 -0
- data/node_modules/eslint/lib/rules/no-inner-declarations.js +110 -0
- data/node_modules/eslint/lib/rules/no-invalid-regexp.js +194 -0
- data/node_modules/eslint/lib/rules/no-invalid-this.js +150 -0
- data/node_modules/eslint/lib/rules/no-irregular-whitespace.js +276 -0
- data/node_modules/eslint/lib/rules/no-iterator.js +52 -0
- data/node_modules/eslint/lib/rules/no-label-var.js +80 -0
- data/node_modules/eslint/lib/rules/no-labels.js +149 -0
- data/node_modules/eslint/lib/rules/no-lone-blocks.js +136 -0
- data/node_modules/eslint/lib/rules/no-lonely-if.js +88 -0
- data/node_modules/eslint/lib/rules/no-loop-func.js +206 -0
- data/node_modules/eslint/lib/rules/no-loss-of-precision.js +214 -0
- data/node_modules/eslint/lib/rules/no-magic-numbers.js +243 -0
- data/node_modules/eslint/lib/rules/no-misleading-character-class.js +300 -0
- data/node_modules/eslint/lib/rules/no-mixed-operators.js +226 -0
- data/node_modules/eslint/lib/rules/no-mixed-requires.js +238 -0
- data/node_modules/eslint/lib/rules/no-mixed-spaces-and-tabs.js +113 -0
- data/node_modules/eslint/lib/rules/no-multi-assign.js +67 -0
- data/node_modules/eslint/lib/rules/no-multi-spaces.js +138 -0
- data/node_modules/eslint/lib/rules/no-multi-str.js +65 -0
- data/node_modules/eslint/lib/rules/no-multiple-empty-lines.js +151 -0
- data/node_modules/eslint/lib/rules/no-native-reassign.js +98 -0
- data/node_modules/eslint/lib/rules/no-negated-condition.js +95 -0
- data/node_modules/eslint/lib/rules/no-negated-in-lhs.js +46 -0
- data/node_modules/eslint/lib/rules/no-nested-ternary.js +44 -0
- data/node_modules/eslint/lib/rules/no-new-func.js +87 -0
- data/node_modules/eslint/lib/rules/no-new-native-nonconstructor.js +66 -0
- data/node_modules/eslint/lib/rules/no-new-object.js +67 -0
- data/node_modules/eslint/lib/rules/no-new-require.js +50 -0
- data/node_modules/eslint/lib/rules/no-new-symbol.js +56 -0
- data/node_modules/eslint/lib/rules/no-new-wrappers.js +60 -0
- data/node_modules/eslint/lib/rules/no-new.js +43 -0
- data/node_modules/eslint/lib/rules/no-nonoctal-decimal-escape.js +148 -0
- data/node_modules/eslint/lib/rules/no-obj-calls.js +86 -0
- data/node_modules/eslint/lib/rules/no-object-constructor.js +118 -0
- data/node_modules/eslint/lib/rules/no-octal-escape.js +56 -0
- data/node_modules/eslint/lib/rules/no-octal.js +45 -0
- data/node_modules/eslint/lib/rules/no-param-reassign.js +230 -0
- data/node_modules/eslint/lib/rules/no-path-concat.js +64 -0
- data/node_modules/eslint/lib/rules/no-plusplus.js +105 -0
- data/node_modules/eslint/lib/rules/no-process-env.js +51 -0
- data/node_modules/eslint/lib/rules/no-process-exit.js +47 -0
- data/node_modules/eslint/lib/rules/no-promise-executor-return.js +260 -0
- data/node_modules/eslint/lib/rules/no-proto.js +48 -0
- data/node_modules/eslint/lib/rules/no-prototype-builtins.js +71 -0
- data/node_modules/eslint/lib/rules/no-redeclare.js +174 -0
- data/node_modules/eslint/lib/rules/no-regex-spaces.js +197 -0
- data/node_modules/eslint/lib/rules/no-restricted-exports.js +193 -0
- data/node_modules/eslint/lib/rules/no-restricted-globals.js +124 -0
- data/node_modules/eslint/lib/rules/no-restricted-imports.js +387 -0
- data/node_modules/eslint/lib/rules/no-restricted-modules.js +213 -0
- data/node_modules/eslint/lib/rules/no-restricted-properties.js +181 -0
- data/node_modules/eslint/lib/rules/no-restricted-syntax.js +70 -0
- data/node_modules/eslint/lib/rules/no-return-assign.js +80 -0
- data/node_modules/eslint/lib/rules/no-return-await.js +135 -0
- data/node_modules/eslint/lib/rules/no-script-url.js +61 -0
- data/node_modules/eslint/lib/rules/no-self-assign.js +183 -0
- data/node_modules/eslint/lib/rules/no-self-compare.js +60 -0
- data/node_modules/eslint/lib/rules/no-sequences.js +138 -0
- data/node_modules/eslint/lib/rules/no-setter-return.js +226 -0
- data/node_modules/eslint/lib/rules/no-shadow-restricted-names.js +65 -0
- data/node_modules/eslint/lib/rules/no-shadow.js +336 -0
- data/node_modules/eslint/lib/rules/no-spaced-func.js +83 -0
- data/node_modules/eslint/lib/rules/no-sparse-arrays.js +50 -0
- data/node_modules/eslint/lib/rules/no-sync.js +64 -0
- data/node_modules/eslint/lib/rules/no-tabs.js +78 -0
- data/node_modules/eslint/lib/rules/no-template-curly-in-string.js +44 -0
- data/node_modules/eslint/lib/rules/no-ternary.js +41 -0
- data/node_modules/eslint/lib/rules/no-this-before-super.js +331 -0
- data/node_modules/eslint/lib/rules/no-throw-literal.js +51 -0
- data/node_modules/eslint/lib/rules/no-trailing-spaces.js +190 -0
- data/node_modules/eslint/lib/rules/no-undef-init.js +75 -0
- data/node_modules/eslint/lib/rules/no-undef.js +79 -0
- data/node_modules/eslint/lib/rules/no-undefined.js +86 -0
- data/node_modules/eslint/lib/rules/no-underscore-dangle.js +335 -0
- data/node_modules/eslint/lib/rules/no-unexpected-multiline.js +120 -0
- data/node_modules/eslint/lib/rules/no-unmodified-loop-condition.js +360 -0
- data/node_modules/eslint/lib/rules/no-unneeded-ternary.js +166 -0
- data/node_modules/eslint/lib/rules/no-unreachable-loop.js +185 -0
- data/node_modules/eslint/lib/rules/no-unreachable.js +293 -0
- data/node_modules/eslint/lib/rules/no-unsafe-finally.js +111 -0
- data/node_modules/eslint/lib/rules/no-unsafe-negation.js +128 -0
- data/node_modules/eslint/lib/rules/no-unsafe-optional-chaining.js +205 -0
- data/node_modules/eslint/lib/rules/no-unused-expressions.js +186 -0
- data/node_modules/eslint/lib/rules/no-unused-labels.js +143 -0
- data/node_modules/eslint/lib/rules/no-unused-private-class-members.js +195 -0
- data/node_modules/eslint/lib/rules/no-unused-vars.js +718 -0
- data/node_modules/eslint/lib/rules/no-use-before-define.js +348 -0
- data/node_modules/eslint/lib/rules/no-useless-backreference.js +194 -0
- data/node_modules/eslint/lib/rules/no-useless-call.js +90 -0
- data/node_modules/eslint/lib/rules/no-useless-catch.js +57 -0
- data/node_modules/eslint/lib/rules/no-useless-computed-key.js +168 -0
- data/node_modules/eslint/lib/rules/no-useless-concat.js +115 -0
- data/node_modules/eslint/lib/rules/no-useless-constructor.js +189 -0
- data/node_modules/eslint/lib/rules/no-useless-escape.js +333 -0
- data/node_modules/eslint/lib/rules/no-useless-rename.js +172 -0
- data/node_modules/eslint/lib/rules/no-useless-return.js +364 -0
- data/node_modules/eslint/lib/rules/no-var.js +334 -0
- data/node_modules/eslint/lib/rules/no-void.js +64 -0
- data/node_modules/eslint/lib/rules/no-warning-comments.js +201 -0
- data/node_modules/eslint/lib/rules/no-whitespace-before-property.js +113 -0
- data/node_modules/eslint/lib/rules/no-with.js +39 -0
- data/node_modules/eslint/lib/rules/nonblock-statement-body-position.js +124 -0
- data/node_modules/eslint/lib/rules/object-curly-newline.js +321 -0
- data/node_modules/eslint/lib/rules/object-curly-spacing.js +308 -0
- data/node_modules/eslint/lib/rules/object-property-newline.js +99 -0
- data/node_modules/eslint/lib/rules/object-shorthand.js +520 -0
- data/node_modules/eslint/lib/rules/one-var-declaration-per-line.js +92 -0
- data/node_modules/eslint/lib/rules/one-var.js +567 -0
- data/node_modules/eslint/lib/rules/operator-assignment.js +209 -0
- data/node_modules/eslint/lib/rules/operator-linebreak.js +250 -0
- data/node_modules/eslint/lib/rules/padded-blocks.js +307 -0
- data/node_modules/eslint/lib/rules/padding-line-between-statements.js +587 -0
- data/node_modules/eslint/lib/rules/prefer-arrow-callback.js +381 -0
- data/node_modules/eslint/lib/rules/prefer-const.js +501 -0
- data/node_modules/eslint/lib/rules/prefer-destructuring.js +301 -0
- data/node_modules/eslint/lib/rules/prefer-exponentiation-operator.js +191 -0
- data/node_modules/eslint/lib/rules/prefer-named-capture-group.js +178 -0
- data/node_modules/eslint/lib/rules/prefer-numeric-literals.js +148 -0
- data/node_modules/eslint/lib/rules/prefer-object-has-own.js +114 -0
- data/node_modules/eslint/lib/rules/prefer-object-spread.js +298 -0
- data/node_modules/eslint/lib/rules/prefer-promise-reject-errors.js +132 -0
- data/node_modules/eslint/lib/rules/prefer-reflect.js +127 -0
- data/node_modules/eslint/lib/rules/prefer-regex-literals.js +507 -0
- data/node_modules/eslint/lib/rules/prefer-rest-params.js +118 -0
- data/node_modules/eslint/lib/rules/prefer-spread.js +87 -0
- data/node_modules/eslint/lib/rules/prefer-template.js +275 -0
- data/node_modules/eslint/lib/rules/quote-props.js +307 -0
- data/node_modules/eslint/lib/rules/quotes.js +347 -0
- data/node_modules/eslint/lib/rules/radix.js +198 -0
- data/node_modules/eslint/lib/rules/require-atomic-updates.js +331 -0
- data/node_modules/eslint/lib/rules/require-await.js +113 -0
- data/node_modules/eslint/lib/rules/require-jsdoc.js +122 -0
- data/node_modules/eslint/lib/rules/require-unicode-regexp.js +129 -0
- data/node_modules/eslint/lib/rules/require-yield.js +77 -0
- data/node_modules/eslint/lib/rules/rest-spread-spacing.js +120 -0
- data/node_modules/eslint/lib/rules/semi-spacing.js +245 -0
- data/node_modules/eslint/lib/rules/semi-style.js +155 -0
- data/node_modules/eslint/lib/rules/semi.js +435 -0
- data/node_modules/eslint/lib/rules/sort-imports.js +241 -0
- data/node_modules/eslint/lib/rules/sort-keys.js +230 -0
- data/node_modules/eslint/lib/rules/sort-vars.js +104 -0
- data/node_modules/eslint/lib/rules/space-before-blocks.js +201 -0
- data/node_modules/eslint/lib/rules/space-before-function-paren.js +164 -0
- data/node_modules/eslint/lib/rules/space-in-parens.js +282 -0
- data/node_modules/eslint/lib/rules/space-infix-ops.js +195 -0
- data/node_modules/eslint/lib/rules/space-unary-ops.js +321 -0
- data/node_modules/eslint/lib/rules/spaced-comment.js +382 -0
- data/node_modules/eslint/lib/rules/strict.js +277 -0
- data/node_modules/eslint/lib/rules/switch-colon-spacing.js +129 -0
- data/node_modules/eslint/lib/rules/symbol-description.js +73 -0
- data/node_modules/eslint/lib/rules/template-curly-spacing.js +141 -0
- data/node_modules/eslint/lib/rules/template-tag-spacing.js +90 -0
- data/node_modules/eslint/lib/rules/unicode-bom.js +73 -0
- data/node_modules/eslint/lib/rules/use-isnan.js +141 -0
- data/node_modules/eslint/lib/rules/utils/ast-utils.js +2172 -0
- data/node_modules/eslint/lib/rules/utils/fix-tracker.js +114 -0
- data/node_modules/eslint/lib/rules/utils/keywords.js +67 -0
- data/node_modules/eslint/lib/rules/utils/lazy-loading-rule-map.js +115 -0
- data/node_modules/eslint/lib/rules/utils/patterns/letters.js +36 -0
- data/node_modules/eslint/lib/rules/utils/regular-expressions.js +42 -0
- data/node_modules/eslint/lib/rules/utils/unicode/index.js +11 -0
- data/node_modules/eslint/lib/rules/utils/unicode/is-combining-character.js +13 -0
- data/node_modules/eslint/lib/rules/utils/unicode/is-emoji-modifier.js +13 -0
- data/node_modules/eslint/lib/rules/utils/unicode/is-regional-indicator-symbol.js +13 -0
- data/node_modules/eslint/lib/rules/utils/unicode/is-surrogate-pair.js +14 -0
- data/node_modules/eslint/lib/rules/valid-jsdoc.js +516 -0
- data/node_modules/eslint/lib/rules/valid-typeof.js +127 -0
- data/node_modules/eslint/lib/rules/vars-on-top.js +157 -0
- data/node_modules/eslint/lib/rules/wrap-iife.js +204 -0
- data/node_modules/eslint/lib/rules/wrap-regex.js +58 -0
- data/node_modules/eslint/lib/rules/yield-star-spacing.js +127 -0
- data/node_modules/eslint/lib/rules/yoda.js +353 -0
- data/node_modules/eslint/lib/shared/ajv.js +34 -0
- data/node_modules/eslint/lib/shared/ast-utils.js +29 -0
- data/node_modules/eslint/lib/shared/config-validator.js +347 -0
- data/node_modules/eslint/lib/shared/deprecation-warnings.js +58 -0
- data/node_modules/eslint/lib/shared/directives.js +15 -0
- data/node_modules/eslint/lib/shared/logging.js +30 -0
- data/node_modules/eslint/lib/shared/relative-module-resolver.js +50 -0
- data/node_modules/eslint/lib/shared/runtime-info.js +167 -0
- data/node_modules/eslint/lib/shared/string-utils.js +60 -0
- data/node_modules/eslint/lib/shared/traverser.js +195 -0
- data/node_modules/eslint/lib/shared/types.js +216 -0
- data/node_modules/eslint/lib/source-code/index.js +5 -0
- data/node_modules/eslint/lib/source-code/source-code.js +1076 -0
- data/node_modules/eslint/lib/source-code/token-store/backward-token-comment-cursor.js +57 -0
- data/node_modules/eslint/lib/source-code/token-store/backward-token-cursor.js +58 -0
- data/node_modules/eslint/lib/source-code/token-store/cursor.js +76 -0
- data/node_modules/eslint/lib/source-code/token-store/cursors.js +90 -0
- data/node_modules/eslint/lib/source-code/token-store/decorative-cursor.js +39 -0
- data/node_modules/eslint/lib/source-code/token-store/filter-cursor.js +43 -0
- data/node_modules/eslint/lib/source-code/token-store/forward-token-comment-cursor.js +57 -0
- data/node_modules/eslint/lib/source-code/token-store/forward-token-cursor.js +63 -0
- data/node_modules/eslint/lib/source-code/token-store/index.js +627 -0
- data/node_modules/eslint/lib/source-code/token-store/limit-cursor.js +40 -0
- data/node_modules/eslint/lib/source-code/token-store/padded-token-cursor.js +38 -0
- data/node_modules/eslint/lib/source-code/token-store/skip-cursor.js +42 -0
- data/node_modules/eslint/lib/source-code/token-store/utils.js +107 -0
- data/node_modules/eslint/lib/unsupported-api.js +30 -0
- data/node_modules/eslint/messages/all-files-ignored.js +16 -0
- data/node_modules/eslint/messages/eslintrc-incompat.js +98 -0
- data/node_modules/eslint/messages/eslintrc-plugins.js +24 -0
- data/node_modules/eslint/messages/extend-config-missing.js +13 -0
- data/node_modules/eslint/messages/failed-to-read-json.js +11 -0
- data/node_modules/eslint/messages/file-not-found.js +10 -0
- data/node_modules/eslint/messages/invalid-rule-options.js +17 -0
- data/node_modules/eslint/messages/invalid-rule-severity.js +13 -0
- data/node_modules/eslint/messages/no-config-found.js +15 -0
- data/node_modules/eslint/messages/plugin-conflict.js +22 -0
- data/node_modules/eslint/messages/plugin-invalid.js +16 -0
- data/node_modules/eslint/messages/plugin-missing.js +19 -0
- data/node_modules/eslint/messages/print-config-with-directory-path.js +8 -0
- data/node_modules/eslint/messages/shared.js +18 -0
- data/node_modules/eslint/messages/whitespace-found.js +11 -0
- data/node_modules/eslint/package.json +174 -0
- data/node_modules/eslint-config-airbnb-base/CHANGELOG.md +374 -0
- data/node_modules/eslint-config-airbnb-base/LICENSE.md +21 -0
- data/node_modules/eslint-config-airbnb-base/README.md +112 -0
- data/node_modules/eslint-config-airbnb-base/index.js +17 -0
- data/node_modules/eslint-config-airbnb-base/legacy.js +34 -0
- data/node_modules/eslint-config-airbnb-base/package.json +95 -0
- data/node_modules/eslint-config-airbnb-base/rules/best-practices.js +408 -0
- data/node_modules/eslint-config-airbnb-base/rules/errors.js +179 -0
- data/node_modules/eslint-config-airbnb-base/rules/es6.js +185 -0
- data/node_modules/eslint-config-airbnb-base/rules/imports.js +273 -0
- data/node_modules/eslint-config-airbnb-base/rules/node.js +43 -0
- data/node_modules/eslint-config-airbnb-base/rules/strict.js +6 -0
- data/node_modules/eslint-config-airbnb-base/rules/style.js +529 -0
- data/node_modules/eslint-config-airbnb-base/rules/variables.js +56 -0
- data/node_modules/eslint-config-airbnb-base/test/requires.js +13 -0
- data/node_modules/eslint-config-airbnb-base/test/test-base.js +32 -0
- data/node_modules/eslint-config-airbnb-base/whitespace-async.js +96 -0
- data/node_modules/eslint-config-airbnb-base/whitespace.js +102 -0
- data/node_modules/eslint-import-resolver-node/LICENSE +22 -0
- data/node_modules/eslint-import-resolver-node/README.md +44 -0
- data/node_modules/eslint-import-resolver-node/index.js +66 -0
- data/node_modules/eslint-import-resolver-node/node_modules/debug/CHANGELOG.md +395 -0
- data/node_modules/eslint-import-resolver-node/node_modules/debug/LICENSE +19 -0
- data/node_modules/eslint-import-resolver-node/node_modules/debug/README.md +437 -0
- data/node_modules/eslint-import-resolver-node/node_modules/debug/node.js +1 -0
- data/node_modules/eslint-import-resolver-node/node_modules/debug/node_modules/ms/index.js +162 -0
- data/node_modules/eslint-import-resolver-node/node_modules/debug/node_modules/ms/license.md +21 -0
- data/node_modules/eslint-import-resolver-node/node_modules/debug/node_modules/ms/package.json +38 -0
- data/node_modules/eslint-import-resolver-node/node_modules/debug/node_modules/ms/readme.md +59 -0
- data/node_modules/eslint-import-resolver-node/node_modules/debug/package.json +51 -0
- data/node_modules/eslint-import-resolver-node/node_modules/debug/src/browser.js +180 -0
- data/node_modules/eslint-import-resolver-node/node_modules/debug/src/common.js +249 -0
- data/node_modules/eslint-import-resolver-node/node_modules/debug/src/index.js +12 -0
- data/node_modules/eslint-import-resolver-node/node_modules/debug/src/node.js +177 -0
- data/node_modules/eslint-import-resolver-node/package.json +41 -0
- data/node_modules/eslint-module-utils/CHANGELOG.md +185 -0
- data/node_modules/eslint-module-utils/LICENSE +22 -0
- data/node_modules/eslint-module-utils/ModuleCache.js +50 -0
- data/node_modules/eslint-module-utils/declaredScope.js +10 -0
- data/node_modules/eslint-module-utils/hash.js +60 -0
- data/node_modules/eslint-module-utils/ignore.js +61 -0
- data/node_modules/eslint-module-utils/module-require.js +31 -0
- data/node_modules/eslint-module-utils/moduleVisitor.js +153 -0
- data/node_modules/eslint-module-utils/node_modules/debug/CHANGELOG.md +395 -0
- data/node_modules/eslint-module-utils/node_modules/debug/LICENSE +19 -0
- data/node_modules/eslint-module-utils/node_modules/debug/README.md +437 -0
- data/node_modules/eslint-module-utils/node_modules/debug/node.js +1 -0
- data/node_modules/eslint-module-utils/node_modules/debug/node_modules/ms/index.js +162 -0
- data/node_modules/eslint-module-utils/node_modules/debug/node_modules/ms/license.md +21 -0
- data/node_modules/eslint-module-utils/node_modules/debug/node_modules/ms/package.json +38 -0
- data/node_modules/eslint-module-utils/node_modules/debug/node_modules/ms/readme.md +59 -0
- data/node_modules/eslint-module-utils/node_modules/debug/package.json +51 -0
- data/node_modules/eslint-module-utils/node_modules/debug/src/browser.js +180 -0
- data/node_modules/eslint-module-utils/node_modules/debug/src/common.js +249 -0
- data/node_modules/eslint-module-utils/node_modules/debug/src/index.js +12 -0
- data/node_modules/eslint-module-utils/node_modules/debug/src/node.js +177 -0
- data/node_modules/eslint-module-utils/package.json +36 -0
- data/node_modules/eslint-module-utils/parse.js +149 -0
- data/node_modules/eslint-module-utils/pkgDir.js +11 -0
- data/node_modules/eslint-module-utils/pkgUp.js +57 -0
- data/node_modules/eslint-module-utils/readPkgUp.js +53 -0
- data/node_modules/eslint-module-utils/resolve.js +234 -0
- data/node_modules/eslint-module-utils/unambiguous.js +30 -0
- data/node_modules/eslint-module-utils/visit.js +25 -0
- data/node_modules/eslint-plugin-import/CHANGELOG.md +1899 -0
- data/node_modules/eslint-plugin-import/CONTRIBUTING.md +84 -0
- data/node_modules/eslint-plugin-import/LICENSE +22 -0
- data/node_modules/eslint-plugin-import/README.md +500 -0
- data/node_modules/eslint-plugin-import/RELEASE.md +54 -0
- data/node_modules/eslint-plugin-import/SECURITY.md +11 -0
- data/node_modules/eslint-plugin-import/config/electron.js +8 -0
- data/node_modules/eslint-plugin-import/config/errors.js +14 -0
- data/node_modules/eslint-plugin-import/config/react-native.js +13 -0
- data/node_modules/eslint-plugin-import/config/react.js +18 -0
- data/node_modules/eslint-plugin-import/config/recommended.js +28 -0
- data/node_modules/eslint-plugin-import/config/stage-0.js +12 -0
- data/node_modules/eslint-plugin-import/config/typescript.js +31 -0
- data/node_modules/eslint-plugin-import/config/warnings.js +12 -0
- data/node_modules/eslint-plugin-import/docs/rules/consistent-type-specifier-style.md +91 -0
- data/node_modules/eslint-plugin-import/docs/rules/default.md +72 -0
- data/node_modules/eslint-plugin-import/docs/rules/dynamic-import-chunkname.md +92 -0
- data/node_modules/eslint-plugin-import/docs/rules/export.md +37 -0
- data/node_modules/eslint-plugin-import/docs/rules/exports-last.md +51 -0
- data/node_modules/eslint-plugin-import/docs/rules/extensions.md +174 -0
- data/node_modules/eslint-plugin-import/docs/rules/first.md +75 -0
- data/node_modules/eslint-plugin-import/docs/rules/group-exports.md +118 -0
- data/node_modules/eslint-plugin-import/docs/rules/imports-first.md +9 -0
- data/node_modules/eslint-plugin-import/docs/rules/max-dependencies.md +70 -0
- data/node_modules/eslint-plugin-import/docs/rules/named.md +102 -0
- data/node_modules/eslint-plugin-import/docs/rules/namespace.md +106 -0
- data/node_modules/eslint-plugin-import/docs/rules/newline-after-import.md +118 -0
- data/node_modules/eslint-plugin-import/docs/rules/no-absolute-path.md +54 -0
- data/node_modules/eslint-plugin-import/docs/rules/no-amd.md +37 -0
- data/node_modules/eslint-plugin-import/docs/rules/no-anonymous-default-export.md +83 -0
- data/node_modules/eslint-plugin-import/docs/rules/no-commonjs.md +96 -0
- data/node_modules/eslint-plugin-import/docs/rules/no-cycle.md +111 -0
- data/node_modules/eslint-plugin-import/docs/rules/no-default-export.md +65 -0
- data/node_modules/eslint-plugin-import/docs/rules/no-deprecated.md +62 -0
- data/node_modules/eslint-plugin-import/docs/rules/no-duplicates.md +109 -0
- data/node_modules/eslint-plugin-import/docs/rules/no-dynamic-require.md +25 -0
- data/node_modules/eslint-plugin-import/docs/rules/no-empty-named-blocks.md +49 -0
- data/node_modules/eslint-plugin-import/docs/rules/no-extraneous-dependencies.md +139 -0
- data/node_modules/eslint-plugin-import/docs/rules/no-import-module-exports.md +81 -0
- data/node_modules/eslint-plugin-import/docs/rules/no-internal-modules.md +136 -0
- data/node_modules/eslint-plugin-import/docs/rules/no-mutable-exports.md +54 -0
- data/node_modules/eslint-plugin-import/docs/rules/no-named-as-default-member.md +52 -0
- data/node_modules/eslint-plugin-import/docs/rules/no-named-as-default.md +53 -0
- data/node_modules/eslint-plugin-import/docs/rules/no-named-default.md +36 -0
- data/node_modules/eslint-plugin-import/docs/rules/no-named-export.md +79 -0
- data/node_modules/eslint-plugin-import/docs/rules/no-namespace.md +44 -0
- data/node_modules/eslint-plugin-import/docs/rules/no-nodejs-modules.md +42 -0
- data/node_modules/eslint-plugin-import/docs/rules/no-relative-packages.md +70 -0
- data/node_modules/eslint-plugin-import/docs/rules/no-relative-parent-imports.md +123 -0
- data/node_modules/eslint-plugin-import/docs/rules/no-restricted-paths.md +198 -0
- data/node_modules/eslint-plugin-import/docs/rules/no-self-import.md +32 -0
- data/node_modules/eslint-plugin-import/docs/rules/no-unassigned-import.md +60 -0
- data/node_modules/eslint-plugin-import/docs/rules/no-unresolved.md +110 -0
- data/node_modules/eslint-plugin-import/docs/rules/no-unused-modules.md +125 -0
- data/node_modules/eslint-plugin-import/docs/rules/no-useless-path-segments.md +85 -0
- data/node_modules/eslint-plugin-import/docs/rules/no-webpack-loader-syntax.md +39 -0
- data/node_modules/eslint-plugin-import/docs/rules/order.md +365 -0
- data/node_modules/eslint-plugin-import/docs/rules/prefer-default-export.md +185 -0
- data/node_modules/eslint-plugin-import/docs/rules/unambiguous.md +57 -0
- data/node_modules/eslint-plugin-import/lib/ExportMap.js +856 -0
- data/node_modules/eslint-plugin-import/lib/core/importType.js +129 -0
- data/node_modules/eslint-plugin-import/lib/core/packagePath.js +22 -0
- data/node_modules/eslint-plugin-import/lib/core/staticRequire.js +11 -0
- data/node_modules/eslint-plugin-import/lib/docsUrl.js +8 -0
- data/node_modules/eslint-plugin-import/lib/importDeclaration.js +5 -0
- data/node_modules/eslint-plugin-import/lib/index.js +71 -0
- data/node_modules/eslint-plugin-import/lib/rules/consistent-type-specifier-style.js +221 -0
- data/node_modules/eslint-plugin-import/lib/rules/default.js +40 -0
- data/node_modules/eslint-plugin-import/lib/rules/dynamic-import-chunkname.js +120 -0
- data/node_modules/eslint-plugin-import/lib/rules/export.js +250 -0
- data/node_modules/eslint-plugin-import/lib/rules/exports-last.js +40 -0
- data/node_modules/eslint-plugin-import/lib/rules/extensions.js +193 -0
- data/node_modules/eslint-plugin-import/lib/rules/first.js +144 -0
- data/node_modules/eslint-plugin-import/lib/rules/group-exports.js +155 -0
- data/node_modules/eslint-plugin-import/lib/rules/imports-first.js +16 -0
- data/node_modules/eslint-plugin-import/lib/rules/max-dependencies.js +60 -0
- data/node_modules/eslint-plugin-import/lib/rules/named.js +143 -0
- data/node_modules/eslint-plugin-import/lib/rules/namespace.js +218 -0
- data/node_modules/eslint-plugin-import/lib/rules/newline-after-import.js +228 -0
- data/node_modules/eslint-plugin-import/lib/rules/no-absolute-path.js +40 -0
- data/node_modules/eslint-plugin-import/lib/rules/no-amd.js +47 -0
- data/node_modules/eslint-plugin-import/lib/rules/no-anonymous-default-export.js +103 -0
- data/node_modules/eslint-plugin-import/lib/rules/no-commonjs.js +141 -0
- data/node_modules/eslint-plugin-import/lib/rules/no-cycle.js +158 -0
- data/node_modules/eslint-plugin-import/lib/rules/no-default-export.js +43 -0
- data/node_modules/eslint-plugin-import/lib/rules/no-deprecated.js +138 -0
- data/node_modules/eslint-plugin-import/lib/rules/no-duplicates.js +354 -0
- data/node_modules/eslint-plugin-import/lib/rules/no-dynamic-require.js +77 -0
- data/node_modules/eslint-plugin-import/lib/rules/no-empty-named-blocks.js +105 -0
- data/node_modules/eslint-plugin-import/lib/rules/no-extraneous-dependencies.js +300 -0
- data/node_modules/eslint-plugin-import/lib/rules/no-import-module-exports.js +85 -0
- data/node_modules/eslint-plugin-import/lib/rules/no-internal-modules.js +144 -0
- data/node_modules/eslint-plugin-import/lib/rules/no-mutable-exports.js +59 -0
- data/node_modules/eslint-plugin-import/lib/rules/no-named-as-default-member.js +96 -0
- data/node_modules/eslint-plugin-import/lib/rules/no-named-as-default.js +45 -0
- data/node_modules/eslint-plugin-import/lib/rules/no-named-default.js +31 -0
- data/node_modules/eslint-plugin-import/lib/rules/no-named-export.js +39 -0
- data/node_modules/eslint-plugin-import/lib/rules/no-namespace.js +175 -0
- data/node_modules/eslint-plugin-import/lib/rules/no-nodejs-modules.js +44 -0
- data/node_modules/eslint-plugin-import/lib/rules/no-relative-packages.js +71 -0
- data/node_modules/eslint-plugin-import/lib/rules/no-relative-parent-imports.js +48 -0
- data/node_modules/eslint-plugin-import/lib/rules/no-restricted-paths.js +245 -0
- data/node_modules/eslint-plugin-import/lib/rules/no-self-import.js +39 -0
- data/node_modules/eslint-plugin-import/lib/rules/no-unassigned-import.js +79 -0
- data/node_modules/eslint-plugin-import/lib/rules/no-unresolved.js +60 -0
- data/node_modules/eslint-plugin-import/lib/rules/no-unused-modules.js +940 -0
- data/node_modules/eslint-plugin-import/lib/rules/no-useless-path-segments.js +147 -0
- data/node_modules/eslint-plugin-import/lib/rules/no-webpack-loader-syntax.js +26 -0
- data/node_modules/eslint-plugin-import/lib/rules/order.js +785 -0
- data/node_modules/eslint-plugin-import/lib/rules/prefer-default-export.js +116 -0
- data/node_modules/eslint-plugin-import/lib/rules/unambiguous.js +38 -0
- data/node_modules/eslint-plugin-import/memo-parser/LICENSE +22 -0
- data/node_modules/eslint-plugin-import/memo-parser/README.md +21 -0
- data/node_modules/eslint-plugin-import/memo-parser/index.js +41 -0
- data/node_modules/eslint-plugin-import/node_modules/debug/CHANGELOG.md +395 -0
- data/node_modules/eslint-plugin-import/node_modules/debug/LICENSE +19 -0
- data/node_modules/eslint-plugin-import/node_modules/debug/README.md +437 -0
- data/node_modules/eslint-plugin-import/node_modules/debug/node.js +1 -0
- data/node_modules/eslint-plugin-import/node_modules/debug/node_modules/ms/index.js +162 -0
- data/node_modules/eslint-plugin-import/node_modules/debug/node_modules/ms/license.md +21 -0
- data/node_modules/eslint-plugin-import/node_modules/debug/node_modules/ms/package.json +38 -0
- data/node_modules/eslint-plugin-import/node_modules/debug/node_modules/ms/readme.md +59 -0
- data/node_modules/eslint-plugin-import/node_modules/debug/package.json +51 -0
- data/node_modules/eslint-plugin-import/node_modules/debug/src/browser.js +180 -0
- data/node_modules/eslint-plugin-import/node_modules/debug/src/common.js +249 -0
- data/node_modules/eslint-plugin-import/node_modules/debug/src/index.js +12 -0
- data/node_modules/eslint-plugin-import/node_modules/debug/src/node.js +177 -0
- data/node_modules/eslint-plugin-import/node_modules/doctrine/CHANGELOG.md +94 -0
- data/node_modules/eslint-plugin-import/node_modules/doctrine/LICENSE +177 -0
- data/node_modules/eslint-plugin-import/node_modules/doctrine/LICENSE.closure-compiler +202 -0
- data/node_modules/eslint-plugin-import/node_modules/doctrine/LICENSE.esprima +19 -0
- data/node_modules/eslint-plugin-import/node_modules/doctrine/README.md +165 -0
- data/node_modules/eslint-plugin-import/node_modules/doctrine/lib/doctrine.js +899 -0
- data/node_modules/eslint-plugin-import/node_modules/doctrine/lib/typed.js +1305 -0
- data/node_modules/eslint-plugin-import/node_modules/doctrine/lib/utility.js +35 -0
- data/node_modules/eslint-plugin-import/node_modules/doctrine/package.json +57 -0
- data/node_modules/eslint-plugin-import/package.json +124 -0
- data/node_modules/eslint-plugin-jsonc/LICENSE +21 -0
- data/node_modules/eslint-plugin-jsonc/README.md +279 -0
- data/node_modules/eslint-plugin-jsonc/conf/eslint-all.js +11 -0
- data/node_modules/eslint-plugin-jsonc/conf/eslint-recommended.js +13 -0
- data/node_modules/eslint-plugin-jsonc/conf/rules.js +10 -0
- data/node_modules/eslint-plugin-jsonc/dist/configs/all.js +18 -0
- data/node_modules/eslint-plugin-jsonc/dist/configs/auto-config.js +13 -0
- data/node_modules/eslint-plugin-jsonc/dist/configs/base.js +15 -0
- data/node_modules/eslint-plugin-jsonc/dist/configs/prettier.js +26 -0
- data/node_modules/eslint-plugin-jsonc/dist/configs/recommended-with-json.js +41 -0
- data/node_modules/eslint-plugin-jsonc/dist/configs/recommended-with-json5.js +30 -0
- data/node_modules/eslint-plugin-jsonc/dist/configs/recommended-with-jsonc.js +39 -0
- data/node_modules/eslint-plugin-jsonc/dist/index.js +68 -0
- data/node_modules/eslint-plugin-jsonc/dist/meta.js +5 -0
- data/node_modules/eslint-plugin-jsonc/dist/rules/array-bracket-newline.js +23 -0
- data/node_modules/eslint-plugin-jsonc/dist/rules/array-bracket-spacing.js +23 -0
- data/node_modules/eslint-plugin-jsonc/dist/rules/array-element-newline.js +23 -0
- data/node_modules/eslint-plugin-jsonc/dist/rules/auto.js +66 -0
- data/node_modules/eslint-plugin-jsonc/dist/rules/comma-dangle.js +27 -0
- data/node_modules/eslint-plugin-jsonc/dist/rules/comma-style.js +23 -0
- data/node_modules/eslint-plugin-jsonc/dist/rules/indent.js +23 -0
- data/node_modules/eslint-plugin-jsonc/dist/rules/key-name-casing.js +94 -0
- data/node_modules/eslint-plugin-jsonc/dist/rules/key-spacing.js +23 -0
- data/node_modules/eslint-plugin-jsonc/dist/rules/no-bigint-literals.js +33 -0
- data/node_modules/eslint-plugin-jsonc/dist/rules/no-binary-expression.js +38 -0
- data/node_modules/eslint-plugin-jsonc/dist/rules/no-binary-numeric-literals.js +39 -0
- data/node_modules/eslint-plugin-jsonc/dist/rules/no-comments.js +34 -0
- data/node_modules/eslint-plugin-jsonc/dist/rules/no-dupe-keys.js +23 -0
- data/node_modules/eslint-plugin-jsonc/dist/rules/no-escape-sequence-in-identifier.js +57 -0
- data/node_modules/eslint-plugin-jsonc/dist/rules/no-floating-decimal.js +23 -0
- data/node_modules/eslint-plugin-jsonc/dist/rules/no-hexadecimal-numeric-literals.js +39 -0
- data/node_modules/eslint-plugin-jsonc/dist/rules/no-infinity.js +37 -0
- data/node_modules/eslint-plugin-jsonc/dist/rules/no-irregular-whitespace.js +23 -0
- data/node_modules/eslint-plugin-jsonc/dist/rules/no-multi-str.js +23 -0
- data/node_modules/eslint-plugin-jsonc/dist/rules/no-nan.js +37 -0
- data/node_modules/eslint-plugin-jsonc/dist/rules/no-number-props.js +41 -0
- data/node_modules/eslint-plugin-jsonc/dist/rules/no-numeric-separators.js +42 -0
- data/node_modules/eslint-plugin-jsonc/dist/rules/no-octal-escape.js +23 -0
- data/node_modules/eslint-plugin-jsonc/dist/rules/no-octal-numeric-literals.js +39 -0
- data/node_modules/eslint-plugin-jsonc/dist/rules/no-octal.js +23 -0
- data/node_modules/eslint-plugin-jsonc/dist/rules/no-parenthesized.js +70 -0
- data/node_modules/eslint-plugin-jsonc/dist/rules/no-plus-sign.js +39 -0
- data/node_modules/eslint-plugin-jsonc/dist/rules/no-regexp-literals.js +33 -0
- data/node_modules/eslint-plugin-jsonc/dist/rules/no-sparse-arrays.js +23 -0
- data/node_modules/eslint-plugin-jsonc/dist/rules/no-template-literals.js +36 -0
- data/node_modules/eslint-plugin-jsonc/dist/rules/no-undefined-value.js +35 -0
- data/node_modules/eslint-plugin-jsonc/dist/rules/no-unicode-codepoint-escapes.js +73 -0
- data/node_modules/eslint-plugin-jsonc/dist/rules/no-useless-escape.js +23 -0
- data/node_modules/eslint-plugin-jsonc/dist/rules/object-curly-newline.js +23 -0
- data/node_modules/eslint-plugin-jsonc/dist/rules/object-curly-spacing.js +23 -0
- data/node_modules/eslint-plugin-jsonc/dist/rules/object-property-newline.js +23 -0
- data/node_modules/eslint-plugin-jsonc/dist/rules/quote-props.js +27 -0
- data/node_modules/eslint-plugin-jsonc/dist/rules/quotes.js +27 -0
- data/node_modules/eslint-plugin-jsonc/dist/rules/sort-array-values.js +371 -0
- data/node_modules/eslint-plugin-jsonc/dist/rules/sort-keys.js +413 -0
- data/node_modules/eslint-plugin-jsonc/dist/rules/space-unary-ops.js +23 -0
- data/node_modules/eslint-plugin-jsonc/dist/rules/valid-json-number.js +138 -0
- data/node_modules/eslint-plugin-jsonc/dist/rules/vue-custom-block/no-parsing-error.js +86 -0
- data/node_modules/eslint-plugin-jsonc/dist/types.js +2 -0
- data/node_modules/eslint-plugin-jsonc/dist/utils/casing.js +134 -0
- data/node_modules/eslint-plugin-jsonc/dist/utils/get-auto-jsonc-rules-config.js +97 -0
- data/node_modules/eslint-plugin-jsonc/dist/utils/index.js +121 -0
- data/node_modules/eslint-plugin-jsonc/dist/utils/rules.js +96 -0
- data/node_modules/eslint-plugin-jsonc/index.d.ts +364 -0
- data/node_modules/eslint-plugin-jsonc/package.json +123 -0
- data/node_modules/eslint-scope/LICENSE +22 -0
- data/node_modules/eslint-scope/README.md +70 -0
- data/node_modules/eslint-scope/dist/eslint-scope.cjs +2240 -0
- data/node_modules/eslint-scope/lib/definition.js +85 -0
- data/node_modules/eslint-scope/lib/index.js +172 -0
- data/node_modules/eslint-scope/lib/pattern-visitor.js +153 -0
- data/node_modules/eslint-scope/lib/reference.js +166 -0
- data/node_modules/eslint-scope/lib/referencer.js +654 -0
- data/node_modules/eslint-scope/lib/scope-manager.js +255 -0
- data/node_modules/eslint-scope/lib/scope.js +772 -0
- data/node_modules/eslint-scope/lib/variable.js +87 -0
- data/node_modules/eslint-scope/lib/version.js +3 -0
- data/node_modules/eslint-scope/package.json +63 -0
- data/node_modules/eslint-visitor-keys/LICENSE +201 -0
- data/node_modules/eslint-visitor-keys/README.md +105 -0
- data/node_modules/eslint-visitor-keys/dist/eslint-visitor-keys.cjs +384 -0
- data/node_modules/eslint-visitor-keys/dist/eslint-visitor-keys.d.cts +27 -0
- data/node_modules/eslint-visitor-keys/dist/index.d.ts +16 -0
- data/node_modules/eslint-visitor-keys/dist/visitor-keys.d.ts +12 -0
- data/node_modules/eslint-visitor-keys/lib/index.js +65 -0
- data/node_modules/eslint-visitor-keys/lib/visitor-keys.js +315 -0
- data/node_modules/eslint-visitor-keys/package.json +74 -0
- data/node_modules/espree/LICENSE +25 -0
- data/node_modules/espree/README.md +244 -0
- data/node_modules/espree/dist/espree.cjs +883 -0
- data/node_modules/espree/espree.js +177 -0
- data/node_modules/espree/lib/espree.js +349 -0
- data/node_modules/espree/lib/features.js +27 -0
- data/node_modules/espree/lib/options.js +123 -0
- data/node_modules/espree/lib/token-translator.js +263 -0
- data/node_modules/espree/lib/version.js +3 -0
- data/node_modules/espree/package.json +88 -0
- data/node_modules/esquery/README.md +27 -0
- data/node_modules/esquery/dist/esquery.esm.js +4020 -0
- data/node_modules/esquery/dist/esquery.esm.min.js +2 -0
- data/node_modules/esquery/dist/esquery.esm.min.js.map +1 -0
- data/node_modules/esquery/dist/esquery.js +4028 -0
- data/node_modules/esquery/dist/esquery.lite.js +3318 -0
- data/node_modules/esquery/dist/esquery.lite.min.js +2 -0
- data/node_modules/esquery/dist/esquery.lite.min.js.map +1 -0
- data/node_modules/esquery/dist/esquery.min.js +2 -0
- data/node_modules/esquery/dist/esquery.min.js.map +1 -0
- data/node_modules/esquery/license.txt +24 -0
- data/node_modules/esquery/package.json +78 -0
- data/node_modules/esquery/parser.js +2550 -0
- data/node_modules/esrecurse/README.md +171 -0
- data/node_modules/esrecurse/esrecurse.js +117 -0
- data/node_modules/esrecurse/gulpfile.babel.js +92 -0
- data/node_modules/esrecurse/package.json +52 -0
- data/node_modules/estraverse/LICENSE.BSD +19 -0
- data/node_modules/estraverse/README.md +153 -0
- data/node_modules/estraverse/estraverse.js +805 -0
- data/node_modules/estraverse/gulpfile.js +70 -0
- data/node_modules/estraverse/package.json +40 -0
- data/node_modules/esutils/LICENSE.BSD +19 -0
- data/node_modules/esutils/README.md +174 -0
- data/node_modules/esutils/lib/ast.js +144 -0
- data/node_modules/esutils/lib/code.js +135 -0
- data/node_modules/esutils/lib/keyword.js +165 -0
- data/node_modules/esutils/lib/utils.js +33 -0
- data/node_modules/esutils/package.json +44 -0
- data/node_modules/fast-deep-equal/LICENSE +21 -0
- data/node_modules/fast-deep-equal/README.md +96 -0
- data/node_modules/fast-deep-equal/es6/index.d.ts +2 -0
- data/node_modules/fast-deep-equal/es6/index.js +72 -0
- data/node_modules/fast-deep-equal/es6/react.d.ts +2 -0
- data/node_modules/fast-deep-equal/es6/react.js +79 -0
- data/node_modules/fast-deep-equal/index.d.ts +4 -0
- data/node_modules/fast-deep-equal/index.js +46 -0
- data/node_modules/fast-deep-equal/package.json +61 -0
- data/node_modules/fast-deep-equal/react.d.ts +2 -0
- data/node_modules/fast-deep-equal/react.js +53 -0
- data/node_modules/fast-json-stable-stringify/LICENSE +21 -0
- data/node_modules/fast-json-stable-stringify/README.md +131 -0
- data/node_modules/fast-json-stable-stringify/benchmark/index.js +31 -0
- data/node_modules/fast-json-stable-stringify/benchmark/test.json +137 -0
- data/node_modules/fast-json-stable-stringify/example/key_cmp.js +7 -0
- data/node_modules/fast-json-stable-stringify/example/nested.js +3 -0
- data/node_modules/fast-json-stable-stringify/example/str.js +3 -0
- data/node_modules/fast-json-stable-stringify/example/value_cmp.js +7 -0
- data/node_modules/fast-json-stable-stringify/index.d.ts +4 -0
- data/node_modules/fast-json-stable-stringify/index.js +59 -0
- data/node_modules/fast-json-stable-stringify/package.json +52 -0
- data/node_modules/fast-json-stable-stringify/test/cmp.js +13 -0
- data/node_modules/fast-json-stable-stringify/test/nested.js +44 -0
- data/node_modules/fast-json-stable-stringify/test/str.js +46 -0
- data/node_modules/fast-json-stable-stringify/test/to-json.js +22 -0
- data/node_modules/fast-levenshtein/LICENSE.md +25 -0
- data/node_modules/fast-levenshtein/README.md +104 -0
- data/node_modules/fast-levenshtein/levenshtein.js +136 -0
- data/node_modules/fast-levenshtein/package.json +39 -0
- data/node_modules/fastq/LICENSE +13 -0
- data/node_modules/fastq/README.md +309 -0
- data/node_modules/fastq/bench.js +66 -0
- data/node_modules/fastq/example.js +14 -0
- data/node_modules/fastq/example.mjs +11 -0
- data/node_modules/fastq/index.d.ts +37 -0
- data/node_modules/fastq/package.json +52 -0
- data/node_modules/fastq/queue.js +289 -0
- data/node_modules/fastq/test/example.ts +81 -0
- data/node_modules/fastq/test/promise.js +248 -0
- data/node_modules/fastq/test/test.js +566 -0
- data/node_modules/fastq/test/tsconfig.json +11 -0
- data/node_modules/file-entry-cache/LICENSE +22 -0
- data/node_modules/file-entry-cache/README.md +112 -0
- data/node_modules/file-entry-cache/cache.js +291 -0
- data/node_modules/file-entry-cache/changelog.md +163 -0
- data/node_modules/file-entry-cache/package.json +80 -0
- data/node_modules/find-up/index.d.ts +138 -0
- data/node_modules/find-up/index.js +89 -0
- data/node_modules/find-up/license +9 -0
- data/node_modules/find-up/package.json +54 -0
- data/node_modules/find-up/readme.md +151 -0
- data/node_modules/flat-cache/LICENSE +22 -0
- data/node_modules/flat-cache/README.md +75 -0
- data/node_modules/flat-cache/changelog.md +328 -0
- data/node_modules/flat-cache/package.json +86 -0
- data/node_modules/flat-cache/src/cache.js +218 -0
- data/node_modules/flat-cache/src/del.js +13 -0
- data/node_modules/flat-cache/src/utils.js +44 -0
- data/node_modules/flatted/LICENSE +15 -0
- data/node_modules/flatted/README.md +115 -0
- data/node_modules/flatted/cjs/index.js +99 -0
- data/node_modules/flatted/cjs/package.json +1 -0
- data/node_modules/flatted/es.js +2 -0
- data/node_modules/flatted/esm/index.js +94 -0
- data/node_modules/flatted/esm.js +2 -0
- data/node_modules/flatted/index.js +135 -0
- data/node_modules/flatted/min.js +2 -0
- data/node_modules/flatted/package.json +64 -0
- data/node_modules/flatted/php/flatted.php +156 -0
- data/node_modules/flatted/python/__pycache__/flatted.cpython-311.pyc +0 -0
- data/node_modules/flatted/python/flatted.py +149 -0
- data/node_modules/flatted/python/test.py +63 -0
- data/node_modules/flatted/types.d.ts +62 -0
- data/node_modules/for-each/LICENSE +22 -0
- data/node_modules/for-each/README.md +43 -0
- data/node_modules/for-each/index.js +62 -0
- data/node_modules/for-each/package.json +65 -0
- data/node_modules/for-each/test/test.js +182 -0
- data/node_modules/fs.realpath/LICENSE +43 -0
- data/node_modules/fs.realpath/README.md +33 -0
- data/node_modules/fs.realpath/index.js +66 -0
- data/node_modules/fs.realpath/old.js +303 -0
- data/node_modules/fs.realpath/package.json +26 -0
- data/node_modules/function-bind/LICENSE +20 -0
- data/node_modules/function-bind/README.md +48 -0
- data/node_modules/function-bind/implementation.js +52 -0
- data/node_modules/function-bind/index.js +5 -0
- data/node_modules/function-bind/package.json +63 -0
- data/node_modules/function-bind/test/index.js +252 -0
- data/node_modules/function.prototype.name/CHANGELOG.md +123 -0
- data/node_modules/function.prototype.name/LICENSE +21 -0
- data/node_modules/function.prototype.name/README.md +55 -0
- data/node_modules/function.prototype.name/auto.js +3 -0
- data/node_modules/function.prototype.name/helpers/functionsHaveNames.js +5 -0
- data/node_modules/function.prototype.name/implementation.js +72 -0
- data/node_modules/function.prototype.name/index.js +18 -0
- data/node_modules/function.prototype.name/package.json +99 -0
- data/node_modules/function.prototype.name/polyfill.js +7 -0
- data/node_modules/function.prototype.name/shim.js +35 -0
- data/node_modules/function.prototype.name/test/implementation.js +20 -0
- data/node_modules/function.prototype.name/test/index.js +23 -0
- data/node_modules/function.prototype.name/test/shimmed.js +21 -0
- data/node_modules/function.prototype.name/test/tests.js +104 -0
- data/node_modules/function.prototype.name/test/uglified.js +17 -0
- data/node_modules/functions-have-names/CHANGELOG.md +89 -0
- data/node_modules/functions-have-names/LICENSE +21 -0
- data/node_modules/functions-have-names/README.md +40 -0
- data/node_modules/functions-have-names/index.js +31 -0
- data/node_modules/functions-have-names/package.json +55 -0
- data/node_modules/functions-have-names/test/index.js +65 -0
- data/node_modules/get-intrinsic/CHANGELOG.md +117 -0
- data/node_modules/get-intrinsic/LICENSE +21 -0
- data/node_modules/get-intrinsic/README.md +71 -0
- data/node_modules/get-intrinsic/index.js +351 -0
- data/node_modules/get-intrinsic/package.json +93 -0
- data/node_modules/get-intrinsic/test/GetIntrinsic.js +274 -0
- data/node_modules/get-symbol-description/CHANGELOG.md +16 -0
- data/node_modules/get-symbol-description/LICENSE +21 -0
- data/node_modules/get-symbol-description/README.md +43 -0
- data/node_modules/get-symbol-description/getInferredName.js +10 -0
- data/node_modules/get-symbol-description/index.js +43 -0
- data/node_modules/get-symbol-description/package.json +71 -0
- data/node_modules/get-symbol-description/test/index.js +67 -0
- data/node_modules/glob/LICENSE +21 -0
- data/node_modules/glob/README.md +378 -0
- data/node_modules/glob/common.js +238 -0
- data/node_modules/glob/glob.js +790 -0
- data/node_modules/glob/package.json +55 -0
- data/node_modules/glob/sync.js +486 -0
- data/node_modules/glob-parent/LICENSE +15 -0
- data/node_modules/glob-parent/README.md +134 -0
- data/node_modules/glob-parent/index.js +75 -0
- data/node_modules/glob-parent/package.json +54 -0
- data/node_modules/globals/globals.json +1973 -0
- data/node_modules/globals/index.d.ts +6 -0
- data/node_modules/globals/index.js +2 -0
- data/node_modules/globals/license +9 -0
- data/node_modules/globals/package.json +55 -0
- data/node_modules/globals/readme.md +56 -0
- data/node_modules/globalthis/CHANGELOG.md +96 -0
- data/node_modules/globalthis/LICENSE +21 -0
- data/node_modules/globalthis/README.md +70 -0
- data/node_modules/globalthis/auto.js +3 -0
- data/node_modules/globalthis/implementation.browser.js +11 -0
- data/node_modules/globalthis/implementation.js +3 -0
- data/node_modules/globalthis/index.js +19 -0
- data/node_modules/globalthis/package.json +97 -0
- data/node_modules/globalthis/polyfill.js +10 -0
- data/node_modules/globalthis/shim.js +22 -0
- data/node_modules/globalthis/test/implementation.js +11 -0
- data/node_modules/globalthis/test/index.js +11 -0
- data/node_modules/globalthis/test/native.js +26 -0
- data/node_modules/globalthis/test/shimmed.js +29 -0
- data/node_modules/globalthis/test/tests.js +36 -0
- data/node_modules/gopd/CHANGELOG.md +25 -0
- data/node_modules/gopd/LICENSE +21 -0
- data/node_modules/gopd/README.md +40 -0
- data/node_modules/gopd/index.js +16 -0
- data/node_modules/gopd/package.json +71 -0
- data/node_modules/gopd/test/index.js +35 -0
- data/node_modules/graphemer/CHANGELOG.md +30 -0
- data/node_modules/graphemer/LICENSE +18 -0
- data/node_modules/graphemer/README.md +132 -0
- data/node_modules/graphemer/lib/Graphemer.d.ts +41 -0
- data/node_modules/graphemer/lib/Graphemer.d.ts.map +1 -0
- data/node_modules/graphemer/lib/Graphemer.js +11959 -0
- data/node_modules/graphemer/lib/GraphemerHelper.d.ts +32 -0
- data/node_modules/graphemer/lib/GraphemerHelper.d.ts.map +1 -0
- data/node_modules/graphemer/lib/GraphemerHelper.js +169 -0
- data/node_modules/graphemer/lib/GraphemerIterator.d.ts +22 -0
- data/node_modules/graphemer/lib/GraphemerIterator.d.ts.map +1 -0
- data/node_modules/graphemer/lib/GraphemerIterator.js +36 -0
- data/node_modules/graphemer/lib/boundaries.d.ts +35 -0
- data/node_modules/graphemer/lib/boundaries.d.ts.map +1 -0
- data/node_modules/graphemer/lib/boundaries.js +38 -0
- data/node_modules/graphemer/lib/index.d.ts +3 -0
- data/node_modules/graphemer/lib/index.d.ts.map +1 -0
- data/node_modules/graphemer/lib/index.js +7 -0
- data/node_modules/graphemer/package.json +54 -0
- data/node_modules/has/LICENSE-MIT +22 -0
- data/node_modules/has/README.md +18 -0
- data/node_modules/has/package.json +48 -0
- data/node_modules/has/src/index.js +5 -0
- data/node_modules/has/test/index.js +10 -0
- data/node_modules/has-bigints/CHANGELOG.md +60 -0
- data/node_modules/has-bigints/LICENSE +21 -0
- data/node_modules/has-bigints/README.md +39 -0
- data/node_modules/has-bigints/index.js +10 -0
- data/node_modules/has-bigints/package.json +54 -0
- data/node_modules/has-bigints/test/index.js +44 -0
- data/node_modules/has-flag/index.d.ts +39 -0
- data/node_modules/has-flag/index.js +8 -0
- data/node_modules/has-flag/license +9 -0
- data/node_modules/has-flag/package.json +46 -0
- data/node_modules/has-flag/readme.md +89 -0
- data/node_modules/has-property-descriptors/CHANGELOG.md +16 -0
- data/node_modules/has-property-descriptors/LICENSE +21 -0
- data/node_modules/has-property-descriptors/README.md +43 -0
- data/node_modules/has-property-descriptors/index.js +33 -0
- data/node_modules/has-property-descriptors/package.json +70 -0
- data/node_modules/has-property-descriptors/test/index.js +57 -0
- data/node_modules/has-proto/CHANGELOG.md +23 -0
- data/node_modules/has-proto/LICENSE +21 -0
- data/node_modules/has-proto/README.md +38 -0
- data/node_modules/has-proto/index.js +11 -0
- data/node_modules/has-proto/package.json +74 -0
- data/node_modules/has-proto/test/index.js +19 -0
- data/node_modules/has-symbols/CHANGELOG.md +75 -0
- data/node_modules/has-symbols/LICENSE +21 -0
- data/node_modules/has-symbols/README.md +46 -0
- data/node_modules/has-symbols/index.js +13 -0
- data/node_modules/has-symbols/package.json +101 -0
- data/node_modules/has-symbols/shams.js +42 -0
- data/node_modules/has-symbols/test/index.js +22 -0
- data/node_modules/has-symbols/test/shams/core-js.js +28 -0
- data/node_modules/has-symbols/test/shams/get-own-property-symbols.js +28 -0
- data/node_modules/has-symbols/test/tests.js +56 -0
- data/node_modules/has-tostringtag/CHANGELOG.md +20 -0
- data/node_modules/has-tostringtag/LICENSE +21 -0
- data/node_modules/has-tostringtag/README.md +46 -0
- data/node_modules/has-tostringtag/index.js +7 -0
- data/node_modules/has-tostringtag/package.json +84 -0
- data/node_modules/has-tostringtag/shams.js +7 -0
- data/node_modules/has-tostringtag/test/index.js +21 -0
- data/node_modules/has-tostringtag/test/shams/core-js.js +28 -0
- data/node_modules/has-tostringtag/test/shams/get-own-property-symbols.js +28 -0
- data/node_modules/has-tostringtag/test/tests.js +14 -0
- data/node_modules/ignore/LICENSE-MIT +21 -0
- data/node_modules/ignore/README.md +412 -0
- data/node_modules/ignore/index.d.ts +61 -0
- data/node_modules/ignore/index.js +618 -0
- data/node_modules/ignore/legacy.js +539 -0
- data/node_modules/ignore/package.json +73 -0
- data/node_modules/import-fresh/index.d.ts +30 -0
- data/node_modules/import-fresh/index.js +33 -0
- data/node_modules/import-fresh/license +9 -0
- data/node_modules/import-fresh/package.json +43 -0
- data/node_modules/import-fresh/readme.md +48 -0
- data/node_modules/imurmurhash/README.md +122 -0
- data/node_modules/imurmurhash/imurmurhash.js +138 -0
- data/node_modules/imurmurhash/imurmurhash.min.js +12 -0
- data/node_modules/imurmurhash/package.json +40 -0
- data/node_modules/inflight/LICENSE +15 -0
- data/node_modules/inflight/README.md +37 -0
- data/node_modules/inflight/inflight.js +54 -0
- data/node_modules/inflight/package.json +29 -0
- data/node_modules/inherits/LICENSE +16 -0
- data/node_modules/inherits/README.md +42 -0
- data/node_modules/inherits/inherits.js +9 -0
- data/node_modules/inherits/inherits_browser.js +27 -0
- data/node_modules/inherits/package.json +29 -0
- data/node_modules/internal-slot/CHANGELOG.md +87 -0
- data/node_modules/internal-slot/LICENSE +21 -0
- data/node_modules/internal-slot/README.md +58 -0
- data/node_modules/internal-slot/index.js +62 -0
- data/node_modules/internal-slot/package.json +71 -0
- data/node_modules/internal-slot/test/index.js +121 -0
- data/node_modules/is-array-buffer/CHANGELOG.md +58 -0
- data/node_modules/is-array-buffer/LICENSE +21 -0
- data/node_modules/is-array-buffer/README.md +56 -0
- data/node_modules/is-array-buffer/index.js +43 -0
- data/node_modules/is-array-buffer/package.json +78 -0
- data/node_modules/is-array-buffer/test/index.js +43 -0
- data/node_modules/is-bigint/CHANGELOG.md +71 -0
- data/node_modules/is-bigint/LICENSE +21 -0
- data/node_modules/is-bigint/README.md +44 -0
- data/node_modules/is-bigint/index.js +38 -0
- data/node_modules/is-bigint/package.json +58 -0
- data/node_modules/is-bigint/test/index.js +81 -0
- data/node_modules/is-boolean-object/CHANGELOG.md +107 -0
- data/node_modules/is-boolean-object/LICENSE +22 -0
- data/node_modules/is-boolean-object/README.md +57 -0
- data/node_modules/is-boolean-object/index.js +26 -0
- data/node_modules/is-boolean-object/package.json +87 -0
- data/node_modules/is-boolean-object/test/index.js +48 -0
- data/node_modules/is-callable/CHANGELOG.md +158 -0
- data/node_modules/is-callable/LICENSE +22 -0
- data/node_modules/is-callable/README.md +83 -0
- data/node_modules/is-callable/index.js +101 -0
- data/node_modules/is-callable/package.json +106 -0
- data/node_modules/is-callable/test/index.js +244 -0
- data/node_modules/is-core-module/CHANGELOG.md +173 -0
- data/node_modules/is-core-module/LICENSE +20 -0
- data/node_modules/is-core-module/README.md +40 -0
- data/node_modules/is-core-module/core.json +158 -0
- data/node_modules/is-core-module/index.js +69 -0
- data/node_modules/is-core-module/package.json +73 -0
- data/node_modules/is-core-module/test/index.js +133 -0
- data/node_modules/is-date-object/CHANGELOG.md +114 -0
- data/node_modules/is-date-object/LICENSE +22 -0
- data/node_modules/is-date-object/README.md +52 -0
- data/node_modules/is-date-object/index.js +22 -0
- data/node_modules/is-date-object/package.json +79 -0
- data/node_modules/is-date-object/test/index.js +36 -0
- data/node_modules/is-extglob/LICENSE +21 -0
- data/node_modules/is-extglob/README.md +107 -0
- data/node_modules/is-extglob/index.js +20 -0
- data/node_modules/is-extglob/package.json +69 -0
- data/node_modules/is-glob/LICENSE +21 -0
- data/node_modules/is-glob/README.md +206 -0
- data/node_modules/is-glob/index.js +150 -0
- data/node_modules/is-glob/package.json +81 -0
- data/node_modules/is-negative-zero/CHANGELOG.md +136 -0
- data/node_modules/is-negative-zero/LICENSE +20 -0
- data/node_modules/is-negative-zero/README.md +54 -0
- data/node_modules/is-negative-zero/index.js +6 -0
- data/node_modules/is-negative-zero/package.json +79 -0
- data/node_modules/is-negative-zero/test/index.js +28 -0
- data/node_modules/is-number-object/CHANGELOG.md +125 -0
- data/node_modules/is-number-object/LICENSE +22 -0
- data/node_modules/is-number-object/README.md +55 -0
- data/node_modules/is-number-object/index.js +24 -0
- data/node_modules/is-number-object/package.json +85 -0
- data/node_modules/is-number-object/test/index.js +38 -0
- data/node_modules/is-path-inside/index.d.ts +27 -0
- data/node_modules/is-path-inside/index.js +12 -0
- data/node_modules/is-path-inside/license +9 -0
- data/node_modules/is-path-inside/package.json +36 -0
- data/node_modules/is-path-inside/readme.md +63 -0
- data/node_modules/is-regex/CHANGELOG.md +197 -0
- data/node_modules/is-regex/LICENSE +20 -0
- data/node_modules/is-regex/README.md +52 -0
- data/node_modules/is-regex/index.js +58 -0
- data/node_modules/is-regex/package.json +86 -0
- data/node_modules/is-regex/test/index.js +104 -0
- data/node_modules/is-shared-array-buffer/CHANGELOG.md +44 -0
- data/node_modules/is-shared-array-buffer/LICENSE +21 -0
- data/node_modules/is-shared-array-buffer/README.md +58 -0
- data/node_modules/is-shared-array-buffer/index.js +21 -0
- data/node_modules/is-shared-array-buffer/package.json +70 -0
- data/node_modules/is-shared-array-buffer/test/index.js +27 -0
- data/node_modules/is-string/CHANGELOG.md +114 -0
- data/node_modules/is-string/LICENSE +22 -0
- data/node_modules/is-string/README.md +56 -0
- data/node_modules/is-string/index.js +24 -0
- data/node_modules/is-string/package.json +81 -0
- data/node_modules/is-string/test/index.js +39 -0
- data/node_modules/is-symbol/CHANGELOG.md +113 -0
- data/node_modules/is-symbol/LICENSE +22 -0
- data/node_modules/is-symbol/README.md +45 -0
- data/node_modules/is-symbol/index.js +35 -0
- data/node_modules/is-symbol/package.json +77 -0
- data/node_modules/is-symbol/test/index.js +92 -0
- data/node_modules/is-typed-array/CHANGELOG.md +134 -0
- data/node_modules/is-typed-array/LICENSE +22 -0
- data/node_modules/is-typed-array/README.md +70 -0
- data/node_modules/is-typed-array/index.js +7 -0
- data/node_modules/is-typed-array/package.json +116 -0
- data/node_modules/is-typed-array/test/index.js +103 -0
- data/node_modules/is-weakref/CHANGELOG.md +54 -0
- data/node_modules/is-weakref/LICENSE +21 -0
- data/node_modules/is-weakref/README.md +52 -0
- data/node_modules/is-weakref/index.js +21 -0
- data/node_modules/is-weakref/package.json +63 -0
- data/node_modules/is-weakref/test/index.js +26 -0
- data/node_modules/isarray/LICENSE +21 -0
- data/node_modules/isarray/README.md +38 -0
- data/node_modules/isarray/index.js +5 -0
- data/node_modules/isarray/package.json +48 -0
- data/node_modules/isexe/LICENSE +15 -0
- data/node_modules/isexe/README.md +51 -0
- data/node_modules/isexe/index.js +57 -0
- data/node_modules/isexe/mode.js +41 -0
- data/node_modules/isexe/package.json +31 -0
- data/node_modules/isexe/test/basic.js +221 -0
- data/node_modules/isexe/windows.js +42 -0
- data/node_modules/js-yaml/CHANGELOG.md +616 -0
- data/node_modules/js-yaml/LICENSE +21 -0
- data/node_modules/js-yaml/README.md +246 -0
- data/node_modules/js-yaml/bin/js-yaml.js +126 -0
- data/node_modules/js-yaml/dist/js-yaml.js +3874 -0
- data/node_modules/js-yaml/dist/js-yaml.min.js +2 -0
- data/node_modules/js-yaml/dist/js-yaml.mjs +3851 -0
- data/node_modules/js-yaml/index.js +47 -0
- data/node_modules/js-yaml/lib/common.js +59 -0
- data/node_modules/js-yaml/lib/dumper.js +965 -0
- data/node_modules/js-yaml/lib/exception.js +55 -0
- data/node_modules/js-yaml/lib/loader.js +1727 -0
- data/node_modules/js-yaml/lib/schema/core.js +11 -0
- data/node_modules/js-yaml/lib/schema/default.js +22 -0
- data/node_modules/js-yaml/lib/schema/failsafe.js +17 -0
- data/node_modules/js-yaml/lib/schema/json.js +19 -0
- data/node_modules/js-yaml/lib/schema.js +121 -0
- data/node_modules/js-yaml/lib/snippet.js +101 -0
- data/node_modules/js-yaml/lib/type/binary.js +125 -0
- data/node_modules/js-yaml/lib/type/bool.js +35 -0
- data/node_modules/js-yaml/lib/type/float.js +97 -0
- data/node_modules/js-yaml/lib/type/int.js +156 -0
- data/node_modules/js-yaml/lib/type/map.js +8 -0
- data/node_modules/js-yaml/lib/type/merge.js +12 -0
- data/node_modules/js-yaml/lib/type/null.js +35 -0
- data/node_modules/js-yaml/lib/type/omap.js +44 -0
- data/node_modules/js-yaml/lib/type/pairs.js +53 -0
- data/node_modules/js-yaml/lib/type/seq.js +8 -0
- data/node_modules/js-yaml/lib/type/set.js +29 -0
- data/node_modules/js-yaml/lib/type/str.js +8 -0
- data/node_modules/js-yaml/lib/type/timestamp.js +88 -0
- data/node_modules/js-yaml/lib/type.js +66 -0
- data/node_modules/js-yaml/package.json +66 -0
- data/node_modules/json-buffer/LICENSE +22 -0
- data/node_modules/json-buffer/README.md +24 -0
- data/node_modules/json-buffer/index.js +58 -0
- data/node_modules/json-buffer/package.json +34 -0
- data/node_modules/json-buffer/test/index.js +63 -0
- data/node_modules/json-schema-traverse/LICENSE +21 -0
- data/node_modules/json-schema-traverse/README.md +83 -0
- data/node_modules/json-schema-traverse/index.js +89 -0
- data/node_modules/json-schema-traverse/package.json +43 -0
- data/node_modules/json-schema-traverse/spec/fixtures/schema.js +125 -0
- data/node_modules/json-schema-traverse/spec/index.spec.js +171 -0
- data/node_modules/json-stable-stringify-without-jsonify/LICENSE +18 -0
- data/node_modules/json-stable-stringify-without-jsonify/example/key_cmp.js +7 -0
- data/node_modules/json-stable-stringify-without-jsonify/example/nested.js +3 -0
- data/node_modules/json-stable-stringify-without-jsonify/example/str.js +3 -0
- data/node_modules/json-stable-stringify-without-jsonify/example/value_cmp.js +7 -0
- data/node_modules/json-stable-stringify-without-jsonify/index.js +82 -0
- data/node_modules/json-stable-stringify-without-jsonify/package.json +43 -0
- data/node_modules/json-stable-stringify-without-jsonify/readme.markdown +132 -0
- data/node_modules/json-stable-stringify-without-jsonify/test/cmp.js +11 -0
- data/node_modules/json-stable-stringify-without-jsonify/test/nested.js +42 -0
- data/node_modules/json-stable-stringify-without-jsonify/test/replacer.js +74 -0
- data/node_modules/json-stable-stringify-without-jsonify/test/space.js +59 -0
- data/node_modules/json-stable-stringify-without-jsonify/test/str.js +32 -0
- data/node_modules/json-stable-stringify-without-jsonify/test/to-json.js +20 -0
- data/node_modules/json5/LICENSE.md +23 -0
- data/node_modules/json5/README.md +234 -0
- data/node_modules/json5/dist/index.js +1 -0
- data/node_modules/json5/lib/cli.js +2 -0
- data/node_modules/json5/lib/index.js +1 -0
- data/node_modules/json5/lib/parse.js +1 -0
- data/node_modules/json5/lib/register.js +1 -0
- data/node_modules/json5/lib/require.js +1 -0
- data/node_modules/json5/lib/stringify.js +1 -0
- data/node_modules/json5/lib/unicode.js +1 -0
- data/node_modules/json5/lib/util.js +1 -0
- data/node_modules/json5/package.json +76 -0
- data/node_modules/jsonc-eslint-parser/LICENSE +21 -0
- data/node_modules/jsonc-eslint-parser/README.md +96 -0
- data/node_modules/jsonc-eslint-parser/lib/index.d.ts +11 -0
- data/node_modules/jsonc-eslint-parser/lib/index.js +44 -0
- data/node_modules/jsonc-eslint-parser/lib/meta.d.ts +2 -0
- data/node_modules/jsonc-eslint-parser/lib/meta.js +5 -0
- data/node_modules/jsonc-eslint-parser/lib/parser/ast.d.ts +125 -0
- data/node_modules/jsonc-eslint-parser/lib/parser/ast.js +2 -0
- data/node_modules/jsonc-eslint-parser/lib/parser/convert.d.ts +15 -0
- data/node_modules/jsonc-eslint-parser/lib/parser/convert.js +170 -0
- data/node_modules/jsonc-eslint-parser/lib/parser/errors.d.ts +17 -0
- data/node_modules/jsonc-eslint-parser/lib/parser/errors.js +92 -0
- data/node_modules/jsonc-eslint-parser/lib/parser/extend-parser.d.ts +3 -0
- data/node_modules/jsonc-eslint-parser/lib/parser/extend-parser.js +117 -0
- data/node_modules/jsonc-eslint-parser/lib/parser/modules/acorn.d.ts +2 -0
- data/node_modules/jsonc-eslint-parser/lib/parser/modules/acorn.js +74 -0
- data/node_modules/jsonc-eslint-parser/lib/parser/modules/espree.d.ts +8 -0
- data/node_modules/jsonc-eslint-parser/lib/parser/modules/espree.js +59 -0
- data/node_modules/jsonc-eslint-parser/lib/parser/modules/require-utils.d.ts +13 -0
- data/node_modules/jsonc-eslint-parser/lib/parser/modules/require-utils.js +80 -0
- data/node_modules/jsonc-eslint-parser/lib/parser/parser.d.ts +9 -0
- data/node_modules/jsonc-eslint-parser/lib/parser/parser.js +201 -0
- data/node_modules/jsonc-eslint-parser/lib/parser/syntax-context.d.ts +27 -0
- data/node_modules/jsonc-eslint-parser/lib/parser/syntax-context.js +2 -0
- data/node_modules/jsonc-eslint-parser/lib/parser/token-store.d.ts +21 -0
- data/node_modules/jsonc-eslint-parser/lib/parser/token-store.js +48 -0
- data/node_modules/jsonc-eslint-parser/lib/parser/traverse.d.ts +11 -0
- data/node_modules/jsonc-eslint-parser/lib/parser/traverse.js +57 -0
- data/node_modules/jsonc-eslint-parser/lib/parser/utils.d.ts +5 -0
- data/node_modules/jsonc-eslint-parser/lib/parser/utils.js +8 -0
- data/node_modules/jsonc-eslint-parser/lib/parser/validate.d.ts +8 -0
- data/node_modules/jsonc-eslint-parser/lib/parser/validate.js +405 -0
- data/node_modules/jsonc-eslint-parser/lib/parser/visitor-keys.d.ts +2 -0
- data/node_modules/jsonc-eslint-parser/lib/parser/visitor-keys.js +51 -0
- data/node_modules/jsonc-eslint-parser/lib/types.d.ts +11 -0
- data/node_modules/jsonc-eslint-parser/lib/types.js +2 -0
- data/node_modules/jsonc-eslint-parser/lib/utils/ast.d.ts +19 -0
- data/node_modules/jsonc-eslint-parser/lib/utils/ast.js +128 -0
- data/node_modules/jsonc-eslint-parser/node_modules/semver/LICENSE +15 -0
- data/node_modules/jsonc-eslint-parser/node_modules/semver/README.md +637 -0
- data/node_modules/jsonc-eslint-parser/node_modules/semver/bin/semver.js +197 -0
- data/node_modules/jsonc-eslint-parser/node_modules/semver/classes/comparator.js +141 -0
- data/node_modules/jsonc-eslint-parser/node_modules/semver/classes/index.js +5 -0
- data/node_modules/jsonc-eslint-parser/node_modules/semver/classes/range.js +539 -0
- data/node_modules/jsonc-eslint-parser/node_modules/semver/classes/semver.js +302 -0
- data/node_modules/jsonc-eslint-parser/node_modules/semver/functions/clean.js +6 -0
- data/node_modules/jsonc-eslint-parser/node_modules/semver/functions/cmp.js +52 -0
- data/node_modules/jsonc-eslint-parser/node_modules/semver/functions/coerce.js +52 -0
- data/node_modules/jsonc-eslint-parser/node_modules/semver/functions/compare-build.js +7 -0
- data/node_modules/jsonc-eslint-parser/node_modules/semver/functions/compare-loose.js +3 -0
- data/node_modules/jsonc-eslint-parser/node_modules/semver/functions/compare.js +5 -0
- data/node_modules/jsonc-eslint-parser/node_modules/semver/functions/diff.js +65 -0
- data/node_modules/jsonc-eslint-parser/node_modules/semver/functions/eq.js +3 -0
- data/node_modules/jsonc-eslint-parser/node_modules/semver/functions/gt.js +3 -0
- data/node_modules/jsonc-eslint-parser/node_modules/semver/functions/gte.js +3 -0
- data/node_modules/jsonc-eslint-parser/node_modules/semver/functions/inc.js +19 -0
- data/node_modules/jsonc-eslint-parser/node_modules/semver/functions/lt.js +3 -0
- data/node_modules/jsonc-eslint-parser/node_modules/semver/functions/lte.js +3 -0
- data/node_modules/jsonc-eslint-parser/node_modules/semver/functions/major.js +3 -0
- data/node_modules/jsonc-eslint-parser/node_modules/semver/functions/minor.js +3 -0
- data/node_modules/jsonc-eslint-parser/node_modules/semver/functions/neq.js +3 -0
- data/node_modules/jsonc-eslint-parser/node_modules/semver/functions/parse.js +16 -0
- data/node_modules/jsonc-eslint-parser/node_modules/semver/functions/patch.js +3 -0
- data/node_modules/jsonc-eslint-parser/node_modules/semver/functions/prerelease.js +6 -0
- data/node_modules/jsonc-eslint-parser/node_modules/semver/functions/rcompare.js +3 -0
- data/node_modules/jsonc-eslint-parser/node_modules/semver/functions/rsort.js +3 -0
- data/node_modules/jsonc-eslint-parser/node_modules/semver/functions/satisfies.js +10 -0
- data/node_modules/jsonc-eslint-parser/node_modules/semver/functions/sort.js +3 -0
- data/node_modules/jsonc-eslint-parser/node_modules/semver/functions/valid.js +6 -0
- data/node_modules/jsonc-eslint-parser/node_modules/semver/index.js +89 -0
- data/node_modules/jsonc-eslint-parser/node_modules/semver/internal/constants.js +35 -0
- data/node_modules/jsonc-eslint-parser/node_modules/semver/internal/debug.js +9 -0
- data/node_modules/jsonc-eslint-parser/node_modules/semver/internal/identifiers.js +23 -0
- data/node_modules/jsonc-eslint-parser/node_modules/semver/internal/parse-options.js +15 -0
- data/node_modules/jsonc-eslint-parser/node_modules/semver/internal/re.js +212 -0
- data/node_modules/jsonc-eslint-parser/node_modules/semver/package.json +87 -0
- data/node_modules/jsonc-eslint-parser/node_modules/semver/preload.js +2 -0
- data/node_modules/jsonc-eslint-parser/node_modules/semver/range.bnf +16 -0
- data/node_modules/jsonc-eslint-parser/node_modules/semver/ranges/gtr.js +4 -0
- data/node_modules/jsonc-eslint-parser/node_modules/semver/ranges/intersects.js +7 -0
- data/node_modules/jsonc-eslint-parser/node_modules/semver/ranges/ltr.js +4 -0
- data/node_modules/jsonc-eslint-parser/node_modules/semver/ranges/max-satisfying.js +25 -0
- data/node_modules/jsonc-eslint-parser/node_modules/semver/ranges/min-satisfying.js +24 -0
- data/node_modules/jsonc-eslint-parser/node_modules/semver/ranges/min-version.js +61 -0
- data/node_modules/jsonc-eslint-parser/node_modules/semver/ranges/outside.js +80 -0
- data/node_modules/jsonc-eslint-parser/node_modules/semver/ranges/simplify.js +47 -0
- data/node_modules/jsonc-eslint-parser/node_modules/semver/ranges/subset.js +247 -0
- data/node_modules/jsonc-eslint-parser/node_modules/semver/ranges/to-comparators.js +8 -0
- data/node_modules/jsonc-eslint-parser/node_modules/semver/ranges/valid.js +11 -0
- data/node_modules/jsonc-eslint-parser/package.json +92 -0
- data/node_modules/keyv/README.md +429 -0
- data/node_modules/keyv/package.json +57 -0
- data/node_modules/keyv/src/index.d.ts +112 -0
- data/node_modules/keyv/src/index.js +264 -0
- data/node_modules/levn/LICENSE +22 -0
- data/node_modules/levn/README.md +196 -0
- data/node_modules/levn/lib/cast.js +327 -0
- data/node_modules/levn/lib/index.js +22 -0
- data/node_modules/levn/lib/parse-string.js +113 -0
- data/node_modules/levn/package.json +46 -0
- data/node_modules/locate-path/index.d.ts +83 -0
- data/node_modules/locate-path/index.js +68 -0
- data/node_modules/locate-path/license +9 -0
- data/node_modules/locate-path/package.json +46 -0
- data/node_modules/locate-path/readme.md +125 -0
- data/node_modules/lodash.merge/LICENSE +47 -0
- data/node_modules/lodash.merge/README.md +18 -0
- data/node_modules/lodash.merge/index.js +1977 -0
- data/node_modules/lodash.merge/package.json +16 -0
- data/node_modules/lru-cache/LICENSE +15 -0
- data/node_modules/lru-cache/README.md +166 -0
- data/node_modules/lru-cache/index.js +334 -0
- data/node_modules/lru-cache/package.json +34 -0
- data/node_modules/minimatch/LICENSE +15 -0
- data/node_modules/minimatch/README.md +230 -0
- data/node_modules/minimatch/minimatch.js +947 -0
- data/node_modules/minimatch/package.json +33 -0
- data/node_modules/minimist/CHANGELOG.md +298 -0
- data/node_modules/minimist/LICENSE +18 -0
- data/node_modules/minimist/README.md +121 -0
- data/node_modules/minimist/example/parse.js +4 -0
- data/node_modules/minimist/index.js +263 -0
- data/node_modules/minimist/package.json +75 -0
- data/node_modules/minimist/test/all_bool.js +34 -0
- data/node_modules/minimist/test/bool.js +177 -0
- data/node_modules/minimist/test/dash.js +43 -0
- data/node_modules/minimist/test/default_bool.js +37 -0
- data/node_modules/minimist/test/dotted.js +24 -0
- data/node_modules/minimist/test/kv_short.js +32 -0
- data/node_modules/minimist/test/long.js +33 -0
- data/node_modules/minimist/test/num.js +38 -0
- data/node_modules/minimist/test/parse.js +209 -0
- data/node_modules/minimist/test/parse_modified.js +11 -0
- data/node_modules/minimist/test/proto.js +64 -0
- data/node_modules/minimist/test/short.js +69 -0
- data/node_modules/minimist/test/stop_early.js +17 -0
- data/node_modules/minimist/test/unknown.js +104 -0
- data/node_modules/minimist/test/whitespace.js +10 -0
- data/node_modules/ms/index.js +162 -0
- data/node_modules/ms/license.md +21 -0
- data/node_modules/ms/package.json +37 -0
- data/node_modules/ms/readme.md +60 -0
- data/node_modules/natural-compare/README.md +125 -0
- data/node_modules/natural-compare/index.js +57 -0
- data/node_modules/natural-compare/package.json +42 -0
- data/node_modules/object-inspect/CHANGELOG.md +370 -0
- data/node_modules/object-inspect/LICENSE +21 -0
- data/node_modules/object-inspect/example/all.js +23 -0
- data/node_modules/object-inspect/example/circular.js +6 -0
- data/node_modules/object-inspect/example/fn.js +5 -0
- data/node_modules/object-inspect/example/inspect.js +10 -0
- data/node_modules/object-inspect/index.js +516 -0
- data/node_modules/object-inspect/package-support.json +20 -0
- data/node_modules/object-inspect/package.json +97 -0
- data/node_modules/object-inspect/readme.markdown +86 -0
- data/node_modules/object-inspect/test/bigint.js +58 -0
- data/node_modules/object-inspect/test/browser/dom.js +15 -0
- data/node_modules/object-inspect/test/circular.js +16 -0
- data/node_modules/object-inspect/test/deep.js +12 -0
- data/node_modules/object-inspect/test/element.js +53 -0
- data/node_modules/object-inspect/test/err.js +48 -0
- data/node_modules/object-inspect/test/fakes.js +29 -0
- data/node_modules/object-inspect/test/fn.js +76 -0
- data/node_modules/object-inspect/test/has.js +15 -0
- data/node_modules/object-inspect/test/holes.js +15 -0
- data/node_modules/object-inspect/test/indent-option.js +271 -0
- data/node_modules/object-inspect/test/inspect.js +139 -0
- data/node_modules/object-inspect/test/lowbyte.js +12 -0
- data/node_modules/object-inspect/test/number.js +58 -0
- data/node_modules/object-inspect/test/quoteStyle.js +17 -0
- data/node_modules/object-inspect/test/toStringTag.js +40 -0
- data/node_modules/object-inspect/test/undef.js +12 -0
- data/node_modules/object-inspect/test/values.js +211 -0
- data/node_modules/object-inspect/test-core-js.js +26 -0
- data/node_modules/object-inspect/util.inspect.js +1 -0
- data/node_modules/object-keys/CHANGELOG.md +232 -0
- data/node_modules/object-keys/LICENSE +21 -0
- data/node_modules/object-keys/README.md +76 -0
- data/node_modules/object-keys/implementation.js +122 -0
- data/node_modules/object-keys/index.js +32 -0
- data/node_modules/object-keys/isArguments.js +17 -0
- data/node_modules/object-keys/package.json +88 -0
- data/node_modules/object-keys/test/index.js +5 -0
- data/node_modules/object.assign/CHANGELOG.md +225 -0
- data/node_modules/object.assign/LICENSE +21 -0
- data/node_modules/object.assign/README.md +136 -0
- data/node_modules/object.assign/auto.js +3 -0
- data/node_modules/object.assign/dist/browser.js +944 -0
- data/node_modules/object.assign/hasSymbols.js +43 -0
- data/node_modules/object.assign/implementation.js +46 -0
- data/node_modules/object.assign/index.js +22 -0
- data/node_modules/object.assign/package.json +96 -0
- data/node_modules/object.assign/polyfill.js +55 -0
- data/node_modules/object.assign/shim.js +14 -0
- data/node_modules/object.assign/test/implementation.js +19 -0
- data/node_modules/object.assign/test/index.js +17 -0
- data/node_modules/object.assign/test/native.js +49 -0
- data/node_modules/object.assign/test/ses-compat.js +12 -0
- data/node_modules/object.assign/test/shimmed.js +52 -0
- data/node_modules/object.assign/test/tests.js +232 -0
- data/node_modules/object.assign/test.html +18458 -0
- data/node_modules/object.entries/CHANGELOG.md +184 -0
- data/node_modules/object.entries/LICENSE +22 -0
- data/node_modules/object.entries/README.md +58 -0
- data/node_modules/object.entries/auto.js +3 -0
- data/node_modules/object.entries/implementation.js +17 -0
- data/node_modules/object.entries/index.js +18 -0
- data/node_modules/object.entries/package.json +94 -0
- data/node_modules/object.entries/polyfill.js +7 -0
- data/node_modules/object.entries/shim.js +14 -0
- data/node_modules/object.entries/test/implementation.js +20 -0
- data/node_modules/object.entries/test/index.js +17 -0
- data/node_modules/object.entries/test/shimmed.js +35 -0
- data/node_modules/object.entries/test/tests.js +82 -0
- data/node_modules/object.fromentries/CHANGELOG.md +83 -0
- data/node_modules/object.fromentries/LICENSE +21 -0
- data/node_modules/object.fromentries/README.md +50 -0
- data/node_modules/object.fromentries/auto.js +3 -0
- data/node_modules/object.fromentries/implementation.js +18 -0
- data/node_modules/object.fromentries/index.js +18 -0
- data/node_modules/object.fromentries/package.json +90 -0
- data/node_modules/object.fromentries/polyfill.js +7 -0
- data/node_modules/object.fromentries/shim.js +14 -0
- data/node_modules/object.fromentries/test/implementation.js +20 -0
- data/node_modules/object.fromentries/test/index.js +17 -0
- data/node_modules/object.fromentries/test/shimmed.js +44 -0
- data/node_modules/object.fromentries/test/tests.js +17 -0
- data/node_modules/object.groupby/CHANGELOG.md +24 -0
- data/node_modules/object.groupby/LICENSE +21 -0
- data/node_modules/object.groupby/README.md +79 -0
- data/node_modules/object.groupby/aos/AddValueToKeyedGroup.js +26 -0
- data/node_modules/object.groupby/aos/GroupBy.js +77 -0
- data/node_modules/object.groupby/auto.js +3 -0
- data/node_modules/object.groupby/implementation.js +20 -0
- data/node_modules/object.groupby/index.js +19 -0
- data/node_modules/object.groupby/package.json +83 -0
- data/node_modules/object.groupby/polyfill.js +7 -0
- data/node_modules/object.groupby/shim.js +17 -0
- data/node_modules/object.groupby/test/implementation.js +13 -0
- data/node_modules/object.groupby/test/index.js +12 -0
- data/node_modules/object.groupby/test/shimmed.js +35 -0
- data/node_modules/object.groupby/test/tests.js +62 -0
- data/node_modules/object.values/CHANGELOG.md +179 -0
- data/node_modules/object.values/LICENSE +22 -0
- data/node_modules/object.values/README.md +58 -0
- data/node_modules/object.values/auto.js +3 -0
- data/node_modules/object.values/implementation.js +18 -0
- data/node_modules/object.values/index.js +18 -0
- data/node_modules/object.values/package.json +98 -0
- data/node_modules/object.values/polyfill.js +7 -0
- data/node_modules/object.values/shim.js +14 -0
- data/node_modules/object.values/test/implementation.js +20 -0
- data/node_modules/object.values/test/index.js +17 -0
- data/node_modules/object.values/test/shimmed.js +35 -0
- data/node_modules/object.values/test/tests.js +82 -0
- data/node_modules/once/LICENSE +15 -0
- data/node_modules/once/README.md +79 -0
- data/node_modules/once/once.js +42 -0
- data/node_modules/once/package.json +33 -0
- data/node_modules/optionator/CHANGELOG.md +59 -0
- data/node_modules/optionator/LICENSE +22 -0
- data/node_modules/optionator/README.md +238 -0
- data/node_modules/optionator/lib/help.js +260 -0
- data/node_modules/optionator/lib/index.js +465 -0
- data/node_modules/optionator/lib/util.js +54 -0
- data/node_modules/optionator/package.json +43 -0
- data/node_modules/p-limit/index.d.ts +42 -0
- data/node_modules/p-limit/index.js +71 -0
- data/node_modules/p-limit/license +9 -0
- data/node_modules/p-limit/package.json +52 -0
- data/node_modules/p-limit/readme.md +101 -0
- data/node_modules/p-locate/index.d.ts +53 -0
- data/node_modules/p-locate/index.js +50 -0
- data/node_modules/p-locate/license +9 -0
- data/node_modules/p-locate/package.json +54 -0
- data/node_modules/p-locate/readme.md +93 -0
- data/node_modules/parent-module/index.js +37 -0
- data/node_modules/parent-module/license +9 -0
- data/node_modules/parent-module/package.json +46 -0
- data/node_modules/parent-module/readme.md +67 -0
- data/node_modules/path-exists/index.d.ts +28 -0
- data/node_modules/path-exists/index.js +23 -0
- data/node_modules/path-exists/license +9 -0
- data/node_modules/path-exists/package.json +39 -0
- data/node_modules/path-exists/readme.md +52 -0
- data/node_modules/path-is-absolute/index.js +20 -0
- data/node_modules/path-is-absolute/license +21 -0
- data/node_modules/path-is-absolute/package.json +43 -0
- data/node_modules/path-is-absolute/readme.md +59 -0
- data/node_modules/path-key/index.d.ts +40 -0
- data/node_modules/path-key/index.js +16 -0
- data/node_modules/path-key/license +9 -0
- data/node_modules/path-key/package.json +39 -0
- data/node_modules/path-key/readme.md +61 -0
- data/node_modules/path-parse/LICENSE +21 -0
- data/node_modules/path-parse/README.md +42 -0
- data/node_modules/path-parse/index.js +75 -0
- data/node_modules/path-parse/package.json +33 -0
- data/node_modules/prelude-ls/CHANGELOG.md +108 -0
- data/node_modules/prelude-ls/LICENSE +22 -0
- data/node_modules/prelude-ls/README.md +15 -0
- data/node_modules/prelude-ls/lib/Func.js +69 -0
- data/node_modules/prelude-ls/lib/List.js +716 -0
- data/node_modules/prelude-ls/lib/Num.js +130 -0
- data/node_modules/prelude-ls/lib/Obj.js +154 -0
- data/node_modules/prelude-ls/lib/Str.js +92 -0
- data/node_modules/prelude-ls/lib/index.js +178 -0
- data/node_modules/prelude-ls/package.json +46 -0
- data/node_modules/prettier/LICENSE +5195 -0
- data/node_modules/prettier/README.md +109 -0
- data/node_modules/prettier/bin/prettier.cjs +67 -0
- data/node_modules/prettier/doc.d.ts +243 -0
- data/node_modules/prettier/doc.js +1340 -0
- data/node_modules/prettier/doc.mjs +1312 -0
- data/node_modules/prettier/index.cjs +655 -0
- data/node_modules/prettier/index.d.ts +930 -0
- data/node_modules/prettier/index.mjs +21563 -0
- data/node_modules/prettier/internal/cli.mjs +7282 -0
- data/node_modules/prettier/internal/internal.mjs +6555 -0
- data/node_modules/prettier/package.json +195 -0
- data/node_modules/prettier/plugins/acorn.d.ts +6 -0
- data/node_modules/prettier/plugins/acorn.js +13 -0
- data/node_modules/prettier/plugins/acorn.mjs +13 -0
- data/node_modules/prettier/plugins/angular.d.ts +8 -0
- data/node_modules/prettier/plugins/angular.js +2 -0
- data/node_modules/prettier/plugins/angular.mjs +2 -0
- data/node_modules/prettier/plugins/babel.d.ts +17 -0
- data/node_modules/prettier/plugins/babel.js +16 -0
- data/node_modules/prettier/plugins/babel.mjs +16 -0
- data/node_modules/prettier/plugins/estree.d.ts +1 -0
- data/node_modules/prettier/plugins/estree.js +35 -0
- data/node_modules/prettier/plugins/estree.mjs +35 -0
- data/node_modules/prettier/plugins/flow.d.ts +5 -0
- data/node_modules/prettier/plugins/flow.js +21 -0
- data/node_modules/prettier/plugins/flow.mjs +21 -0
- data/node_modules/prettier/plugins/glimmer.d.ts +5 -0
- data/node_modules/prettier/plugins/glimmer.js +30 -0
- data/node_modules/prettier/plugins/glimmer.mjs +30 -0
- data/node_modules/prettier/plugins/graphql.d.ts +5 -0
- data/node_modules/prettier/plugins/graphql.js +29 -0
- data/node_modules/prettier/plugins/graphql.mjs +29 -0
- data/node_modules/prettier/plugins/html.d.ts +8 -0
- data/node_modules/prettier/plugins/html.js +19 -0
- data/node_modules/prettier/plugins/html.mjs +19 -0
- data/node_modules/prettier/plugins/markdown.d.ts +7 -0
- data/node_modules/prettier/plugins/markdown.js +59 -0
- data/node_modules/prettier/plugins/markdown.mjs +59 -0
- data/node_modules/prettier/plugins/meriyah.d.ts +5 -0
- data/node_modules/prettier/plugins/meriyah.js +5 -0
- data/node_modules/prettier/plugins/meriyah.mjs +5 -0
- data/node_modules/prettier/plugins/postcss.d.ts +7 -0
- data/node_modules/prettier/plugins/postcss.js +52 -0
- data/node_modules/prettier/plugins/postcss.mjs +52 -0
- data/node_modules/prettier/plugins/typescript.d.ts +5 -0
- data/node_modules/prettier/plugins/typescript.js +25 -0
- data/node_modules/prettier/plugins/typescript.mjs +25 -0
- data/node_modules/prettier/plugins/yaml.d.ts +5 -0
- data/node_modules/prettier/plugins/yaml.js +161 -0
- data/node_modules/prettier/plugins/yaml.mjs +161 -0
- data/node_modules/prettier/standalone.d.ts +33 -0
- data/node_modules/prettier/standalone.js +37 -0
- data/node_modules/prettier/standalone.mjs +37 -0
- data/node_modules/punycode/LICENSE-MIT.txt +20 -0
- data/node_modules/punycode/README.md +126 -0
- data/node_modules/punycode/package.json +58 -0
- data/node_modules/punycode/punycode.es6.js +444 -0
- data/node_modules/punycode/punycode.js +443 -0
- data/node_modules/queue-microtask/LICENSE +20 -0
- data/node_modules/queue-microtask/README.md +90 -0
- data/node_modules/queue-microtask/index.d.ts +2 -0
- data/node_modules/queue-microtask/index.js +9 -0
- data/node_modules/queue-microtask/package.json +55 -0
- data/node_modules/regexp.prototype.flags/CHANGELOG.md +211 -0
- data/node_modules/regexp.prototype.flags/LICENSE +22 -0
- data/node_modules/regexp.prototype.flags/README.md +54 -0
- data/node_modules/regexp.prototype.flags/auto.js +3 -0
- data/node_modules/regexp.prototype.flags/implementation.js +39 -0
- data/node_modules/regexp.prototype.flags/index.js +18 -0
- data/node_modules/regexp.prototype.flags/package.json +101 -0
- data/node_modules/regexp.prototype.flags/polyfill.js +36 -0
- data/node_modules/regexp.prototype.flags/shim.js +26 -0
- data/node_modules/regexp.prototype.flags/test/implementation.js +20 -0
- data/node_modules/regexp.prototype.flags/test/index.js +17 -0
- data/node_modules/regexp.prototype.flags/test/shimmed.js +48 -0
- data/node_modules/regexp.prototype.flags/test/tests.js +143 -0
- data/node_modules/resolve/LICENSE +21 -0
- data/node_modules/resolve/SECURITY.md +3 -0
- data/node_modules/resolve/async.js +3 -0
- data/node_modules/resolve/bin/resolve +50 -0
- data/node_modules/resolve/example/async.js +5 -0
- data/node_modules/resolve/example/sync.js +3 -0
- data/node_modules/resolve/index.js +6 -0
- data/node_modules/resolve/lib/async.js +329 -0
- data/node_modules/resolve/lib/caller.js +8 -0
- data/node_modules/resolve/lib/core.js +12 -0
- data/node_modules/resolve/lib/core.json +158 -0
- data/node_modules/resolve/lib/homedir.js +24 -0
- data/node_modules/resolve/lib/is-core.js +5 -0
- data/node_modules/resolve/lib/node-modules-paths.js +42 -0
- data/node_modules/resolve/lib/normalize-options.js +10 -0
- data/node_modules/resolve/lib/sync.js +208 -0
- data/node_modules/resolve/package.json +71 -0
- data/node_modules/resolve/readme.markdown +301 -0
- data/node_modules/resolve/sync.js +3 -0
- data/node_modules/resolve/test/core.js +88 -0
- data/node_modules/resolve/test/dotdot/abc/index.js +2 -0
- data/node_modules/resolve/test/dotdot/index.js +1 -0
- data/node_modules/resolve/test/dotdot.js +29 -0
- data/node_modules/resolve/test/faulty_basedir.js +29 -0
- data/node_modules/resolve/test/filter.js +34 -0
- data/node_modules/resolve/test/filter_sync.js +33 -0
- data/node_modules/resolve/test/home_paths.js +127 -0
- data/node_modules/resolve/test/home_paths_sync.js +114 -0
- data/node_modules/resolve/test/mock.js +315 -0
- data/node_modules/resolve/test/mock_sync.js +214 -0
- data/node_modules/resolve/test/module_dir/xmodules/aaa/index.js +1 -0
- data/node_modules/resolve/test/module_dir/ymodules/aaa/index.js +1 -0
- data/node_modules/resolve/test/module_dir/zmodules/bbb/main.js +1 -0
- data/node_modules/resolve/test/module_dir/zmodules/bbb/package.json +3 -0
- data/node_modules/resolve/test/module_dir.js +56 -0
- data/node_modules/resolve/test/node-modules-paths.js +143 -0
- data/node_modules/resolve/test/node_path/x/aaa/index.js +1 -0
- data/node_modules/resolve/test/node_path/x/ccc/index.js +1 -0
- data/node_modules/resolve/test/node_path/y/bbb/index.js +1 -0
- data/node_modules/resolve/test/node_path/y/ccc/index.js +1 -0
- data/node_modules/resolve/test/node_path.js +70 -0
- data/node_modules/resolve/test/nonstring.js +9 -0
- data/node_modules/resolve/test/pathfilter/deep_ref/main.js +0 -0
- data/node_modules/resolve/test/pathfilter.js +75 -0
- data/node_modules/resolve/test/precedence/aaa/index.js +1 -0
- data/node_modules/resolve/test/precedence/aaa/main.js +1 -0
- data/node_modules/resolve/test/precedence/aaa.js +1 -0
- data/node_modules/resolve/test/precedence/bbb/main.js +1 -0
- data/node_modules/resolve/test/precedence/bbb.js +1 -0
- data/node_modules/resolve/test/precedence.js +23 -0
- data/node_modules/resolve/test/resolver/baz/doom.js +0 -0
- data/node_modules/resolve/test/resolver/baz/package.json +4 -0
- data/node_modules/resolve/test/resolver/baz/quux.js +1 -0
- data/node_modules/resolve/test/resolver/browser_field/a.js +0 -0
- data/node_modules/resolve/test/resolver/browser_field/b.js +0 -0
- data/node_modules/resolve/test/resolver/browser_field/package.json +5 -0
- data/node_modules/resolve/test/resolver/cup.coffee +1 -0
- data/node_modules/resolve/test/resolver/dot_main/index.js +1 -0
- data/node_modules/resolve/test/resolver/dot_main/package.json +3 -0
- data/node_modules/resolve/test/resolver/dot_slash_main/index.js +1 -0
- data/node_modules/resolve/test/resolver/dot_slash_main/package.json +3 -0
- data/node_modules/resolve/test/resolver/false_main/index.js +0 -0
- data/node_modules/resolve/test/resolver/false_main/package.json +4 -0
- data/node_modules/resolve/test/resolver/foo.js +1 -0
- data/node_modules/resolve/test/resolver/incorrect_main/index.js +2 -0
- data/node_modules/resolve/test/resolver/incorrect_main/package.json +3 -0
- data/node_modules/resolve/test/resolver/invalid_main/package.json +7 -0
- data/node_modules/resolve/test/resolver/malformed_package_json/index.js +0 -0
- data/node_modules/resolve/test/resolver/malformed_package_json/package.json +1 -0
- data/node_modules/resolve/test/resolver/mug.coffee +0 -0
- data/node_modules/resolve/test/resolver/mug.js +0 -0
- data/node_modules/resolve/test/resolver/multirepo/lerna.json +6 -0
- data/node_modules/resolve/test/resolver/multirepo/package.json +20 -0
- data/node_modules/resolve/test/resolver/multirepo/packages/package-a/index.js +35 -0
- data/node_modules/resolve/test/resolver/multirepo/packages/package-a/package.json +14 -0
- data/node_modules/resolve/test/resolver/multirepo/packages/package-b/index.js +0 -0
- data/node_modules/resolve/test/resolver/multirepo/packages/package-b/package.json +14 -0
- data/node_modules/resolve/test/resolver/nested_symlinks/mylib/async.js +26 -0
- data/node_modules/resolve/test/resolver/nested_symlinks/mylib/package.json +15 -0
- data/node_modules/resolve/test/resolver/nested_symlinks/mylib/sync.js +12 -0
- data/node_modules/resolve/test/resolver/other_path/lib/other-lib.js +0 -0
- data/node_modules/resolve/test/resolver/other_path/root.js +0 -0
- data/node_modules/resolve/test/resolver/quux/foo/index.js +1 -0
- data/node_modules/resolve/test/resolver/same_names/foo/index.js +1 -0
- data/node_modules/resolve/test/resolver/same_names/foo.js +1 -0
- data/node_modules/resolve/test/resolver/symlinked/_/node_modules/foo.js +0 -0
- data/node_modules/resolve/test/resolver/symlinked/package/bar.js +1 -0
- data/node_modules/resolve/test/resolver/symlinked/package/package.json +3 -0
- data/node_modules/resolve/test/resolver/without_basedir/main.js +5 -0
- data/node_modules/resolve/test/resolver.js +595 -0
- data/node_modules/resolve/test/resolver_sync.js +726 -0
- data/node_modules/resolve/test/shadowed_core/node_modules/util/index.js +0 -0
- data/node_modules/resolve/test/shadowed_core.js +54 -0
- data/node_modules/resolve/test/subdirs.js +13 -0
- data/node_modules/resolve/test/symlinks.js +176 -0
- data/node_modules/resolve-from/index.js +47 -0
- data/node_modules/resolve-from/license +9 -0
- data/node_modules/resolve-from/package.json +34 -0
- data/node_modules/resolve-from/readme.md +72 -0
- data/node_modules/reusify/LICENSE +22 -0
- data/node_modules/reusify/README.md +145 -0
- data/node_modules/reusify/benchmarks/createNoCodeFunction.js +30 -0
- data/node_modules/reusify/benchmarks/fib.js +13 -0
- data/node_modules/reusify/benchmarks/reuseNoCodeFunction.js +38 -0
- data/node_modules/reusify/package.json +45 -0
- data/node_modules/reusify/reusify.js +33 -0
- data/node_modules/reusify/test.js +66 -0
- data/node_modules/rimraf/CHANGELOG.md +65 -0
- data/node_modules/rimraf/LICENSE +15 -0
- data/node_modules/rimraf/README.md +101 -0
- data/node_modules/rimraf/bin.js +68 -0
- data/node_modules/rimraf/package.json +32 -0
- data/node_modules/rimraf/rimraf.js +360 -0
- data/node_modules/run-parallel/LICENSE +20 -0
- data/node_modules/run-parallel/README.md +85 -0
- data/node_modules/run-parallel/index.js +51 -0
- data/node_modules/run-parallel/package.json +58 -0
- data/node_modules/safe-array-concat/CHANGELOG.md +26 -0
- data/node_modules/safe-array-concat/LICENSE +21 -0
- data/node_modules/safe-array-concat/README.md +53 -0
- data/node_modules/safe-array-concat/index.js +36 -0
- data/node_modules/safe-array-concat/package.json +78 -0
- data/node_modules/safe-array-concat/test/index.js +89 -0
- data/node_modules/safe-regex-test/CHANGELOG.md +15 -0
- data/node_modules/safe-regex-test/LICENSE +21 -0
- data/node_modules/safe-regex-test/README.md +42 -0
- data/node_modules/safe-regex-test/index.js +17 -0
- data/node_modules/safe-regex-test/package.json +75 -0
- data/node_modules/safe-regex-test/test/index.js +37 -0
- data/node_modules/semver/LICENSE +15 -0
- data/node_modules/semver/README.md +443 -0
- data/node_modules/semver/bin/semver.js +174 -0
- data/node_modules/semver/package.json +38 -0
- data/node_modules/semver/range.bnf +16 -0
- data/node_modules/semver/semver.js +1643 -0
- data/node_modules/set-function-name/CHANGELOG.md +39 -0
- data/node_modules/set-function-name/LICENSE +21 -0
- data/node_modules/set-function-name/README.md +61 -0
- data/node_modules/set-function-name/index.js +22 -0
- data/node_modules/set-function-name/package.json +80 -0
- data/node_modules/shebang-command/index.js +19 -0
- data/node_modules/shebang-command/license +9 -0
- data/node_modules/shebang-command/package.json +34 -0
- data/node_modules/shebang-command/readme.md +34 -0
- data/node_modules/shebang-regex/index.d.ts +22 -0
- data/node_modules/shebang-regex/index.js +2 -0
- data/node_modules/shebang-regex/license +9 -0
- data/node_modules/shebang-regex/package.json +35 -0
- data/node_modules/shebang-regex/readme.md +33 -0
- data/node_modules/side-channel/CHANGELOG.md +65 -0
- data/node_modules/side-channel/LICENSE +21 -0
- data/node_modules/side-channel/README.md +2 -0
- data/node_modules/side-channel/index.js +124 -0
- data/node_modules/side-channel/package.json +67 -0
- data/node_modules/side-channel/test/index.js +78 -0
- data/node_modules/string.prototype.trim/CHANGELOG.md +182 -0
- data/node_modules/string.prototype.trim/LICENSE +21 -0
- data/node_modules/string.prototype.trim/README.md +48 -0
- data/node_modules/string.prototype.trim/auto.js +3 -0
- data/node_modules/string.prototype.trim/implementation.js +21 -0
- data/node_modules/string.prototype.trim/index.js +23 -0
- data/node_modules/string.prototype.trim/package.json +101 -0
- data/node_modules/string.prototype.trim/polyfill.js +19 -0
- data/node_modules/string.prototype.trim/shim.js +14 -0
- data/node_modules/string.prototype.trim/test/implementation.js +21 -0
- data/node_modules/string.prototype.trim/test/index.js +17 -0
- data/node_modules/string.prototype.trim/test/shimmed.js +36 -0
- data/node_modules/string.prototype.trim/test/tests.js +62 -0
- data/node_modules/string.prototype.trimend/CHANGELOG.md +108 -0
- data/node_modules/string.prototype.trimend/LICENSE +21 -0
- data/node_modules/string.prototype.trimend/README.md +46 -0
- data/node_modules/string.prototype.trimend/auto.js +3 -0
- data/node_modules/string.prototype.trimend/implementation.js +15 -0
- data/node_modules/string.prototype.trimend/index.js +23 -0
- data/node_modules/string.prototype.trimend/package.json +79 -0
- data/node_modules/string.prototype.trimend/polyfill.js +15 -0
- data/node_modules/string.prototype.trimend/shim.js +14 -0
- data/node_modules/string.prototype.trimend/test/implementation.js +20 -0
- data/node_modules/string.prototype.trimend/test/index.js +17 -0
- data/node_modules/string.prototype.trimend/test/shimmed.js +36 -0
- data/node_modules/string.prototype.trimend/test/tests.js +31 -0
- data/node_modules/string.prototype.trimstart/CHANGELOG.md +108 -0
- data/node_modules/string.prototype.trimstart/LICENSE +21 -0
- data/node_modules/string.prototype.trimstart/README.md +46 -0
- data/node_modules/string.prototype.trimstart/auto.js +3 -0
- data/node_modules/string.prototype.trimstart/implementation.js +15 -0
- data/node_modules/string.prototype.trimstart/index.js +23 -0
- data/node_modules/string.prototype.trimstart/package.json +79 -0
- data/node_modules/string.prototype.trimstart/polyfill.js +15 -0
- data/node_modules/string.prototype.trimstart/shim.js +14 -0
- data/node_modules/string.prototype.trimstart/test/implementation.js +20 -0
- data/node_modules/string.prototype.trimstart/test/index.js +18 -0
- data/node_modules/string.prototype.trimstart/test/shimmed.js +36 -0
- data/node_modules/string.prototype.trimstart/test/tests.js +31 -0
- data/node_modules/strip-ansi/index.d.ts +17 -0
- data/node_modules/strip-ansi/index.js +4 -0
- data/node_modules/strip-ansi/license +9 -0
- data/node_modules/strip-ansi/package.json +54 -0
- data/node_modules/strip-ansi/readme.md +46 -0
- data/node_modules/strip-bom/index.js +14 -0
- data/node_modules/strip-bom/license +21 -0
- data/node_modules/strip-bom/package.json +40 -0
- data/node_modules/strip-bom/readme.md +36 -0
- data/node_modules/strip-json-comments/index.d.ts +36 -0
- data/node_modules/strip-json-comments/index.js +77 -0
- data/node_modules/strip-json-comments/license +9 -0
- data/node_modules/strip-json-comments/package.json +47 -0
- data/node_modules/strip-json-comments/readme.md +78 -0
- data/node_modules/supports-color/browser.js +5 -0
- data/node_modules/supports-color/index.js +135 -0
- data/node_modules/supports-color/license +9 -0
- data/node_modules/supports-color/package.json +53 -0
- data/node_modules/supports-color/readme.md +76 -0
- data/node_modules/supports-preserve-symlinks-flag/CHANGELOG.md +22 -0
- data/node_modules/supports-preserve-symlinks-flag/LICENSE +21 -0
- data/node_modules/supports-preserve-symlinks-flag/README.md +42 -0
- data/node_modules/supports-preserve-symlinks-flag/browser.js +3 -0
- data/node_modules/supports-preserve-symlinks-flag/index.js +9 -0
- data/node_modules/supports-preserve-symlinks-flag/package.json +70 -0
- data/node_modules/supports-preserve-symlinks-flag/test/index.js +29 -0
- data/node_modules/text-table/LICENSE +18 -0
- data/node_modules/text-table/example/align.js +8 -0
- data/node_modules/text-table/example/center.js +8 -0
- data/node_modules/text-table/example/dotalign.js +9 -0
- data/node_modules/text-table/example/doubledot.js +11 -0
- data/node_modules/text-table/example/table.js +6 -0
- data/node_modules/text-table/index.js +86 -0
- data/node_modules/text-table/package.json +44 -0
- data/node_modules/text-table/readme.markdown +134 -0
- data/node_modules/text-table/test/align.js +18 -0
- data/node_modules/text-table/test/ansi-colors.js +32 -0
- data/node_modules/text-table/test/center.js +18 -0
- data/node_modules/text-table/test/dotalign.js +20 -0
- data/node_modules/text-table/test/doubledot.js +24 -0
- data/node_modules/text-table/test/table.js +14 -0
- data/node_modules/tsconfig-paths/CHANGELOG.md +365 -0
- data/node_modules/tsconfig-paths/LICENSE +21 -0
- data/node_modules/tsconfig-paths/README.md +268 -0
- data/node_modules/tsconfig-paths/lib/__tests__/config-loader.test.d.ts +1 -0
- data/node_modules/tsconfig-paths/lib/__tests__/config-loader.test.js +88 -0
- data/node_modules/tsconfig-paths/lib/__tests__/config-loader.test.js.map +1 -0
- data/node_modules/tsconfig-paths/lib/__tests__/data/match-path-data.d.ts +17 -0
- data/node_modules/tsconfig-paths/lib/__tests__/data/match-path-data.js +205 -0
- data/node_modules/tsconfig-paths/lib/__tests__/data/match-path-data.js.map +1 -0
- data/node_modules/tsconfig-paths/lib/__tests__/filesystem.test.d.ts +1 -0
- data/node_modules/tsconfig-paths/lib/__tests__/filesystem.test.js +64 -0
- data/node_modules/tsconfig-paths/lib/__tests__/filesystem.test.js.map +1 -0
- data/node_modules/tsconfig-paths/lib/__tests__/mapping-entry.test.d.ts +1 -0
- data/node_modules/tsconfig-paths/lib/__tests__/mapping-entry.test.js +66 -0
- data/node_modules/tsconfig-paths/lib/__tests__/mapping-entry.test.js.map +1 -0
- data/node_modules/tsconfig-paths/lib/__tests__/match-path-async.test.d.ts +1 -0
- data/node_modules/tsconfig-paths/lib/__tests__/match-path-async.test.js +19 -0
- data/node_modules/tsconfig-paths/lib/__tests__/match-path-async.test.js.map +1 -0
- data/node_modules/tsconfig-paths/lib/__tests__/match-path-sync.test.d.ts +1 -0
- data/node_modules/tsconfig-paths/lib/__tests__/match-path-sync.test.js +15 -0
- data/node_modules/tsconfig-paths/lib/__tests__/match-path-sync.test.js.map +1 -0
- data/node_modules/tsconfig-paths/lib/__tests__/try-path.test.d.ts +1 -0
- data/node_modules/tsconfig-paths/lib/__tests__/try-path.test.js +175 -0
- data/node_modules/tsconfig-paths/lib/__tests__/try-path.test.js.map +1 -0
- data/node_modules/tsconfig-paths/lib/__tests__/tsconfig-loader.test.d.ts +1 -0
- data/node_modules/tsconfig-paths/lib/__tests__/tsconfig-loader.test.js +246 -0
- data/node_modules/tsconfig-paths/lib/__tests__/tsconfig-loader.test.js.map +1 -0
- data/node_modules/tsconfig-paths/lib/config-loader.d.ts +33 -0
- data/node_modules/tsconfig-paths/lib/config-loader.js +57 -0
- data/node_modules/tsconfig-paths/lib/config-loader.js.map +1 -0
- data/node_modules/tsconfig-paths/lib/filesystem.d.ts +33 -0
- data/node_modules/tsconfig-paths/lib/filesystem.js +55 -0
- data/node_modules/tsconfig-paths/lib/filesystem.js.map +1 -0
- data/node_modules/tsconfig-paths/lib/index.d.ts +5 -0
- data/node_modules/tsconfig-paths/lib/index.js +15 -0
- data/node_modules/tsconfig-paths/lib/index.js.map +1 -0
- data/node_modules/tsconfig-paths/lib/mapping-entry.d.ts +17 -0
- data/node_modules/tsconfig-paths/lib/mapping-entry.js +53 -0
- data/node_modules/tsconfig-paths/lib/mapping-entry.js.map +1 -0
- data/node_modules/tsconfig-paths/lib/match-path-async.d.ts +21 -0
- data/node_modules/tsconfig-paths/lib/match-path-async.js +113 -0
- data/node_modules/tsconfig-paths/lib/match-path-async.js.map +1 -0
- data/node_modules/tsconfig-paths/lib/match-path-sync.d.ts +30 -0
- data/node_modules/tsconfig-paths/lib/match-path-sync.js +87 -0
- data/node_modules/tsconfig-paths/lib/match-path-sync.js.map +1 -0
- data/node_modules/tsconfig-paths/lib/options.d.ts +4 -0
- data/node_modules/tsconfig-paths/lib/options.js +15 -0
- data/node_modules/tsconfig-paths/lib/options.js.map +1 -0
- data/node_modules/tsconfig-paths/lib/register.d.ts +6 -0
- data/node_modules/tsconfig-paths/lib/register.js +93 -0
- data/node_modules/tsconfig-paths/lib/register.js.map +1 -0
- data/node_modules/tsconfig-paths/lib/try-path.d.ts +15 -0
- data/node_modules/tsconfig-paths/lib/try-path.js +90 -0
- data/node_modules/tsconfig-paths/lib/try-path.js.map +1 -0
- data/node_modules/tsconfig-paths/lib/tsconfig-loader.d.ts +28 -0
- data/node_modules/tsconfig-paths/lib/tsconfig-loader.js +111 -0
- data/node_modules/tsconfig-paths/lib/tsconfig-loader.js.map +1 -0
- data/node_modules/tsconfig-paths/package.json +67 -0
- data/node_modules/tsconfig-paths/register.js +1 -0
- data/node_modules/tsconfig-paths/src/__tests__/config-loader.test.ts +100 -0
- data/node_modules/tsconfig-paths/src/__tests__/data/match-path-data.ts +219 -0
- data/node_modules/tsconfig-paths/src/__tests__/filesystem.test.ts +65 -0
- data/node_modules/tsconfig-paths/src/__tests__/mapping-entry.test.ts +70 -0
- data/node_modules/tsconfig-paths/src/__tests__/match-path-async.test.ts +27 -0
- data/node_modules/tsconfig-paths/src/__tests__/match-path-sync.test.ts +23 -0
- data/node_modules/tsconfig-paths/src/__tests__/try-path.test.ts +193 -0
- data/node_modules/tsconfig-paths/src/__tests__/tsconfig-loader.test.ts +312 -0
- data/node_modules/tsconfig-paths/src/__tests__/tsconfig-named.json +10 -0
- data/node_modules/tsconfig-paths/src/config-loader.ts +97 -0
- data/node_modules/tsconfig-paths/src/filesystem.ts +87 -0
- data/node_modules/tsconfig-paths/src/index.ts +24 -0
- data/node_modules/tsconfig-paths/src/mapping-entry.ts +64 -0
- data/node_modules/tsconfig-paths/src/match-path-async.ts +218 -0
- data/node_modules/tsconfig-paths/src/match-path-sync.ts +141 -0
- data/node_modules/tsconfig-paths/src/options.ts +18 -0
- data/node_modules/tsconfig-paths/src/register.ts +97 -0
- data/node_modules/tsconfig-paths/src/try-path.ts +102 -0
- data/node_modules/tsconfig-paths/src/tsconfig-loader.ts +172 -0
- data/node_modules/type-check/LICENSE +22 -0
- data/node_modules/type-check/README.md +210 -0
- data/node_modules/type-check/lib/check.js +128 -0
- data/node_modules/type-check/lib/index.js +16 -0
- data/node_modules/type-check/lib/parse-type.js +198 -0
- data/node_modules/type-check/package.json +39 -0
- data/node_modules/type-fest/base.d.ts +38 -0
- data/node_modules/type-fest/index.d.ts +2 -0
- data/node_modules/type-fest/license +9 -0
- data/node_modules/type-fest/package.json +58 -0
- data/node_modules/type-fest/readme.md +658 -0
- data/node_modules/type-fest/source/async-return-type.d.ts +23 -0
- data/node_modules/type-fest/source/asyncify.d.ts +31 -0
- data/node_modules/type-fest/source/basic.d.ts +67 -0
- data/node_modules/type-fest/source/conditional-except.d.ts +43 -0
- data/node_modules/type-fest/source/conditional-keys.d.ts +43 -0
- data/node_modules/type-fest/source/conditional-pick.d.ts +42 -0
- data/node_modules/type-fest/source/entries.d.ts +57 -0
- data/node_modules/type-fest/source/entry.d.ts +60 -0
- data/node_modules/type-fest/source/except.d.ts +22 -0
- data/node_modules/type-fest/source/fixed-length-array.d.ts +38 -0
- data/node_modules/type-fest/source/iterable-element.d.ts +46 -0
- data/node_modules/type-fest/source/literal-union.d.ts +33 -0
- data/node_modules/type-fest/source/merge-exclusive.d.ts +39 -0
- data/node_modules/type-fest/source/merge.d.ts +22 -0
- data/node_modules/type-fest/source/mutable.d.ts +22 -0
- data/node_modules/type-fest/source/opaque.d.ts +65 -0
- data/node_modules/type-fest/source/package-json.d.ts +611 -0
- data/node_modules/type-fest/source/partial-deep.d.ts +72 -0
- data/node_modules/type-fest/source/promisable.d.ts +23 -0
- data/node_modules/type-fest/source/promise-value.d.ts +27 -0
- data/node_modules/type-fest/source/readonly-deep.d.ts +59 -0
- data/node_modules/type-fest/source/require-at-least-one.d.ts +33 -0
- data/node_modules/type-fest/source/require-exactly-one.d.ts +35 -0
- data/node_modules/type-fest/source/set-optional.d.ts +34 -0
- data/node_modules/type-fest/source/set-required.d.ts +34 -0
- data/node_modules/type-fest/source/set-return-type.d.ts +29 -0
- data/node_modules/type-fest/source/stringified.d.ts +21 -0
- data/node_modules/type-fest/source/tsconfig-json.d.ts +870 -0
- data/node_modules/type-fest/source/union-to-intersection.d.ts +58 -0
- data/node_modules/type-fest/source/utilities.d.ts +3 -0
- data/node_modules/type-fest/source/value-of.d.ts +40 -0
- data/node_modules/type-fest/ts41/camel-case.d.ts +72 -0
- data/node_modules/type-fest/ts41/delimiter-case.d.ts +85 -0
- data/node_modules/type-fest/ts41/index.d.ts +9 -0
- data/node_modules/type-fest/ts41/kebab-case.d.ts +36 -0
- data/node_modules/type-fest/ts41/pascal-case.d.ts +36 -0
- data/node_modules/type-fest/ts41/snake-case.d.ts +35 -0
- data/node_modules/typed-array-buffer/CHANGELOG.md +15 -0
- data/node_modules/typed-array-buffer/LICENSE +21 -0
- data/node_modules/typed-array-buffer/README.md +42 -0
- data/node_modules/typed-array-buffer/index.js +19 -0
- data/node_modules/typed-array-buffer/package.json +73 -0
- data/node_modules/typed-array-buffer/test/index.js +22 -0
- data/node_modules/typed-array-byte-length/CHANGELOG.md +14 -0
- data/node_modules/typed-array-byte-length/LICENSE +21 -0
- data/node_modules/typed-array-byte-length/README.md +70 -0
- data/node_modules/typed-array-byte-length/index.js +66 -0
- data/node_modules/typed-array-byte-length/package.json +98 -0
- data/node_modules/typed-array-byte-length/test/index.js +81 -0
- data/node_modules/typed-array-byte-offset/CHANGELOG.md +15 -0
- data/node_modules/typed-array-byte-offset/LICENSE +21 -0
- data/node_modules/typed-array-byte-offset/README.md +70 -0
- data/node_modules/typed-array-byte-offset/index.js +66 -0
- data/node_modules/typed-array-byte-offset/package.json +98 -0
- data/node_modules/typed-array-byte-offset/test/index.js +88 -0
- data/node_modules/typed-array-length/CHANGELOG.md +69 -0
- data/node_modules/typed-array-length/LICENSE +21 -0
- data/node_modules/typed-array-length/README.md +64 -0
- data/node_modules/typed-array-length/index.js +77 -0
- data/node_modules/typed-array-length/package.json +89 -0
- data/node_modules/typed-array-length/test/index.js +85 -0
- data/node_modules/unbox-primitive/CHANGELOG.md +60 -0
- data/node_modules/unbox-primitive/LICENSE +21 -0
- data/node_modules/unbox-primitive/README.md +47 -0
- data/node_modules/unbox-primitive/index.js +39 -0
- data/node_modules/unbox-primitive/package.json +65 -0
- data/node_modules/unbox-primitive/test/index.js +59 -0
- data/node_modules/uri-js/LICENSE +11 -0
- data/node_modules/uri-js/README.md +203 -0
- data/node_modules/uri-js/dist/es5/uri.all.d.ts +59 -0
- data/node_modules/uri-js/dist/es5/uri.all.js +1443 -0
- data/node_modules/uri-js/dist/es5/uri.all.js.map +1 -0
- data/node_modules/uri-js/dist/es5/uri.all.min.d.ts +59 -0
- data/node_modules/uri-js/dist/es5/uri.all.min.js +3 -0
- data/node_modules/uri-js/dist/es5/uri.all.min.js.map +1 -0
- data/node_modules/uri-js/dist/esnext/index.d.ts +1 -0
- data/node_modules/uri-js/dist/esnext/index.js +17 -0
- data/node_modules/uri-js/dist/esnext/index.js.map +1 -0
- data/node_modules/uri-js/dist/esnext/regexps-iri.d.ts +3 -0
- data/node_modules/uri-js/dist/esnext/regexps-iri.js +3 -0
- data/node_modules/uri-js/dist/esnext/regexps-iri.js.map +1 -0
- data/node_modules/uri-js/dist/esnext/regexps-uri.d.ts +4 -0
- data/node_modules/uri-js/dist/esnext/regexps-uri.js +42 -0
- data/node_modules/uri-js/dist/esnext/regexps-uri.js.map +1 -0
- data/node_modules/uri-js/dist/esnext/schemes/http.d.ts +3 -0
- data/node_modules/uri-js/dist/esnext/schemes/http.js +28 -0
- data/node_modules/uri-js/dist/esnext/schemes/http.js.map +1 -0
- data/node_modules/uri-js/dist/esnext/schemes/https.d.ts +3 -0
- data/node_modules/uri-js/dist/esnext/schemes/https.js +9 -0
- data/node_modules/uri-js/dist/esnext/schemes/https.js.map +1 -0
- data/node_modules/uri-js/dist/esnext/schemes/mailto.d.ts +12 -0
- data/node_modules/uri-js/dist/esnext/schemes/mailto.js +148 -0
- data/node_modules/uri-js/dist/esnext/schemes/mailto.js.map +1 -0
- data/node_modules/uri-js/dist/esnext/schemes/urn-uuid.d.ts +7 -0
- data/node_modules/uri-js/dist/esnext/schemes/urn-uuid.js +23 -0
- data/node_modules/uri-js/dist/esnext/schemes/urn-uuid.js.map +1 -0
- data/node_modules/uri-js/dist/esnext/schemes/urn.d.ts +10 -0
- data/node_modules/uri-js/dist/esnext/schemes/urn.js +49 -0
- data/node_modules/uri-js/dist/esnext/schemes/urn.js.map +1 -0
- data/node_modules/uri-js/dist/esnext/schemes/ws.d.ts +7 -0
- data/node_modules/uri-js/dist/esnext/schemes/ws.js +41 -0
- data/node_modules/uri-js/dist/esnext/schemes/ws.js.map +1 -0
- data/node_modules/uri-js/dist/esnext/schemes/wss.d.ts +3 -0
- data/node_modules/uri-js/dist/esnext/schemes/wss.js +9 -0
- data/node_modules/uri-js/dist/esnext/schemes/wss.js.map +1 -0
- data/node_modules/uri-js/dist/esnext/uri.d.ts +59 -0
- data/node_modules/uri-js/dist/esnext/uri.js +480 -0
- data/node_modules/uri-js/dist/esnext/uri.js.map +1 -0
- data/node_modules/uri-js/dist/esnext/util.d.ts +6 -0
- data/node_modules/uri-js/dist/esnext/util.js +36 -0
- data/node_modules/uri-js/dist/esnext/util.js.map +1 -0
- data/node_modules/uri-js/package.json +77 -0
- data/node_modules/uri-js/yarn.lock +2558 -0
- data/node_modules/which/CHANGELOG.md +166 -0
- data/node_modules/which/LICENSE +15 -0
- data/node_modules/which/README.md +54 -0
- data/node_modules/which/bin/node-which +52 -0
- data/node_modules/which/package.json +43 -0
- data/node_modules/which/which.js +125 -0
- data/node_modules/which-boxed-primitive/CHANGELOG.md +54 -0
- data/node_modules/which-boxed-primitive/LICENSE +21 -0
- data/node_modules/which-boxed-primitive/README.md +73 -0
- data/node_modules/which-boxed-primitive/index.js +30 -0
- data/node_modules/which-boxed-primitive/package.json +65 -0
- data/node_modules/which-boxed-primitive/test/index.js +66 -0
- data/node_modules/which-typed-array/CHANGELOG.md +190 -0
- data/node_modules/which-typed-array/LICENSE +22 -0
- data/node_modules/which-typed-array/README.md +70 -0
- data/node_modules/which-typed-array/index.js +89 -0
- data/node_modules/which-typed-array/package.json +115 -0
- data/node_modules/which-typed-array/test/index.js +99 -0
- data/node_modules/wrappy/LICENSE +15 -0
- data/node_modules/wrappy/README.md +36 -0
- data/node_modules/wrappy/package.json +29 -0
- data/node_modules/wrappy/wrappy.js +33 -0
- data/node_modules/yallist/LICENSE +15 -0
- data/node_modules/yallist/README.md +204 -0
- data/node_modules/yallist/iterator.js +8 -0
- data/node_modules/yallist/package.json +29 -0
- data/node_modules/yallist/yallist.js +426 -0
- data/node_modules/yocto-queue/index.d.ts +56 -0
- data/node_modules/yocto-queue/index.js +68 -0
- data/node_modules/yocto-queue/license +9 -0
- data/node_modules/yocto-queue/package.json +43 -0
- data/node_modules/yocto-queue/readme.md +64 -0
- metadata +4340 -8
- /data/lib/{immosquare-cleaner → immosquare_cleaner}/configuration.rb +0 -0
- /data/lib/tasks/{immosquare-cleaner.rake → immosquare_cleaner.rake} +0 -0
@@ -0,0 +1,2752 @@
|
|
1
|
+
'use strict';
|
2
|
+
|
3
|
+
Object.defineProperty(exports, '__esModule', { value: true });
|
4
|
+
|
5
|
+
var ast = /*#__PURE__*/Object.freeze({
|
6
|
+
__proto__: null
|
7
|
+
});
|
8
|
+
|
9
|
+
const latestEcmaVersion = 2024;
|
10
|
+
|
11
|
+
let largeIdStartRanges = undefined;
|
12
|
+
let largeIdContinueRanges = undefined;
|
13
|
+
function isIdStart(cp) {
|
14
|
+
if (cp < 0x41)
|
15
|
+
return false;
|
16
|
+
if (cp < 0x5b)
|
17
|
+
return true;
|
18
|
+
if (cp < 0x61)
|
19
|
+
return false;
|
20
|
+
if (cp < 0x7b)
|
21
|
+
return true;
|
22
|
+
return isLargeIdStart(cp);
|
23
|
+
}
|
24
|
+
function isIdContinue(cp) {
|
25
|
+
if (cp < 0x30)
|
26
|
+
return false;
|
27
|
+
if (cp < 0x3a)
|
28
|
+
return true;
|
29
|
+
if (cp < 0x41)
|
30
|
+
return false;
|
31
|
+
if (cp < 0x5b)
|
32
|
+
return true;
|
33
|
+
if (cp === 0x5f)
|
34
|
+
return true;
|
35
|
+
if (cp < 0x61)
|
36
|
+
return false;
|
37
|
+
if (cp < 0x7b)
|
38
|
+
return true;
|
39
|
+
return isLargeIdStart(cp) || isLargeIdContinue(cp);
|
40
|
+
}
|
41
|
+
function isLargeIdStart(cp) {
|
42
|
+
return isInRange(cp, largeIdStartRanges !== null && largeIdStartRanges !== void 0 ? largeIdStartRanges : (largeIdStartRanges = initLargeIdStartRanges()));
|
43
|
+
}
|
44
|
+
function isLargeIdContinue(cp) {
|
45
|
+
return isInRange(cp, largeIdContinueRanges !== null && largeIdContinueRanges !== void 0 ? largeIdContinueRanges : (largeIdContinueRanges = initLargeIdContinueRanges()));
|
46
|
+
}
|
47
|
+
function initLargeIdStartRanges() {
|
48
|
+
return restoreRanges("4q 0 b 0 5 0 6 m 2 u 2 cp 5 b f 4 8 0 2 0 3m 4 2 1 3 3 2 0 7 0 2 2 2 0 2 j 2 2a 2 3u 9 4l 2 11 3 0 7 14 20 q 5 3 1a 16 10 1 2 2q 2 0 g 1 8 1 b 2 3 0 h 0 2 t u 2g c 0 p w a 1 5 0 6 l 5 0 a 0 4 0 o o 8 a 6 n 2 5 i 15 1n 1h 4 0 j 0 8 9 g f 5 7 3 1 3 l 2 6 2 0 4 3 4 0 h 0 e 1 2 2 f 1 b 0 9 5 5 1 3 l 2 6 2 1 2 1 2 1 w 3 2 0 k 2 h 8 2 2 2 l 2 6 2 1 2 4 4 0 j 0 g 1 o 0 c 7 3 1 3 l 2 6 2 1 2 4 4 0 v 1 2 2 g 0 i 0 2 5 4 2 2 3 4 1 2 0 2 1 4 1 4 2 4 b n 0 1h 7 2 2 2 m 2 f 4 0 r 2 3 0 3 1 v 0 5 7 2 2 2 m 2 9 2 4 4 0 w 1 2 1 g 1 i 8 2 2 2 14 3 0 h 0 6 2 9 2 p 5 6 h 4 n 2 8 2 0 3 6 1n 1b 2 1 d 6 1n 1 2 0 2 4 2 n 2 0 2 9 2 1 a 0 3 4 2 0 m 3 x 0 1s 7 2 z s 4 38 16 l 0 h 5 5 3 4 0 4 1 8 2 5 c d 0 i 11 2 0 6 0 3 16 2 98 2 3 3 6 2 0 2 3 3 14 2 3 3 w 2 3 3 6 2 0 2 3 3 e 2 1k 2 3 3 1u 12 f h 2d 3 5 4 h7 3 g 2 p 6 22 4 a 8 h e i f h f c 2 2 g 1f 10 0 5 0 1w 2g 8 14 2 0 6 1x b u 1e t 3 4 c 17 5 p 1j m a 1g 2b 0 2m 1a i 7 1j t e 1 b 17 r z 16 2 b z 3 8 8 16 3 2 16 3 2 5 2 1 4 0 6 5b 1t 7p 3 5 3 11 3 5 3 7 2 0 2 0 2 0 2 u 3 1g 2 6 2 0 4 2 2 6 4 3 3 5 5 c 6 2 2 6 39 0 e 0 h c 2u 0 5 0 3 9 2 0 3 5 7 0 2 0 2 0 2 f 3 3 6 4 5 0 i 14 22g 6c 7 3 4 1 d 11 2 0 6 0 3 1j 8 0 h m a 6 2 6 2 6 2 6 2 6 2 6 2 6 2 6 fb 2 q 8 8 4 3 4 5 2d 5 4 2 2h 2 3 6 16 2 2l i v 1d f e9 533 1t h3g 1w 19 3 7g 4 f b 1 l 1a h u 3 27 14 8 3 2u 3 1r 6 1 2 0 2 4 p f 2 2 2 3 2 m u 1f f 1d 1r 5 4 0 2 1 c r b m q s 8 1a t 0 h 4 2 9 b 4 2 14 o 2 2 7 l m 4 0 4 1d 2 0 4 1 3 4 3 0 2 0 p 2 3 a 8 2 d 5 3 5 3 5 a 6 2 6 2 16 2 d 7 36 u 8mb d m 5 1c 6it a5 3 2x 13 6 d 4 6 0 2 9 2 c 2 4 2 0 2 1 2 1 2 2z y a2 j 1r 3 1h 15 b 39 4 2 3q 11 p 7 p c 2g 4 5 3 5 3 5 3 2 10 b 2 p 2 i 2 1 2 e 3 d z 3e 1y 1g 7g s 4 1c 1c v e t 6 11 b t 3 z 5 7 2 4 17 4d j z 5 z 5 13 9 1f d a 2 e 2 6 2 1 2 a 2 e 2 6 2 1 1w 8m a l b 7 p 5 2 15 2 8 1y 5 3 0 2 17 2 1 4 0 3 m b m a u 1u i 2 1 b l b p 1z 1j 7 1 1t 0 g 3 2 2 2 s 17 s 4 s 10 7 2 r s 1h b l b i e h 33 20 1k 1e e 1e e z 9p 15 7 1 27 s b 0 9 l 17 h 1b k s m d 1g 1m 1 3 0 e 18 x o r z u 0 3 0 9 y 4 0 d 1b f 3 m 0 2 0 10 h 2 o k 1 1s 6 2 0 2 3 2 e 2 9 8 1a 13 7 3 1 3 l 2 6 2 1 2 4 4 0 j 0 d 4 4f 1g j 3 l 2 v 1b l 1 2 0 55 1a 16 3 11 1b l 0 1o 16 e 0 20 q 12 6 56 17 39 1r w 7 3 0 3 7 2 1 2 n g 0 2 0 2n 7 3 12 h 0 2 0 t 0 b 13 8 0 m 0 c 19 k 0 j 20 7c 8 2 10 i 0 1e t 35 6 2 1 2 11 m 0 q 5 2 1 2 v f 0 94 i g 0 2 c 2 x 3h 0 28 pl 2v 32 i 5f 219 2o g tr i 5 33u g6 6nu fs 8 u i 26 i t j 1b h 3 w k 6 i j5 1r 3l 22 6 0 1v c 1t 1 2 0 t 4qf 9 yd 17 8 6w8 3 2 6 2 1 2 82 g 0 u 2 3 0 f 3 9 az 1s5 2y 6 c 4 8 8 9 4mf 2c 2 1y 2 1 3 0 3 1 3 3 2 b 2 0 2 6 2 1s 2 3 3 7 2 6 2 r 2 3 2 4 2 0 4 6 2 9f 3 o 2 o 2 u 2 o 2 u 2 o 2 u 2 o 2 u 2 o 2 7 1f9 u 7 5 7a 1p 43 18 b 6 h 0 8y t j 17 dh r l1 6 2 3 2 1 2 e 2 5g 1o 1v 8 0 xh 3 2 q 2 1 2 0 3 0 2 9 2 3 2 0 2 0 7 0 5 0 2 0 2 0 2 2 2 1 2 0 3 0 2 0 2 0 2 0 2 0 2 1 2 0 3 3 2 6 2 3 2 3 2 0 2 9 2 g 6 2 2 4 2 g 3et wyn x 37d 7 65 3 4g1 f 5rk g h9 1wj f1 15v 3t6 6 38f");
|
49
|
+
}
|
50
|
+
function initLargeIdContinueRanges() {
|
51
|
+
return restoreRanges("53 0 g9 33 o 0 70 4 7e 18 2 0 2 1 2 1 2 0 21 a 1d u 7 0 2u 6 3 5 3 1 2 3 3 9 o 0 v q 2k a g 9 y 8 a 0 p 3 2 8 2 2 2 4 18 2 1p 7 17 n 2 w 1j 2 2 h 2 6 b 1 3 9 i 2 1l 0 2 6 3 1 3 2 a 0 b 1 3 9 f 0 3 2 1l 0 2 4 5 1 3 2 4 0 l b 4 0 c 2 1l 0 2 7 2 2 2 2 l 1 3 9 b 5 2 2 1l 0 2 6 3 1 3 2 8 2 b 1 3 9 j 0 1o 4 4 2 2 3 a 0 f 9 h 4 1k 0 2 6 2 2 2 3 8 1 c 1 3 9 i 2 1l 0 2 6 2 2 2 3 8 1 c 1 3 9 4 0 d 3 1k 1 2 6 2 2 2 3 a 0 b 1 3 9 i 2 1z 0 5 5 2 0 2 7 7 9 3 1 1q 0 3 6 d 7 2 9 2g 0 3 8 c 6 2 9 1r 1 7 9 c 0 2 0 2 0 5 1 1e j 2 1 6 a 2 z a 0 2t j 2 9 d 3 5 2 2 2 3 6 4 3 e b 2 e jk 2 a 8 pt 3 t 2 u 1 v 1 1t v a 0 3 9 y 2 2 a 40 0 3b b 5 b b 9 3l a 1p 4 1m 9 2 s 3 a 7 9 n d 2 f 1e 4 1c g c 9 i 8 d 2 v c 3 9 19 d 1d j 9 9 7 9 3b 2 2 k 5 0 7 0 3 2 5j 1r el 1 1e 1 k 0 3g c 5 0 4 b 2db 2 3y 0 2p v ff 5 2y 1 2p 0 n51 9 1y 0 5 9 x 1 29 1 7l 0 4 0 5 0 o 4 5 0 2c 1 1f h b 9 7 h e a t 7 q c 19 3 1c d g 9 c 0 b 9 1c d d 0 9 1 3 9 y 2 1f 0 2 2 3 1 6 1 2 0 16 4 6 1 6l 7 2 1 3 9 fmt 0 ki f h f 4 1 p 2 5d 9 12 0 12 0 ig 0 6b 0 46 4 86 9 120 2 2 1 6 3 15 2 5 0 4m 1 fy 3 9 9 aa 1 29 2 1z a 1e 3 3f 2 1i e w a 3 1 b 3 1a a 8 0 1a 9 7 2 11 d 2 9 6 1 19 0 d 2 1d d 9 3 2 b 2b b 7 0 3 0 4e b 6 9 7 3 1k 1 2 6 3 1 3 2 a 0 b 1 3 6 4 4 5d h a 9 5 0 2a j d 9 5y 6 3 8 s 1 2b g g 9 2a c 9 9 2c e 5 9 6r e 4m 9 1z 5 2 1 3 3 2 0 2 1 d 9 3c 6 3 6 4 0 t 9 15 6 2 3 9 0 a a 1b f ba 7 2 7 h 9 1l l 2 d 3f 5 4 0 2 1 2 6 2 0 9 9 1d 4 2 1 2 4 9 9 96 3 a 1 2 0 1d 6 4 4 e 9 44n 0 7 e aob 9 2f 9 13 4 1o 6 q 9 s6 0 2 1i 8 3 2a 0 c 1 f58 1 3mq 19 3 m f3 4 4 5 9 7 3 6 v 3 45 2 13e 1d e9 1i 5 1d 9 0 f 0 n 4 2 e 11t 6 2 g 3 6 2 1 2 4 2t 0 4h 6 a 9 9x 0 1q d dv d rb 6 32 6 6 9 3o7 9 gvt3 6n");
|
52
|
+
}
|
53
|
+
function isInRange(cp, ranges) {
|
54
|
+
let l = 0, r = (ranges.length / 2) | 0, i = 0, min = 0, max = 0;
|
55
|
+
while (l < r) {
|
56
|
+
i = ((l + r) / 2) | 0;
|
57
|
+
min = ranges[2 * i];
|
58
|
+
max = ranges[2 * i + 1];
|
59
|
+
if (cp < min) {
|
60
|
+
r = i;
|
61
|
+
}
|
62
|
+
else if (cp > max) {
|
63
|
+
l = i + 1;
|
64
|
+
}
|
65
|
+
else {
|
66
|
+
return true;
|
67
|
+
}
|
68
|
+
}
|
69
|
+
return false;
|
70
|
+
}
|
71
|
+
function restoreRanges(data) {
|
72
|
+
let last = 0;
|
73
|
+
return data.split(" ").map((s) => (last += parseInt(s, 36) | 0));
|
74
|
+
}
|
75
|
+
|
76
|
+
class DataSet {
|
77
|
+
constructor(raw2018, raw2019, raw2020, raw2021, raw2022, raw2023, raw2024) {
|
78
|
+
this._raw2018 = raw2018;
|
79
|
+
this._raw2019 = raw2019;
|
80
|
+
this._raw2020 = raw2020;
|
81
|
+
this._raw2021 = raw2021;
|
82
|
+
this._raw2022 = raw2022;
|
83
|
+
this._raw2023 = raw2023;
|
84
|
+
this._raw2024 = raw2024;
|
85
|
+
}
|
86
|
+
get es2018() {
|
87
|
+
var _a;
|
88
|
+
return ((_a = this._set2018) !== null && _a !== void 0 ? _a : (this._set2018 = new Set(this._raw2018.split(" "))));
|
89
|
+
}
|
90
|
+
get es2019() {
|
91
|
+
var _a;
|
92
|
+
return ((_a = this._set2019) !== null && _a !== void 0 ? _a : (this._set2019 = new Set(this._raw2019.split(" "))));
|
93
|
+
}
|
94
|
+
get es2020() {
|
95
|
+
var _a;
|
96
|
+
return ((_a = this._set2020) !== null && _a !== void 0 ? _a : (this._set2020 = new Set(this._raw2020.split(" "))));
|
97
|
+
}
|
98
|
+
get es2021() {
|
99
|
+
var _a;
|
100
|
+
return ((_a = this._set2021) !== null && _a !== void 0 ? _a : (this._set2021 = new Set(this._raw2021.split(" "))));
|
101
|
+
}
|
102
|
+
get es2022() {
|
103
|
+
var _a;
|
104
|
+
return ((_a = this._set2022) !== null && _a !== void 0 ? _a : (this._set2022 = new Set(this._raw2022.split(" "))));
|
105
|
+
}
|
106
|
+
get es2023() {
|
107
|
+
var _a;
|
108
|
+
return ((_a = this._set2023) !== null && _a !== void 0 ? _a : (this._set2023 = new Set(this._raw2023.split(" "))));
|
109
|
+
}
|
110
|
+
get es2024() {
|
111
|
+
var _a;
|
112
|
+
return ((_a = this._set2024) !== null && _a !== void 0 ? _a : (this._set2024 = new Set(this._raw2024.split(" "))));
|
113
|
+
}
|
114
|
+
}
|
115
|
+
const gcNameSet = new Set(["General_Category", "gc"]);
|
116
|
+
const scNameSet = new Set(["Script", "Script_Extensions", "sc", "scx"]);
|
117
|
+
const gcValueSets = new DataSet("C Cased_Letter Cc Cf Close_Punctuation Cn Co Combining_Mark Connector_Punctuation Control Cs Currency_Symbol Dash_Punctuation Decimal_Number Enclosing_Mark Final_Punctuation Format Initial_Punctuation L LC Letter Letter_Number Line_Separator Ll Lm Lo Lowercase_Letter Lt Lu M Mark Math_Symbol Mc Me Mn Modifier_Letter Modifier_Symbol N Nd Nl No Nonspacing_Mark Number Open_Punctuation Other Other_Letter Other_Number Other_Punctuation Other_Symbol P Paragraph_Separator Pc Pd Pe Pf Pi Po Private_Use Ps Punctuation S Sc Separator Sk Sm So Space_Separator Spacing_Mark Surrogate Symbol Titlecase_Letter Unassigned Uppercase_Letter Z Zl Zp Zs cntrl digit punct", "", "", "", "", "", "");
|
118
|
+
const scValueSets = new DataSet("Adlam Adlm Aghb Ahom Anatolian_Hieroglyphs Arab Arabic Armenian Armi Armn Avestan Avst Bali Balinese Bamu Bamum Bass Bassa_Vah Batak Batk Beng Bengali Bhaiksuki Bhks Bopo Bopomofo Brah Brahmi Brai Braille Bugi Buginese Buhd Buhid Cakm Canadian_Aboriginal Cans Cari Carian Caucasian_Albanian Chakma Cham Cher Cherokee Common Copt Coptic Cprt Cuneiform Cypriot Cyrillic Cyrl Deseret Deva Devanagari Dsrt Dupl Duployan Egyp Egyptian_Hieroglyphs Elba Elbasan Ethi Ethiopic Geor Georgian Glag Glagolitic Gonm Goth Gothic Gran Grantha Greek Grek Gujarati Gujr Gurmukhi Guru Han Hang Hangul Hani Hano Hanunoo Hatr Hatran Hebr Hebrew Hira Hiragana Hluw Hmng Hung Imperial_Aramaic Inherited Inscriptional_Pahlavi Inscriptional_Parthian Ital Java Javanese Kaithi Kali Kana Kannada Katakana Kayah_Li Khar Kharoshthi Khmer Khmr Khoj Khojki Khudawadi Knda Kthi Lana Lao Laoo Latin Latn Lepc Lepcha Limb Limbu Lina Linb Linear_A Linear_B Lisu Lyci Lycian Lydi Lydian Mahajani Mahj Malayalam Mand Mandaic Mani Manichaean Marc Marchen Masaram_Gondi Meetei_Mayek Mend Mende_Kikakui Merc Mero Meroitic_Cursive Meroitic_Hieroglyphs Miao Mlym Modi Mong Mongolian Mro Mroo Mtei Mult Multani Myanmar Mymr Nabataean Narb Nbat New_Tai_Lue Newa Nko Nkoo Nshu Nushu Ogam Ogham Ol_Chiki Olck Old_Hungarian Old_Italic Old_North_Arabian Old_Permic Old_Persian Old_South_Arabian Old_Turkic Oriya Orkh Orya Osage Osge Osma Osmanya Pahawh_Hmong Palm Palmyrene Pau_Cin_Hau Pauc Perm Phag Phags_Pa Phli Phlp Phnx Phoenician Plrd Prti Psalter_Pahlavi Qaac Qaai Rejang Rjng Runic Runr Samaritan Samr Sarb Saur Saurashtra Sgnw Sharada Shavian Shaw Shrd Sidd Siddham SignWriting Sind Sinh Sinhala Sora Sora_Sompeng Soyo Soyombo Sund Sundanese Sylo Syloti_Nagri Syrc Syriac Tagalog Tagb Tagbanwa Tai_Le Tai_Tham Tai_Viet Takr Takri Tale Talu Tamil Taml Tang Tangut Tavt Telu Telugu Tfng Tglg Thaa Thaana Thai Tibetan Tibt Tifinagh Tirh Tirhuta Ugar Ugaritic Vai Vaii Wara Warang_Citi Xpeo Xsux Yi Yiii Zanabazar_Square Zanb Zinh Zyyy", "Dogr Dogra Gong Gunjala_Gondi Hanifi_Rohingya Maka Makasar Medefaidrin Medf Old_Sogdian Rohg Sogd Sogdian Sogo", "Elym Elymaic Hmnp Nand Nandinagari Nyiakeng_Puachue_Hmong Wancho Wcho", "Chorasmian Chrs Diak Dives_Akuru Khitan_Small_Script Kits Yezi Yezidi", "Cpmn Cypro_Minoan Old_Uyghur Ougr Tangsa Tnsa Toto Vith Vithkuqi", "Hrkt Katakana_Or_Hiragana Kawi Nag_Mundari Nagm Unknown Zzzz", "");
|
119
|
+
const binPropertySets = new DataSet("AHex ASCII ASCII_Hex_Digit Alpha Alphabetic Any Assigned Bidi_C Bidi_Control Bidi_M Bidi_Mirrored CI CWCF CWCM CWKCF CWL CWT CWU Case_Ignorable Cased Changes_When_Casefolded Changes_When_Casemapped Changes_When_Lowercased Changes_When_NFKC_Casefolded Changes_When_Titlecased Changes_When_Uppercased DI Dash Default_Ignorable_Code_Point Dep Deprecated Dia Diacritic Emoji Emoji_Component Emoji_Modifier Emoji_Modifier_Base Emoji_Presentation Ext Extender Gr_Base Gr_Ext Grapheme_Base Grapheme_Extend Hex Hex_Digit IDC IDS IDSB IDST IDS_Binary_Operator IDS_Trinary_Operator ID_Continue ID_Start Ideo Ideographic Join_C Join_Control LOE Logical_Order_Exception Lower Lowercase Math NChar Noncharacter_Code_Point Pat_Syn Pat_WS Pattern_Syntax Pattern_White_Space QMark Quotation_Mark RI Radical Regional_Indicator SD STerm Sentence_Terminal Soft_Dotted Term Terminal_Punctuation UIdeo Unified_Ideograph Upper Uppercase VS Variation_Selector White_Space XIDC XIDS XID_Continue XID_Start space", "Extended_Pictographic", "", "EBase EComp EMod EPres ExtPict", "", "", "");
|
120
|
+
function isValidUnicodeProperty(version, name, value) {
|
121
|
+
if (gcNameSet.has(name)) {
|
122
|
+
return version >= 2018 && gcValueSets.es2018.has(value);
|
123
|
+
}
|
124
|
+
if (scNameSet.has(name)) {
|
125
|
+
return ((version >= 2018 && scValueSets.es2018.has(value)) ||
|
126
|
+
(version >= 2019 && scValueSets.es2019.has(value)) ||
|
127
|
+
(version >= 2020 && scValueSets.es2020.has(value)) ||
|
128
|
+
(version >= 2021 && scValueSets.es2021.has(value)) ||
|
129
|
+
(version >= 2022 && scValueSets.es2022.has(value)) ||
|
130
|
+
(version >= 2023 && scValueSets.es2023.has(value)));
|
131
|
+
}
|
132
|
+
return false;
|
133
|
+
}
|
134
|
+
function isValidLoneUnicodeProperty(version, value) {
|
135
|
+
return ((version >= 2018 && binPropertySets.es2018.has(value)) ||
|
136
|
+
(version >= 2019 && binPropertySets.es2019.has(value)) ||
|
137
|
+
(version >= 2021 && binPropertySets.es2021.has(value)));
|
138
|
+
}
|
139
|
+
|
140
|
+
const BACKSPACE = 0x08;
|
141
|
+
const CHARACTER_TABULATION = 0x09;
|
142
|
+
const LINE_FEED = 0x0a;
|
143
|
+
const LINE_TABULATION = 0x0b;
|
144
|
+
const FORM_FEED = 0x0c;
|
145
|
+
const CARRIAGE_RETURN = 0x0d;
|
146
|
+
const EXCLAMATION_MARK = 0x21;
|
147
|
+
const NUMBER_SIGN = 0x23;
|
148
|
+
const DOLLAR_SIGN = 0x24;
|
149
|
+
const PERCENT_SIGN = 0x25;
|
150
|
+
const AMPERSAND = 0x26;
|
151
|
+
const LEFT_PARENTHESIS = 0x28;
|
152
|
+
const RIGHT_PARENTHESIS = 0x29;
|
153
|
+
const ASTERISK = 0x2a;
|
154
|
+
const PLUS_SIGN = 0x2b;
|
155
|
+
const COMMA = 0x2c;
|
156
|
+
const HYPHEN_MINUS = 0x2d;
|
157
|
+
const FULL_STOP = 0x2e;
|
158
|
+
const SOLIDUS = 0x2f;
|
159
|
+
const DIGIT_ZERO = 0x30;
|
160
|
+
const DIGIT_ONE = 0x31;
|
161
|
+
const DIGIT_SEVEN = 0x37;
|
162
|
+
const DIGIT_NINE = 0x39;
|
163
|
+
const COLON = 0x3a;
|
164
|
+
const SEMICOLON = 0x3b;
|
165
|
+
const LESS_THAN_SIGN = 0x3c;
|
166
|
+
const EQUALS_SIGN = 0x3d;
|
167
|
+
const GREATER_THAN_SIGN = 0x3e;
|
168
|
+
const QUESTION_MARK = 0x3f;
|
169
|
+
const COMMERCIAL_AT = 0x40;
|
170
|
+
const LATIN_CAPITAL_LETTER_A = 0x41;
|
171
|
+
const LATIN_CAPITAL_LETTER_B = 0x42;
|
172
|
+
const LATIN_CAPITAL_LETTER_D = 0x44;
|
173
|
+
const LATIN_CAPITAL_LETTER_F = 0x46;
|
174
|
+
const LATIN_CAPITAL_LETTER_P = 0x50;
|
175
|
+
const LATIN_CAPITAL_LETTER_S = 0x53;
|
176
|
+
const LATIN_CAPITAL_LETTER_W = 0x57;
|
177
|
+
const LATIN_CAPITAL_LETTER_Z = 0x5a;
|
178
|
+
const LOW_LINE = 0x5f;
|
179
|
+
const LATIN_SMALL_LETTER_A = 0x61;
|
180
|
+
const LATIN_SMALL_LETTER_B = 0x62;
|
181
|
+
const LATIN_SMALL_LETTER_C = 0x63;
|
182
|
+
const LATIN_SMALL_LETTER_D = 0x64;
|
183
|
+
const LATIN_SMALL_LETTER_F = 0x66;
|
184
|
+
const LATIN_SMALL_LETTER_G = 0x67;
|
185
|
+
const LATIN_SMALL_LETTER_I = 0x69;
|
186
|
+
const LATIN_SMALL_LETTER_K = 0x6b;
|
187
|
+
const LATIN_SMALL_LETTER_M = 0x6d;
|
188
|
+
const LATIN_SMALL_LETTER_N = 0x6e;
|
189
|
+
const LATIN_SMALL_LETTER_P = 0x70;
|
190
|
+
const LATIN_SMALL_LETTER_Q = 0x71;
|
191
|
+
const LATIN_SMALL_LETTER_R = 0x72;
|
192
|
+
const LATIN_SMALL_LETTER_S = 0x73;
|
193
|
+
const LATIN_SMALL_LETTER_T = 0x74;
|
194
|
+
const LATIN_SMALL_LETTER_U = 0x75;
|
195
|
+
const LATIN_SMALL_LETTER_V = 0x76;
|
196
|
+
const LATIN_SMALL_LETTER_W = 0x77;
|
197
|
+
const LATIN_SMALL_LETTER_X = 0x78;
|
198
|
+
const LATIN_SMALL_LETTER_Y = 0x79;
|
199
|
+
const LATIN_SMALL_LETTER_Z = 0x7a;
|
200
|
+
const LEFT_SQUARE_BRACKET = 0x5b;
|
201
|
+
const REVERSE_SOLIDUS = 0x5c;
|
202
|
+
const RIGHT_SQUARE_BRACKET = 0x5d;
|
203
|
+
const CIRCUMFLEX_ACCENT = 0x5e;
|
204
|
+
const GRAVE_ACCENT = 0x60;
|
205
|
+
const LEFT_CURLY_BRACKET = 0x7b;
|
206
|
+
const VERTICAL_LINE = 0x7c;
|
207
|
+
const RIGHT_CURLY_BRACKET = 0x7d;
|
208
|
+
const TILDE = 0x7e;
|
209
|
+
const ZERO_WIDTH_NON_JOINER = 0x200c;
|
210
|
+
const ZERO_WIDTH_JOINER = 0x200d;
|
211
|
+
const LINE_SEPARATOR = 0x2028;
|
212
|
+
const PARAGRAPH_SEPARATOR = 0x2029;
|
213
|
+
const MIN_CODE_POINT = 0x00;
|
214
|
+
const MAX_CODE_POINT = 0x10ffff;
|
215
|
+
function isLatinLetter(code) {
|
216
|
+
return ((code >= LATIN_CAPITAL_LETTER_A && code <= LATIN_CAPITAL_LETTER_Z) ||
|
217
|
+
(code >= LATIN_SMALL_LETTER_A && code <= LATIN_SMALL_LETTER_Z));
|
218
|
+
}
|
219
|
+
function isDecimalDigit(code) {
|
220
|
+
return code >= DIGIT_ZERO && code <= DIGIT_NINE;
|
221
|
+
}
|
222
|
+
function isOctalDigit(code) {
|
223
|
+
return code >= DIGIT_ZERO && code <= DIGIT_SEVEN;
|
224
|
+
}
|
225
|
+
function isHexDigit(code) {
|
226
|
+
return ((code >= DIGIT_ZERO && code <= DIGIT_NINE) ||
|
227
|
+
(code >= LATIN_CAPITAL_LETTER_A && code <= LATIN_CAPITAL_LETTER_F) ||
|
228
|
+
(code >= LATIN_SMALL_LETTER_A && code <= LATIN_SMALL_LETTER_F));
|
229
|
+
}
|
230
|
+
function isLineTerminator(code) {
|
231
|
+
return (code === LINE_FEED ||
|
232
|
+
code === CARRIAGE_RETURN ||
|
233
|
+
code === LINE_SEPARATOR ||
|
234
|
+
code === PARAGRAPH_SEPARATOR);
|
235
|
+
}
|
236
|
+
function isValidUnicode(code) {
|
237
|
+
return code >= MIN_CODE_POINT && code <= MAX_CODE_POINT;
|
238
|
+
}
|
239
|
+
function digitToInt(code) {
|
240
|
+
if (code >= LATIN_SMALL_LETTER_A && code <= LATIN_SMALL_LETTER_F) {
|
241
|
+
return code - LATIN_SMALL_LETTER_A + 10;
|
242
|
+
}
|
243
|
+
if (code >= LATIN_CAPITAL_LETTER_A && code <= LATIN_CAPITAL_LETTER_F) {
|
244
|
+
return code - LATIN_CAPITAL_LETTER_A + 10;
|
245
|
+
}
|
246
|
+
return code - DIGIT_ZERO;
|
247
|
+
}
|
248
|
+
function isLeadSurrogate(code) {
|
249
|
+
return code >= 0xd800 && code <= 0xdbff;
|
250
|
+
}
|
251
|
+
function isTrailSurrogate(code) {
|
252
|
+
return code >= 0xdc00 && code <= 0xdfff;
|
253
|
+
}
|
254
|
+
function combineSurrogatePair(lead, trail) {
|
255
|
+
return (lead - 0xd800) * 0x400 + (trail - 0xdc00) + 0x10000;
|
256
|
+
}
|
257
|
+
|
258
|
+
const legacyImpl = {
|
259
|
+
at(s, end, i) {
|
260
|
+
return i < end ? s.charCodeAt(i) : -1;
|
261
|
+
},
|
262
|
+
width(c) {
|
263
|
+
return 1;
|
264
|
+
},
|
265
|
+
};
|
266
|
+
const unicodeImpl = {
|
267
|
+
at(s, end, i) {
|
268
|
+
return i < end ? s.codePointAt(i) : -1;
|
269
|
+
},
|
270
|
+
width(c) {
|
271
|
+
return c > 0xffff ? 2 : 1;
|
272
|
+
},
|
273
|
+
};
|
274
|
+
class Reader {
|
275
|
+
constructor() {
|
276
|
+
this._impl = legacyImpl;
|
277
|
+
this._s = "";
|
278
|
+
this._i = 0;
|
279
|
+
this._end = 0;
|
280
|
+
this._cp1 = -1;
|
281
|
+
this._w1 = 1;
|
282
|
+
this._cp2 = -1;
|
283
|
+
this._w2 = 1;
|
284
|
+
this._cp3 = -1;
|
285
|
+
this._w3 = 1;
|
286
|
+
this._cp4 = -1;
|
287
|
+
}
|
288
|
+
get source() {
|
289
|
+
return this._s;
|
290
|
+
}
|
291
|
+
get index() {
|
292
|
+
return this._i;
|
293
|
+
}
|
294
|
+
get currentCodePoint() {
|
295
|
+
return this._cp1;
|
296
|
+
}
|
297
|
+
get nextCodePoint() {
|
298
|
+
return this._cp2;
|
299
|
+
}
|
300
|
+
get nextCodePoint2() {
|
301
|
+
return this._cp3;
|
302
|
+
}
|
303
|
+
get nextCodePoint3() {
|
304
|
+
return this._cp4;
|
305
|
+
}
|
306
|
+
reset(source, start, end, uFlag) {
|
307
|
+
this._impl = uFlag ? unicodeImpl : legacyImpl;
|
308
|
+
this._s = source;
|
309
|
+
this._end = end;
|
310
|
+
this.rewind(start);
|
311
|
+
}
|
312
|
+
rewind(index) {
|
313
|
+
const impl = this._impl;
|
314
|
+
this._i = index;
|
315
|
+
this._cp1 = impl.at(this._s, this._end, index);
|
316
|
+
this._w1 = impl.width(this._cp1);
|
317
|
+
this._cp2 = impl.at(this._s, this._end, index + this._w1);
|
318
|
+
this._w2 = impl.width(this._cp2);
|
319
|
+
this._cp3 = impl.at(this._s, this._end, index + this._w1 + this._w2);
|
320
|
+
this._w3 = impl.width(this._cp3);
|
321
|
+
this._cp4 = impl.at(this._s, this._end, index + this._w1 + this._w2 + this._w3);
|
322
|
+
}
|
323
|
+
advance() {
|
324
|
+
if (this._cp1 !== -1) {
|
325
|
+
const impl = this._impl;
|
326
|
+
this._i += this._w1;
|
327
|
+
this._cp1 = this._cp2;
|
328
|
+
this._w1 = this._w2;
|
329
|
+
this._cp2 = this._cp3;
|
330
|
+
this._w2 = impl.width(this._cp2);
|
331
|
+
this._cp3 = this._cp4;
|
332
|
+
this._w3 = impl.width(this._cp3);
|
333
|
+
this._cp4 = impl.at(this._s, this._end, this._i + this._w1 + this._w2 + this._w3);
|
334
|
+
}
|
335
|
+
}
|
336
|
+
eat(cp) {
|
337
|
+
if (this._cp1 === cp) {
|
338
|
+
this.advance();
|
339
|
+
return true;
|
340
|
+
}
|
341
|
+
return false;
|
342
|
+
}
|
343
|
+
eat2(cp1, cp2) {
|
344
|
+
if (this._cp1 === cp1 && this._cp2 === cp2) {
|
345
|
+
this.advance();
|
346
|
+
this.advance();
|
347
|
+
return true;
|
348
|
+
}
|
349
|
+
return false;
|
350
|
+
}
|
351
|
+
eat3(cp1, cp2, cp3) {
|
352
|
+
if (this._cp1 === cp1 && this._cp2 === cp2 && this._cp3 === cp3) {
|
353
|
+
this.advance();
|
354
|
+
this.advance();
|
355
|
+
this.advance();
|
356
|
+
return true;
|
357
|
+
}
|
358
|
+
return false;
|
359
|
+
}
|
360
|
+
}
|
361
|
+
|
362
|
+
class RegExpSyntaxError extends SyntaxError {
|
363
|
+
constructor(srcCtx, flags, index, message) {
|
364
|
+
let source = "";
|
365
|
+
if (srcCtx.kind === "literal") {
|
366
|
+
const literal = srcCtx.source.slice(srcCtx.start, srcCtx.end);
|
367
|
+
if (literal) {
|
368
|
+
source = `: ${literal}`;
|
369
|
+
}
|
370
|
+
}
|
371
|
+
else if (srcCtx.kind === "pattern") {
|
372
|
+
const pattern = srcCtx.source.slice(srcCtx.start, srcCtx.end);
|
373
|
+
const flagsText = `${flags.unicode ? "u" : ""}${flags.unicodeSets ? "v" : ""}`;
|
374
|
+
source = `: /${pattern}/${flagsText}`;
|
375
|
+
}
|
376
|
+
super(`Invalid regular expression${source}: ${message}`);
|
377
|
+
this.index = index;
|
378
|
+
}
|
379
|
+
}
|
380
|
+
|
381
|
+
const binPropertyOfStringSets = new Set([
|
382
|
+
"Basic_Emoji",
|
383
|
+
"Emoji_Keycap_Sequence",
|
384
|
+
"RGI_Emoji_Modifier_Sequence",
|
385
|
+
"RGI_Emoji_Flag_Sequence",
|
386
|
+
"RGI_Emoji_Tag_Sequence",
|
387
|
+
"RGI_Emoji_ZWJ_Sequence",
|
388
|
+
"RGI_Emoji",
|
389
|
+
]);
|
390
|
+
function isValidLoneUnicodePropertyOfString(version, value) {
|
391
|
+
return version >= 2024 && binPropertyOfStringSets.has(value);
|
392
|
+
}
|
393
|
+
|
394
|
+
const SYNTAX_CHARACTER = new Set([
|
395
|
+
CIRCUMFLEX_ACCENT,
|
396
|
+
DOLLAR_SIGN,
|
397
|
+
REVERSE_SOLIDUS,
|
398
|
+
FULL_STOP,
|
399
|
+
ASTERISK,
|
400
|
+
PLUS_SIGN,
|
401
|
+
QUESTION_MARK,
|
402
|
+
LEFT_PARENTHESIS,
|
403
|
+
RIGHT_PARENTHESIS,
|
404
|
+
LEFT_SQUARE_BRACKET,
|
405
|
+
RIGHT_SQUARE_BRACKET,
|
406
|
+
LEFT_CURLY_BRACKET,
|
407
|
+
RIGHT_CURLY_BRACKET,
|
408
|
+
VERTICAL_LINE,
|
409
|
+
]);
|
410
|
+
const CLASS_SET_RESERVED_DOUBLE_PUNCTUATOR_CHARACTER = new Set([
|
411
|
+
AMPERSAND,
|
412
|
+
EXCLAMATION_MARK,
|
413
|
+
NUMBER_SIGN,
|
414
|
+
DOLLAR_SIGN,
|
415
|
+
PERCENT_SIGN,
|
416
|
+
ASTERISK,
|
417
|
+
PLUS_SIGN,
|
418
|
+
COMMA,
|
419
|
+
FULL_STOP,
|
420
|
+
COLON,
|
421
|
+
SEMICOLON,
|
422
|
+
LESS_THAN_SIGN,
|
423
|
+
EQUALS_SIGN,
|
424
|
+
GREATER_THAN_SIGN,
|
425
|
+
QUESTION_MARK,
|
426
|
+
COMMERCIAL_AT,
|
427
|
+
CIRCUMFLEX_ACCENT,
|
428
|
+
GRAVE_ACCENT,
|
429
|
+
TILDE,
|
430
|
+
]);
|
431
|
+
const CLASS_SET_SYNTAX_CHARACTER = new Set([
|
432
|
+
LEFT_PARENTHESIS,
|
433
|
+
RIGHT_PARENTHESIS,
|
434
|
+
LEFT_SQUARE_BRACKET,
|
435
|
+
RIGHT_SQUARE_BRACKET,
|
436
|
+
LEFT_CURLY_BRACKET,
|
437
|
+
RIGHT_CURLY_BRACKET,
|
438
|
+
SOLIDUS,
|
439
|
+
HYPHEN_MINUS,
|
440
|
+
REVERSE_SOLIDUS,
|
441
|
+
VERTICAL_LINE,
|
442
|
+
]);
|
443
|
+
const CLASS_SET_RESERVED_PUNCTUATOR = new Set([
|
444
|
+
AMPERSAND,
|
445
|
+
HYPHEN_MINUS,
|
446
|
+
EXCLAMATION_MARK,
|
447
|
+
NUMBER_SIGN,
|
448
|
+
PERCENT_SIGN,
|
449
|
+
COMMA,
|
450
|
+
COLON,
|
451
|
+
SEMICOLON,
|
452
|
+
LESS_THAN_SIGN,
|
453
|
+
EQUALS_SIGN,
|
454
|
+
GREATER_THAN_SIGN,
|
455
|
+
COMMERCIAL_AT,
|
456
|
+
GRAVE_ACCENT,
|
457
|
+
TILDE,
|
458
|
+
]);
|
459
|
+
function isSyntaxCharacter(cp) {
|
460
|
+
return SYNTAX_CHARACTER.has(cp);
|
461
|
+
}
|
462
|
+
function isClassSetReservedDoublePunctuatorCharacter(cp) {
|
463
|
+
return CLASS_SET_RESERVED_DOUBLE_PUNCTUATOR_CHARACTER.has(cp);
|
464
|
+
}
|
465
|
+
function isClassSetSyntaxCharacter(cp) {
|
466
|
+
return CLASS_SET_SYNTAX_CHARACTER.has(cp);
|
467
|
+
}
|
468
|
+
function isClassSetReservedPunctuator(cp) {
|
469
|
+
return CLASS_SET_RESERVED_PUNCTUATOR.has(cp);
|
470
|
+
}
|
471
|
+
function isIdentifierStartChar(cp) {
|
472
|
+
return isIdStart(cp) || cp === DOLLAR_SIGN || cp === LOW_LINE;
|
473
|
+
}
|
474
|
+
function isIdentifierPartChar(cp) {
|
475
|
+
return (isIdContinue(cp) ||
|
476
|
+
cp === DOLLAR_SIGN ||
|
477
|
+
cp === ZERO_WIDTH_NON_JOINER ||
|
478
|
+
cp === ZERO_WIDTH_JOINER);
|
479
|
+
}
|
480
|
+
function isUnicodePropertyNameCharacter(cp) {
|
481
|
+
return isLatinLetter(cp) || cp === LOW_LINE;
|
482
|
+
}
|
483
|
+
function isUnicodePropertyValueCharacter(cp) {
|
484
|
+
return isUnicodePropertyNameCharacter(cp) || isDecimalDigit(cp);
|
485
|
+
}
|
486
|
+
class RegExpValidator {
|
487
|
+
constructor(options) {
|
488
|
+
this._reader = new Reader();
|
489
|
+
this._unicodeMode = false;
|
490
|
+
this._unicodeSetsMode = false;
|
491
|
+
this._nFlag = false;
|
492
|
+
this._lastIntValue = 0;
|
493
|
+
this._lastRange = {
|
494
|
+
min: 0,
|
495
|
+
max: Number.POSITIVE_INFINITY,
|
496
|
+
};
|
497
|
+
this._lastStrValue = "";
|
498
|
+
this._lastAssertionIsQuantifiable = false;
|
499
|
+
this._numCapturingParens = 0;
|
500
|
+
this._groupNames = new Set();
|
501
|
+
this._backreferenceNames = new Set();
|
502
|
+
this._srcCtx = null;
|
503
|
+
this._options = options !== null && options !== void 0 ? options : {};
|
504
|
+
}
|
505
|
+
validateLiteral(source, start = 0, end = source.length) {
|
506
|
+
this._srcCtx = { source, start, end, kind: "literal" };
|
507
|
+
this._unicodeSetsMode = this._unicodeMode = this._nFlag = false;
|
508
|
+
this.reset(source, start, end);
|
509
|
+
this.onLiteralEnter(start);
|
510
|
+
if (this.eat(SOLIDUS) && this.eatRegExpBody() && this.eat(SOLIDUS)) {
|
511
|
+
const flagStart = this.index;
|
512
|
+
const unicode = source.includes("u", flagStart);
|
513
|
+
const unicodeSets = source.includes("v", flagStart);
|
514
|
+
this.validateFlagsInternal(source, flagStart, end);
|
515
|
+
this.validatePatternInternal(source, start + 1, flagStart - 1, {
|
516
|
+
unicode,
|
517
|
+
unicodeSets,
|
518
|
+
});
|
519
|
+
}
|
520
|
+
else if (start >= end) {
|
521
|
+
this.raise("Empty");
|
522
|
+
}
|
523
|
+
else {
|
524
|
+
const c = String.fromCodePoint(this.currentCodePoint);
|
525
|
+
this.raise(`Unexpected character '${c}'`);
|
526
|
+
}
|
527
|
+
this.onLiteralLeave(start, end);
|
528
|
+
}
|
529
|
+
validateFlags(source, start = 0, end = source.length) {
|
530
|
+
this._srcCtx = { source, start, end, kind: "flags" };
|
531
|
+
this.validateFlagsInternal(source, start, end);
|
532
|
+
}
|
533
|
+
validatePattern(source, start = 0, end = source.length, uFlagOrFlags = undefined) {
|
534
|
+
this._srcCtx = { source, start, end, kind: "pattern" };
|
535
|
+
this.validatePatternInternal(source, start, end, uFlagOrFlags);
|
536
|
+
}
|
537
|
+
validatePatternInternal(source, start = 0, end = source.length, uFlagOrFlags = undefined) {
|
538
|
+
const mode = this._parseFlagsOptionToMode(uFlagOrFlags, end);
|
539
|
+
this._unicodeMode = mode.unicodeMode;
|
540
|
+
this._nFlag = mode.nFlag;
|
541
|
+
this._unicodeSetsMode = mode.unicodeSetsMode;
|
542
|
+
this.reset(source, start, end);
|
543
|
+
this.consumePattern();
|
544
|
+
if (!this._nFlag &&
|
545
|
+
this.ecmaVersion >= 2018 &&
|
546
|
+
this._groupNames.size > 0) {
|
547
|
+
this._nFlag = true;
|
548
|
+
this.rewind(start);
|
549
|
+
this.consumePattern();
|
550
|
+
}
|
551
|
+
}
|
552
|
+
validateFlagsInternal(source, start, end) {
|
553
|
+
const existingFlags = new Set();
|
554
|
+
let global = false;
|
555
|
+
let ignoreCase = false;
|
556
|
+
let multiline = false;
|
557
|
+
let sticky = false;
|
558
|
+
let unicode = false;
|
559
|
+
let dotAll = false;
|
560
|
+
let hasIndices = false;
|
561
|
+
let unicodeSets = false;
|
562
|
+
for (let i = start; i < end; ++i) {
|
563
|
+
const flag = source.charCodeAt(i);
|
564
|
+
if (existingFlags.has(flag)) {
|
565
|
+
this.raise(`Duplicated flag '${source[i]}'`, { index: start });
|
566
|
+
}
|
567
|
+
existingFlags.add(flag);
|
568
|
+
if (flag === LATIN_SMALL_LETTER_G) {
|
569
|
+
global = true;
|
570
|
+
}
|
571
|
+
else if (flag === LATIN_SMALL_LETTER_I) {
|
572
|
+
ignoreCase = true;
|
573
|
+
}
|
574
|
+
else if (flag === LATIN_SMALL_LETTER_M) {
|
575
|
+
multiline = true;
|
576
|
+
}
|
577
|
+
else if (flag === LATIN_SMALL_LETTER_U &&
|
578
|
+
this.ecmaVersion >= 2015) {
|
579
|
+
unicode = true;
|
580
|
+
}
|
581
|
+
else if (flag === LATIN_SMALL_LETTER_Y &&
|
582
|
+
this.ecmaVersion >= 2015) {
|
583
|
+
sticky = true;
|
584
|
+
}
|
585
|
+
else if (flag === LATIN_SMALL_LETTER_S &&
|
586
|
+
this.ecmaVersion >= 2018) {
|
587
|
+
dotAll = true;
|
588
|
+
}
|
589
|
+
else if (flag === LATIN_SMALL_LETTER_D &&
|
590
|
+
this.ecmaVersion >= 2022) {
|
591
|
+
hasIndices = true;
|
592
|
+
}
|
593
|
+
else if (flag === LATIN_SMALL_LETTER_V &&
|
594
|
+
this.ecmaVersion >= 2024) {
|
595
|
+
unicodeSets = true;
|
596
|
+
}
|
597
|
+
else {
|
598
|
+
this.raise(`Invalid flag '${source[i]}'`, { index: start });
|
599
|
+
}
|
600
|
+
}
|
601
|
+
this.onRegExpFlags(start, end, {
|
602
|
+
global,
|
603
|
+
ignoreCase,
|
604
|
+
multiline,
|
605
|
+
unicode,
|
606
|
+
sticky,
|
607
|
+
dotAll,
|
608
|
+
hasIndices,
|
609
|
+
unicodeSets,
|
610
|
+
});
|
611
|
+
}
|
612
|
+
_parseFlagsOptionToMode(uFlagOrFlags, sourceEnd) {
|
613
|
+
let unicode = false;
|
614
|
+
let unicodeSets = false;
|
615
|
+
if (uFlagOrFlags && this.ecmaVersion >= 2015) {
|
616
|
+
if (typeof uFlagOrFlags === "object") {
|
617
|
+
unicode = Boolean(uFlagOrFlags.unicode);
|
618
|
+
if (this.ecmaVersion >= 2024) {
|
619
|
+
unicodeSets = Boolean(uFlagOrFlags.unicodeSets);
|
620
|
+
}
|
621
|
+
}
|
622
|
+
else {
|
623
|
+
unicode = uFlagOrFlags;
|
624
|
+
}
|
625
|
+
}
|
626
|
+
if (unicode && unicodeSets) {
|
627
|
+
this.raise("Invalid regular expression flags", {
|
628
|
+
index: sourceEnd + 1,
|
629
|
+
unicode,
|
630
|
+
unicodeSets,
|
631
|
+
});
|
632
|
+
}
|
633
|
+
const unicodeMode = unicode || unicodeSets;
|
634
|
+
const nFlag = (unicode && this.ecmaVersion >= 2018) ||
|
635
|
+
unicodeSets ||
|
636
|
+
Boolean(this._options.strict && this.ecmaVersion >= 2023);
|
637
|
+
const unicodeSetsMode = unicodeSets;
|
638
|
+
return { unicodeMode, nFlag, unicodeSetsMode };
|
639
|
+
}
|
640
|
+
get strict() {
|
641
|
+
return Boolean(this._options.strict) || this._unicodeMode;
|
642
|
+
}
|
643
|
+
get ecmaVersion() {
|
644
|
+
var _a;
|
645
|
+
return (_a = this._options.ecmaVersion) !== null && _a !== void 0 ? _a : latestEcmaVersion;
|
646
|
+
}
|
647
|
+
onLiteralEnter(start) {
|
648
|
+
if (this._options.onLiteralEnter) {
|
649
|
+
this._options.onLiteralEnter(start);
|
650
|
+
}
|
651
|
+
}
|
652
|
+
onLiteralLeave(start, end) {
|
653
|
+
if (this._options.onLiteralLeave) {
|
654
|
+
this._options.onLiteralLeave(start, end);
|
655
|
+
}
|
656
|
+
}
|
657
|
+
onRegExpFlags(start, end, flags) {
|
658
|
+
if (this._options.onRegExpFlags) {
|
659
|
+
this._options.onRegExpFlags(start, end, flags);
|
660
|
+
}
|
661
|
+
if (this._options.onFlags) {
|
662
|
+
this._options.onFlags(start, end, flags.global, flags.ignoreCase, flags.multiline, flags.unicode, flags.sticky, flags.dotAll, flags.hasIndices);
|
663
|
+
}
|
664
|
+
}
|
665
|
+
onPatternEnter(start) {
|
666
|
+
if (this._options.onPatternEnter) {
|
667
|
+
this._options.onPatternEnter(start);
|
668
|
+
}
|
669
|
+
}
|
670
|
+
onPatternLeave(start, end) {
|
671
|
+
if (this._options.onPatternLeave) {
|
672
|
+
this._options.onPatternLeave(start, end);
|
673
|
+
}
|
674
|
+
}
|
675
|
+
onDisjunctionEnter(start) {
|
676
|
+
if (this._options.onDisjunctionEnter) {
|
677
|
+
this._options.onDisjunctionEnter(start);
|
678
|
+
}
|
679
|
+
}
|
680
|
+
onDisjunctionLeave(start, end) {
|
681
|
+
if (this._options.onDisjunctionLeave) {
|
682
|
+
this._options.onDisjunctionLeave(start, end);
|
683
|
+
}
|
684
|
+
}
|
685
|
+
onAlternativeEnter(start, index) {
|
686
|
+
if (this._options.onAlternativeEnter) {
|
687
|
+
this._options.onAlternativeEnter(start, index);
|
688
|
+
}
|
689
|
+
}
|
690
|
+
onAlternativeLeave(start, end, index) {
|
691
|
+
if (this._options.onAlternativeLeave) {
|
692
|
+
this._options.onAlternativeLeave(start, end, index);
|
693
|
+
}
|
694
|
+
}
|
695
|
+
onGroupEnter(start) {
|
696
|
+
if (this._options.onGroupEnter) {
|
697
|
+
this._options.onGroupEnter(start);
|
698
|
+
}
|
699
|
+
}
|
700
|
+
onGroupLeave(start, end) {
|
701
|
+
if (this._options.onGroupLeave) {
|
702
|
+
this._options.onGroupLeave(start, end);
|
703
|
+
}
|
704
|
+
}
|
705
|
+
onCapturingGroupEnter(start, name) {
|
706
|
+
if (this._options.onCapturingGroupEnter) {
|
707
|
+
this._options.onCapturingGroupEnter(start, name);
|
708
|
+
}
|
709
|
+
}
|
710
|
+
onCapturingGroupLeave(start, end, name) {
|
711
|
+
if (this._options.onCapturingGroupLeave) {
|
712
|
+
this._options.onCapturingGroupLeave(start, end, name);
|
713
|
+
}
|
714
|
+
}
|
715
|
+
onQuantifier(start, end, min, max, greedy) {
|
716
|
+
if (this._options.onQuantifier) {
|
717
|
+
this._options.onQuantifier(start, end, min, max, greedy);
|
718
|
+
}
|
719
|
+
}
|
720
|
+
onLookaroundAssertionEnter(start, kind, negate) {
|
721
|
+
if (this._options.onLookaroundAssertionEnter) {
|
722
|
+
this._options.onLookaroundAssertionEnter(start, kind, negate);
|
723
|
+
}
|
724
|
+
}
|
725
|
+
onLookaroundAssertionLeave(start, end, kind, negate) {
|
726
|
+
if (this._options.onLookaroundAssertionLeave) {
|
727
|
+
this._options.onLookaroundAssertionLeave(start, end, kind, negate);
|
728
|
+
}
|
729
|
+
}
|
730
|
+
onEdgeAssertion(start, end, kind) {
|
731
|
+
if (this._options.onEdgeAssertion) {
|
732
|
+
this._options.onEdgeAssertion(start, end, kind);
|
733
|
+
}
|
734
|
+
}
|
735
|
+
onWordBoundaryAssertion(start, end, kind, negate) {
|
736
|
+
if (this._options.onWordBoundaryAssertion) {
|
737
|
+
this._options.onWordBoundaryAssertion(start, end, kind, negate);
|
738
|
+
}
|
739
|
+
}
|
740
|
+
onAnyCharacterSet(start, end, kind) {
|
741
|
+
if (this._options.onAnyCharacterSet) {
|
742
|
+
this._options.onAnyCharacterSet(start, end, kind);
|
743
|
+
}
|
744
|
+
}
|
745
|
+
onEscapeCharacterSet(start, end, kind, negate) {
|
746
|
+
if (this._options.onEscapeCharacterSet) {
|
747
|
+
this._options.onEscapeCharacterSet(start, end, kind, negate);
|
748
|
+
}
|
749
|
+
}
|
750
|
+
onUnicodePropertyCharacterSet(start, end, kind, key, value, negate, strings) {
|
751
|
+
if (this._options.onUnicodePropertyCharacterSet) {
|
752
|
+
this._options.onUnicodePropertyCharacterSet(start, end, kind, key, value, negate, strings);
|
753
|
+
}
|
754
|
+
}
|
755
|
+
onCharacter(start, end, value) {
|
756
|
+
if (this._options.onCharacter) {
|
757
|
+
this._options.onCharacter(start, end, value);
|
758
|
+
}
|
759
|
+
}
|
760
|
+
onBackreference(start, end, ref) {
|
761
|
+
if (this._options.onBackreference) {
|
762
|
+
this._options.onBackreference(start, end, ref);
|
763
|
+
}
|
764
|
+
}
|
765
|
+
onCharacterClassEnter(start, negate, unicodeSets) {
|
766
|
+
if (this._options.onCharacterClassEnter) {
|
767
|
+
this._options.onCharacterClassEnter(start, negate, unicodeSets);
|
768
|
+
}
|
769
|
+
}
|
770
|
+
onCharacterClassLeave(start, end, negate) {
|
771
|
+
if (this._options.onCharacterClassLeave) {
|
772
|
+
this._options.onCharacterClassLeave(start, end, negate);
|
773
|
+
}
|
774
|
+
}
|
775
|
+
onCharacterClassRange(start, end, min, max) {
|
776
|
+
if (this._options.onCharacterClassRange) {
|
777
|
+
this._options.onCharacterClassRange(start, end, min, max);
|
778
|
+
}
|
779
|
+
}
|
780
|
+
onClassIntersection(start, end) {
|
781
|
+
if (this._options.onClassIntersection) {
|
782
|
+
this._options.onClassIntersection(start, end);
|
783
|
+
}
|
784
|
+
}
|
785
|
+
onClassSubtraction(start, end) {
|
786
|
+
if (this._options.onClassSubtraction) {
|
787
|
+
this._options.onClassSubtraction(start, end);
|
788
|
+
}
|
789
|
+
}
|
790
|
+
onClassStringDisjunctionEnter(start) {
|
791
|
+
if (this._options.onClassStringDisjunctionEnter) {
|
792
|
+
this._options.onClassStringDisjunctionEnter(start);
|
793
|
+
}
|
794
|
+
}
|
795
|
+
onClassStringDisjunctionLeave(start, end) {
|
796
|
+
if (this._options.onClassStringDisjunctionLeave) {
|
797
|
+
this._options.onClassStringDisjunctionLeave(start, end);
|
798
|
+
}
|
799
|
+
}
|
800
|
+
onStringAlternativeEnter(start, index) {
|
801
|
+
if (this._options.onStringAlternativeEnter) {
|
802
|
+
this._options.onStringAlternativeEnter(start, index);
|
803
|
+
}
|
804
|
+
}
|
805
|
+
onStringAlternativeLeave(start, end, index) {
|
806
|
+
if (this._options.onStringAlternativeLeave) {
|
807
|
+
this._options.onStringAlternativeLeave(start, end, index);
|
808
|
+
}
|
809
|
+
}
|
810
|
+
get index() {
|
811
|
+
return this._reader.index;
|
812
|
+
}
|
813
|
+
get currentCodePoint() {
|
814
|
+
return this._reader.currentCodePoint;
|
815
|
+
}
|
816
|
+
get nextCodePoint() {
|
817
|
+
return this._reader.nextCodePoint;
|
818
|
+
}
|
819
|
+
get nextCodePoint2() {
|
820
|
+
return this._reader.nextCodePoint2;
|
821
|
+
}
|
822
|
+
get nextCodePoint3() {
|
823
|
+
return this._reader.nextCodePoint3;
|
824
|
+
}
|
825
|
+
reset(source, start, end) {
|
826
|
+
this._reader.reset(source, start, end, this._unicodeMode);
|
827
|
+
}
|
828
|
+
rewind(index) {
|
829
|
+
this._reader.rewind(index);
|
830
|
+
}
|
831
|
+
advance() {
|
832
|
+
this._reader.advance();
|
833
|
+
}
|
834
|
+
eat(cp) {
|
835
|
+
return this._reader.eat(cp);
|
836
|
+
}
|
837
|
+
eat2(cp1, cp2) {
|
838
|
+
return this._reader.eat2(cp1, cp2);
|
839
|
+
}
|
840
|
+
eat3(cp1, cp2, cp3) {
|
841
|
+
return this._reader.eat3(cp1, cp2, cp3);
|
842
|
+
}
|
843
|
+
raise(message, context) {
|
844
|
+
var _a, _b, _c;
|
845
|
+
throw new RegExpSyntaxError(this._srcCtx, {
|
846
|
+
unicode: (_a = context === null || context === void 0 ? void 0 : context.unicode) !== null && _a !== void 0 ? _a : (this._unicodeMode && !this._unicodeSetsMode),
|
847
|
+
unicodeSets: (_b = context === null || context === void 0 ? void 0 : context.unicodeSets) !== null && _b !== void 0 ? _b : this._unicodeSetsMode,
|
848
|
+
}, (_c = context === null || context === void 0 ? void 0 : context.index) !== null && _c !== void 0 ? _c : this.index, message);
|
849
|
+
}
|
850
|
+
eatRegExpBody() {
|
851
|
+
const start = this.index;
|
852
|
+
let inClass = false;
|
853
|
+
let escaped = false;
|
854
|
+
for (;;) {
|
855
|
+
const cp = this.currentCodePoint;
|
856
|
+
if (cp === -1 || isLineTerminator(cp)) {
|
857
|
+
const kind = inClass ? "character class" : "regular expression";
|
858
|
+
this.raise(`Unterminated ${kind}`);
|
859
|
+
}
|
860
|
+
if (escaped) {
|
861
|
+
escaped = false;
|
862
|
+
}
|
863
|
+
else if (cp === REVERSE_SOLIDUS) {
|
864
|
+
escaped = true;
|
865
|
+
}
|
866
|
+
else if (cp === LEFT_SQUARE_BRACKET) {
|
867
|
+
inClass = true;
|
868
|
+
}
|
869
|
+
else if (cp === RIGHT_SQUARE_BRACKET) {
|
870
|
+
inClass = false;
|
871
|
+
}
|
872
|
+
else if ((cp === SOLIDUS && !inClass) ||
|
873
|
+
(cp === ASTERISK && this.index === start)) {
|
874
|
+
break;
|
875
|
+
}
|
876
|
+
this.advance();
|
877
|
+
}
|
878
|
+
return this.index !== start;
|
879
|
+
}
|
880
|
+
consumePattern() {
|
881
|
+
const start = this.index;
|
882
|
+
this._numCapturingParens = this.countCapturingParens();
|
883
|
+
this._groupNames.clear();
|
884
|
+
this._backreferenceNames.clear();
|
885
|
+
this.onPatternEnter(start);
|
886
|
+
this.consumeDisjunction();
|
887
|
+
const cp = this.currentCodePoint;
|
888
|
+
if (this.currentCodePoint !== -1) {
|
889
|
+
if (cp === RIGHT_PARENTHESIS) {
|
890
|
+
this.raise("Unmatched ')'");
|
891
|
+
}
|
892
|
+
if (cp === REVERSE_SOLIDUS) {
|
893
|
+
this.raise("\\ at end of pattern");
|
894
|
+
}
|
895
|
+
if (cp === RIGHT_SQUARE_BRACKET || cp === RIGHT_CURLY_BRACKET) {
|
896
|
+
this.raise("Lone quantifier brackets");
|
897
|
+
}
|
898
|
+
const c = String.fromCodePoint(cp);
|
899
|
+
this.raise(`Unexpected character '${c}'`);
|
900
|
+
}
|
901
|
+
for (const name of this._backreferenceNames) {
|
902
|
+
if (!this._groupNames.has(name)) {
|
903
|
+
this.raise("Invalid named capture referenced");
|
904
|
+
}
|
905
|
+
}
|
906
|
+
this.onPatternLeave(start, this.index);
|
907
|
+
}
|
908
|
+
countCapturingParens() {
|
909
|
+
const start = this.index;
|
910
|
+
let inClass = false;
|
911
|
+
let escaped = false;
|
912
|
+
let count = 0;
|
913
|
+
let cp = 0;
|
914
|
+
while ((cp = this.currentCodePoint) !== -1) {
|
915
|
+
if (escaped) {
|
916
|
+
escaped = false;
|
917
|
+
}
|
918
|
+
else if (cp === REVERSE_SOLIDUS) {
|
919
|
+
escaped = true;
|
920
|
+
}
|
921
|
+
else if (cp === LEFT_SQUARE_BRACKET) {
|
922
|
+
inClass = true;
|
923
|
+
}
|
924
|
+
else if (cp === RIGHT_SQUARE_BRACKET) {
|
925
|
+
inClass = false;
|
926
|
+
}
|
927
|
+
else if (cp === LEFT_PARENTHESIS &&
|
928
|
+
!inClass &&
|
929
|
+
(this.nextCodePoint !== QUESTION_MARK ||
|
930
|
+
(this.nextCodePoint2 === LESS_THAN_SIGN &&
|
931
|
+
this.nextCodePoint3 !== EQUALS_SIGN &&
|
932
|
+
this.nextCodePoint3 !== EXCLAMATION_MARK))) {
|
933
|
+
count += 1;
|
934
|
+
}
|
935
|
+
this.advance();
|
936
|
+
}
|
937
|
+
this.rewind(start);
|
938
|
+
return count;
|
939
|
+
}
|
940
|
+
consumeDisjunction() {
|
941
|
+
const start = this.index;
|
942
|
+
let i = 0;
|
943
|
+
this.onDisjunctionEnter(start);
|
944
|
+
do {
|
945
|
+
this.consumeAlternative(i++);
|
946
|
+
} while (this.eat(VERTICAL_LINE));
|
947
|
+
if (this.consumeQuantifier(true)) {
|
948
|
+
this.raise("Nothing to repeat");
|
949
|
+
}
|
950
|
+
if (this.eat(LEFT_CURLY_BRACKET)) {
|
951
|
+
this.raise("Lone quantifier brackets");
|
952
|
+
}
|
953
|
+
this.onDisjunctionLeave(start, this.index);
|
954
|
+
}
|
955
|
+
consumeAlternative(i) {
|
956
|
+
const start = this.index;
|
957
|
+
this.onAlternativeEnter(start, i);
|
958
|
+
while (this.currentCodePoint !== -1 && this.consumeTerm()) {
|
959
|
+
}
|
960
|
+
this.onAlternativeLeave(start, this.index, i);
|
961
|
+
}
|
962
|
+
consumeTerm() {
|
963
|
+
if (this._unicodeMode || this.strict) {
|
964
|
+
return (this.consumeAssertion() ||
|
965
|
+
(this.consumeAtom() && this.consumeOptionalQuantifier()));
|
966
|
+
}
|
967
|
+
return ((this.consumeAssertion() &&
|
968
|
+
(!this._lastAssertionIsQuantifiable ||
|
969
|
+
this.consumeOptionalQuantifier())) ||
|
970
|
+
(this.consumeExtendedAtom() && this.consumeOptionalQuantifier()));
|
971
|
+
}
|
972
|
+
consumeOptionalQuantifier() {
|
973
|
+
this.consumeQuantifier();
|
974
|
+
return true;
|
975
|
+
}
|
976
|
+
consumeAssertion() {
|
977
|
+
const start = this.index;
|
978
|
+
this._lastAssertionIsQuantifiable = false;
|
979
|
+
if (this.eat(CIRCUMFLEX_ACCENT)) {
|
980
|
+
this.onEdgeAssertion(start, this.index, "start");
|
981
|
+
return true;
|
982
|
+
}
|
983
|
+
if (this.eat(DOLLAR_SIGN)) {
|
984
|
+
this.onEdgeAssertion(start, this.index, "end");
|
985
|
+
return true;
|
986
|
+
}
|
987
|
+
if (this.eat2(REVERSE_SOLIDUS, LATIN_CAPITAL_LETTER_B)) {
|
988
|
+
this.onWordBoundaryAssertion(start, this.index, "word", true);
|
989
|
+
return true;
|
990
|
+
}
|
991
|
+
if (this.eat2(REVERSE_SOLIDUS, LATIN_SMALL_LETTER_B)) {
|
992
|
+
this.onWordBoundaryAssertion(start, this.index, "word", false);
|
993
|
+
return true;
|
994
|
+
}
|
995
|
+
if (this.eat2(LEFT_PARENTHESIS, QUESTION_MARK)) {
|
996
|
+
const lookbehind = this.ecmaVersion >= 2018 && this.eat(LESS_THAN_SIGN);
|
997
|
+
let negate = false;
|
998
|
+
if (this.eat(EQUALS_SIGN) ||
|
999
|
+
(negate = this.eat(EXCLAMATION_MARK))) {
|
1000
|
+
const kind = lookbehind ? "lookbehind" : "lookahead";
|
1001
|
+
this.onLookaroundAssertionEnter(start, kind, negate);
|
1002
|
+
this.consumeDisjunction();
|
1003
|
+
if (!this.eat(RIGHT_PARENTHESIS)) {
|
1004
|
+
this.raise("Unterminated group");
|
1005
|
+
}
|
1006
|
+
this._lastAssertionIsQuantifiable = !lookbehind && !this.strict;
|
1007
|
+
this.onLookaroundAssertionLeave(start, this.index, kind, negate);
|
1008
|
+
return true;
|
1009
|
+
}
|
1010
|
+
this.rewind(start);
|
1011
|
+
}
|
1012
|
+
return false;
|
1013
|
+
}
|
1014
|
+
consumeQuantifier(noConsume = false) {
|
1015
|
+
const start = this.index;
|
1016
|
+
let min = 0;
|
1017
|
+
let max = 0;
|
1018
|
+
let greedy = false;
|
1019
|
+
if (this.eat(ASTERISK)) {
|
1020
|
+
min = 0;
|
1021
|
+
max = Number.POSITIVE_INFINITY;
|
1022
|
+
}
|
1023
|
+
else if (this.eat(PLUS_SIGN)) {
|
1024
|
+
min = 1;
|
1025
|
+
max = Number.POSITIVE_INFINITY;
|
1026
|
+
}
|
1027
|
+
else if (this.eat(QUESTION_MARK)) {
|
1028
|
+
min = 0;
|
1029
|
+
max = 1;
|
1030
|
+
}
|
1031
|
+
else if (this.eatBracedQuantifier(noConsume)) {
|
1032
|
+
({ min, max } = this._lastRange);
|
1033
|
+
}
|
1034
|
+
else {
|
1035
|
+
return false;
|
1036
|
+
}
|
1037
|
+
greedy = !this.eat(QUESTION_MARK);
|
1038
|
+
if (!noConsume) {
|
1039
|
+
this.onQuantifier(start, this.index, min, max, greedy);
|
1040
|
+
}
|
1041
|
+
return true;
|
1042
|
+
}
|
1043
|
+
eatBracedQuantifier(noError) {
|
1044
|
+
const start = this.index;
|
1045
|
+
if (this.eat(LEFT_CURLY_BRACKET)) {
|
1046
|
+
if (this.eatDecimalDigits()) {
|
1047
|
+
const min = this._lastIntValue;
|
1048
|
+
let max = min;
|
1049
|
+
if (this.eat(COMMA)) {
|
1050
|
+
max = this.eatDecimalDigits()
|
1051
|
+
? this._lastIntValue
|
1052
|
+
: Number.POSITIVE_INFINITY;
|
1053
|
+
}
|
1054
|
+
if (this.eat(RIGHT_CURLY_BRACKET)) {
|
1055
|
+
if (!noError && max < min) {
|
1056
|
+
this.raise("numbers out of order in {} quantifier");
|
1057
|
+
}
|
1058
|
+
this._lastRange = { min, max };
|
1059
|
+
return true;
|
1060
|
+
}
|
1061
|
+
}
|
1062
|
+
if (!noError && (this._unicodeMode || this.strict)) {
|
1063
|
+
this.raise("Incomplete quantifier");
|
1064
|
+
}
|
1065
|
+
this.rewind(start);
|
1066
|
+
}
|
1067
|
+
return false;
|
1068
|
+
}
|
1069
|
+
consumeAtom() {
|
1070
|
+
return (this.consumePatternCharacter() ||
|
1071
|
+
this.consumeDot() ||
|
1072
|
+
this.consumeReverseSolidusAtomEscape() ||
|
1073
|
+
Boolean(this.consumeCharacterClass()) ||
|
1074
|
+
this.consumeUncapturingGroup() ||
|
1075
|
+
this.consumeCapturingGroup());
|
1076
|
+
}
|
1077
|
+
consumeDot() {
|
1078
|
+
if (this.eat(FULL_STOP)) {
|
1079
|
+
this.onAnyCharacterSet(this.index - 1, this.index, "any");
|
1080
|
+
return true;
|
1081
|
+
}
|
1082
|
+
return false;
|
1083
|
+
}
|
1084
|
+
consumeReverseSolidusAtomEscape() {
|
1085
|
+
const start = this.index;
|
1086
|
+
if (this.eat(REVERSE_SOLIDUS)) {
|
1087
|
+
if (this.consumeAtomEscape()) {
|
1088
|
+
return true;
|
1089
|
+
}
|
1090
|
+
this.rewind(start);
|
1091
|
+
}
|
1092
|
+
return false;
|
1093
|
+
}
|
1094
|
+
consumeUncapturingGroup() {
|
1095
|
+
const start = this.index;
|
1096
|
+
if (this.eat3(LEFT_PARENTHESIS, QUESTION_MARK, COLON)) {
|
1097
|
+
this.onGroupEnter(start);
|
1098
|
+
this.consumeDisjunction();
|
1099
|
+
if (!this.eat(RIGHT_PARENTHESIS)) {
|
1100
|
+
this.raise("Unterminated group");
|
1101
|
+
}
|
1102
|
+
this.onGroupLeave(start, this.index);
|
1103
|
+
return true;
|
1104
|
+
}
|
1105
|
+
return false;
|
1106
|
+
}
|
1107
|
+
consumeCapturingGroup() {
|
1108
|
+
const start = this.index;
|
1109
|
+
if (this.eat(LEFT_PARENTHESIS)) {
|
1110
|
+
let name = null;
|
1111
|
+
if (this.ecmaVersion >= 2018) {
|
1112
|
+
if (this.consumeGroupSpecifier()) {
|
1113
|
+
name = this._lastStrValue;
|
1114
|
+
}
|
1115
|
+
}
|
1116
|
+
else if (this.currentCodePoint === QUESTION_MARK) {
|
1117
|
+
this.raise("Invalid group");
|
1118
|
+
}
|
1119
|
+
this.onCapturingGroupEnter(start, name);
|
1120
|
+
this.consumeDisjunction();
|
1121
|
+
if (!this.eat(RIGHT_PARENTHESIS)) {
|
1122
|
+
this.raise("Unterminated group");
|
1123
|
+
}
|
1124
|
+
this.onCapturingGroupLeave(start, this.index, name);
|
1125
|
+
return true;
|
1126
|
+
}
|
1127
|
+
return false;
|
1128
|
+
}
|
1129
|
+
consumeExtendedAtom() {
|
1130
|
+
return (this.consumeDot() ||
|
1131
|
+
this.consumeReverseSolidusAtomEscape() ||
|
1132
|
+
this.consumeReverseSolidusFollowedByC() ||
|
1133
|
+
Boolean(this.consumeCharacterClass()) ||
|
1134
|
+
this.consumeUncapturingGroup() ||
|
1135
|
+
this.consumeCapturingGroup() ||
|
1136
|
+
this.consumeInvalidBracedQuantifier() ||
|
1137
|
+
this.consumeExtendedPatternCharacter());
|
1138
|
+
}
|
1139
|
+
consumeReverseSolidusFollowedByC() {
|
1140
|
+
const start = this.index;
|
1141
|
+
if (this.currentCodePoint === REVERSE_SOLIDUS &&
|
1142
|
+
this.nextCodePoint === LATIN_SMALL_LETTER_C) {
|
1143
|
+
this._lastIntValue = this.currentCodePoint;
|
1144
|
+
this.advance();
|
1145
|
+
this.onCharacter(start, this.index, REVERSE_SOLIDUS);
|
1146
|
+
return true;
|
1147
|
+
}
|
1148
|
+
return false;
|
1149
|
+
}
|
1150
|
+
consumeInvalidBracedQuantifier() {
|
1151
|
+
if (this.eatBracedQuantifier(true)) {
|
1152
|
+
this.raise("Nothing to repeat");
|
1153
|
+
}
|
1154
|
+
return false;
|
1155
|
+
}
|
1156
|
+
consumePatternCharacter() {
|
1157
|
+
const start = this.index;
|
1158
|
+
const cp = this.currentCodePoint;
|
1159
|
+
if (cp !== -1 && !isSyntaxCharacter(cp)) {
|
1160
|
+
this.advance();
|
1161
|
+
this.onCharacter(start, this.index, cp);
|
1162
|
+
return true;
|
1163
|
+
}
|
1164
|
+
return false;
|
1165
|
+
}
|
1166
|
+
consumeExtendedPatternCharacter() {
|
1167
|
+
const start = this.index;
|
1168
|
+
const cp = this.currentCodePoint;
|
1169
|
+
if (cp !== -1 &&
|
1170
|
+
cp !== CIRCUMFLEX_ACCENT &&
|
1171
|
+
cp !== DOLLAR_SIGN &&
|
1172
|
+
cp !== REVERSE_SOLIDUS &&
|
1173
|
+
cp !== FULL_STOP &&
|
1174
|
+
cp !== ASTERISK &&
|
1175
|
+
cp !== PLUS_SIGN &&
|
1176
|
+
cp !== QUESTION_MARK &&
|
1177
|
+
cp !== LEFT_PARENTHESIS &&
|
1178
|
+
cp !== RIGHT_PARENTHESIS &&
|
1179
|
+
cp !== LEFT_SQUARE_BRACKET &&
|
1180
|
+
cp !== VERTICAL_LINE) {
|
1181
|
+
this.advance();
|
1182
|
+
this.onCharacter(start, this.index, cp);
|
1183
|
+
return true;
|
1184
|
+
}
|
1185
|
+
return false;
|
1186
|
+
}
|
1187
|
+
consumeGroupSpecifier() {
|
1188
|
+
if (this.eat(QUESTION_MARK)) {
|
1189
|
+
if (this.eatGroupName()) {
|
1190
|
+
if (!this._groupNames.has(this._lastStrValue)) {
|
1191
|
+
this._groupNames.add(this._lastStrValue);
|
1192
|
+
return true;
|
1193
|
+
}
|
1194
|
+
this.raise("Duplicate capture group name");
|
1195
|
+
}
|
1196
|
+
this.raise("Invalid group");
|
1197
|
+
}
|
1198
|
+
return false;
|
1199
|
+
}
|
1200
|
+
consumeAtomEscape() {
|
1201
|
+
if (this.consumeBackreference() ||
|
1202
|
+
this.consumeCharacterClassEscape() ||
|
1203
|
+
this.consumeCharacterEscape() ||
|
1204
|
+
(this._nFlag && this.consumeKGroupName())) {
|
1205
|
+
return true;
|
1206
|
+
}
|
1207
|
+
if (this.strict || this._unicodeMode) {
|
1208
|
+
this.raise("Invalid escape");
|
1209
|
+
}
|
1210
|
+
return false;
|
1211
|
+
}
|
1212
|
+
consumeBackreference() {
|
1213
|
+
const start = this.index;
|
1214
|
+
if (this.eatDecimalEscape()) {
|
1215
|
+
const n = this._lastIntValue;
|
1216
|
+
if (n <= this._numCapturingParens) {
|
1217
|
+
this.onBackreference(start - 1, this.index, n);
|
1218
|
+
return true;
|
1219
|
+
}
|
1220
|
+
if (this.strict || this._unicodeMode) {
|
1221
|
+
this.raise("Invalid escape");
|
1222
|
+
}
|
1223
|
+
this.rewind(start);
|
1224
|
+
}
|
1225
|
+
return false;
|
1226
|
+
}
|
1227
|
+
consumeCharacterClassEscape() {
|
1228
|
+
var _a;
|
1229
|
+
const start = this.index;
|
1230
|
+
if (this.eat(LATIN_SMALL_LETTER_D)) {
|
1231
|
+
this._lastIntValue = -1;
|
1232
|
+
this.onEscapeCharacterSet(start - 1, this.index, "digit", false);
|
1233
|
+
return {};
|
1234
|
+
}
|
1235
|
+
if (this.eat(LATIN_CAPITAL_LETTER_D)) {
|
1236
|
+
this._lastIntValue = -1;
|
1237
|
+
this.onEscapeCharacterSet(start - 1, this.index, "digit", true);
|
1238
|
+
return {};
|
1239
|
+
}
|
1240
|
+
if (this.eat(LATIN_SMALL_LETTER_S)) {
|
1241
|
+
this._lastIntValue = -1;
|
1242
|
+
this.onEscapeCharacterSet(start - 1, this.index, "space", false);
|
1243
|
+
return {};
|
1244
|
+
}
|
1245
|
+
if (this.eat(LATIN_CAPITAL_LETTER_S)) {
|
1246
|
+
this._lastIntValue = -1;
|
1247
|
+
this.onEscapeCharacterSet(start - 1, this.index, "space", true);
|
1248
|
+
return {};
|
1249
|
+
}
|
1250
|
+
if (this.eat(LATIN_SMALL_LETTER_W)) {
|
1251
|
+
this._lastIntValue = -1;
|
1252
|
+
this.onEscapeCharacterSet(start - 1, this.index, "word", false);
|
1253
|
+
return {};
|
1254
|
+
}
|
1255
|
+
if (this.eat(LATIN_CAPITAL_LETTER_W)) {
|
1256
|
+
this._lastIntValue = -1;
|
1257
|
+
this.onEscapeCharacterSet(start - 1, this.index, "word", true);
|
1258
|
+
return {};
|
1259
|
+
}
|
1260
|
+
let negate = false;
|
1261
|
+
if (this._unicodeMode &&
|
1262
|
+
this.ecmaVersion >= 2018 &&
|
1263
|
+
(this.eat(LATIN_SMALL_LETTER_P) ||
|
1264
|
+
(negate = this.eat(LATIN_CAPITAL_LETTER_P)))) {
|
1265
|
+
this._lastIntValue = -1;
|
1266
|
+
let result = null;
|
1267
|
+
if (this.eat(LEFT_CURLY_BRACKET) &&
|
1268
|
+
(result = this.eatUnicodePropertyValueExpression()) &&
|
1269
|
+
this.eat(RIGHT_CURLY_BRACKET)) {
|
1270
|
+
if (negate && result.strings) {
|
1271
|
+
this.raise("Invalid property name");
|
1272
|
+
}
|
1273
|
+
this.onUnicodePropertyCharacterSet(start - 1, this.index, "property", result.key, result.value, negate, (_a = result.strings) !== null && _a !== void 0 ? _a : false);
|
1274
|
+
return { mayContainStrings: result.strings };
|
1275
|
+
}
|
1276
|
+
this.raise("Invalid property name");
|
1277
|
+
}
|
1278
|
+
return null;
|
1279
|
+
}
|
1280
|
+
consumeCharacterEscape() {
|
1281
|
+
const start = this.index;
|
1282
|
+
if (this.eatControlEscape() ||
|
1283
|
+
this.eatCControlLetter() ||
|
1284
|
+
this.eatZero() ||
|
1285
|
+
this.eatHexEscapeSequence() ||
|
1286
|
+
this.eatRegExpUnicodeEscapeSequence() ||
|
1287
|
+
(!this.strict &&
|
1288
|
+
!this._unicodeMode &&
|
1289
|
+
this.eatLegacyOctalEscapeSequence()) ||
|
1290
|
+
this.eatIdentityEscape()) {
|
1291
|
+
this.onCharacter(start - 1, this.index, this._lastIntValue);
|
1292
|
+
return true;
|
1293
|
+
}
|
1294
|
+
return false;
|
1295
|
+
}
|
1296
|
+
consumeKGroupName() {
|
1297
|
+
const start = this.index;
|
1298
|
+
if (this.eat(LATIN_SMALL_LETTER_K)) {
|
1299
|
+
if (this.eatGroupName()) {
|
1300
|
+
const groupName = this._lastStrValue;
|
1301
|
+
this._backreferenceNames.add(groupName);
|
1302
|
+
this.onBackreference(start - 1, this.index, groupName);
|
1303
|
+
return true;
|
1304
|
+
}
|
1305
|
+
this.raise("Invalid named reference");
|
1306
|
+
}
|
1307
|
+
return false;
|
1308
|
+
}
|
1309
|
+
consumeCharacterClass() {
|
1310
|
+
const start = this.index;
|
1311
|
+
if (this.eat(LEFT_SQUARE_BRACKET)) {
|
1312
|
+
const negate = this.eat(CIRCUMFLEX_ACCENT);
|
1313
|
+
this.onCharacterClassEnter(start, negate, this._unicodeSetsMode);
|
1314
|
+
const result = this.consumeClassContents();
|
1315
|
+
if (!this.eat(RIGHT_SQUARE_BRACKET)) {
|
1316
|
+
if (this.currentCodePoint === -1) {
|
1317
|
+
this.raise("Unterminated character class");
|
1318
|
+
}
|
1319
|
+
this.raise("Invalid character in character class");
|
1320
|
+
}
|
1321
|
+
if (negate && result.mayContainStrings) {
|
1322
|
+
this.raise("Negated character class may contain strings");
|
1323
|
+
}
|
1324
|
+
this.onCharacterClassLeave(start, this.index, negate);
|
1325
|
+
return result;
|
1326
|
+
}
|
1327
|
+
return null;
|
1328
|
+
}
|
1329
|
+
consumeClassContents() {
|
1330
|
+
if (this._unicodeSetsMode) {
|
1331
|
+
if (this.currentCodePoint === RIGHT_SQUARE_BRACKET) {
|
1332
|
+
return {};
|
1333
|
+
}
|
1334
|
+
const result = this.consumeClassSetExpression();
|
1335
|
+
return result;
|
1336
|
+
}
|
1337
|
+
const strict = this.strict || this._unicodeMode;
|
1338
|
+
for (;;) {
|
1339
|
+
const rangeStart = this.index;
|
1340
|
+
if (!this.consumeClassAtom()) {
|
1341
|
+
break;
|
1342
|
+
}
|
1343
|
+
const min = this._lastIntValue;
|
1344
|
+
if (!this.eat(HYPHEN_MINUS)) {
|
1345
|
+
continue;
|
1346
|
+
}
|
1347
|
+
this.onCharacter(this.index - 1, this.index, HYPHEN_MINUS);
|
1348
|
+
if (!this.consumeClassAtom()) {
|
1349
|
+
break;
|
1350
|
+
}
|
1351
|
+
const max = this._lastIntValue;
|
1352
|
+
if (min === -1 || max === -1) {
|
1353
|
+
if (strict) {
|
1354
|
+
this.raise("Invalid character class");
|
1355
|
+
}
|
1356
|
+
continue;
|
1357
|
+
}
|
1358
|
+
if (min > max) {
|
1359
|
+
this.raise("Range out of order in character class");
|
1360
|
+
}
|
1361
|
+
this.onCharacterClassRange(rangeStart, this.index, min, max);
|
1362
|
+
}
|
1363
|
+
return {};
|
1364
|
+
}
|
1365
|
+
consumeClassAtom() {
|
1366
|
+
const start = this.index;
|
1367
|
+
const cp = this.currentCodePoint;
|
1368
|
+
if (cp !== -1 &&
|
1369
|
+
cp !== REVERSE_SOLIDUS &&
|
1370
|
+
cp !== RIGHT_SQUARE_BRACKET) {
|
1371
|
+
this.advance();
|
1372
|
+
this._lastIntValue = cp;
|
1373
|
+
this.onCharacter(start, this.index, this._lastIntValue);
|
1374
|
+
return true;
|
1375
|
+
}
|
1376
|
+
if (this.eat(REVERSE_SOLIDUS)) {
|
1377
|
+
if (this.consumeClassEscape()) {
|
1378
|
+
return true;
|
1379
|
+
}
|
1380
|
+
if (!this.strict &&
|
1381
|
+
this.currentCodePoint === LATIN_SMALL_LETTER_C) {
|
1382
|
+
this._lastIntValue = REVERSE_SOLIDUS;
|
1383
|
+
this.onCharacter(start, this.index, this._lastIntValue);
|
1384
|
+
return true;
|
1385
|
+
}
|
1386
|
+
if (this.strict || this._unicodeMode) {
|
1387
|
+
this.raise("Invalid escape");
|
1388
|
+
}
|
1389
|
+
this.rewind(start);
|
1390
|
+
}
|
1391
|
+
return false;
|
1392
|
+
}
|
1393
|
+
consumeClassEscape() {
|
1394
|
+
const start = this.index;
|
1395
|
+
if (this.eat(LATIN_SMALL_LETTER_B)) {
|
1396
|
+
this._lastIntValue = BACKSPACE;
|
1397
|
+
this.onCharacter(start - 1, this.index, this._lastIntValue);
|
1398
|
+
return true;
|
1399
|
+
}
|
1400
|
+
if (this._unicodeMode && this.eat(HYPHEN_MINUS)) {
|
1401
|
+
this._lastIntValue = HYPHEN_MINUS;
|
1402
|
+
this.onCharacter(start - 1, this.index, this._lastIntValue);
|
1403
|
+
return true;
|
1404
|
+
}
|
1405
|
+
let cp = 0;
|
1406
|
+
if (!this.strict &&
|
1407
|
+
!this._unicodeMode &&
|
1408
|
+
this.currentCodePoint === LATIN_SMALL_LETTER_C &&
|
1409
|
+
(isDecimalDigit((cp = this.nextCodePoint)) || cp === LOW_LINE)) {
|
1410
|
+
this.advance();
|
1411
|
+
this.advance();
|
1412
|
+
this._lastIntValue = cp % 0x20;
|
1413
|
+
this.onCharacter(start - 1, this.index, this._lastIntValue);
|
1414
|
+
return true;
|
1415
|
+
}
|
1416
|
+
return (Boolean(this.consumeCharacterClassEscape()) ||
|
1417
|
+
this.consumeCharacterEscape());
|
1418
|
+
}
|
1419
|
+
consumeClassSetExpression() {
|
1420
|
+
const start = this.index;
|
1421
|
+
let mayContainStrings = false;
|
1422
|
+
let result = null;
|
1423
|
+
if (this.consumeClassSetCharacter()) {
|
1424
|
+
if (this.consumeClassSetRangeFromOperator(start)) {
|
1425
|
+
this.consumeClassUnionRight({});
|
1426
|
+
return {};
|
1427
|
+
}
|
1428
|
+
mayContainStrings = false;
|
1429
|
+
}
|
1430
|
+
else if ((result = this.consumeClassSetOperand())) {
|
1431
|
+
mayContainStrings = result.mayContainStrings;
|
1432
|
+
}
|
1433
|
+
else {
|
1434
|
+
const cp = this.currentCodePoint;
|
1435
|
+
if (cp === REVERSE_SOLIDUS) {
|
1436
|
+
this.advance();
|
1437
|
+
this.raise("Invalid escape");
|
1438
|
+
}
|
1439
|
+
if (cp === this.nextCodePoint &&
|
1440
|
+
isClassSetReservedDoublePunctuatorCharacter(cp)) {
|
1441
|
+
this.raise("Invalid set operation in character class");
|
1442
|
+
}
|
1443
|
+
this.raise("Invalid character in character class");
|
1444
|
+
}
|
1445
|
+
if (this.eat2(AMPERSAND, AMPERSAND)) {
|
1446
|
+
while (this.currentCodePoint !== AMPERSAND &&
|
1447
|
+
(result = this.consumeClassSetOperand())) {
|
1448
|
+
this.onClassIntersection(start, this.index);
|
1449
|
+
if (!result.mayContainStrings) {
|
1450
|
+
mayContainStrings = false;
|
1451
|
+
}
|
1452
|
+
if (this.eat2(AMPERSAND, AMPERSAND)) {
|
1453
|
+
continue;
|
1454
|
+
}
|
1455
|
+
return { mayContainStrings };
|
1456
|
+
}
|
1457
|
+
this.raise("Invalid character in character class");
|
1458
|
+
}
|
1459
|
+
if (this.eat2(HYPHEN_MINUS, HYPHEN_MINUS)) {
|
1460
|
+
while (this.consumeClassSetOperand()) {
|
1461
|
+
this.onClassSubtraction(start, this.index);
|
1462
|
+
if (this.eat2(HYPHEN_MINUS, HYPHEN_MINUS)) {
|
1463
|
+
continue;
|
1464
|
+
}
|
1465
|
+
return { mayContainStrings };
|
1466
|
+
}
|
1467
|
+
this.raise("Invalid character in character class");
|
1468
|
+
}
|
1469
|
+
return this.consumeClassUnionRight({ mayContainStrings });
|
1470
|
+
}
|
1471
|
+
consumeClassUnionRight(leftResult) {
|
1472
|
+
let mayContainStrings = leftResult.mayContainStrings;
|
1473
|
+
for (;;) {
|
1474
|
+
const start = this.index;
|
1475
|
+
if (this.consumeClassSetCharacter()) {
|
1476
|
+
this.consumeClassSetRangeFromOperator(start);
|
1477
|
+
continue;
|
1478
|
+
}
|
1479
|
+
const result = this.consumeClassSetOperand();
|
1480
|
+
if (result) {
|
1481
|
+
if (result.mayContainStrings) {
|
1482
|
+
mayContainStrings = true;
|
1483
|
+
}
|
1484
|
+
continue;
|
1485
|
+
}
|
1486
|
+
break;
|
1487
|
+
}
|
1488
|
+
return { mayContainStrings };
|
1489
|
+
}
|
1490
|
+
consumeClassSetRangeFromOperator(start) {
|
1491
|
+
const currentStart = this.index;
|
1492
|
+
const min = this._lastIntValue;
|
1493
|
+
if (this.eat(HYPHEN_MINUS)) {
|
1494
|
+
if (this.consumeClassSetCharacter()) {
|
1495
|
+
const max = this._lastIntValue;
|
1496
|
+
if (min === -1 || max === -1) {
|
1497
|
+
this.raise("Invalid character class");
|
1498
|
+
}
|
1499
|
+
if (min > max) {
|
1500
|
+
this.raise("Range out of order in character class");
|
1501
|
+
}
|
1502
|
+
this.onCharacterClassRange(start, this.index, min, max);
|
1503
|
+
return true;
|
1504
|
+
}
|
1505
|
+
this.rewind(currentStart);
|
1506
|
+
}
|
1507
|
+
return false;
|
1508
|
+
}
|
1509
|
+
consumeClassSetOperand() {
|
1510
|
+
let result = null;
|
1511
|
+
if ((result = this.consumeNestedClass())) {
|
1512
|
+
return result;
|
1513
|
+
}
|
1514
|
+
if ((result = this.consumeClassStringDisjunction())) {
|
1515
|
+
return result;
|
1516
|
+
}
|
1517
|
+
if (this.consumeClassSetCharacter()) {
|
1518
|
+
return {};
|
1519
|
+
}
|
1520
|
+
return null;
|
1521
|
+
}
|
1522
|
+
consumeNestedClass() {
|
1523
|
+
const start = this.index;
|
1524
|
+
if (this.eat(LEFT_SQUARE_BRACKET)) {
|
1525
|
+
const negate = this.eat(CIRCUMFLEX_ACCENT);
|
1526
|
+
this.onCharacterClassEnter(start, negate, true);
|
1527
|
+
const result = this.consumeClassContents();
|
1528
|
+
if (!this.eat(RIGHT_SQUARE_BRACKET)) {
|
1529
|
+
this.raise("Unterminated character class");
|
1530
|
+
}
|
1531
|
+
if (negate && result.mayContainStrings) {
|
1532
|
+
this.raise("Negated character class may contain strings");
|
1533
|
+
}
|
1534
|
+
this.onCharacterClassLeave(start, this.index, negate);
|
1535
|
+
return result;
|
1536
|
+
}
|
1537
|
+
if (this.eat(REVERSE_SOLIDUS)) {
|
1538
|
+
const result = this.consumeCharacterClassEscape();
|
1539
|
+
if (result) {
|
1540
|
+
return result;
|
1541
|
+
}
|
1542
|
+
this.rewind(start);
|
1543
|
+
}
|
1544
|
+
return null;
|
1545
|
+
}
|
1546
|
+
consumeClassStringDisjunction() {
|
1547
|
+
const start = this.index;
|
1548
|
+
if (this.eat3(REVERSE_SOLIDUS, LATIN_SMALL_LETTER_Q, LEFT_CURLY_BRACKET)) {
|
1549
|
+
this.onClassStringDisjunctionEnter(start);
|
1550
|
+
let i = 0;
|
1551
|
+
let mayContainStrings = false;
|
1552
|
+
do {
|
1553
|
+
if (this.consumeClassString(i++).mayContainStrings) {
|
1554
|
+
mayContainStrings = true;
|
1555
|
+
}
|
1556
|
+
} while (this.eat(VERTICAL_LINE));
|
1557
|
+
if (this.eat(RIGHT_CURLY_BRACKET)) {
|
1558
|
+
this.onClassStringDisjunctionLeave(start, this.index);
|
1559
|
+
return { mayContainStrings };
|
1560
|
+
}
|
1561
|
+
this.raise("Unterminated class string disjunction");
|
1562
|
+
}
|
1563
|
+
return null;
|
1564
|
+
}
|
1565
|
+
consumeClassString(i) {
|
1566
|
+
const start = this.index;
|
1567
|
+
let count = 0;
|
1568
|
+
this.onStringAlternativeEnter(start, i);
|
1569
|
+
while (this.currentCodePoint !== -1 &&
|
1570
|
+
this.consumeClassSetCharacter()) {
|
1571
|
+
count++;
|
1572
|
+
}
|
1573
|
+
this.onStringAlternativeLeave(start, this.index, i);
|
1574
|
+
return { mayContainStrings: count !== 1 };
|
1575
|
+
}
|
1576
|
+
consumeClassSetCharacter() {
|
1577
|
+
const start = this.index;
|
1578
|
+
const cp = this.currentCodePoint;
|
1579
|
+
if (cp !== this.nextCodePoint ||
|
1580
|
+
!isClassSetReservedDoublePunctuatorCharacter(cp)) {
|
1581
|
+
if (cp !== -1 && !isClassSetSyntaxCharacter(cp)) {
|
1582
|
+
this._lastIntValue = cp;
|
1583
|
+
this.advance();
|
1584
|
+
this.onCharacter(start, this.index, this._lastIntValue);
|
1585
|
+
return true;
|
1586
|
+
}
|
1587
|
+
}
|
1588
|
+
if (this.eat(REVERSE_SOLIDUS)) {
|
1589
|
+
if (this.consumeCharacterEscape()) {
|
1590
|
+
return true;
|
1591
|
+
}
|
1592
|
+
if (isClassSetReservedPunctuator(this.currentCodePoint)) {
|
1593
|
+
this._lastIntValue = this.currentCodePoint;
|
1594
|
+
this.advance();
|
1595
|
+
this.onCharacter(start, this.index, this._lastIntValue);
|
1596
|
+
return true;
|
1597
|
+
}
|
1598
|
+
if (this.eat(LATIN_SMALL_LETTER_B)) {
|
1599
|
+
this._lastIntValue = BACKSPACE;
|
1600
|
+
this.onCharacter(start, this.index, this._lastIntValue);
|
1601
|
+
return true;
|
1602
|
+
}
|
1603
|
+
this.rewind(start);
|
1604
|
+
}
|
1605
|
+
return false;
|
1606
|
+
}
|
1607
|
+
eatGroupName() {
|
1608
|
+
if (this.eat(LESS_THAN_SIGN)) {
|
1609
|
+
if (this.eatRegExpIdentifierName() && this.eat(GREATER_THAN_SIGN)) {
|
1610
|
+
return true;
|
1611
|
+
}
|
1612
|
+
this.raise("Invalid capture group name");
|
1613
|
+
}
|
1614
|
+
return false;
|
1615
|
+
}
|
1616
|
+
eatRegExpIdentifierName() {
|
1617
|
+
if (this.eatRegExpIdentifierStart()) {
|
1618
|
+
this._lastStrValue = String.fromCodePoint(this._lastIntValue);
|
1619
|
+
while (this.eatRegExpIdentifierPart()) {
|
1620
|
+
this._lastStrValue += String.fromCodePoint(this._lastIntValue);
|
1621
|
+
}
|
1622
|
+
return true;
|
1623
|
+
}
|
1624
|
+
return false;
|
1625
|
+
}
|
1626
|
+
eatRegExpIdentifierStart() {
|
1627
|
+
const start = this.index;
|
1628
|
+
const forceUFlag = !this._unicodeMode && this.ecmaVersion >= 2020;
|
1629
|
+
let cp = this.currentCodePoint;
|
1630
|
+
this.advance();
|
1631
|
+
if (cp === REVERSE_SOLIDUS &&
|
1632
|
+
this.eatRegExpUnicodeEscapeSequence(forceUFlag)) {
|
1633
|
+
cp = this._lastIntValue;
|
1634
|
+
}
|
1635
|
+
else if (forceUFlag &&
|
1636
|
+
isLeadSurrogate(cp) &&
|
1637
|
+
isTrailSurrogate(this.currentCodePoint)) {
|
1638
|
+
cp = combineSurrogatePair(cp, this.currentCodePoint);
|
1639
|
+
this.advance();
|
1640
|
+
}
|
1641
|
+
if (isIdentifierStartChar(cp)) {
|
1642
|
+
this._lastIntValue = cp;
|
1643
|
+
return true;
|
1644
|
+
}
|
1645
|
+
if (this.index !== start) {
|
1646
|
+
this.rewind(start);
|
1647
|
+
}
|
1648
|
+
return false;
|
1649
|
+
}
|
1650
|
+
eatRegExpIdentifierPart() {
|
1651
|
+
const start = this.index;
|
1652
|
+
const forceUFlag = !this._unicodeMode && this.ecmaVersion >= 2020;
|
1653
|
+
let cp = this.currentCodePoint;
|
1654
|
+
this.advance();
|
1655
|
+
if (cp === REVERSE_SOLIDUS &&
|
1656
|
+
this.eatRegExpUnicodeEscapeSequence(forceUFlag)) {
|
1657
|
+
cp = this._lastIntValue;
|
1658
|
+
}
|
1659
|
+
else if (forceUFlag &&
|
1660
|
+
isLeadSurrogate(cp) &&
|
1661
|
+
isTrailSurrogate(this.currentCodePoint)) {
|
1662
|
+
cp = combineSurrogatePair(cp, this.currentCodePoint);
|
1663
|
+
this.advance();
|
1664
|
+
}
|
1665
|
+
if (isIdentifierPartChar(cp)) {
|
1666
|
+
this._lastIntValue = cp;
|
1667
|
+
return true;
|
1668
|
+
}
|
1669
|
+
if (this.index !== start) {
|
1670
|
+
this.rewind(start);
|
1671
|
+
}
|
1672
|
+
return false;
|
1673
|
+
}
|
1674
|
+
eatCControlLetter() {
|
1675
|
+
const start = this.index;
|
1676
|
+
if (this.eat(LATIN_SMALL_LETTER_C)) {
|
1677
|
+
if (this.eatControlLetter()) {
|
1678
|
+
return true;
|
1679
|
+
}
|
1680
|
+
this.rewind(start);
|
1681
|
+
}
|
1682
|
+
return false;
|
1683
|
+
}
|
1684
|
+
eatZero() {
|
1685
|
+
if (this.currentCodePoint === DIGIT_ZERO &&
|
1686
|
+
!isDecimalDigit(this.nextCodePoint)) {
|
1687
|
+
this._lastIntValue = 0;
|
1688
|
+
this.advance();
|
1689
|
+
return true;
|
1690
|
+
}
|
1691
|
+
return false;
|
1692
|
+
}
|
1693
|
+
eatControlEscape() {
|
1694
|
+
if (this.eat(LATIN_SMALL_LETTER_F)) {
|
1695
|
+
this._lastIntValue = FORM_FEED;
|
1696
|
+
return true;
|
1697
|
+
}
|
1698
|
+
if (this.eat(LATIN_SMALL_LETTER_N)) {
|
1699
|
+
this._lastIntValue = LINE_FEED;
|
1700
|
+
return true;
|
1701
|
+
}
|
1702
|
+
if (this.eat(LATIN_SMALL_LETTER_R)) {
|
1703
|
+
this._lastIntValue = CARRIAGE_RETURN;
|
1704
|
+
return true;
|
1705
|
+
}
|
1706
|
+
if (this.eat(LATIN_SMALL_LETTER_T)) {
|
1707
|
+
this._lastIntValue = CHARACTER_TABULATION;
|
1708
|
+
return true;
|
1709
|
+
}
|
1710
|
+
if (this.eat(LATIN_SMALL_LETTER_V)) {
|
1711
|
+
this._lastIntValue = LINE_TABULATION;
|
1712
|
+
return true;
|
1713
|
+
}
|
1714
|
+
return false;
|
1715
|
+
}
|
1716
|
+
eatControlLetter() {
|
1717
|
+
const cp = this.currentCodePoint;
|
1718
|
+
if (isLatinLetter(cp)) {
|
1719
|
+
this.advance();
|
1720
|
+
this._lastIntValue = cp % 0x20;
|
1721
|
+
return true;
|
1722
|
+
}
|
1723
|
+
return false;
|
1724
|
+
}
|
1725
|
+
eatRegExpUnicodeEscapeSequence(forceUFlag = false) {
|
1726
|
+
const start = this.index;
|
1727
|
+
const uFlag = forceUFlag || this._unicodeMode;
|
1728
|
+
if (this.eat(LATIN_SMALL_LETTER_U)) {
|
1729
|
+
if ((uFlag && this.eatRegExpUnicodeSurrogatePairEscape()) ||
|
1730
|
+
this.eatFixedHexDigits(4) ||
|
1731
|
+
(uFlag && this.eatRegExpUnicodeCodePointEscape())) {
|
1732
|
+
return true;
|
1733
|
+
}
|
1734
|
+
if (this.strict || uFlag) {
|
1735
|
+
this.raise("Invalid unicode escape");
|
1736
|
+
}
|
1737
|
+
this.rewind(start);
|
1738
|
+
}
|
1739
|
+
return false;
|
1740
|
+
}
|
1741
|
+
eatRegExpUnicodeSurrogatePairEscape() {
|
1742
|
+
const start = this.index;
|
1743
|
+
if (this.eatFixedHexDigits(4)) {
|
1744
|
+
const lead = this._lastIntValue;
|
1745
|
+
if (isLeadSurrogate(lead) &&
|
1746
|
+
this.eat(REVERSE_SOLIDUS) &&
|
1747
|
+
this.eat(LATIN_SMALL_LETTER_U) &&
|
1748
|
+
this.eatFixedHexDigits(4)) {
|
1749
|
+
const trail = this._lastIntValue;
|
1750
|
+
if (isTrailSurrogate(trail)) {
|
1751
|
+
this._lastIntValue = combineSurrogatePair(lead, trail);
|
1752
|
+
return true;
|
1753
|
+
}
|
1754
|
+
}
|
1755
|
+
this.rewind(start);
|
1756
|
+
}
|
1757
|
+
return false;
|
1758
|
+
}
|
1759
|
+
eatRegExpUnicodeCodePointEscape() {
|
1760
|
+
const start = this.index;
|
1761
|
+
if (this.eat(LEFT_CURLY_BRACKET) &&
|
1762
|
+
this.eatHexDigits() &&
|
1763
|
+
this.eat(RIGHT_CURLY_BRACKET) &&
|
1764
|
+
isValidUnicode(this._lastIntValue)) {
|
1765
|
+
return true;
|
1766
|
+
}
|
1767
|
+
this.rewind(start);
|
1768
|
+
return false;
|
1769
|
+
}
|
1770
|
+
eatIdentityEscape() {
|
1771
|
+
const cp = this.currentCodePoint;
|
1772
|
+
if (this.isValidIdentityEscape(cp)) {
|
1773
|
+
this._lastIntValue = cp;
|
1774
|
+
this.advance();
|
1775
|
+
return true;
|
1776
|
+
}
|
1777
|
+
return false;
|
1778
|
+
}
|
1779
|
+
isValidIdentityEscape(cp) {
|
1780
|
+
if (cp === -1) {
|
1781
|
+
return false;
|
1782
|
+
}
|
1783
|
+
if (this._unicodeMode) {
|
1784
|
+
return isSyntaxCharacter(cp) || cp === SOLIDUS;
|
1785
|
+
}
|
1786
|
+
if (this.strict) {
|
1787
|
+
return !isIdContinue(cp);
|
1788
|
+
}
|
1789
|
+
if (this._nFlag) {
|
1790
|
+
return !(cp === LATIN_SMALL_LETTER_C || cp === LATIN_SMALL_LETTER_K);
|
1791
|
+
}
|
1792
|
+
return cp !== LATIN_SMALL_LETTER_C;
|
1793
|
+
}
|
1794
|
+
eatDecimalEscape() {
|
1795
|
+
this._lastIntValue = 0;
|
1796
|
+
let cp = this.currentCodePoint;
|
1797
|
+
if (cp >= DIGIT_ONE && cp <= DIGIT_NINE) {
|
1798
|
+
do {
|
1799
|
+
this._lastIntValue = 10 * this._lastIntValue + (cp - DIGIT_ZERO);
|
1800
|
+
this.advance();
|
1801
|
+
} while ((cp = this.currentCodePoint) >= DIGIT_ZERO &&
|
1802
|
+
cp <= DIGIT_NINE);
|
1803
|
+
return true;
|
1804
|
+
}
|
1805
|
+
return false;
|
1806
|
+
}
|
1807
|
+
eatUnicodePropertyValueExpression() {
|
1808
|
+
const start = this.index;
|
1809
|
+
if (this.eatUnicodePropertyName() && this.eat(EQUALS_SIGN)) {
|
1810
|
+
const key = this._lastStrValue;
|
1811
|
+
if (this.eatUnicodePropertyValue()) {
|
1812
|
+
const value = this._lastStrValue;
|
1813
|
+
if (isValidUnicodeProperty(this.ecmaVersion, key, value)) {
|
1814
|
+
return {
|
1815
|
+
key,
|
1816
|
+
value: value || null,
|
1817
|
+
};
|
1818
|
+
}
|
1819
|
+
this.raise("Invalid property name");
|
1820
|
+
}
|
1821
|
+
}
|
1822
|
+
this.rewind(start);
|
1823
|
+
if (this.eatLoneUnicodePropertyNameOrValue()) {
|
1824
|
+
const nameOrValue = this._lastStrValue;
|
1825
|
+
if (isValidUnicodeProperty(this.ecmaVersion, "General_Category", nameOrValue)) {
|
1826
|
+
return {
|
1827
|
+
key: "General_Category",
|
1828
|
+
value: nameOrValue || null,
|
1829
|
+
};
|
1830
|
+
}
|
1831
|
+
if (isValidLoneUnicodeProperty(this.ecmaVersion, nameOrValue)) {
|
1832
|
+
return {
|
1833
|
+
key: nameOrValue,
|
1834
|
+
value: null,
|
1835
|
+
};
|
1836
|
+
}
|
1837
|
+
if (this._unicodeSetsMode &&
|
1838
|
+
isValidLoneUnicodePropertyOfString(this.ecmaVersion, nameOrValue)) {
|
1839
|
+
return {
|
1840
|
+
key: nameOrValue,
|
1841
|
+
value: null,
|
1842
|
+
strings: true,
|
1843
|
+
};
|
1844
|
+
}
|
1845
|
+
this.raise("Invalid property name");
|
1846
|
+
}
|
1847
|
+
return null;
|
1848
|
+
}
|
1849
|
+
eatUnicodePropertyName() {
|
1850
|
+
this._lastStrValue = "";
|
1851
|
+
while (isUnicodePropertyNameCharacter(this.currentCodePoint)) {
|
1852
|
+
this._lastStrValue += String.fromCodePoint(this.currentCodePoint);
|
1853
|
+
this.advance();
|
1854
|
+
}
|
1855
|
+
return this._lastStrValue !== "";
|
1856
|
+
}
|
1857
|
+
eatUnicodePropertyValue() {
|
1858
|
+
this._lastStrValue = "";
|
1859
|
+
while (isUnicodePropertyValueCharacter(this.currentCodePoint)) {
|
1860
|
+
this._lastStrValue += String.fromCodePoint(this.currentCodePoint);
|
1861
|
+
this.advance();
|
1862
|
+
}
|
1863
|
+
return this._lastStrValue !== "";
|
1864
|
+
}
|
1865
|
+
eatLoneUnicodePropertyNameOrValue() {
|
1866
|
+
return this.eatUnicodePropertyValue();
|
1867
|
+
}
|
1868
|
+
eatHexEscapeSequence() {
|
1869
|
+
const start = this.index;
|
1870
|
+
if (this.eat(LATIN_SMALL_LETTER_X)) {
|
1871
|
+
if (this.eatFixedHexDigits(2)) {
|
1872
|
+
return true;
|
1873
|
+
}
|
1874
|
+
if (this._unicodeMode || this.strict) {
|
1875
|
+
this.raise("Invalid escape");
|
1876
|
+
}
|
1877
|
+
this.rewind(start);
|
1878
|
+
}
|
1879
|
+
return false;
|
1880
|
+
}
|
1881
|
+
eatDecimalDigits() {
|
1882
|
+
const start = this.index;
|
1883
|
+
this._lastIntValue = 0;
|
1884
|
+
while (isDecimalDigit(this.currentCodePoint)) {
|
1885
|
+
this._lastIntValue =
|
1886
|
+
10 * this._lastIntValue + digitToInt(this.currentCodePoint);
|
1887
|
+
this.advance();
|
1888
|
+
}
|
1889
|
+
return this.index !== start;
|
1890
|
+
}
|
1891
|
+
eatHexDigits() {
|
1892
|
+
const start = this.index;
|
1893
|
+
this._lastIntValue = 0;
|
1894
|
+
while (isHexDigit(this.currentCodePoint)) {
|
1895
|
+
this._lastIntValue =
|
1896
|
+
16 * this._lastIntValue + digitToInt(this.currentCodePoint);
|
1897
|
+
this.advance();
|
1898
|
+
}
|
1899
|
+
return this.index !== start;
|
1900
|
+
}
|
1901
|
+
eatLegacyOctalEscapeSequence() {
|
1902
|
+
if (this.eatOctalDigit()) {
|
1903
|
+
const n1 = this._lastIntValue;
|
1904
|
+
if (this.eatOctalDigit()) {
|
1905
|
+
const n2 = this._lastIntValue;
|
1906
|
+
if (n1 <= 3 && this.eatOctalDigit()) {
|
1907
|
+
this._lastIntValue = n1 * 64 + n2 * 8 + this._lastIntValue;
|
1908
|
+
}
|
1909
|
+
else {
|
1910
|
+
this._lastIntValue = n1 * 8 + n2;
|
1911
|
+
}
|
1912
|
+
}
|
1913
|
+
else {
|
1914
|
+
this._lastIntValue = n1;
|
1915
|
+
}
|
1916
|
+
return true;
|
1917
|
+
}
|
1918
|
+
return false;
|
1919
|
+
}
|
1920
|
+
eatOctalDigit() {
|
1921
|
+
const cp = this.currentCodePoint;
|
1922
|
+
if (isOctalDigit(cp)) {
|
1923
|
+
this.advance();
|
1924
|
+
this._lastIntValue = cp - DIGIT_ZERO;
|
1925
|
+
return true;
|
1926
|
+
}
|
1927
|
+
this._lastIntValue = 0;
|
1928
|
+
return false;
|
1929
|
+
}
|
1930
|
+
eatFixedHexDigits(length) {
|
1931
|
+
const start = this.index;
|
1932
|
+
this._lastIntValue = 0;
|
1933
|
+
for (let i = 0; i < length; ++i) {
|
1934
|
+
const cp = this.currentCodePoint;
|
1935
|
+
if (!isHexDigit(cp)) {
|
1936
|
+
this.rewind(start);
|
1937
|
+
return false;
|
1938
|
+
}
|
1939
|
+
this._lastIntValue = 16 * this._lastIntValue + digitToInt(cp);
|
1940
|
+
this.advance();
|
1941
|
+
}
|
1942
|
+
return true;
|
1943
|
+
}
|
1944
|
+
}
|
1945
|
+
|
1946
|
+
const DUMMY_PATTERN = {};
|
1947
|
+
const DUMMY_FLAGS = {};
|
1948
|
+
const DUMMY_CAPTURING_GROUP = {};
|
1949
|
+
function isClassSetOperand(node) {
|
1950
|
+
return (node.type === "Character" ||
|
1951
|
+
node.type === "CharacterSet" ||
|
1952
|
+
node.type === "CharacterClass" ||
|
1953
|
+
node.type === "ExpressionCharacterClass" ||
|
1954
|
+
node.type === "ClassStringDisjunction");
|
1955
|
+
}
|
1956
|
+
class RegExpParserState {
|
1957
|
+
constructor(options) {
|
1958
|
+
var _a;
|
1959
|
+
this._node = DUMMY_PATTERN;
|
1960
|
+
this._expressionBufferMap = new Map();
|
1961
|
+
this._flags = DUMMY_FLAGS;
|
1962
|
+
this._backreferences = [];
|
1963
|
+
this._capturingGroups = [];
|
1964
|
+
this.source = "";
|
1965
|
+
this.strict = Boolean(options === null || options === void 0 ? void 0 : options.strict);
|
1966
|
+
this.ecmaVersion = (_a = options === null || options === void 0 ? void 0 : options.ecmaVersion) !== null && _a !== void 0 ? _a : latestEcmaVersion;
|
1967
|
+
}
|
1968
|
+
get pattern() {
|
1969
|
+
if (this._node.type !== "Pattern") {
|
1970
|
+
throw new Error("UnknownError");
|
1971
|
+
}
|
1972
|
+
return this._node;
|
1973
|
+
}
|
1974
|
+
get flags() {
|
1975
|
+
if (this._flags.type !== "Flags") {
|
1976
|
+
throw new Error("UnknownError");
|
1977
|
+
}
|
1978
|
+
return this._flags;
|
1979
|
+
}
|
1980
|
+
onRegExpFlags(start, end, { global, ignoreCase, multiline, unicode, sticky, dotAll, hasIndices, unicodeSets, }) {
|
1981
|
+
this._flags = {
|
1982
|
+
type: "Flags",
|
1983
|
+
parent: null,
|
1984
|
+
start,
|
1985
|
+
end,
|
1986
|
+
raw: this.source.slice(start, end),
|
1987
|
+
global,
|
1988
|
+
ignoreCase,
|
1989
|
+
multiline,
|
1990
|
+
unicode,
|
1991
|
+
sticky,
|
1992
|
+
dotAll,
|
1993
|
+
hasIndices,
|
1994
|
+
unicodeSets,
|
1995
|
+
};
|
1996
|
+
}
|
1997
|
+
onPatternEnter(start) {
|
1998
|
+
this._node = {
|
1999
|
+
type: "Pattern",
|
2000
|
+
parent: null,
|
2001
|
+
start,
|
2002
|
+
end: start,
|
2003
|
+
raw: "",
|
2004
|
+
alternatives: [],
|
2005
|
+
};
|
2006
|
+
this._backreferences.length = 0;
|
2007
|
+
this._capturingGroups.length = 0;
|
2008
|
+
}
|
2009
|
+
onPatternLeave(start, end) {
|
2010
|
+
this._node.end = end;
|
2011
|
+
this._node.raw = this.source.slice(start, end);
|
2012
|
+
for (const reference of this._backreferences) {
|
2013
|
+
const ref = reference.ref;
|
2014
|
+
const group = typeof ref === "number"
|
2015
|
+
? this._capturingGroups[ref - 1]
|
2016
|
+
: this._capturingGroups.find((g) => g.name === ref);
|
2017
|
+
reference.resolved = group;
|
2018
|
+
group.references.push(reference);
|
2019
|
+
}
|
2020
|
+
}
|
2021
|
+
onAlternativeEnter(start) {
|
2022
|
+
const parent = this._node;
|
2023
|
+
if (parent.type !== "Assertion" &&
|
2024
|
+
parent.type !== "CapturingGroup" &&
|
2025
|
+
parent.type !== "Group" &&
|
2026
|
+
parent.type !== "Pattern") {
|
2027
|
+
throw new Error("UnknownError");
|
2028
|
+
}
|
2029
|
+
this._node = {
|
2030
|
+
type: "Alternative",
|
2031
|
+
parent,
|
2032
|
+
start,
|
2033
|
+
end: start,
|
2034
|
+
raw: "",
|
2035
|
+
elements: [],
|
2036
|
+
};
|
2037
|
+
parent.alternatives.push(this._node);
|
2038
|
+
}
|
2039
|
+
onAlternativeLeave(start, end) {
|
2040
|
+
const node = this._node;
|
2041
|
+
if (node.type !== "Alternative") {
|
2042
|
+
throw new Error("UnknownError");
|
2043
|
+
}
|
2044
|
+
node.end = end;
|
2045
|
+
node.raw = this.source.slice(start, end);
|
2046
|
+
this._node = node.parent;
|
2047
|
+
}
|
2048
|
+
onGroupEnter(start) {
|
2049
|
+
const parent = this._node;
|
2050
|
+
if (parent.type !== "Alternative") {
|
2051
|
+
throw new Error("UnknownError");
|
2052
|
+
}
|
2053
|
+
this._node = {
|
2054
|
+
type: "Group",
|
2055
|
+
parent,
|
2056
|
+
start,
|
2057
|
+
end: start,
|
2058
|
+
raw: "",
|
2059
|
+
alternatives: [],
|
2060
|
+
};
|
2061
|
+
parent.elements.push(this._node);
|
2062
|
+
}
|
2063
|
+
onGroupLeave(start, end) {
|
2064
|
+
const node = this._node;
|
2065
|
+
if (node.type !== "Group" || node.parent.type !== "Alternative") {
|
2066
|
+
throw new Error("UnknownError");
|
2067
|
+
}
|
2068
|
+
node.end = end;
|
2069
|
+
node.raw = this.source.slice(start, end);
|
2070
|
+
this._node = node.parent;
|
2071
|
+
}
|
2072
|
+
onCapturingGroupEnter(start, name) {
|
2073
|
+
const parent = this._node;
|
2074
|
+
if (parent.type !== "Alternative") {
|
2075
|
+
throw new Error("UnknownError");
|
2076
|
+
}
|
2077
|
+
this._node = {
|
2078
|
+
type: "CapturingGroup",
|
2079
|
+
parent,
|
2080
|
+
start,
|
2081
|
+
end: start,
|
2082
|
+
raw: "",
|
2083
|
+
name,
|
2084
|
+
alternatives: [],
|
2085
|
+
references: [],
|
2086
|
+
};
|
2087
|
+
parent.elements.push(this._node);
|
2088
|
+
this._capturingGroups.push(this._node);
|
2089
|
+
}
|
2090
|
+
onCapturingGroupLeave(start, end) {
|
2091
|
+
const node = this._node;
|
2092
|
+
if (node.type !== "CapturingGroup" ||
|
2093
|
+
node.parent.type !== "Alternative") {
|
2094
|
+
throw new Error("UnknownError");
|
2095
|
+
}
|
2096
|
+
node.end = end;
|
2097
|
+
node.raw = this.source.slice(start, end);
|
2098
|
+
this._node = node.parent;
|
2099
|
+
}
|
2100
|
+
onQuantifier(start, end, min, max, greedy) {
|
2101
|
+
const parent = this._node;
|
2102
|
+
if (parent.type !== "Alternative") {
|
2103
|
+
throw new Error("UnknownError");
|
2104
|
+
}
|
2105
|
+
const element = parent.elements.pop();
|
2106
|
+
if (element == null ||
|
2107
|
+
element.type === "Quantifier" ||
|
2108
|
+
(element.type === "Assertion" && element.kind !== "lookahead")) {
|
2109
|
+
throw new Error("UnknownError");
|
2110
|
+
}
|
2111
|
+
const node = {
|
2112
|
+
type: "Quantifier",
|
2113
|
+
parent,
|
2114
|
+
start: element.start,
|
2115
|
+
end,
|
2116
|
+
raw: this.source.slice(element.start, end),
|
2117
|
+
min,
|
2118
|
+
max,
|
2119
|
+
greedy,
|
2120
|
+
element,
|
2121
|
+
};
|
2122
|
+
parent.elements.push(node);
|
2123
|
+
element.parent = node;
|
2124
|
+
}
|
2125
|
+
onLookaroundAssertionEnter(start, kind, negate) {
|
2126
|
+
const parent = this._node;
|
2127
|
+
if (parent.type !== "Alternative") {
|
2128
|
+
throw new Error("UnknownError");
|
2129
|
+
}
|
2130
|
+
const node = (this._node = {
|
2131
|
+
type: "Assertion",
|
2132
|
+
parent,
|
2133
|
+
start,
|
2134
|
+
end: start,
|
2135
|
+
raw: "",
|
2136
|
+
kind,
|
2137
|
+
negate,
|
2138
|
+
alternatives: [],
|
2139
|
+
});
|
2140
|
+
parent.elements.push(node);
|
2141
|
+
}
|
2142
|
+
onLookaroundAssertionLeave(start, end) {
|
2143
|
+
const node = this._node;
|
2144
|
+
if (node.type !== "Assertion" || node.parent.type !== "Alternative") {
|
2145
|
+
throw new Error("UnknownError");
|
2146
|
+
}
|
2147
|
+
node.end = end;
|
2148
|
+
node.raw = this.source.slice(start, end);
|
2149
|
+
this._node = node.parent;
|
2150
|
+
}
|
2151
|
+
onEdgeAssertion(start, end, kind) {
|
2152
|
+
const parent = this._node;
|
2153
|
+
if (parent.type !== "Alternative") {
|
2154
|
+
throw new Error("UnknownError");
|
2155
|
+
}
|
2156
|
+
parent.elements.push({
|
2157
|
+
type: "Assertion",
|
2158
|
+
parent,
|
2159
|
+
start,
|
2160
|
+
end,
|
2161
|
+
raw: this.source.slice(start, end),
|
2162
|
+
kind,
|
2163
|
+
});
|
2164
|
+
}
|
2165
|
+
onWordBoundaryAssertion(start, end, kind, negate) {
|
2166
|
+
const parent = this._node;
|
2167
|
+
if (parent.type !== "Alternative") {
|
2168
|
+
throw new Error("UnknownError");
|
2169
|
+
}
|
2170
|
+
parent.elements.push({
|
2171
|
+
type: "Assertion",
|
2172
|
+
parent,
|
2173
|
+
start,
|
2174
|
+
end,
|
2175
|
+
raw: this.source.slice(start, end),
|
2176
|
+
kind,
|
2177
|
+
negate,
|
2178
|
+
});
|
2179
|
+
}
|
2180
|
+
onAnyCharacterSet(start, end, kind) {
|
2181
|
+
const parent = this._node;
|
2182
|
+
if (parent.type !== "Alternative") {
|
2183
|
+
throw new Error("UnknownError");
|
2184
|
+
}
|
2185
|
+
parent.elements.push({
|
2186
|
+
type: "CharacterSet",
|
2187
|
+
parent,
|
2188
|
+
start,
|
2189
|
+
end,
|
2190
|
+
raw: this.source.slice(start, end),
|
2191
|
+
kind,
|
2192
|
+
});
|
2193
|
+
}
|
2194
|
+
onEscapeCharacterSet(start, end, kind, negate) {
|
2195
|
+
const parent = this._node;
|
2196
|
+
if (parent.type !== "Alternative" && parent.type !== "CharacterClass") {
|
2197
|
+
throw new Error("UnknownError");
|
2198
|
+
}
|
2199
|
+
parent.elements.push({
|
2200
|
+
type: "CharacterSet",
|
2201
|
+
parent,
|
2202
|
+
start,
|
2203
|
+
end,
|
2204
|
+
raw: this.source.slice(start, end),
|
2205
|
+
kind,
|
2206
|
+
negate,
|
2207
|
+
});
|
2208
|
+
}
|
2209
|
+
onUnicodePropertyCharacterSet(start, end, kind, key, value, negate, strings) {
|
2210
|
+
const parent = this._node;
|
2211
|
+
if (parent.type !== "Alternative" && parent.type !== "CharacterClass") {
|
2212
|
+
throw new Error("UnknownError");
|
2213
|
+
}
|
2214
|
+
const base = {
|
2215
|
+
type: "CharacterSet",
|
2216
|
+
start,
|
2217
|
+
end,
|
2218
|
+
raw: this.source.slice(start, end),
|
2219
|
+
kind,
|
2220
|
+
key,
|
2221
|
+
};
|
2222
|
+
if (strings) {
|
2223
|
+
if ((parent.type === "CharacterClass" && !parent.unicodeSets) ||
|
2224
|
+
negate ||
|
2225
|
+
value !== null) {
|
2226
|
+
throw new Error("UnknownError");
|
2227
|
+
}
|
2228
|
+
parent.elements.push(Object.assign(Object.assign({}, base), { parent, strings, value, negate }));
|
2229
|
+
}
|
2230
|
+
else {
|
2231
|
+
parent.elements.push(Object.assign(Object.assign({}, base), { parent, strings, value, negate }));
|
2232
|
+
}
|
2233
|
+
}
|
2234
|
+
onCharacter(start, end, value) {
|
2235
|
+
const parent = this._node;
|
2236
|
+
if (parent.type !== "Alternative" &&
|
2237
|
+
parent.type !== "CharacterClass" &&
|
2238
|
+
parent.type !== "StringAlternative") {
|
2239
|
+
throw new Error("UnknownError");
|
2240
|
+
}
|
2241
|
+
parent.elements.push({
|
2242
|
+
type: "Character",
|
2243
|
+
parent,
|
2244
|
+
start,
|
2245
|
+
end,
|
2246
|
+
raw: this.source.slice(start, end),
|
2247
|
+
value,
|
2248
|
+
});
|
2249
|
+
}
|
2250
|
+
onBackreference(start, end, ref) {
|
2251
|
+
const parent = this._node;
|
2252
|
+
if (parent.type !== "Alternative") {
|
2253
|
+
throw new Error("UnknownError");
|
2254
|
+
}
|
2255
|
+
const node = {
|
2256
|
+
type: "Backreference",
|
2257
|
+
parent,
|
2258
|
+
start,
|
2259
|
+
end,
|
2260
|
+
raw: this.source.slice(start, end),
|
2261
|
+
ref,
|
2262
|
+
resolved: DUMMY_CAPTURING_GROUP,
|
2263
|
+
};
|
2264
|
+
parent.elements.push(node);
|
2265
|
+
this._backreferences.push(node);
|
2266
|
+
}
|
2267
|
+
onCharacterClassEnter(start, negate, unicodeSets) {
|
2268
|
+
const parent = this._node;
|
2269
|
+
const base = {
|
2270
|
+
type: "CharacterClass",
|
2271
|
+
parent,
|
2272
|
+
start,
|
2273
|
+
end: start,
|
2274
|
+
raw: "",
|
2275
|
+
unicodeSets,
|
2276
|
+
negate,
|
2277
|
+
elements: [],
|
2278
|
+
};
|
2279
|
+
if (parent.type === "Alternative") {
|
2280
|
+
const node = Object.assign(Object.assign({}, base), { parent });
|
2281
|
+
this._node = node;
|
2282
|
+
parent.elements.push(node);
|
2283
|
+
}
|
2284
|
+
else if (parent.type === "CharacterClass" &&
|
2285
|
+
parent.unicodeSets &&
|
2286
|
+
unicodeSets) {
|
2287
|
+
const node = Object.assign(Object.assign({}, base), { parent,
|
2288
|
+
unicodeSets });
|
2289
|
+
this._node = node;
|
2290
|
+
parent.elements.push(node);
|
2291
|
+
}
|
2292
|
+
else {
|
2293
|
+
throw new Error("UnknownError");
|
2294
|
+
}
|
2295
|
+
}
|
2296
|
+
onCharacterClassLeave(start, end) {
|
2297
|
+
const node = this._node;
|
2298
|
+
if (node.type !== "CharacterClass" ||
|
2299
|
+
(node.parent.type !== "Alternative" &&
|
2300
|
+
node.parent.type !== "CharacterClass")) {
|
2301
|
+
throw new Error("UnknownError");
|
2302
|
+
}
|
2303
|
+
const parent = node.parent;
|
2304
|
+
node.end = end;
|
2305
|
+
node.raw = this.source.slice(start, end);
|
2306
|
+
this._node = parent;
|
2307
|
+
const expression = this._expressionBufferMap.get(node);
|
2308
|
+
if (!expression) {
|
2309
|
+
return;
|
2310
|
+
}
|
2311
|
+
if (node.elements.length > 0) {
|
2312
|
+
throw new Error("UnknownError");
|
2313
|
+
}
|
2314
|
+
this._expressionBufferMap.delete(node);
|
2315
|
+
const newNode = {
|
2316
|
+
type: "ExpressionCharacterClass",
|
2317
|
+
parent,
|
2318
|
+
start: node.start,
|
2319
|
+
end: node.end,
|
2320
|
+
raw: node.raw,
|
2321
|
+
negate: node.negate,
|
2322
|
+
expression,
|
2323
|
+
};
|
2324
|
+
expression.parent = newNode;
|
2325
|
+
if (node !== parent.elements.pop()) {
|
2326
|
+
throw new Error("UnknownError");
|
2327
|
+
}
|
2328
|
+
parent.elements.push(newNode);
|
2329
|
+
}
|
2330
|
+
onCharacterClassRange(start, end) {
|
2331
|
+
const parent = this._node;
|
2332
|
+
if (parent.type !== "CharacterClass") {
|
2333
|
+
throw new Error("UnknownError");
|
2334
|
+
}
|
2335
|
+
const elements = parent.elements;
|
2336
|
+
const max = elements.pop();
|
2337
|
+
if (!max || max.type !== "Character") {
|
2338
|
+
throw new Error("UnknownError");
|
2339
|
+
}
|
2340
|
+
if (!parent.unicodeSets) {
|
2341
|
+
const hyphen = elements.pop();
|
2342
|
+
if (!hyphen ||
|
2343
|
+
hyphen.type !== "Character" ||
|
2344
|
+
hyphen.value !== HYPHEN_MINUS) {
|
2345
|
+
throw new Error("UnknownError");
|
2346
|
+
}
|
2347
|
+
}
|
2348
|
+
const min = elements.pop();
|
2349
|
+
if (!min || min.type !== "Character") {
|
2350
|
+
throw new Error("UnknownError");
|
2351
|
+
}
|
2352
|
+
const node = {
|
2353
|
+
type: "CharacterClassRange",
|
2354
|
+
parent,
|
2355
|
+
start,
|
2356
|
+
end,
|
2357
|
+
raw: this.source.slice(start, end),
|
2358
|
+
min,
|
2359
|
+
max,
|
2360
|
+
};
|
2361
|
+
min.parent = node;
|
2362
|
+
max.parent = node;
|
2363
|
+
elements.push(node);
|
2364
|
+
}
|
2365
|
+
onClassIntersection(start, end) {
|
2366
|
+
var _a;
|
2367
|
+
const parent = this._node;
|
2368
|
+
if (parent.type !== "CharacterClass" || !parent.unicodeSets) {
|
2369
|
+
throw new Error("UnknownError");
|
2370
|
+
}
|
2371
|
+
const right = parent.elements.pop();
|
2372
|
+
const left = (_a = this._expressionBufferMap.get(parent)) !== null && _a !== void 0 ? _a : parent.elements.pop();
|
2373
|
+
if (!left ||
|
2374
|
+
!right ||
|
2375
|
+
left.type === "ClassSubtraction" ||
|
2376
|
+
(left.type !== "ClassIntersection" && !isClassSetOperand(left)) ||
|
2377
|
+
!isClassSetOperand(right)) {
|
2378
|
+
throw new Error("UnknownError");
|
2379
|
+
}
|
2380
|
+
const node = {
|
2381
|
+
type: "ClassIntersection",
|
2382
|
+
parent: parent,
|
2383
|
+
start,
|
2384
|
+
end,
|
2385
|
+
raw: this.source.slice(start, end),
|
2386
|
+
left,
|
2387
|
+
right,
|
2388
|
+
};
|
2389
|
+
left.parent = node;
|
2390
|
+
right.parent = node;
|
2391
|
+
this._expressionBufferMap.set(parent, node);
|
2392
|
+
}
|
2393
|
+
onClassSubtraction(start, end) {
|
2394
|
+
var _a;
|
2395
|
+
const parent = this._node;
|
2396
|
+
if (parent.type !== "CharacterClass" || !parent.unicodeSets) {
|
2397
|
+
throw new Error("UnknownError");
|
2398
|
+
}
|
2399
|
+
const right = parent.elements.pop();
|
2400
|
+
const left = (_a = this._expressionBufferMap.get(parent)) !== null && _a !== void 0 ? _a : parent.elements.pop();
|
2401
|
+
if (!left ||
|
2402
|
+
!right ||
|
2403
|
+
left.type === "ClassIntersection" ||
|
2404
|
+
(left.type !== "ClassSubtraction" && !isClassSetOperand(left)) ||
|
2405
|
+
!isClassSetOperand(right)) {
|
2406
|
+
throw new Error("UnknownError");
|
2407
|
+
}
|
2408
|
+
const node = {
|
2409
|
+
type: "ClassSubtraction",
|
2410
|
+
parent: parent,
|
2411
|
+
start,
|
2412
|
+
end,
|
2413
|
+
raw: this.source.slice(start, end),
|
2414
|
+
left,
|
2415
|
+
right,
|
2416
|
+
};
|
2417
|
+
left.parent = node;
|
2418
|
+
right.parent = node;
|
2419
|
+
this._expressionBufferMap.set(parent, node);
|
2420
|
+
}
|
2421
|
+
onClassStringDisjunctionEnter(start) {
|
2422
|
+
const parent = this._node;
|
2423
|
+
if (parent.type !== "CharacterClass" || !parent.unicodeSets) {
|
2424
|
+
throw new Error("UnknownError");
|
2425
|
+
}
|
2426
|
+
this._node = {
|
2427
|
+
type: "ClassStringDisjunction",
|
2428
|
+
parent,
|
2429
|
+
start,
|
2430
|
+
end: start,
|
2431
|
+
raw: "",
|
2432
|
+
alternatives: [],
|
2433
|
+
};
|
2434
|
+
parent.elements.push(this._node);
|
2435
|
+
}
|
2436
|
+
onClassStringDisjunctionLeave(start, end) {
|
2437
|
+
const node = this._node;
|
2438
|
+
if (node.type !== "ClassStringDisjunction" ||
|
2439
|
+
node.parent.type !== "CharacterClass") {
|
2440
|
+
throw new Error("UnknownError");
|
2441
|
+
}
|
2442
|
+
node.end = end;
|
2443
|
+
node.raw = this.source.slice(start, end);
|
2444
|
+
this._node = node.parent;
|
2445
|
+
}
|
2446
|
+
onStringAlternativeEnter(start) {
|
2447
|
+
const parent = this._node;
|
2448
|
+
if (parent.type !== "ClassStringDisjunction") {
|
2449
|
+
throw new Error("UnknownError");
|
2450
|
+
}
|
2451
|
+
this._node = {
|
2452
|
+
type: "StringAlternative",
|
2453
|
+
parent,
|
2454
|
+
start,
|
2455
|
+
end: start,
|
2456
|
+
raw: "",
|
2457
|
+
elements: [],
|
2458
|
+
};
|
2459
|
+
parent.alternatives.push(this._node);
|
2460
|
+
}
|
2461
|
+
onStringAlternativeLeave(start, end) {
|
2462
|
+
const node = this._node;
|
2463
|
+
if (node.type !== "StringAlternative") {
|
2464
|
+
throw new Error("UnknownError");
|
2465
|
+
}
|
2466
|
+
node.end = end;
|
2467
|
+
node.raw = this.source.slice(start, end);
|
2468
|
+
this._node = node.parent;
|
2469
|
+
}
|
2470
|
+
}
|
2471
|
+
class RegExpParser {
|
2472
|
+
constructor(options) {
|
2473
|
+
this._state = new RegExpParserState(options);
|
2474
|
+
this._validator = new RegExpValidator(this._state);
|
2475
|
+
}
|
2476
|
+
parseLiteral(source, start = 0, end = source.length) {
|
2477
|
+
this._state.source = source;
|
2478
|
+
this._validator.validateLiteral(source, start, end);
|
2479
|
+
const pattern = this._state.pattern;
|
2480
|
+
const flags = this._state.flags;
|
2481
|
+
const literal = {
|
2482
|
+
type: "RegExpLiteral",
|
2483
|
+
parent: null,
|
2484
|
+
start,
|
2485
|
+
end,
|
2486
|
+
raw: source,
|
2487
|
+
pattern,
|
2488
|
+
flags,
|
2489
|
+
};
|
2490
|
+
pattern.parent = literal;
|
2491
|
+
flags.parent = literal;
|
2492
|
+
return literal;
|
2493
|
+
}
|
2494
|
+
parseFlags(source, start = 0, end = source.length) {
|
2495
|
+
this._state.source = source;
|
2496
|
+
this._validator.validateFlags(source, start, end);
|
2497
|
+
return this._state.flags;
|
2498
|
+
}
|
2499
|
+
parsePattern(source, start = 0, end = source.length, uFlagOrFlags = undefined) {
|
2500
|
+
this._state.source = source;
|
2501
|
+
this._validator.validatePattern(source, start, end, uFlagOrFlags);
|
2502
|
+
return this._state.pattern;
|
2503
|
+
}
|
2504
|
+
}
|
2505
|
+
|
2506
|
+
class RegExpVisitor {
|
2507
|
+
constructor(handlers) {
|
2508
|
+
this._handlers = handlers;
|
2509
|
+
}
|
2510
|
+
visit(node) {
|
2511
|
+
switch (node.type) {
|
2512
|
+
case "Alternative":
|
2513
|
+
this.visitAlternative(node);
|
2514
|
+
break;
|
2515
|
+
case "Assertion":
|
2516
|
+
this.visitAssertion(node);
|
2517
|
+
break;
|
2518
|
+
case "Backreference":
|
2519
|
+
this.visitBackreference(node);
|
2520
|
+
break;
|
2521
|
+
case "CapturingGroup":
|
2522
|
+
this.visitCapturingGroup(node);
|
2523
|
+
break;
|
2524
|
+
case "Character":
|
2525
|
+
this.visitCharacter(node);
|
2526
|
+
break;
|
2527
|
+
case "CharacterClass":
|
2528
|
+
this.visitCharacterClass(node);
|
2529
|
+
break;
|
2530
|
+
case "CharacterClassRange":
|
2531
|
+
this.visitCharacterClassRange(node);
|
2532
|
+
break;
|
2533
|
+
case "CharacterSet":
|
2534
|
+
this.visitCharacterSet(node);
|
2535
|
+
break;
|
2536
|
+
case "ClassIntersection":
|
2537
|
+
this.visitClassIntersection(node);
|
2538
|
+
break;
|
2539
|
+
case "ClassStringDisjunction":
|
2540
|
+
this.visitClassStringDisjunction(node);
|
2541
|
+
break;
|
2542
|
+
case "ClassSubtraction":
|
2543
|
+
this.visitClassSubtraction(node);
|
2544
|
+
break;
|
2545
|
+
case "ExpressionCharacterClass":
|
2546
|
+
this.visitExpressionCharacterClass(node);
|
2547
|
+
break;
|
2548
|
+
case "Flags":
|
2549
|
+
this.visitFlags(node);
|
2550
|
+
break;
|
2551
|
+
case "Group":
|
2552
|
+
this.visitGroup(node);
|
2553
|
+
break;
|
2554
|
+
case "Pattern":
|
2555
|
+
this.visitPattern(node);
|
2556
|
+
break;
|
2557
|
+
case "Quantifier":
|
2558
|
+
this.visitQuantifier(node);
|
2559
|
+
break;
|
2560
|
+
case "RegExpLiteral":
|
2561
|
+
this.visitRegExpLiteral(node);
|
2562
|
+
break;
|
2563
|
+
case "StringAlternative":
|
2564
|
+
this.visitStringAlternative(node);
|
2565
|
+
break;
|
2566
|
+
default:
|
2567
|
+
throw new Error(`Unknown type: ${node.type}`);
|
2568
|
+
}
|
2569
|
+
}
|
2570
|
+
visitAlternative(node) {
|
2571
|
+
if (this._handlers.onAlternativeEnter) {
|
2572
|
+
this._handlers.onAlternativeEnter(node);
|
2573
|
+
}
|
2574
|
+
node.elements.forEach(this.visit, this);
|
2575
|
+
if (this._handlers.onAlternativeLeave) {
|
2576
|
+
this._handlers.onAlternativeLeave(node);
|
2577
|
+
}
|
2578
|
+
}
|
2579
|
+
visitAssertion(node) {
|
2580
|
+
if (this._handlers.onAssertionEnter) {
|
2581
|
+
this._handlers.onAssertionEnter(node);
|
2582
|
+
}
|
2583
|
+
if (node.kind === "lookahead" || node.kind === "lookbehind") {
|
2584
|
+
node.alternatives.forEach(this.visit, this);
|
2585
|
+
}
|
2586
|
+
if (this._handlers.onAssertionLeave) {
|
2587
|
+
this._handlers.onAssertionLeave(node);
|
2588
|
+
}
|
2589
|
+
}
|
2590
|
+
visitBackreference(node) {
|
2591
|
+
if (this._handlers.onBackreferenceEnter) {
|
2592
|
+
this._handlers.onBackreferenceEnter(node);
|
2593
|
+
}
|
2594
|
+
if (this._handlers.onBackreferenceLeave) {
|
2595
|
+
this._handlers.onBackreferenceLeave(node);
|
2596
|
+
}
|
2597
|
+
}
|
2598
|
+
visitCapturingGroup(node) {
|
2599
|
+
if (this._handlers.onCapturingGroupEnter) {
|
2600
|
+
this._handlers.onCapturingGroupEnter(node);
|
2601
|
+
}
|
2602
|
+
node.alternatives.forEach(this.visit, this);
|
2603
|
+
if (this._handlers.onCapturingGroupLeave) {
|
2604
|
+
this._handlers.onCapturingGroupLeave(node);
|
2605
|
+
}
|
2606
|
+
}
|
2607
|
+
visitCharacter(node) {
|
2608
|
+
if (this._handlers.onCharacterEnter) {
|
2609
|
+
this._handlers.onCharacterEnter(node);
|
2610
|
+
}
|
2611
|
+
if (this._handlers.onCharacterLeave) {
|
2612
|
+
this._handlers.onCharacterLeave(node);
|
2613
|
+
}
|
2614
|
+
}
|
2615
|
+
visitCharacterClass(node) {
|
2616
|
+
if (this._handlers.onCharacterClassEnter) {
|
2617
|
+
this._handlers.onCharacterClassEnter(node);
|
2618
|
+
}
|
2619
|
+
node.elements.forEach(this.visit, this);
|
2620
|
+
if (this._handlers.onCharacterClassLeave) {
|
2621
|
+
this._handlers.onCharacterClassLeave(node);
|
2622
|
+
}
|
2623
|
+
}
|
2624
|
+
visitCharacterClassRange(node) {
|
2625
|
+
if (this._handlers.onCharacterClassRangeEnter) {
|
2626
|
+
this._handlers.onCharacterClassRangeEnter(node);
|
2627
|
+
}
|
2628
|
+
this.visitCharacter(node.min);
|
2629
|
+
this.visitCharacter(node.max);
|
2630
|
+
if (this._handlers.onCharacterClassRangeLeave) {
|
2631
|
+
this._handlers.onCharacterClassRangeLeave(node);
|
2632
|
+
}
|
2633
|
+
}
|
2634
|
+
visitCharacterSet(node) {
|
2635
|
+
if (this._handlers.onCharacterSetEnter) {
|
2636
|
+
this._handlers.onCharacterSetEnter(node);
|
2637
|
+
}
|
2638
|
+
if (this._handlers.onCharacterSetLeave) {
|
2639
|
+
this._handlers.onCharacterSetLeave(node);
|
2640
|
+
}
|
2641
|
+
}
|
2642
|
+
visitClassIntersection(node) {
|
2643
|
+
if (this._handlers.onClassIntersectionEnter) {
|
2644
|
+
this._handlers.onClassIntersectionEnter(node);
|
2645
|
+
}
|
2646
|
+
this.visit(node.left);
|
2647
|
+
this.visit(node.right);
|
2648
|
+
if (this._handlers.onClassIntersectionLeave) {
|
2649
|
+
this._handlers.onClassIntersectionLeave(node);
|
2650
|
+
}
|
2651
|
+
}
|
2652
|
+
visitClassStringDisjunction(node) {
|
2653
|
+
if (this._handlers.onClassStringDisjunctionEnter) {
|
2654
|
+
this._handlers.onClassStringDisjunctionEnter(node);
|
2655
|
+
}
|
2656
|
+
node.alternatives.forEach(this.visit, this);
|
2657
|
+
if (this._handlers.onClassStringDisjunctionLeave) {
|
2658
|
+
this._handlers.onClassStringDisjunctionLeave(node);
|
2659
|
+
}
|
2660
|
+
}
|
2661
|
+
visitClassSubtraction(node) {
|
2662
|
+
if (this._handlers.onClassSubtractionEnter) {
|
2663
|
+
this._handlers.onClassSubtractionEnter(node);
|
2664
|
+
}
|
2665
|
+
this.visit(node.left);
|
2666
|
+
this.visit(node.right);
|
2667
|
+
if (this._handlers.onClassSubtractionLeave) {
|
2668
|
+
this._handlers.onClassSubtractionLeave(node);
|
2669
|
+
}
|
2670
|
+
}
|
2671
|
+
visitExpressionCharacterClass(node) {
|
2672
|
+
if (this._handlers.onExpressionCharacterClassEnter) {
|
2673
|
+
this._handlers.onExpressionCharacterClassEnter(node);
|
2674
|
+
}
|
2675
|
+
this.visit(node.expression);
|
2676
|
+
if (this._handlers.onExpressionCharacterClassLeave) {
|
2677
|
+
this._handlers.onExpressionCharacterClassLeave(node);
|
2678
|
+
}
|
2679
|
+
}
|
2680
|
+
visitFlags(node) {
|
2681
|
+
if (this._handlers.onFlagsEnter) {
|
2682
|
+
this._handlers.onFlagsEnter(node);
|
2683
|
+
}
|
2684
|
+
if (this._handlers.onFlagsLeave) {
|
2685
|
+
this._handlers.onFlagsLeave(node);
|
2686
|
+
}
|
2687
|
+
}
|
2688
|
+
visitGroup(node) {
|
2689
|
+
if (this._handlers.onGroupEnter) {
|
2690
|
+
this._handlers.onGroupEnter(node);
|
2691
|
+
}
|
2692
|
+
node.alternatives.forEach(this.visit, this);
|
2693
|
+
if (this._handlers.onGroupLeave) {
|
2694
|
+
this._handlers.onGroupLeave(node);
|
2695
|
+
}
|
2696
|
+
}
|
2697
|
+
visitPattern(node) {
|
2698
|
+
if (this._handlers.onPatternEnter) {
|
2699
|
+
this._handlers.onPatternEnter(node);
|
2700
|
+
}
|
2701
|
+
node.alternatives.forEach(this.visit, this);
|
2702
|
+
if (this._handlers.onPatternLeave) {
|
2703
|
+
this._handlers.onPatternLeave(node);
|
2704
|
+
}
|
2705
|
+
}
|
2706
|
+
visitQuantifier(node) {
|
2707
|
+
if (this._handlers.onQuantifierEnter) {
|
2708
|
+
this._handlers.onQuantifierEnter(node);
|
2709
|
+
}
|
2710
|
+
this.visit(node.element);
|
2711
|
+
if (this._handlers.onQuantifierLeave) {
|
2712
|
+
this._handlers.onQuantifierLeave(node);
|
2713
|
+
}
|
2714
|
+
}
|
2715
|
+
visitRegExpLiteral(node) {
|
2716
|
+
if (this._handlers.onRegExpLiteralEnter) {
|
2717
|
+
this._handlers.onRegExpLiteralEnter(node);
|
2718
|
+
}
|
2719
|
+
this.visitPattern(node.pattern);
|
2720
|
+
this.visitFlags(node.flags);
|
2721
|
+
if (this._handlers.onRegExpLiteralLeave) {
|
2722
|
+
this._handlers.onRegExpLiteralLeave(node);
|
2723
|
+
}
|
2724
|
+
}
|
2725
|
+
visitStringAlternative(node) {
|
2726
|
+
if (this._handlers.onStringAlternativeEnter) {
|
2727
|
+
this._handlers.onStringAlternativeEnter(node);
|
2728
|
+
}
|
2729
|
+
node.elements.forEach(this.visit, this);
|
2730
|
+
if (this._handlers.onStringAlternativeLeave) {
|
2731
|
+
this._handlers.onStringAlternativeLeave(node);
|
2732
|
+
}
|
2733
|
+
}
|
2734
|
+
}
|
2735
|
+
|
2736
|
+
function parseRegExpLiteral(source, options) {
|
2737
|
+
return new RegExpParser(options).parseLiteral(String(source));
|
2738
|
+
}
|
2739
|
+
function validateRegExpLiteral(source, options) {
|
2740
|
+
new RegExpValidator(options).validateLiteral(source);
|
2741
|
+
}
|
2742
|
+
function visitRegExpAST(node, handlers) {
|
2743
|
+
new RegExpVisitor(handlers).visit(node);
|
2744
|
+
}
|
2745
|
+
|
2746
|
+
exports.AST = ast;
|
2747
|
+
exports.RegExpParser = RegExpParser;
|
2748
|
+
exports.RegExpValidator = RegExpValidator;
|
2749
|
+
exports.parseRegExpLiteral = parseRegExpLiteral;
|
2750
|
+
exports.validateRegExpLiteral = validateRegExpLiteral;
|
2751
|
+
exports.visitRegExpAST = visitRegExpAST;
|
2752
|
+
//# sourceMappingURL=index.js.map
|