immosquare-cleaner 0.1.5 → 0.1.7
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} +55 -28
- data/node_modules/.bin/acorn +1 -0
- data/node_modules/.bin/eslint +1 -0
- data/node_modules/.bin/js-yaml +1 -0
- data/node_modules/.bin/json5 +1 -0
- data/node_modules/.bin/node-which +1 -0
- data/node_modules/.bin/prettier +1 -0
- data/node_modules/.bin/resolve +1 -0
- data/node_modules/.bin/rimraf +1 -0
- data/node_modules/.bin/semver +1 -0
- 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
- data/package.json +10 -0
- metadata +4348 -7
- /data/lib/{immosquare-cleaner → immosquare_cleaner}/configuration.rb +0 -0
- /data/lib/tasks/{immosquare-cleaner.rake → immosquare_cleaner.rake} +0 -0
@@ -0,0 +1,1899 @@
|
|
1
|
+
# Change Log
|
2
|
+
|
3
|
+
All notable changes to this project will be documented in this file.
|
4
|
+
This project adheres to [Semantic Versioning](https://semver.org/).
|
5
|
+
This change log adheres to standards from [Keep a CHANGELOG](https://keepachangelog.com).
|
6
|
+
|
7
|
+
## [Unreleased]
|
8
|
+
|
9
|
+
## [2.28.1] - 2023-08-18
|
10
|
+
|
11
|
+
### Fixed
|
12
|
+
- [`order`]: revert breaking change to single nested group ([#2854], thanks [@yndajas])
|
13
|
+
|
14
|
+
### Changed
|
15
|
+
- [Docs] remove duplicate fixable notices in docs ([#2850], thanks [@bmish])
|
16
|
+
|
17
|
+
## [2.28.0] - 2023-07-27
|
18
|
+
|
19
|
+
### Fixed
|
20
|
+
- [`no-duplicates`]: remove duplicate identifiers in duplicate imports ([#2577], thanks [@joe-matsec])
|
21
|
+
- [`consistent-type-specifier-style`]: fix accidental removal of comma in certain cases ([#2754], thanks [@bradzacher])
|
22
|
+
- [Perf] `ExportMap`: Improve `ExportMap.for` performance on larger codebases ([#2756], thanks [@leipert])
|
23
|
+
- [`no-extraneous-dependencies`]/TypeScript: do not error when importing inline type from dev dependencies ([#1820], thanks [@andyogo])
|
24
|
+
- [`newline-after-import`]/TypeScript: do not error when re-exporting a namespaced import ([#2832], thanks [@laurens-dg])
|
25
|
+
- [`order`]: partial fix for [#2687] (thanks [@ljharb])
|
26
|
+
- [`no-duplicates`]: Detect across type and regular imports ([#2835], thanks [@benkrejci])
|
27
|
+
- [`extensions`]: handle `.` and `..` properly ([#2778], thanks [@benasher44])
|
28
|
+
- [`no-unused-modules`]: improve schema (thanks [@ljharb])
|
29
|
+
- [`no-unused-modules`]: report error on binding instead of parent export ([#2842], thanks [@Chamion])
|
30
|
+
|
31
|
+
### Changed
|
32
|
+
- [Docs] [`no-duplicates`]: fix example schema ([#2684], thanks [@simmo])
|
33
|
+
- [Docs] [`group-exports`]: fix syntax highlighting ([#2699], thanks [@devinrhode2])
|
34
|
+
- [Docs] [`extensions`]: reference node ESM behavior ([#2748], thanks [@xM8WVqaG])
|
35
|
+
- [Refactor] [`exports-last`]: use `array.prototype.findlastindex` (thanks [@ljharb])
|
36
|
+
- [Refactor] [`no-anonymous-default-export`]: use `object.fromentries` (thanks [@ljharb])
|
37
|
+
- [Refactor] [`no-unused-modules`]: use `array.prototype.flatmap` (thanks [@ljharb])
|
38
|
+
|
39
|
+
## [2.27.5] - 2023-01-16
|
40
|
+
|
41
|
+
### Fixed
|
42
|
+
- [`order]`: Fix group ranks order when alphabetizing ([#2674], thanks [@Pearce-Ropion])
|
43
|
+
|
44
|
+
## [2.27.4] - 2023-01-11
|
45
|
+
|
46
|
+
### Fixed
|
47
|
+
- `semver` should be a prod dep ([#2668])
|
48
|
+
|
49
|
+
## [2.27.3] - 2023-01-11
|
50
|
+
|
51
|
+
### Fixed
|
52
|
+
- [`no-empty-named-blocks`]: rewrite rule to only check import declarations ([#2666])
|
53
|
+
|
54
|
+
## [2.27.2] - 2023-01-11
|
55
|
+
|
56
|
+
### Fixed
|
57
|
+
- [`no-duplicates`]: do not unconditionally require `typescript` ([#2665])
|
58
|
+
|
59
|
+
## [2.27.1] - 2023-01-11
|
60
|
+
|
61
|
+
### Fixed
|
62
|
+
- `array.prototype.flatmap` should be a prod dep ([#2664], thanks [@cristobal])
|
63
|
+
|
64
|
+
## [2.27.0] - 2023-01-11
|
65
|
+
|
66
|
+
### Added
|
67
|
+
- [`newline-after-import`]: add `considerComments` option ([#2399], thanks [@pri1311])
|
68
|
+
- [`no-cycle`]: add `allowUnsafeDynamicCyclicDependency` option ([#2387], thanks [@GerkinDev])
|
69
|
+
- [`no-restricted-paths`]: support arrays for `from` and `target` options ([#2466], thanks [@AdriAt360])
|
70
|
+
- [`no-anonymous-default-export`]: add `allowNew` option ([#2505], thanks [@DamienCassou])
|
71
|
+
- [`order`]: Add `distinctGroup` option ([#2395], thanks [@hyperupcall])
|
72
|
+
- [`no-extraneous-dependencies`]: Add `includeInternal` option ([#2541], thanks [@bdwain])
|
73
|
+
- [`no-extraneous-dependencies`]: Add `includeTypes` option ([#2543], thanks [@bdwain])
|
74
|
+
- [`order`]: new `alphabetize.orderImportKind` option to sort imports with same path based on their kind (`type`, `typeof`) ([#2544], thanks [@stropho])
|
75
|
+
- [`consistent-type-specifier-style`]: add rule ([#2473], thanks [@bradzacher])
|
76
|
+
- Add [`no-empty-named-blocks`] rule ([#2568], thanks [@guilhermelimak])
|
77
|
+
- [`prefer-default-export`]: add "target" option ([#2602], thanks [@azyzz228])
|
78
|
+
- [`no-absolute-path`]: add fixer ([#2613], thanks [@adipascu])
|
79
|
+
- [`no-duplicates`]: support inline type import with `inlineTypeImport` option ([#2475], thanks [@snewcomer])
|
80
|
+
|
81
|
+
### Fixed
|
82
|
+
- [`order`]: move nested imports closer to main import entry ([#2396], thanks [@pri1311])
|
83
|
+
- [`no-restricted-paths`]: fix an error message ([#2466], thanks [@AdriAt360])
|
84
|
+
- [`no-restricted-paths`]: use `Minimatch.match` instead of `minimatch` to comply with Windows Native paths ([#2466], thanks [@AdriAt360])
|
85
|
+
- [`order`]: require with member expression could not be fixed if alphabetize.order was used ([#2490], thanks [@msvab])
|
86
|
+
- [`order`]: leave more space in rankings for consecutive path groups ([#2506], thanks [@Pearce-Ropion])
|
87
|
+
- [`no-cycle`]: add ExportNamedDeclaration statements to dependencies ([#2511], thanks [@BenoitZugmeyer])
|
88
|
+
- [`dynamic-import-chunkname`]: prevent false report on a valid webpack magic comment ([#2330], thanks [@mhmadhamster])
|
89
|
+
- [`export`]: do not error on TS export overloads ([#1590], thanks [@ljharb])
|
90
|
+
- [`no-unresolved`], [`extensions`]: ignore type only exports ([#2436], thanks [@Lukas-Kullmann])
|
91
|
+
- `ExportMap`: add missing param to function ([#2589], thanks [@Fdawgs])
|
92
|
+
- [`no-unused-modules`]: `checkPkgFieldObject` filters boolean fields from checks ([#2598], thanks [@mpint])
|
93
|
+
- [`no-cycle`]: accept Flow `typeof` imports, just like `type` ([#2608], thanks [@gnprice])
|
94
|
+
- [`no-import-module-exports`]: avoid a false positive for import variables ([#2315], thanks [@BarryThePenguin])
|
95
|
+
|
96
|
+
### Changed
|
97
|
+
- [Tests] [`named`]: Run all TypeScript test ([#2427], thanks [@ProdigySim])
|
98
|
+
- [readme] note use of typescript in readme `import/extensions` section ([#2440], thanks [@OutdatedVersion])
|
99
|
+
- [Docs] [`order`]: use correct default value ([#2392], thanks [@hyperupcall])
|
100
|
+
- [meta] replace git.io link in comments with the original URL ([#2444], thanks [@liby])
|
101
|
+
- [Docs] remove global install in readme ([#2412], thanks [@aladdin-add])
|
102
|
+
- [readme] clarify `eslint-import-resolver-typescript` usage ([#2503], thanks [@JounQin])
|
103
|
+
- [Refactor] [`no-cycle`]: Add per-run caching of traversed paths ([#2419], thanks [@nokel81])
|
104
|
+
- [Performance] `ExportMap`: add caching after parsing for an ambiguous module ([#2531], thanks [@stenin-nikita])
|
105
|
+
- [Docs] [`no-useless-path-segments`]: fix paths ([#2424], thanks [@s-h-a-d-o-w])
|
106
|
+
- [Tests] [`no-cycle`]: add passing test cases ([#2438], thanks [@georeith])
|
107
|
+
- [Refactor] [`no-extraneous-dependencies`] improve performance using cache ([#2374], thanks [@meowtec])
|
108
|
+
- [meta] `CONTRIBUTING.md`: mention inactive PRs ([#2546], thanks [@stropho])
|
109
|
+
- [readme] make json for setting groups multiline ([#2570], thanks [@bertyhell])
|
110
|
+
- [Tests] [`no-restricted-paths`]: Tests for `import type` statements ([#2459], thanks [@golergka])
|
111
|
+
- [Tests] [`no-restricted-paths`]: fix one failing `import type` test case, submitted by [@golergka], thanks [@azyzz228]
|
112
|
+
- [Docs] automate docs with eslint-doc-generator ([#2582], thanks [@bmish])
|
113
|
+
- [readme] Increase clarity around typescript configuration ([#2588], thanks [@Nfinished])
|
114
|
+
- [Docs] update `eslint-doc-generator` to v1.0.0 ([#2605], thanks [@bmish])
|
115
|
+
- [Perf] [`no-cycle`], [`no-internal-modules`], [`no-restricted-paths`]: use `anyOf` instead of `oneOf` (thanks [@ljharb], [@remcohaszing])
|
116
|
+
|
117
|
+
## [2.26.0] - 2022-04-05
|
118
|
+
|
119
|
+
### Added
|
120
|
+
- [`no-named-default`], [`no-default-export`], [`prefer-default-export`], [`no-named-export`], [`export`], [`named`], [`namespace`], [`no-unused-modules`]: support arbitrary module namespace names ([#2358], thanks [@sosukesuzuki])
|
121
|
+
- [`no-dynamic-require`]: support dynamic import with espree ([#2371], thanks [@sosukesuzuki])
|
122
|
+
- [`no-relative-packages`]: add fixer ([#2381], thanks [@forivall])
|
123
|
+
|
124
|
+
### Fixed
|
125
|
+
- [`default`]: `typescript-eslint-parser`: avoid a crash on exporting as namespace (thanks [@ljharb])
|
126
|
+
- [`export`]/TypeScript: false positive for typescript namespace merging ([#1964], thanks [@magarcia])
|
127
|
+
- [`no-duplicates`]: ignore duplicate modules in different TypeScript module declarations ([#2378], thanks [@remcohaszing])
|
128
|
+
- [`no-unused-modules`]: avoid a crash when processing re-exports ([#2388], thanks [@ljharb])
|
129
|
+
|
130
|
+
### Changed
|
131
|
+
- [Tests] [`no-nodejs-modules`]: add tests for node protocol URL ([#2367], thanks [@sosukesuzuki])
|
132
|
+
- [Tests] [`default`], [`no-anonymous-default-export`], [`no-mutable-exports`], [`no-named-as-default-member`], [`no-named-as-default`]: add tests for arbitrary module namespace names ([#2358], thanks [@sosukesuzuki])
|
133
|
+
- [Docs] [`no-unresolved`]: Fix RegExp escaping in readme ([#2332], thanks [@stephtr])
|
134
|
+
- [Refactor] [`namespace`]: try to improve performance ([#2340], thanks [@ljharb])
|
135
|
+
- [Docs] make rule doc titles consistent ([#2393], thanks [@TheJaredWilcurt])
|
136
|
+
- [Docs] [`order`]: TS code examples should use TS code blocks ([#2411], thanks [@MM25Zamanian])
|
137
|
+
- [Docs] [`no-unresolved`]: fix link ([#2417], thanks [@kylemh])
|
138
|
+
|
139
|
+
## [2.25.4] - 2022-01-02
|
140
|
+
|
141
|
+
### Fixed
|
142
|
+
- `importType`: avoid crashing on a non-string' ([#2305], thanks [@ljharb])
|
143
|
+
- [`first`]: prevent crash when parsing angular templates ([#2210], thanks [@ljharb])
|
144
|
+
- `importType`: properly resolve `@/*`-aliased imports as internal ([#2334], thanks [@ombene])
|
145
|
+
- [`named`]/`ExportMap`: handle named imports from CJS modules that use dynamic import ([#2341], thanks [@ludofischer])
|
146
|
+
|
147
|
+
### Changed
|
148
|
+
- [`no-default-import`]: report on the token "default" instead of the entire node ([#2299], thanks [@pmcelhaney])
|
149
|
+
- [Docs] [`order`]: Remove duplicate mention of default ([#2280], thanks [@johnthagen])
|
150
|
+
- [Deps] update `eslint-module-utils`
|
151
|
+
|
152
|
+
## [2.25.3] - 2021-11-09
|
153
|
+
|
154
|
+
### Fixed
|
155
|
+
- [`extensions`]: ignore unresolveable type-only imports ([#2270], [#2271], thanks [@jablko])
|
156
|
+
- `importType`: fix `isExternalModule` calculation ([#2282], thanks [@mx-bernhard])
|
157
|
+
- [`no-import-module-exports`]: avoid false positives with a shadowed `module` or `exports` ([#2297], thanks [@ljharb])
|
158
|
+
|
159
|
+
### Changed
|
160
|
+
- [Docs] [`order`]: add type to the default groups ([#2272], thanks [@charpeni])
|
161
|
+
- [readme] Add note to TypeScript docs to install appropriate resolver ([#2279], thanks [@johnthagen])
|
162
|
+
- [Refactor] `importType`: combine redundant `isScoped` and `isScopedModule` (thanks [@ljharb])
|
163
|
+
- [Docs] HTTP => HTTPS ([#2287], thanks [@Schweinepriester])
|
164
|
+
|
165
|
+
## [2.25.2] - 2021-10-12
|
166
|
+
|
167
|
+
### Fixed
|
168
|
+
- [Deps] update `eslint-module-utils` for real this time ([#2255], thanks [@ljharb])
|
169
|
+
|
170
|
+
## [2.25.1] - 2021-10-11
|
171
|
+
|
172
|
+
### Fixed
|
173
|
+
- [Deps] update `eslint-module-utils`
|
174
|
+
|
175
|
+
## [2.25.0] - 2021-10-11
|
176
|
+
|
177
|
+
### Added
|
178
|
+
- Support `eslint` v8 ([#2191], thanks [@ota-meshi])
|
179
|
+
- [`no-unresolved`]: add `caseSensitiveStrict` option ([#1262], thanks [@sergei-startsev])
|
180
|
+
- [`no-unused-modules`]: add eslint v8 support ([#2194], thanks [@coderaiser])
|
181
|
+
- [`no-restricted-paths`]: add/restore glob pattern support ([#2219], thanks [@stropho])
|
182
|
+
- [`no-unused-modules`]: support dynamic imports ([#1660], [#2212], thanks [@maxkomarychev], [@aladdin-add], [@Hypnosphi])
|
183
|
+
|
184
|
+
### Fixed
|
185
|
+
- [`no-unresolved`]: ignore type-only imports ([#2220], thanks [@jablko])
|
186
|
+
- [`order`]: fix sorting imports inside TypeScript module declarations ([#2226], thanks [@remcohaszing])
|
187
|
+
- [`default`], `ExportMap`: Resolve extended TypeScript configuration files ([#2240], thanks [@mrmckeb])
|
188
|
+
|
189
|
+
### Changed
|
190
|
+
- [Refactor] switch to an internal replacement for `pkg-up` and `read-pkg-up` ([#2047], thanks [@mgwalker])
|
191
|
+
- [patch] TypeScript config: remove `.d.ts` from [`import/parsers` setting] and [`import/extensions` setting] ([#2220], thanks [@jablko])
|
192
|
+
- [Refactor] [`no-unresolved`], [`no-extraneous-dependencies`]: moduleVisitor usage ([#2233], thanks [@jablko])
|
193
|
+
|
194
|
+
## [2.24.2] - 2021-08-24
|
195
|
+
|
196
|
+
### Fixed
|
197
|
+
- [`named`], [`namespace`]: properly handle ExportAllDeclarations ([#2199], thanks [@ljharb])
|
198
|
+
|
199
|
+
## [2.24.1] - 2021-08-19
|
200
|
+
|
201
|
+
### Fixed
|
202
|
+
- `ExportMap`: Add default export when esModuleInterop is true and anything is exported ([#2184], thanks [@Maxim-Mazurok])
|
203
|
+
- [`named`], [`namespace`]: properly set reexports on `export * as … from` ([#1998], [#2161], thanks [@ljharb])
|
204
|
+
- [`no-duplicates`]: correctly handle case of mixed default/named type imports ([#2149], thanks [@GoodForOneFare], [@nwalters512])
|
205
|
+
- [`no-duplicates`]: avoid crash with empty `import type {}` ([#2201], thanks [@ljharb])
|
206
|
+
|
207
|
+
### Changed
|
208
|
+
- [Docs] `max-dependencies`: 📖 Document `ignoreTypeImports` option ([#2196], thanks [@himynameisdave])
|
209
|
+
|
210
|
+
## [2.24.0] - 2021-08-08
|
211
|
+
|
212
|
+
### Added
|
213
|
+
- [`no-dynamic-require`]: add option `esmodule` ([#1223], thanks [@vikr01])
|
214
|
+
- [`named`]: add `commonjs` option ([#1222], thanks [@vikr01])
|
215
|
+
- [`no-namespace`]: Add `ignore` option ([#2112], thanks [@aberezkin])
|
216
|
+
- [`max-dependencies`]: add option `ignoreTypeImports` ([#1847], thanks [@rfermann])
|
217
|
+
|
218
|
+
### Fixed
|
219
|
+
- [`no-duplicates`]: ensure autofix avoids excessive newlines ([#2028], thanks [@ertrzyiks])
|
220
|
+
- [`extensions`]: avoid crashing on partially typed import/export statements ([#2118], thanks [@ljharb])
|
221
|
+
- [`no-extraneous-dependencies`]: add ESM intermediate package.json support ([#2121], thanks [@paztis])
|
222
|
+
- Use `context.getPhysicalFilename()` when available (ESLint 7.28+) ([#2160], thanks [@pmcelhaney])
|
223
|
+
- [`extensions`]/`importType`: fix isScoped treating @/abc as scoped module ([#2146], thanks [@rperello])
|
224
|
+
|
225
|
+
### Changed
|
226
|
+
- [Docs] [`extensions`]: improved cases for using `@/...` ([#2140], thanks [@wenfangdu])
|
227
|
+
- [Docs] [`extensions`]: removed incorrect cases ([#2138], thanks [@wenfangdu])
|
228
|
+
- [Tests] [`order`]: add tests for `pathGroupsExcludedImportTypes: ['type']` ([#2158], thanks [@atav32])
|
229
|
+
- [Docs] [`order`]: improve the documentation for the `pathGroupsExcludedImportTypes` option ([#2156], thanks [@liby])
|
230
|
+
- [Tests] [`no-cycle`]: Restructure test files ([#1517], thanks [@soryy708])
|
231
|
+
- [Docs] add description how to use plugin with yarn berry ([#2179], thanks [@KostyaZgara])
|
232
|
+
|
233
|
+
## [2.23.4] - 2021-05-29
|
234
|
+
|
235
|
+
### Fixed
|
236
|
+
- [`no-import-module-exports`]: Don't crash if packages have no entrypoint ([#2099], thanks [@eps1lon])
|
237
|
+
- [`no-extraneous-dependencies`]: fix package name algorithm ([#2097], thanks [@paztis])
|
238
|
+
|
239
|
+
## [2.23.3] - 2021-05-21
|
240
|
+
|
241
|
+
### Fixed
|
242
|
+
- [`no-restricted-paths`]: fix false positive matches ([#2090], thanks [@malykhinvi])
|
243
|
+
- [`no-cycle`]: ignore imports where imported file only imports types of importing file ([#2083], thanks [@cherryblossom000])
|
244
|
+
- [`no-cycle`]: fix false negative when file imports a type after importing a value in Flow ([#2083], thanks [@cherryblossom000])
|
245
|
+
- [`order`]: restore default behavior unless `type` is in groups ([#2087], thanks [@grit96])
|
246
|
+
|
247
|
+
### Changed
|
248
|
+
- [Docs] Add [`no-relative-packages`] to list of to the list of rules ([#2075], thanks [@arvigeus])
|
249
|
+
|
250
|
+
## [2.23.2] - 2021-05-15
|
251
|
+
|
252
|
+
### Changed
|
253
|
+
- [meta] add `safe-publish-latest`; use `prepublishOnly` script for npm 7+
|
254
|
+
|
255
|
+
## [2.23.1] - 2021-05-14
|
256
|
+
|
257
|
+
### Fixed
|
258
|
+
- [`newline-after-import`]: fix crash with `export {}` syntax ([#2063], [#2056], thanks [@ljharb])
|
259
|
+
- `ExportMap`: do not crash when tsconfig lacks `.compilerOptions` ([#2067], thanks [@ljharb])
|
260
|
+
- [`order`]: fix alphabetical sorting ([#2071], thanks [@grit96])
|
261
|
+
|
262
|
+
## [2.23.0] - 2021-05-13
|
263
|
+
|
264
|
+
### Added
|
265
|
+
- [`no-commonjs`]: Also detect require calls with expressionless template literals: ``` require(`x`) ``` ([#1958], thanks [@FloEdelmann])
|
266
|
+
- [`no-internal-modules`]: Add `forbid` option ([#1846], thanks [@guillaumewuip])
|
267
|
+
- add [`no-relative-packages`] ([#1860], [#966], thanks [@tapayne88] [@panrafal])
|
268
|
+
- add [`no-import-module-exports`] rule: report import declarations with CommonJS exports ([#804], thanks [@kentcdodds] and [@ttmarek])
|
269
|
+
- [`no-unused-modules`]: Support destructuring assignment for `export`. ([#1997], thanks [@s-h-a-d-o-w])
|
270
|
+
- [`order`]: support type imports ([#2021], thanks [@grit96])
|
271
|
+
- [`order`]: Add `warnOnUnassignedImports` option to enable warnings for out of order unassigned imports ([#1990], thanks [@hayes])
|
272
|
+
|
273
|
+
### Fixed
|
274
|
+
- [`export`]/TypeScript: properly detect export specifiers as children of a TS module block ([#1889], thanks [@andreubotella])
|
275
|
+
- [`order`]: ignore non-module-level requires ([#1940], thanks [@golopot])
|
276
|
+
- [`no-webpack-loader-syntax`]/TypeScript: avoid crash on missing name ([#1947], thanks [@leonardodino])
|
277
|
+
- [`no-extraneous-dependencies`]: Add package.json cache ([#1948], thanks [@fa93hws])
|
278
|
+
- [`prefer-default-export`]: handle empty array destructuring ([#1965], thanks [@ljharb])
|
279
|
+
- [`no-unused-modules`]: make type imports mark a module as used (fixes #1924) ([#1974], thanks [@cherryblossom000])
|
280
|
+
- [`no-cycle`]: fix perf regression ([#1944], thanks [@Blasz])
|
281
|
+
- [`first`]: fix handling of `import = require` ([#1963], thanks [@MatthiasKunnen])
|
282
|
+
- [`no-cycle`]/[`extensions`]: fix isExternalModule usage ([#1696], thanks [@paztis])
|
283
|
+
- [`extensions`]/[`no-cycle`]/[`no-extraneous-dependencies`]: Correct module real path resolution ([#1696], thanks [@paztis])
|
284
|
+
- [`no-named-default`]: ignore Flow import type and typeof ([#1983], thanks [@christianvuerings])
|
285
|
+
- [`no-extraneous-dependencies`]: Exclude flow `typeof` imports ([#1534], thanks [@devongovett])
|
286
|
+
- [`newline-after-import`]: respect decorator annotations ([#1985], thanks [@lilling])
|
287
|
+
- [`no-restricted-paths`]: enhance performance for zones with `except` paths ([#2022], thanks [@malykhinvi])
|
288
|
+
- [`no-unresolved`]: check import() ([#2026], thanks [@aladdin-add])
|
289
|
+
|
290
|
+
### Changed
|
291
|
+
- [Generic Import Callback] Make callback for all imports once in rules ([#1237], thanks [@ljqx])
|
292
|
+
- [Docs] [`no-named-as-default`]: add semicolon ([#1897], thanks [@bicstone])
|
293
|
+
- [Docs] [`no-extraneous-dependencies`]: correct peerDependencies option default to `true` ([#1993], thanks [@dwardu])
|
294
|
+
- [Docs] [`order`]: Document options required to match ordering example ([#1992], thanks [@silviogutierrez])
|
295
|
+
- [Tests] [`no-unresolved`]: add tests for `import()` ([#2012], thanks [@davidbonnet])
|
296
|
+
- [Docs] Add import/recommended ruleset to README ([#2034], thanks [@edemaine])
|
297
|
+
|
298
|
+
## [2.22.1] - 2020-09-27
|
299
|
+
|
300
|
+
### Fixed
|
301
|
+
- [`default`]/TypeScript: avoid crash on `export =` with a MemberExpression ([#1841], thanks [@ljharb])
|
302
|
+
- [`extensions`]/importType: Fix @/abc being treated as scoped module ([#1854], thanks [@3nuc])
|
303
|
+
- allow using rest operator in named export ([#1878], thanks [@foray1010])
|
304
|
+
- [`dynamic-import-chunkname`]: allow single quotes to match Webpack support ([#1848], thanks [@straub])
|
305
|
+
|
306
|
+
### Changed
|
307
|
+
- [`export`]: add tests for a name collision with `export * from` ([#1704], thanks @tomprats)
|
308
|
+
|
309
|
+
## [2.22.0] - 2020-06-26
|
310
|
+
|
311
|
+
### Added
|
312
|
+
- [`no-unused-modules`]: consider exported TypeScript interfaces, types and enums ([#1819], thanks [@nicolashenry])
|
313
|
+
- [`no-cycle`]: allow `maxDepth` option to be `"∞"` (thanks [@ljharb])
|
314
|
+
|
315
|
+
### Fixed
|
316
|
+
- [`order`]/TypeScript: properly support `import = object` expressions ([#1823], thanks [@manuth])
|
317
|
+
- [`no-extraneous-dependencies`]/TypeScript: do not error when importing type from dev dependencies ([#1820], thanks [@fernandopasik])
|
318
|
+
- [`default`]: avoid crash with `export =` ([#1822], thanks [@AndrewLeedham])
|
319
|
+
- [`order`]/[`newline-after-import`]: ignore TypeScript's "export import object" ([#1830], thanks [@be5invis])
|
320
|
+
- [`dynamic-import-chunkname`]/TypeScript: supports `@typescript-eslint/parser` ([#1833], thanks [@noelebrun])
|
321
|
+
- [`order`]/TypeScript: ignore ordering of object imports ([#1831], thanks [@manuth])
|
322
|
+
- [`namespace`]: do not report on shadowed import names ([#518], thanks [@ljharb])
|
323
|
+
- [`export`]: avoid warning on `export * as` non-conflicts ([#1834], thanks [@ljharb])
|
324
|
+
|
325
|
+
### Changed
|
326
|
+
- [`no-extraneous-dependencies`]: add tests for importing types ([#1824], thanks [@taye])
|
327
|
+
- [docs] [`no-default-export`]: Fix docs url ([#1836], thanks [@beatrizrezener])
|
328
|
+
- [docs] [`imports-first`]: deprecation info and link to `first` docs ([#1835], thanks [@beatrizrezener])
|
329
|
+
|
330
|
+
## [2.21.2] - 2020-06-09
|
331
|
+
|
332
|
+
### Fixed
|
333
|
+
- [`order`]: avoid a crash on TypeScript’s `export import` syntax ([#1808], thanks [@ljharb])
|
334
|
+
- [`newline-after-import`]: consider TypeScript `import =` syntax' ([#1811], thanks [@ljharb])
|
335
|
+
- [`no-internal-modules`]: avoid a crash on a named export declaration ([#1814], thanks [@ljharb])
|
336
|
+
|
337
|
+
## [2.21.1] - 2020-06-07
|
338
|
+
|
339
|
+
### Fixed
|
340
|
+
- TypeScript: [`import/named`]: avoid requiring `typescript` when not using TS ([#1805], thanks [@ljharb])
|
341
|
+
|
342
|
+
## [2.21.0] - 2020-06-07
|
343
|
+
|
344
|
+
### Added
|
345
|
+
- [`import/default`]: support default export in TSExportAssignment ([#1528], thanks [@joaovieira])
|
346
|
+
- [`no-cycle`]: add `ignoreExternal` option ([#1681], thanks [@sveyret])
|
347
|
+
- [`order`]: Add support for TypeScript's "import equals"-expressions ([#1785], thanks [@manuth])
|
348
|
+
- [`import/default`]: support default export in TSExportAssignment ([#1689], thanks [@Maxim-Mazurok])
|
349
|
+
- [`no-restricted-paths`]: add custom message support ([#1802], thanks [@malykhinvi])
|
350
|
+
|
351
|
+
### Fixed
|
352
|
+
- [`group-exports`]: Flow type export awareness ([#1702], thanks [@ernestostifano])
|
353
|
+
- [`order`]: Recognize pathGroup config for first group ([#1719], [#1724], thanks [@forivall], [@xpl])
|
354
|
+
- [`no-unused-modules`]: Fix re-export not counting as usage when used in combination with import ([#1722], thanks [@Ephem])
|
355
|
+
- [`no-duplicates`]: Handle TS import type ([#1676], thanks [@kmui2])
|
356
|
+
- [`newline-after-import`]: recognize decorators ([#1139], thanks [@atos1990])
|
357
|
+
- [`no-unused-modules`]: Revert "[flow] [`no-unused-modules`]: add flow type support" ([#1770], thanks [@Hypnosphi])
|
358
|
+
- TypeScript: Add nested namespace handling ([#1763], thanks [@julien1619])
|
359
|
+
- [`namespace`]/`ExportMap`: Fix interface declarations for TypeScript ([#1764], thanks [@julien1619])
|
360
|
+
- [`no-unused-modules`]: avoid order-dependence ([#1744], thanks [@darkartur])
|
361
|
+
- [`no-internal-modules`]: also check `export from` syntax ([#1691], thanks [@adjerbetian])
|
362
|
+
- TypeScript: [`export`]: avoid a crash with `export =` ([#1801], thanks [@ljharb])
|
363
|
+
|
364
|
+
### Changed
|
365
|
+
- [Refactor] [`no-extraneous-dependencies`]: use moduleVisitor ([#1735], thanks [@adamborowski])
|
366
|
+
- TypeScript config: Disable [`named`][] ([#1726], thanks [@astorije])
|
367
|
+
- [readme] Remove duplicate [`no-unused-modules`] from docs ([#1690], thanks [@arvigeus])
|
368
|
+
- [Docs] [`order`]: fix bad inline config ([#1788], thanks [@nickofthyme])
|
369
|
+
- [Tests] Add fix for Windows Subsystem for Linux ([#1786], thanks [@manuth])
|
370
|
+
- [Docs] [`no-unused-rules`]: Fix docs for unused exports ([#1776], thanks [@barbogast])
|
371
|
+
- [eslint] bump minimum v7 version to v7.2.0
|
372
|
+
|
373
|
+
## [2.20.2] - 2020-03-28
|
374
|
+
|
375
|
+
### Fixed
|
376
|
+
- [`order`]: fix `isExternalModule` detect on windows ([#1651], thanks [@fisker])
|
377
|
+
- [`order`]: recognize ".." as a "parent" path ([#1658], thanks [@golopot])
|
378
|
+
- [`no-duplicates`]: fix fixer on cases with default import ([#1666], thanks [@golopot])
|
379
|
+
- [`no-unused-modules`]: Handle `export { default } from` syntax ([#1631], thanks [@richardxia])
|
380
|
+
- [`first`]: Add a way to disable `absolute-first` explicitly ([#1664], thanks [@TheCrueltySage])
|
381
|
+
- [Docs] [`no-webpack-loader-syntax`]: Updates webpack URLs ([#1751], thanks [@MikeyBeLike])
|
382
|
+
|
383
|
+
## [2.20.1] - 2020-02-01
|
384
|
+
|
385
|
+
### Fixed
|
386
|
+
- [`export`]: Handle function overloading in `*.d.ts` ([#1619], thanks [@IvanGoncharov])
|
387
|
+
- [`no-absolute-path`]: fix a crash with invalid import syntax ([#1616], thanks [@ljharb])
|
388
|
+
- [`import/external-module-folders` setting] now correctly works with directories containing modules symlinked from `node_modules` ([#1605], thanks [@skozin])
|
389
|
+
- [`extensions`]: for invalid code where `name` does not exist, do not crash ([#1613], thanks [@ljharb])
|
390
|
+
- [`extensions`]: Fix scope regex ([#1611], thanks [@yordis])
|
391
|
+
- [`no-duplicates`]: allow duplicate imports if one is a namespace and the other not ([#1612], thanks [@sveyret])
|
392
|
+
- Add some missing rule meta schemas and types ([#1620], thanks [@bmish])
|
393
|
+
- [`named`]: for importing from a module which re-exports named exports from a `node_modules` module ([#1569], [#1447], thanks [@redbugz], [@kentcdodds])
|
394
|
+
- [`order`]: Fix alphabetize for mixed requires and imports ([#1626], thanks [@wschurman])
|
395
|
+
|
396
|
+
### Changed
|
397
|
+
- [`import/external-module-folders` setting] behavior is more strict now: it will only match complete path segments ([#1605], thanks [@skozin])
|
398
|
+
- [meta] fix "files" field to include/exclude the proper files ([#1635], thanks [@ljharb])
|
399
|
+
- [Tests] [`order`]: Add TS import type tests ([#1736], thanks [@kmui2])
|
400
|
+
|
401
|
+
## [2.20.0] - 2020-01-10
|
402
|
+
|
403
|
+
### Added
|
404
|
+
- [`order`]: added `caseInsensitive` as an additional option to `alphabetize` ([#1586], thanks [@dbrewer5])
|
405
|
+
- [`no-restricted-paths`]: New `except` option per `zone`, allowing exceptions to be defined for a restricted zone ([#1238], thanks [@rsolomon])
|
406
|
+
- [`order`]: add option pathGroupsExcludedImportTypes to allow ordering of external import types ([#1565], thanks [@Mairu])
|
407
|
+
|
408
|
+
### Fixed
|
409
|
+
- [`no-unused-modules`]: fix usage of [`import/extensions` setting] ([#1560], thanks [@stekycz])
|
410
|
+
- [`extensions`]: ignore non-main modules ([#1563], thanks [@saschanaz])
|
411
|
+
- TypeScript config: lookup for external modules in @types folder ([#1526], thanks [@joaovieira])
|
412
|
+
- [`no-extraneous-dependencies`]: ensure `node.source` is truthy ([#1589], thanks [@ljharb])
|
413
|
+
- [`extensions`]: Ignore query strings when checking for extensions ([#1572], thanks [@pcorpet])
|
414
|
+
|
415
|
+
### Docs
|
416
|
+
- [`extensions`]: improve `ignorePackages` docs ([#1248], thanks [@ivo-stefchev])
|
417
|
+
|
418
|
+
## [2.19.1] - 2019-12-08
|
419
|
+
|
420
|
+
### Fixed
|
421
|
+
- [`no-extraneous-dependencies`]: ensure `node.source` exists
|
422
|
+
|
423
|
+
## [2.19.0] - 2019-12-08
|
424
|
+
|
425
|
+
### Added
|
426
|
+
- [`internal-regex` setting]: regex pattern for marking packages "internal" ([#1491], thanks [@Librazy])
|
427
|
+
- [`group-exports`]: make aggregate module exports valid ([#1472], thanks [@atikenny])
|
428
|
+
- [`no-namespace`]: Make rule fixable ([#1401], thanks [@TrevorBurnham])
|
429
|
+
- support `parseForESLint` from custom parser ([#1435], thanks [@JounQin])
|
430
|
+
- [`no-extraneous-dependencies`]: Implement support for [bundledDependencies](https://npm.github.io/using-pkgs-docs/package-json/types/bundleddependencies.html) ([#1436], thanks [@schmidsi]))
|
431
|
+
- [`no-unused-modules`]: add flow type support ([#1542], thanks [@rfermann])
|
432
|
+
- [`order`]: Adds support for pathGroups to allow ordering by defined patterns ([#795], [#1386], thanks [@Mairu])
|
433
|
+
- [`no-duplicates`]: Add `considerQueryString` option : allow duplicate imports with different query strings ([#1107], thanks [@pcorpet]).
|
434
|
+
- [`order`]: Add support for alphabetical sorting of import paths within import groups ([#1360], [#1105], [#629], thanks [@duncanbeevers], [@stropho], [@luczsoma], [@randallreedjr])
|
435
|
+
- [`no-commonjs`]: add `allowConditionalRequire` option ([#1439], thanks [@Pessimistress])
|
436
|
+
|
437
|
+
### Fixed
|
438
|
+
- [`default`]: make error message less confusing ([#1470], thanks [@golopot])
|
439
|
+
- Improve performance of `ExportMap.for` by only loading paths when necessary. ([#1519], thanks [@brendo])
|
440
|
+
- Support export of a merged TypeScript namespace declaration ([#1495], thanks [@benmunro])
|
441
|
+
- [`order`]: fix autofix to not move imports across fn calls ([#1253], thanks [@tihonove])
|
442
|
+
- [`prefer-default-export`]: fix false positive with type export ([#1506], thanks [@golopot])
|
443
|
+
- [`extensions`]: Fix `ignorePackages` to produce errors ([#1521], thanks [@saschanaz])
|
444
|
+
- [`no-unused-modules`]: fix crash due to `export *` ([#1496], thanks [@Taranys])
|
445
|
+
- [`no-cycle`]: should not warn for Flow imports ([#1494], thanks [@maxmalov])
|
446
|
+
- [`order`]: fix `@someModule` considered as `unknown` instead of `internal` ([#1493], thanks [@aamulumi])
|
447
|
+
- [`no-extraneous-dependencies`]: Check `export from` ([#1049], thanks [@marcusdarmstrong])
|
448
|
+
|
449
|
+
### Docs
|
450
|
+
- [`no-useless-path-segments`]: add docs for option `commonjs` ([#1507], thanks [@golopot])
|
451
|
+
|
452
|
+
### Changed
|
453
|
+
- [`no-unused-modules`]/`eslint-module-utils`: Avoid superfluous calls and code ([#1551], thanks [@brettz9])
|
454
|
+
|
455
|
+
## [2.18.2] - 2019-07-19
|
456
|
+
|
457
|
+
### Fixed
|
458
|
+
- Skip warning on type interfaces ([#1425], thanks [@lencioni])
|
459
|
+
|
460
|
+
## [2.18.1] - 2019-07-18
|
461
|
+
|
462
|
+
### Fixed
|
463
|
+
- Improve parse perf when using `@typescript-eslint/parser` ([#1409], thanks [@bradzacher])
|
464
|
+
- [`prefer-default-export`]: don't warn on TypeAlias & TSTypeAliasDeclaration ([#1377], thanks [@sharmilajesupaul])
|
465
|
+
- [`no-unused-modules`]: Exclude package "main"/"bin"/"browser" entry points ([#1404], thanks [@rfermann])
|
466
|
+
- [`export`]: false positive for TypeScript overloads ([#1412], thanks [@golopot])
|
467
|
+
|
468
|
+
### Refactors
|
469
|
+
- [`no-extraneous-dependencies`], `importType`: remove lodash ([#1419], thanks [@ljharb])
|
470
|
+
|
471
|
+
## [2.18.0] - 2019-06-24
|
472
|
+
|
473
|
+
### Added
|
474
|
+
- Support eslint v6 ([#1393], thanks [@sheepsteak])
|
475
|
+
- [`order`]: Adds support for correctly sorting unknown types into a single group ([#1375], thanks [@swernerx])
|
476
|
+
- [`order`]: add fixer for destructuring commonjs import ([#1372], thanks [@golopot])
|
477
|
+
- TypeScript config: add TS def extensions + defer to TS over JS ([#1366], thanks [@benmosher])
|
478
|
+
|
479
|
+
### Fixed
|
480
|
+
- [`no-unused-modules`]: handle ClassDeclaration ([#1371], thanks [@golopot])
|
481
|
+
|
482
|
+
### Docs
|
483
|
+
- [`no-cycle`]: split code examples so file separation is obvious ([#1370], thanks [@alex-page])
|
484
|
+
- [`no-named-as-default-member`]: update broken link ([#1389], thanks [@fooloomanzoo])
|
485
|
+
|
486
|
+
## [2.17.3] - 2019-05-23
|
487
|
+
|
488
|
+
### Fixed
|
489
|
+
- [`no-common-js`]: Also throw an error when assigning ([#1354], thanks [@charlessuh])
|
490
|
+
- [`no-unused-modules`]: don't crash when lint file outside src-folder ([#1347], thanks [@rfermann])
|
491
|
+
- [`no-unused-modules`]: make `import { name as otherName }` work ([#1340], [#1342], thanks [@rfermann])
|
492
|
+
- [`no-unused-modules`]: make appveyor tests passing ([#1333], thanks [@rfermann])
|
493
|
+
- [`named`]: ignore Flow `typeof` imports and `type` exports ([#1345], thanks [@loganfsmyth])
|
494
|
+
- [refactor] fix eslint 6 compat by fixing imports (thank [@ljharb])
|
495
|
+
- Improve support for TypeScript declare structures ([#1356], thanks [@christophercurrie])
|
496
|
+
|
497
|
+
### Docs
|
498
|
+
- add missing [`no-unused-modules`] in README ([#1358], thanks [@golopot])
|
499
|
+
- [`no-unused-modules`]: Indicates usage, plugin defaults to no-op, and add description to main README.md ([#1352], thanks [@johndevedu])
|
500
|
+
- Document `env` option for `eslint-import-resolver-webpack` ([#1363], thanks [@kgregory])
|
501
|
+
|
502
|
+
## [2.17.2] - 2019-04-16
|
503
|
+
|
504
|
+
### Fixed
|
505
|
+
- [`no-unused-modules`]: avoid crash when using `ignoreExports`-option ([#1331], [#1323], thanks [@rfermann])
|
506
|
+
- [`no-unused-modules`]: make sure that rule with no options will not fail ([#1330], [#1334], thanks [@kiwka])
|
507
|
+
|
508
|
+
## [2.17.1] - 2019-04-13
|
509
|
+
|
510
|
+
### Fixed
|
511
|
+
- require v2.4 of `eslint-module-utils` ([#1322])
|
512
|
+
|
513
|
+
## [2.17.0] - 2019-04-13
|
514
|
+
|
515
|
+
### Added
|
516
|
+
- [`no-useless-path-segments`]: Add `noUselessIndex` option ([#1290], thanks [@timkraut])
|
517
|
+
- [`no-duplicates`]: Add autofix ([#1312], thanks [@lydell])
|
518
|
+
- Add [`no-unused-modules`] rule ([#1142], thanks [@rfermann])
|
519
|
+
- support export type named exports from TypeScript ([#1304], thanks [@bradennapier] and [@schmod])
|
520
|
+
|
521
|
+
### Fixed
|
522
|
+
- [`order`]: Fix interpreting some external modules being interpreted as internal modules ([#793], [#794] thanks [@ephys])
|
523
|
+
- allow aliases that start with @ to be "internal" ([#1293], [#1294], thanks [@jeffshaver])
|
524
|
+
- aliased internal modules that look like core modules ([#1297], thanks [@echenley])
|
525
|
+
- [`namespace`]: add check for null ExportMap ([#1235], [#1144], thanks [@ljqx])
|
526
|
+
- [ExportMap] fix condition for checking if block comment ([#1234], [#1233], thanks [@ljqx])
|
527
|
+
- Fix overwriting of dynamic import() CallExpression ([`no-cycle`], [`no-relative-parent-imports`], [`no-unresolved`], [`no-useless-path-segments`]) ([#1218], [#1166], [#1035], thanks [@vikr01])
|
528
|
+
- [`export`]: false positives for TypeScript type + value export ([#1319], thanks [@bradzacher])
|
529
|
+
- [`export`]: Support TypeScript namespaces ([#1320], [#1300], thanks [@bradzacher])
|
530
|
+
|
531
|
+
### Docs
|
532
|
+
- Update readme for TypeScript ([#1256], [#1277], thanks [@kirill-konshin])
|
533
|
+
- make rule names consistent ([#1112], thanks [@feychenie])
|
534
|
+
|
535
|
+
### Tests
|
536
|
+
- fix broken tests on master ([#1295], thanks [@jeffshaver] and [@ljharb])
|
537
|
+
- [`no-commonjs`]: add tests that show corner cases ([#1308], thanks [@TakeScoop])
|
538
|
+
|
539
|
+
## [2.16.0] - 2019-01-29
|
540
|
+
|
541
|
+
### Added
|
542
|
+
- `typescript` config ([#1257], thanks [@kirill-konshin])
|
543
|
+
|
544
|
+
### Fixed
|
545
|
+
- Memory leak of `SourceCode` objects for all parsed dependencies, resolved. (issue [#1266], thanks [@asapach] and [@sergei-startsev] for digging in)
|
546
|
+
|
547
|
+
## [2.15.0] - 2019-01-22
|
548
|
+
|
549
|
+
### Added
|
550
|
+
- new rule: [`no-named-export`] ([#1157], thanks [@fsmaia])
|
551
|
+
|
552
|
+
### Fixed
|
553
|
+
- [`no-extraneous-dependencies`]: `packageDir` option with array value was clobbering package deps instead of merging them ([#1175]/[#1176], thanks [@aravindet] & [@pzhine])
|
554
|
+
- [`dynamic-import-chunkname`]: Add proper webpack comment parsing ([#1163], thanks [@st-sloth])
|
555
|
+
- [`named`]: fix destructuring assignment ([#1232], thanks [@ljqx])
|
556
|
+
|
557
|
+
## [2.14.0] - 2018-08-13
|
558
|
+
|
559
|
+
### Added
|
560
|
+
- [`no-useless-path-segments`]: add commonJS (CJS) support ([#1128], thanks [@1pete])
|
561
|
+
- [`namespace`]: add JSX check ([#1151], thanks [@jf248])
|
562
|
+
|
563
|
+
### Fixed
|
564
|
+
- [`no-cycle`]: ignore Flow imports ([#1126], thanks [@gajus])
|
565
|
+
- fix Flow type imports ([#1106], thanks [@syymza])
|
566
|
+
- [`no-relative-parent-imports`]: resolve paths ([#1135], thanks [@chrislloyd])
|
567
|
+
- [`order`]: fix autofixer when using typescript-eslint-parser ([#1137], thanks [@justinanastos])
|
568
|
+
- repeat fix from [#797] for [#717], in another place (thanks [@ljharb])
|
569
|
+
|
570
|
+
### Refactors
|
571
|
+
- add explicit support for RestElement alongside ExperimentalRestProperty (thanks [@ljharb])
|
572
|
+
|
573
|
+
## [2.13.0] - 2018-06-24
|
574
|
+
|
575
|
+
### Added
|
576
|
+
- Add ESLint 5 support ([#1122], thanks [@ai] and [@ljharb])
|
577
|
+
- Add [`no-relative-parent-imports`] rule: disallow relative imports from parent directories ([#1093], thanks [@chrislloyd])
|
578
|
+
|
579
|
+
### Fixed
|
580
|
+
- `namespace` rule: ensure it works in eslint 5/ecmaVersion 2018 (thanks [@ljharb])
|
581
|
+
|
582
|
+
## [2.12.0] - 2018-05-17
|
583
|
+
|
584
|
+
### Added
|
585
|
+
- Ignore type imports for [`named`] rule ([#931], thanks [@mattijsbliek])
|
586
|
+
- Add documentation for [`no-useless-path-segments`] rule ([#1068], thanks [@manovotny])
|
587
|
+
- `packageDir` option for [`no-extraneous-dependencies`] can be array-valued ([#1085], thanks [@hulkish])
|
588
|
+
|
589
|
+
## [2.11.0] - 2018-04-09
|
590
|
+
|
591
|
+
### Added
|
592
|
+
- Fixer for [`first`] ([#1046], thanks [@fengkfengk])
|
593
|
+
- `allow-require` option for [`no-commonjs`] rule ([#880], thanks [@futpib])
|
594
|
+
|
595
|
+
### Fixed
|
596
|
+
- memory/CPU regression where ASTs were held in memory ([#1058], thanks [@klimashkin]/[@lukeapage])
|
597
|
+
|
598
|
+
## [2.10.0] - 2018-03-29
|
599
|
+
|
600
|
+
### Added
|
601
|
+
- Autofixer for [`order`] rule ([#908], thanks [@tihonove])
|
602
|
+
- Add [`no-cycle`] rule: reports import cycles.
|
603
|
+
|
604
|
+
## [2.9.0] - 2018-02-21
|
605
|
+
|
606
|
+
### Added
|
607
|
+
- Add [`group-exports`] rule: style-guide rule to report use of multiple named exports ([#721], thanks [@robertrossmann])
|
608
|
+
- Add [`no-self-import`] rule: forbids a module from importing itself. ([#727], [#449], [#447], thanks [@giodamelio]).
|
609
|
+
- Add [`no-default-export`] rule ([#889], thanks [@isiahmeadows])
|
610
|
+
- Add [`no-useless-path-segments`] rule ([#912], thanks [@graingert] and [@danny-andrews])
|
611
|
+
- ... and more! check the commits for v[2.9.0]
|
612
|
+
|
613
|
+
## [2.8.0] - 2017-10-18
|
614
|
+
### Added
|
615
|
+
- [`exports-last`] rule ([#620] + [#632], thanks [@k15a])
|
616
|
+
|
617
|
+
### Changed
|
618
|
+
- Case-sensitivity checking ignores working directory and ancestors. ([#720] + [#858], thanks [@laysent])
|
619
|
+
|
620
|
+
### Fixed
|
621
|
+
- support scoped modules containing hyphens ([#744], thanks [@rosswarren])
|
622
|
+
- core-modules now resolves files inside declared modules ([#886] / [#891], thanks [@mplewis])
|
623
|
+
- TypeError for missing AST fields from TypeScript ([#842] / [#944], thanks [@alexgorbatchev])
|
624
|
+
|
625
|
+
## [2.7.0] - 2017-07-06
|
626
|
+
|
627
|
+
### Changed
|
628
|
+
- [`no-absolute-path`] picks up speed boost, optional AMD support ([#843], thanks [@jseminck])
|
629
|
+
|
630
|
+
## [2.6.1] - 2017-06-29
|
631
|
+
|
632
|
+
### Fixed
|
633
|
+
- update bundled node resolver dependency to latest version
|
634
|
+
|
635
|
+
## [2.6.0] - 2017-06-23
|
636
|
+
|
637
|
+
### Changed
|
638
|
+
- update tests / peerDeps for ESLint 4.0 compatibility ([#871], thanks [@mastilver])
|
639
|
+
- [`memo-parser`] updated to require `filePath` on parser options as it melts
|
640
|
+
down if it's not there, now that this plugin always provides it. (see [#863])
|
641
|
+
|
642
|
+
## [2.5.0] - 2017-06-22
|
643
|
+
|
644
|
+
Re-releasing v[2.4.0] after discovering that the memory leak is isolated to the [`memo-parser`],
|
645
|
+
which is more or less experimental anyway.
|
646
|
+
|
647
|
+
### Added
|
648
|
+
- Autofixer for newline-after-import. ([#686] + [#696], thanks [@eelyafi])
|
649
|
+
|
650
|
+
## [2.4.0] - 2017-06-02 [YANKED]
|
651
|
+
|
652
|
+
Yanked due to critical issue in eslint-module-utils with cache key resulting from [#839].
|
653
|
+
|
654
|
+
### Added
|
655
|
+
- Add `filePath` into `parserOptions` passed to `parser` ([#839], thanks [@sompylasar])
|
656
|
+
- Add `allow` option to [`no-unassigned-import`] to allow for files that match the globs ([#671], [#737], thanks [@kevin940726]).
|
657
|
+
|
658
|
+
## [2.3.0] - 2017-05-18
|
659
|
+
|
660
|
+
### Added
|
661
|
+
- [`no-anonymous-default-export`] rule: report anonymous default exports ([#712], thanks [@duncanbeevers]).
|
662
|
+
- Add new value to [`order`]'s `newlines-between` option to allow newlines inside import groups ([#627], [#628], thanks [@giodamelio])
|
663
|
+
- Add `count` option to the [`newline-after-import`] rule to allow configuration of number of newlines expected ([#742], thanks [@ntdb])
|
664
|
+
|
665
|
+
### Changed
|
666
|
+
- [`no-extraneous-dependencies`]: use `read-pkg-up` to simplify finding + loading `package.json` ([#680], thanks [@wtgtybhertgeghgtwtg])
|
667
|
+
- Add support to specify the package.json [`no-extraneous-dependencies`] ([#685], thanks [@ramasilveyra])
|
668
|
+
|
669
|
+
### Fixed
|
670
|
+
- attempt to fix crash in [`no-mutable-exports`]. ([#660])
|
671
|
+
- "default is a reserved keyword" in no-maned-default tests by locking down babylon to 6.15.0 (#756, thanks @gmathieu)
|
672
|
+
- support scoped modules containing non word characters
|
673
|
+
|
674
|
+
## [2.2.0] - 2016-11-07
|
675
|
+
|
676
|
+
### Fixed
|
677
|
+
- Corrected a few gaffs in the auto-ignore logic to fix major performance issues
|
678
|
+
with projects that did not explicitly ignore `node_modules`. ([#654])
|
679
|
+
- [`import/ignore` setting] was only being respected if the ignored module didn't start with
|
680
|
+
an `import` or `export` JS statement
|
681
|
+
- [`prefer-default-export`]: fixed crash on export extensions ([#653])
|
682
|
+
|
683
|
+
## [2.1.0] - 2016-11-02
|
684
|
+
|
685
|
+
### Added
|
686
|
+
- Add [`no-named-default`] rule: style-guide rule to report use of unnecessarily named default imports ([#596], thanks [@ntdb])
|
687
|
+
- [`no-extraneous-dependencies`]: check globs against CWD + absolute path ([#602] + [#630], thanks [@ljharb])
|
688
|
+
|
689
|
+
### Fixed
|
690
|
+
- [`prefer-default-export`] handles flow `export type` ([#484] + [#639], thanks [@jakubsta])
|
691
|
+
- [`prefer-default-export`] handles re-exported default exports ([#609])
|
692
|
+
- Fix crash when using [`newline-after-import`] with decorators ([#592])
|
693
|
+
- Properly report [`newline-after-import`] when next line is a decorator
|
694
|
+
- Fixed documentation for the default values for the [`order`] rule ([#601])
|
695
|
+
|
696
|
+
## [2.0.1] - 2016-10-06
|
697
|
+
|
698
|
+
### Fixed
|
699
|
+
- Fixed code that relied on removed dependencies. ([#604])
|
700
|
+
|
701
|
+
## [2.0.0]! - 2016-09-30
|
702
|
+
|
703
|
+
### Added
|
704
|
+
- [`unambiguous`] rule: report modules that are not unambiguously ES modules.
|
705
|
+
- `recommended` shared config. Roughly `errors` and `warnings` mixed together,
|
706
|
+
with some `parserOptions` in the mix. ([#402])
|
707
|
+
- `react` shared config: added `jsx: true` to `parserOptions.ecmaFeatures`.
|
708
|
+
- Added [`no-webpack-loader-syntax`] rule: forbid custom Webpack loader syntax in imports. ([#586], thanks [@fson]!)
|
709
|
+
- Add option `newlines-between: "ignore"` to [`order`] ([#519])
|
710
|
+
- Added [`no-unassigned-import`] rule ([#529])
|
711
|
+
|
712
|
+
### Breaking
|
713
|
+
- [`import/extensions` setting] defaults to `['.js']`. ([#306])
|
714
|
+
- [`import/ignore` setting] defaults to nothing, and ambiguous modules are ignored natively. This means importing from CommonJS modules will no longer be reported by [`default`], [`named`], or [`namespace`], regardless of `import/ignore`. ([#270])
|
715
|
+
- [`newline-after-import`]: Removed need for an empty line after an inline `require` call ([#570])
|
716
|
+
- [`order`]: Default value for `newlines-between` option is now `ignore` ([#519])
|
717
|
+
|
718
|
+
### Changed
|
719
|
+
- `imports-first` is renamed to [`first`]. `imports-first` alias will continue to
|
720
|
+
exist, but may be removed in a future major release.
|
721
|
+
- Case-sensitivity: now specifically (and optionally) reported by [`no-unresolved`].
|
722
|
+
Other rules will ignore case-mismatches on paths on case-insensitive filesystems. ([#311])
|
723
|
+
|
724
|
+
### Fixed
|
725
|
+
- [`no-internal-modules`]: support `@`-scoped packages ([#577]+[#578], thanks [@spalger])
|
726
|
+
|
727
|
+
## [1.16.0] - 2016-09-22
|
728
|
+
|
729
|
+
### Added
|
730
|
+
- Added [`no-dynamic-require`] rule: forbid `require()` calls with expressions. ([#567], [#568])
|
731
|
+
- Added [`no-internal-modules`] rule: restrict deep package imports to specific folders. ([#485], thanks [@spalger]!)
|
732
|
+
- [`extensions`]: allow override of a chosen default with options object ([#555], thanks [@ljharb]!)
|
733
|
+
|
734
|
+
### Fixed
|
735
|
+
- [`no-named-as-default`] no longer false-positives on `export default from '...'` ([#566], thanks [@preco21])
|
736
|
+
- [`default`]: allow re-export of values from ignored files as default ([#545], thanks [@skyrpex])
|
737
|
+
|
738
|
+
## [1.15.0] - 2016-09-12
|
739
|
+
|
740
|
+
### Added
|
741
|
+
- Added an `allow` option to [`no-nodejs-modules`] to allow exceptions ([#452], [#509]).
|
742
|
+
- Added [`no-absolute-path`] rule ([#530], [#538])
|
743
|
+
- [`max-dependencies`] for specifying the maximum number of dependencies (both `import` and `require`) a module can have. (see [#489], thanks [@tizmagik])
|
744
|
+
- Added glob option to config for [`no-extraneous-dependencies`], after much bikeshedding. Thanks, [@knpwrs]! ([#527])
|
745
|
+
|
746
|
+
### Fixed
|
747
|
+
- [`no-named-as-default-member`] Allow default import to have a property named "default" ([#507], [#508], thanks [@jquense] for both!)
|
748
|
+
|
749
|
+
## [1.14.0] - 2016-08-22
|
750
|
+
|
751
|
+
### Added
|
752
|
+
- [`import/parsers` setting]: parse some dependencies (i.e. TypeScript!) with a different parser than the ESLint-configured parser. ([#503])
|
753
|
+
|
754
|
+
### Fixed
|
755
|
+
- [`namespace`] exception for get property from `namespace` import, which are re-export from commonjs module ([#499] fixes [#416], thanks [@wKich])
|
756
|
+
|
757
|
+
## [1.13.0] - 2016-08-11
|
758
|
+
|
759
|
+
### Added
|
760
|
+
- `allowComputed` option for [`namespace`] rule. If set to `true`, won't report
|
761
|
+
computed member references to namespaces. (see [#456])
|
762
|
+
|
763
|
+
### Changed
|
764
|
+
- Modified [`no-nodejs-modules`] error message to include the module's name ([#453], [#461])
|
765
|
+
|
766
|
+
### Fixed
|
767
|
+
- [`import/extensions` setting] is respected in spite of the appearance of imports
|
768
|
+
in an imported file. (fixes [#478], thanks [@rhys-vdw])
|
769
|
+
|
770
|
+
## [1.12.0] - 2016-07-26
|
771
|
+
|
772
|
+
### Added
|
773
|
+
- [`import/external-module-folders` setting]: a possibility to configure folders for "external" modules ([#444], thanks [@zloirock])
|
774
|
+
|
775
|
+
## [1.11.1] - 2016-07-20
|
776
|
+
|
777
|
+
### Fixed
|
778
|
+
- [`newline-after-import`] exception for `switch` branches with `require`s iff parsed as `sourceType:'module'`.
|
779
|
+
(still [#441], thanks again [@ljharb])
|
780
|
+
|
781
|
+
## [1.11.0] - 2016-07-17
|
782
|
+
|
783
|
+
### Added
|
784
|
+
- Added an `peerDependencies` option to [`no-extraneous-dependencies`] to allow/forbid peer dependencies ([#423], [#428], thanks [@jfmengels]!).
|
785
|
+
|
786
|
+
### Fixed
|
787
|
+
- [`newline-after-import`] exception for multiple `require`s in an arrow
|
788
|
+
function expression (e.g. `() => require('a') || require('b')`). ([#441], thanks [@ljharb])
|
789
|
+
|
790
|
+
## [1.10.3] - 2016-07-08
|
791
|
+
|
792
|
+
### Fixed
|
793
|
+
- removing `Symbol` dependencies (i.e. `for-of` loops) due to Node 0.10 polyfill
|
794
|
+
issue (see [#415]). Should not make any discernible semantic difference.
|
795
|
+
|
796
|
+
## [1.10.2] - 2016-07-04
|
797
|
+
|
798
|
+
### Fixed
|
799
|
+
- Something horrible happened during `npm prepublish` of 1.10.1.
|
800
|
+
Several `rm -rf node_modules && npm i` and `gulp clean && npm prepublish`s later, it is rebuilt and republished as 1.10.2. Thanks [@rhettlivingston] for noticing and reporting!
|
801
|
+
|
802
|
+
## [1.10.1] - 2016-07-02 [YANKED]
|
803
|
+
|
804
|
+
### Added
|
805
|
+
- Officially support ESLint 3.x. (peerDependencies updated to `2.x - 3.x`)
|
806
|
+
|
807
|
+
## [1.10.0] - 2016-06-30
|
808
|
+
|
809
|
+
### Added
|
810
|
+
- Added new rule [`no-restricted-paths`]. ([#155]/[#371], thanks [@lo1tuma])
|
811
|
+
- [`import/core-modules` setting]: allow configuration of additional module names,
|
812
|
+
to be treated as builtin modules (a la `path`, etc. in Node). ([#275] + [#365], thanks [@sindresorhus] for driving)
|
813
|
+
- React Native shared config (based on comment from [#283])
|
814
|
+
|
815
|
+
### Fixed
|
816
|
+
- Fixed crash with `newline-after-import` related to the use of switch cases. (fixes [#386], thanks [@ljharb] for reporting) ([#395])
|
817
|
+
|
818
|
+
## [1.9.2] - 2016-06-21
|
819
|
+
|
820
|
+
### Fixed
|
821
|
+
- Issues with ignored/CJS files in [`export`] and [`no-deprecated`] rules. ([#348], [#370])
|
822
|
+
|
823
|
+
## [1.9.1] - 2016-06-16
|
824
|
+
|
825
|
+
### Fixed
|
826
|
+
- Reordered precedence for loading resolvers. ([#373])
|
827
|
+
|
828
|
+
## [1.9.0] - 2016-06-10
|
829
|
+
|
830
|
+
### Added
|
831
|
+
- Added support TomDoc comments to [`no-deprecated`]. ([#321], thanks [@josh])
|
832
|
+
- Added support for loading custom resolvers ([#314], thanks [@le0nik])
|
833
|
+
|
834
|
+
### Fixed
|
835
|
+
- [`prefer-default-export`] handles `export function` and `export const` in same file ([#359], thanks [@scottnonnenberg])
|
836
|
+
|
837
|
+
## [1.8.1] - 2016-05-23
|
838
|
+
|
839
|
+
### Fixed
|
840
|
+
- `export * from 'foo'` now properly ignores a `default` export from `foo`, if any. ([#328]/[#332], thanks [@jkimbo])
|
841
|
+
This impacts all static analysis of imported names. ([`default`], [`named`], [`namespace`], [`export`])
|
842
|
+
- Make [`order`]'s `newline-between` option handle multiline import statements ([#313], thanks [@singles])
|
843
|
+
- Make [`order`]'s `newline-between` option handle not assigned import statements ([#313], thanks [@singles])
|
844
|
+
- Make [`order`]'s `newline-between` option ignore `require` statements inside object literals ([#313], thanks [@singles])
|
845
|
+
- [`prefer-default-export`] properly handles deep destructuring, `export * from ...`, and files with no exports. ([#342]+[#343], thanks [@scottnonnenberg])
|
846
|
+
|
847
|
+
## [1.8.0] - 2016-05-11
|
848
|
+
|
849
|
+
### Added
|
850
|
+
- [`prefer-default-export`], new rule. ([#308], thanks [@gavriguy])
|
851
|
+
|
852
|
+
### Fixed
|
853
|
+
- Ignore namespace / ES7 re-exports in [`no-mutable-exports`]. ([#317], fixed by [#322]. thanks [@borisyankov] + [@jfmengels])
|
854
|
+
- Make [`no-extraneous-dependencies`] handle scoped packages ([#316], thanks [@jfmengels])
|
855
|
+
|
856
|
+
## [1.7.0] - 2016-05-06
|
857
|
+
|
858
|
+
### Added
|
859
|
+
- [`newline-after-import`], new rule. ([#245], thanks [@singles])
|
860
|
+
- Added an `optionalDependencies` option to [`no-extraneous-dependencies`] to allow/forbid optional dependencies ([#266], thanks [@jfmengels]).
|
861
|
+
- Added `newlines-between` option to [`order`] rule ([#298], thanks [@singles])
|
862
|
+
- add [`no-mutable-exports`] rule ([#290], thanks [@josh])
|
863
|
+
- [`import/extensions` setting]: a list of file extensions to parse as modules
|
864
|
+
and search for `export`s. If unspecified, all extensions are considered valid (for now).
|
865
|
+
In v2, this will likely default to `['.js', MODULE_EXT]`. ([#297], to fix [#267])
|
866
|
+
|
867
|
+
### Fixed
|
868
|
+
- [`extensions`]: fallback to source path for extension enforcement if imported
|
869
|
+
module is not resolved. Also, never report for builtins (i.e. `path`). ([#296])
|
870
|
+
|
871
|
+
## [1.6.1] - 2016-04-28
|
872
|
+
|
873
|
+
### Fixed
|
874
|
+
- [`no-named-as-default-member`]: don't crash on rest props. ([#281], thanks [@SimenB])
|
875
|
+
- support for Node 6: don't pass `null` to `path` functions.
|
876
|
+
Thanks to [@strawbrary] for bringing this up ([#272]) and adding OSX support to the Travis
|
877
|
+
config ([#288]).
|
878
|
+
|
879
|
+
## [1.6.0] - 2016-04-25
|
880
|
+
|
881
|
+
### Added
|
882
|
+
- add [`no-named-as-default-member`] to `warnings` canned config
|
883
|
+
- add [`no-extraneous-dependencies`] rule ([#241], thanks [@jfmengels])
|
884
|
+
- add [`extensions`] rule ([#250], thanks [@lo1tuma])
|
885
|
+
- add [`no-nodejs-modules`] rule ([#261], thanks [@jfmengels])
|
886
|
+
- add [`order`] rule ([#247], thanks [@jfmengels])
|
887
|
+
- consider `resolve.fallback` config option in the webpack resolver ([#254])
|
888
|
+
|
889
|
+
### Changed
|
890
|
+
- [`imports-first`] now allows directives (i.e. `'use strict'`) strictly before
|
891
|
+
any imports ([#256], thanks [@lemonmade])
|
892
|
+
|
893
|
+
### Fixed
|
894
|
+
- [`named`] now properly ignores the source module if a name is re-exported from
|
895
|
+
an ignored file (i.e. `node_modules`). Also improved the reported error. (thanks to [@jimbolla] for reporting)
|
896
|
+
- [`no-named-as-default-member`] had a crash on destructuring in loops (thanks for heads up from [@lemonmade])
|
897
|
+
|
898
|
+
## [1.5.0] - 2016-04-18
|
899
|
+
|
900
|
+
### Added
|
901
|
+
- report resolver errors at the top of the linted file
|
902
|
+
- add [`no-namespace`] rule ([#239], thanks [@singles])
|
903
|
+
- add [`no-named-as-default-member`] rule ([#243], thanks [@dmnd])
|
904
|
+
|
905
|
+
### Changed
|
906
|
+
- Rearranged rule groups in README in preparation for more style guide rules
|
907
|
+
|
908
|
+
### Removed
|
909
|
+
- support for Node 0.10, via `es6-*` ponyfills. Using native Map/Set/Symbol.
|
910
|
+
|
911
|
+
## [1.4.0] - 2016-03-25
|
912
|
+
|
913
|
+
### Added
|
914
|
+
- Resolver plugin interface v2: more explicit response format that more clearly covers the found-but-core-module case, where there is no path.
|
915
|
+
Still backwards-compatible with the original version of the resolver spec.
|
916
|
+
- [Resolver documentation](./resolvers/README.md)
|
917
|
+
|
918
|
+
### Changed
|
919
|
+
- using `package.json/files` instead of `.npmignore` for package file inclusion ([#228], thanks [@mathieudutour])
|
920
|
+
- using `es6-*` ponyfills instead of `babel-runtime`
|
921
|
+
|
922
|
+
## [1.3.0] - 2016-03-20
|
923
|
+
|
924
|
+
Major perf improvements. Between parsing only once and ignoring gigantic, non-module `node_modules`,
|
925
|
+
there is very little added time.
|
926
|
+
|
927
|
+
My test project takes 17s to lint completely, down from 55s, when using the
|
928
|
+
memoizing parser, and takes only 27s with naked `babel-eslint` (thus, reparsing local modules).
|
929
|
+
|
930
|
+
### Added
|
931
|
+
- This change log ([#216])
|
932
|
+
- Experimental memoizing [parser](./memo-parser/README.md)
|
933
|
+
|
934
|
+
### Fixed
|
935
|
+
- Huge reduction in execution time by _only_ ignoring [`import/ignore` setting] if
|
936
|
+
something that looks like an `export` is detected in the module content.
|
937
|
+
|
938
|
+
## [1.2.0] - 2016-03-19
|
939
|
+
|
940
|
+
Thanks [@lencioni] for identifying a huge amount of rework in resolve and kicking
|
941
|
+
off a bunch of memoization.
|
942
|
+
|
943
|
+
I'm seeing 62% improvement over my normal test codebase when executing only
|
944
|
+
[`no-unresolved`] in isolation, and ~35% total reduction in lint time.
|
945
|
+
|
946
|
+
### Changed
|
947
|
+
- added caching to core/resolve via [#214], configured via [`import/cache` setting]
|
948
|
+
|
949
|
+
## [1.1.0] - 2016-03-15
|
950
|
+
|
951
|
+
### Added
|
952
|
+
- Added an [`ignore`](./docs/rules/no-unresolved.md#ignore) option to [`no-unresolved`] for those pesky files that no resolver can find. (still prefer enhancing the Webpack and Node resolvers to using it, though). See [#89] for details.
|
953
|
+
|
954
|
+
## [1.0.4] - 2016-03-11
|
955
|
+
|
956
|
+
### Changed
|
957
|
+
- respect hoisting for deep namespaces ([`namespace`]/[`no-deprecated`]) ([#211])
|
958
|
+
|
959
|
+
### Fixed
|
960
|
+
- don't crash on self references ([#210])
|
961
|
+
- correct cache behavior in `eslint_d` for deep namespaces ([#200])
|
962
|
+
|
963
|
+
## [1.0.3] - 2016-02-26
|
964
|
+
|
965
|
+
### Changed
|
966
|
+
- no-deprecated follows deep namespaces ([#191])
|
967
|
+
|
968
|
+
### Fixed
|
969
|
+
- [`namespace`] no longer flags modules with only a default export as having no names. (ns.default is valid ES6)
|
970
|
+
|
971
|
+
## [1.0.2] - 2016-02-26
|
972
|
+
|
973
|
+
### Fixed
|
974
|
+
- don't parse imports with no specifiers ([#192])
|
975
|
+
|
976
|
+
## [1.0.1] - 2016-02-25
|
977
|
+
|
978
|
+
### Fixed
|
979
|
+
- export `stage-0` shared config
|
980
|
+
- documented [`no-deprecated`]
|
981
|
+
- deep namespaces are traversed regardless of how they get imported ([#189])
|
982
|
+
|
983
|
+
## [1.0.0] - 2016-02-24
|
984
|
+
|
985
|
+
### Added
|
986
|
+
- [`no-deprecated`]: WIP rule to let you know at lint time if you're using deprecated functions, constants, classes, or modules.
|
987
|
+
|
988
|
+
### Changed
|
989
|
+
- [`namespace`]: support deep namespaces ([#119] via [#157])
|
990
|
+
|
991
|
+
## [1.0.0-beta.0] - 2016-02-13
|
992
|
+
|
993
|
+
### Changed
|
994
|
+
- support for (only) ESLint 2.x
|
995
|
+
- no longer needs/refers to `import/parser` or `import/parse-options`. Instead, ESLint provides the configured parser + options to the rules, and they use that to parse dependencies.
|
996
|
+
|
997
|
+
### Removed
|
998
|
+
|
999
|
+
- `babylon` as default import parser (see Breaking)
|
1000
|
+
|
1001
|
+
## [0.13.0] - 2016-02-08
|
1002
|
+
|
1003
|
+
### Added
|
1004
|
+
- [`no-commonjs`] rule
|
1005
|
+
- [`no-amd`] rule
|
1006
|
+
|
1007
|
+
### Removed
|
1008
|
+
- Removed vestigial `no-require` rule. [`no-commonjs`] is more complete.
|
1009
|
+
|
1010
|
+
## [0.12.2] - 2016-02-06 [YANKED]
|
1011
|
+
|
1012
|
+
Unpublished from npm and re-released as 0.13.0. See [#170].
|
1013
|
+
|
1014
|
+
## [0.12.1] - 2015-12-17
|
1015
|
+
|
1016
|
+
### Changed
|
1017
|
+
- Broke docs for rules out into individual files.
|
1018
|
+
|
1019
|
+
## [0.12.0] - 2015-12-14
|
1020
|
+
|
1021
|
+
### Changed
|
1022
|
+
- Ignore [`import/ignore` setting] if exports are actually found in the parsed module. Does this to support use of `jsnext:main` in `node_modules` without the pain of managing an allow list or a nuanced deny list.
|
1023
|
+
|
1024
|
+
## [0.11.0] - 2015-11-27
|
1025
|
+
|
1026
|
+
### Added
|
1027
|
+
- Resolver plugins. Now the linter can read Webpack config, properly follow aliases and ignore externals, dismisses inline loaders, etc. etc.!
|
1028
|
+
|
1029
|
+
## Earlier releases (0.10.1 and younger)
|
1030
|
+
See [GitHub release notes](https://github.com/import-js/eslint-plugin-import/releases?after=v0.11.0)
|
1031
|
+
for info on changes for earlier releases.
|
1032
|
+
|
1033
|
+
|
1034
|
+
[`import/cache` setting]: ./README.md#importcache
|
1035
|
+
[`import/ignore` setting]: ./README.md#importignore
|
1036
|
+
[`import/extensions` setting]: ./README.md#importextensions
|
1037
|
+
[`import/parsers` setting]: ./README.md#importparsers
|
1038
|
+
[`import/core-modules` setting]: ./README.md#importcore-modules
|
1039
|
+
[`import/external-module-folders` setting]: ./README.md#importexternal-module-folders
|
1040
|
+
[`internal-regex` setting]: ./README.md#importinternal-regex
|
1041
|
+
|
1042
|
+
[`consistent-type-specifier-style`]: ./docs/rules/consistent-type-specifier-style.md
|
1043
|
+
[`default`]: ./docs/rules/default.md
|
1044
|
+
[`dynamic-import-chunkname`]: ./docs/rules/dynamic-import-chunkname.md
|
1045
|
+
[`export`]: ./docs/rules/export.md
|
1046
|
+
[`exports-last`]: ./docs/rules/exports-last.md
|
1047
|
+
[`extensions`]: ./docs/rules/extensions.md
|
1048
|
+
[`first`]: ./docs/rules/first.md
|
1049
|
+
[`group-exports`]: ./docs/rules/group-exports.md
|
1050
|
+
[`imports-first`]: ./docs/rules/first.md
|
1051
|
+
[`max-dependencies`]: ./docs/rules/max-dependencies.md
|
1052
|
+
[`named`]: ./docs/rules/named.md
|
1053
|
+
[`namespace`]: ./docs/rules/namespace.md
|
1054
|
+
[`newline-after-import`]: ./docs/rules/newline-after-import.md
|
1055
|
+
[`no-absolute-path`]: ./docs/rules/no-absolute-path.md
|
1056
|
+
[`no-amd`]: ./docs/rules/no-amd.md
|
1057
|
+
[`no-anonymous-default-export`]: ./docs/rules/no-anonymous-default-export.md
|
1058
|
+
[`no-commonjs`]: ./docs/rules/no-commonjs.md
|
1059
|
+
[`no-cycle`]: ./docs/rules/no-cycle.md
|
1060
|
+
[`no-default-export`]: ./docs/rules/no-default-export.md
|
1061
|
+
[`no-deprecated`]: ./docs/rules/no-deprecated.md
|
1062
|
+
[`no-duplicates`]: ./docs/rules/no-duplicates.md
|
1063
|
+
[`no-dynamic-require`]: ./docs/rules/no-dynamic-require.md
|
1064
|
+
[`no-empty-named-blocks`]: ./docs/rules/no-empty-named-blocks.md
|
1065
|
+
[`no-extraneous-dependencies`]: ./docs/rules/no-extraneous-dependencies.md
|
1066
|
+
[`no-import-module-exports`]: ./docs/rules/no-import-module-exports.md
|
1067
|
+
[`no-internal-modules`]: ./docs/rules/no-internal-modules.md
|
1068
|
+
[`no-mutable-exports`]: ./docs/rules/no-mutable-exports.md
|
1069
|
+
[`no-named-as-default-member`]: ./docs/rules/no-named-as-default-member.md
|
1070
|
+
[`no-named-as-default`]: ./docs/rules/no-named-as-default.md
|
1071
|
+
[`no-named-default`]: ./docs/rules/no-named-default.md
|
1072
|
+
[`no-named-export`]: ./docs/rules/no-named-export.md
|
1073
|
+
[`no-namespace`]: ./docs/rules/no-namespace.md
|
1074
|
+
[`no-nodejs-modules`]: ./docs/rules/no-nodejs-modules.md
|
1075
|
+
[`no-relative-packages`]: ./docs/rules/no-relative-packages.md
|
1076
|
+
[`no-relative-parent-imports`]: ./docs/rules/no-relative-parent-imports.md
|
1077
|
+
[`no-restricted-paths`]: ./docs/rules/no-restricted-paths.md
|
1078
|
+
[`no-self-import`]: ./docs/rules/no-self-import.md
|
1079
|
+
[`no-unassigned-import`]: ./docs/rules/no-unassigned-import.md
|
1080
|
+
[`no-unresolved`]: ./docs/rules/no-unresolved.md
|
1081
|
+
[`no-unused-modules`]: ./docs/rules/no-unused-modules.md
|
1082
|
+
[`no-useless-path-segments`]: ./docs/rules/no-useless-path-segments.md
|
1083
|
+
[`no-webpack-loader-syntax`]: ./docs/rules/no-webpack-loader-syntax.md
|
1084
|
+
[`order`]: ./docs/rules/order.md
|
1085
|
+
[`prefer-default-export`]: ./docs/rules/prefer-default-export.md
|
1086
|
+
[`unambiguous`]: ./docs/rules/unambiguous.md
|
1087
|
+
|
1088
|
+
[`memo-parser`]: ./memo-parser/README.md
|
1089
|
+
|
1090
|
+
[#2854]: https://github.com/import-js/eslint-plugin-import/pull/2854
|
1091
|
+
[#2850]: https://github.com/import-js/eslint-plugin-import/pull/2850
|
1092
|
+
[#2842]: https://github.com/import-js/eslint-plugin-import/pull/2842
|
1093
|
+
[#2835]: https://github.com/import-js/eslint-plugin-import/pull/2835
|
1094
|
+
[#2832]: https://github.com/import-js/eslint-plugin-import/pull/2832
|
1095
|
+
[#2778]: https://github.com/import-js/eslint-plugin-import/pull/2778
|
1096
|
+
[#2756]: https://github.com/import-js/eslint-plugin-import/pull/2756
|
1097
|
+
[#2754]: https://github.com/import-js/eslint-plugin-import/pull/2754
|
1098
|
+
[#2748]: https://github.com/import-js/eslint-plugin-import/pull/2748
|
1099
|
+
[#2735]: https://github.com/import-js/eslint-plugin-import/pull/2735
|
1100
|
+
[#2699]: https://github.com/import-js/eslint-plugin-import/pull/2699
|
1101
|
+
[#2664]: https://github.com/import-js/eslint-plugin-import/pull/2664
|
1102
|
+
[#2613]: https://github.com/import-js/eslint-plugin-import/pull/2613
|
1103
|
+
[#2608]: https://github.com/import-js/eslint-plugin-import/pull/2608
|
1104
|
+
[#2605]: https://github.com/import-js/eslint-plugin-import/pull/2605
|
1105
|
+
[#2602]: https://github.com/import-js/eslint-plugin-import/pull/2602
|
1106
|
+
[#2598]: https://github.com/import-js/eslint-plugin-import/pull/2598
|
1107
|
+
[#2589]: https://github.com/import-js/eslint-plugin-import/pull/2589
|
1108
|
+
[#2588]: https://github.com/import-js/eslint-plugin-import/pull/2588
|
1109
|
+
[#2582]: https://github.com/import-js/eslint-plugin-import/pull/2582
|
1110
|
+
[#2570]: https://github.com/import-js/eslint-plugin-import/pull/2570
|
1111
|
+
[#2568]: https://github.com/import-js/eslint-plugin-import/pull/2568
|
1112
|
+
[#2546]: https://github.com/import-js/eslint-plugin-import/pull/2546
|
1113
|
+
[#2541]: https://github.com/import-js/eslint-plugin-import/pull/2541
|
1114
|
+
[#2531]: https://github.com/import-js/eslint-plugin-import/pull/2531
|
1115
|
+
[#2511]: https://github.com/import-js/eslint-plugin-import/pull/2511
|
1116
|
+
[#2506]: https://github.com/import-js/eslint-plugin-import/pull/2506
|
1117
|
+
[#2503]: https://github.com/import-js/eslint-plugin-import/pull/2503
|
1118
|
+
[#2490]: https://github.com/import-js/eslint-plugin-import/pull/2490
|
1119
|
+
[#2475]: https://github.com/import-js/eslint-plugin-import/pull/2475
|
1120
|
+
[#2473]: https://github.com/import-js/eslint-plugin-import/pull/2473
|
1121
|
+
[#2466]: https://github.com/import-js/eslint-plugin-import/pull/2466
|
1122
|
+
[#2459]: https://github.com/import-js/eslint-plugin-import/pull/2459
|
1123
|
+
[#2440]: https://github.com/import-js/eslint-plugin-import/pull/2440
|
1124
|
+
[#2438]: https://github.com/import-js/eslint-plugin-import/pull/2438
|
1125
|
+
[#2436]: https://github.com/import-js/eslint-plugin-import/pull/2436
|
1126
|
+
[#2427]: https://github.com/import-js/eslint-plugin-import/pull/2427
|
1127
|
+
[#2424]: https://github.com/import-js/eslint-plugin-import/pull/2424
|
1128
|
+
[#2419]: https://github.com/import-js/eslint-plugin-import/pull/2419
|
1129
|
+
[#2417]: https://github.com/import-js/eslint-plugin-import/pull/2417
|
1130
|
+
[#2411]: https://github.com/import-js/eslint-plugin-import/pull/2411
|
1131
|
+
[#2399]: https://github.com/import-js/eslint-plugin-import/pull/2399
|
1132
|
+
[#2396]: https://github.com/import-js/eslint-plugin-import/pull/2396
|
1133
|
+
[#2395]: https://github.com/import-js/eslint-plugin-import/pull/2395
|
1134
|
+
[#2393]: https://github.com/import-js/eslint-plugin-import/pull/2393
|
1135
|
+
[#2388]: https://github.com/import-js/eslint-plugin-import/pull/2388
|
1136
|
+
[#2387]: https://github.com/import-js/eslint-plugin-import/pull/2387
|
1137
|
+
[#2381]: https://github.com/import-js/eslint-plugin-import/pull/2381
|
1138
|
+
[#2378]: https://github.com/import-js/eslint-plugin-import/pull/2378
|
1139
|
+
[#2374]: https://github.com/import-js/eslint-plugin-import/pull/2374
|
1140
|
+
[#2371]: https://github.com/import-js/eslint-plugin-import/pull/2371
|
1141
|
+
[#2367]: https://github.com/import-js/eslint-plugin-import/pull/2367
|
1142
|
+
[#2358]: https://github.com/import-js/eslint-plugin-import/pull/2358
|
1143
|
+
[#2341]: https://github.com/import-js/eslint-plugin-import/pull/2341
|
1144
|
+
[#2332]: https://github.com/import-js/eslint-plugin-import/pull/2332
|
1145
|
+
[#2334]: https://github.com/import-js/eslint-plugin-import/pull/2334
|
1146
|
+
[#2330]: https://github.com/import-js/eslint-plugin-import/pull/2330
|
1147
|
+
[#2315]: https://github.com/import-js/eslint-plugin-import/pull/2315
|
1148
|
+
[#2305]: https://github.com/import-js/eslint-plugin-import/pull/2305
|
1149
|
+
[#2299]: https://github.com/import-js/eslint-plugin-import/pull/2299
|
1150
|
+
[#2297]: https://github.com/import-js/eslint-plugin-import/pull/2297
|
1151
|
+
[#2287]: https://github.com/import-js/eslint-plugin-import/pull/2287
|
1152
|
+
[#2282]: https://github.com/import-js/eslint-plugin-import/pull/2282
|
1153
|
+
[#2280]: https://github.com/import-js/eslint-plugin-import/pull/2280
|
1154
|
+
[#2279]: https://github.com/import-js/eslint-plugin-import/pull/2279
|
1155
|
+
[#2272]: https://github.com/import-js/eslint-plugin-import/pull/2272
|
1156
|
+
[#2271]: https://github.com/import-js/eslint-plugin-import/pull/2271
|
1157
|
+
[#2270]: https://github.com/import-js/eslint-plugin-import/pull/2270
|
1158
|
+
[#2240]: https://github.com/import-js/eslint-plugin-import/pull/2240
|
1159
|
+
[#2233]: https://github.com/import-js/eslint-plugin-import/pull/2233
|
1160
|
+
[#2226]: https://github.com/import-js/eslint-plugin-import/pull/2226
|
1161
|
+
[#2220]: https://github.com/import-js/eslint-plugin-import/pull/2220
|
1162
|
+
[#2219]: https://github.com/import-js/eslint-plugin-import/pull/2219
|
1163
|
+
[#2212]: https://github.com/import-js/eslint-plugin-import/pull/2212
|
1164
|
+
[#2196]: https://github.com/import-js/eslint-plugin-import/pull/2196
|
1165
|
+
[#2194]: https://github.com/import-js/eslint-plugin-import/pull/2194
|
1166
|
+
[#2191]: https://github.com/import-js/eslint-plugin-import/pull/2191
|
1167
|
+
[#2184]: https://github.com/import-js/eslint-plugin-import/pull/2184
|
1168
|
+
[#2179]: https://github.com/import-js/eslint-plugin-import/pull/2179
|
1169
|
+
[#2160]: https://github.com/import-js/eslint-plugin-import/pull/2160
|
1170
|
+
[#2158]: https://github.com/import-js/eslint-plugin-import/pull/2158
|
1171
|
+
[#2156]: https://github.com/import-js/eslint-plugin-import/pull/2156
|
1172
|
+
[#2149]: https://github.com/import-js/eslint-plugin-import/pull/2149
|
1173
|
+
[#2146]: https://github.com/import-js/eslint-plugin-import/pull/2146
|
1174
|
+
[#2140]: https://github.com/import-js/eslint-plugin-import/pull/2140
|
1175
|
+
[#2138]: https://github.com/import-js/eslint-plugin-import/pull/2138
|
1176
|
+
[#2121]: https://github.com/import-js/eslint-plugin-import/pull/2121
|
1177
|
+
[#2112]: https://github.com/import-js/eslint-plugin-import/pull/2112
|
1178
|
+
[#2099]: https://github.com/import-js/eslint-plugin-import/pull/2099
|
1179
|
+
[#2097]: https://github.com/import-js/eslint-plugin-import/pull/2097
|
1180
|
+
[#2090]: https://github.com/import-js/eslint-plugin-import/pull/2090
|
1181
|
+
[#2087]: https://github.com/import-js/eslint-plugin-import/pull/2087
|
1182
|
+
[#2083]: https://github.com/import-js/eslint-plugin-import/pull/2083
|
1183
|
+
[#2075]: https://github.com/import-js/eslint-plugin-import/pull/2075
|
1184
|
+
[#2071]: https://github.com/import-js/eslint-plugin-import/pull/2071
|
1185
|
+
[#2047]: https://github.com/import-js/eslint-plugin-import/pull/2047
|
1186
|
+
[#2034]: https://github.com/import-js/eslint-plugin-import/pull/2034
|
1187
|
+
[#2028]: https://github.com/import-js/eslint-plugin-import/pull/2028
|
1188
|
+
[#2026]: https://github.com/import-js/eslint-plugin-import/pull/2026
|
1189
|
+
[#2022]: https://github.com/import-js/eslint-plugin-import/pull/2022
|
1190
|
+
[#2021]: https://github.com/import-js/eslint-plugin-import/pull/2021
|
1191
|
+
[#2012]: https://github.com/import-js/eslint-plugin-import/pull/2012
|
1192
|
+
[#1997]: https://github.com/import-js/eslint-plugin-import/pull/1997
|
1193
|
+
[#1993]: https://github.com/import-js/eslint-plugin-import/pull/1993
|
1194
|
+
[#1990]: https://github.com/import-js/eslint-plugin-import/pull/1990
|
1195
|
+
[#1985]: https://github.com/import-js/eslint-plugin-import/pull/1985
|
1196
|
+
[#1983]: https://github.com/import-js/eslint-plugin-import/pull/1983
|
1197
|
+
[#1974]: https://github.com/import-js/eslint-plugin-import/pull/1974
|
1198
|
+
[#1958]: https://github.com/import-js/eslint-plugin-import/pull/1958
|
1199
|
+
[#1948]: https://github.com/import-js/eslint-plugin-import/pull/1948
|
1200
|
+
[#1947]: https://github.com/import-js/eslint-plugin-import/pull/1947
|
1201
|
+
[#1944]: https://github.com/import-js/eslint-plugin-import/pull/1944
|
1202
|
+
[#1940]: https://github.com/import-js/eslint-plugin-import/pull/1940
|
1203
|
+
[#1897]: https://github.com/import-js/eslint-plugin-import/pull/1897
|
1204
|
+
[#1889]: https://github.com/import-js/eslint-plugin-import/pull/1889
|
1205
|
+
[#1878]: https://github.com/import-js/eslint-plugin-import/pull/1878
|
1206
|
+
[#1860]: https://github.com/import-js/eslint-plugin-import/pull/1860
|
1207
|
+
[#1848]: https://github.com/import-js/eslint-plugin-import/pull/1848
|
1208
|
+
[#1847]: https://github.com/import-js/eslint-plugin-import/pull/1847
|
1209
|
+
[#1846]: https://github.com/import-js/eslint-plugin-import/pull/1846
|
1210
|
+
[#1836]: https://github.com/import-js/eslint-plugin-import/pull/1836
|
1211
|
+
[#1835]: https://github.com/import-js/eslint-plugin-import/pull/1835
|
1212
|
+
[#1833]: https://github.com/import-js/eslint-plugin-import/pull/1833
|
1213
|
+
[#1831]: https://github.com/import-js/eslint-plugin-import/pull/1831
|
1214
|
+
[#1830]: https://github.com/import-js/eslint-plugin-import/pull/1830
|
1215
|
+
[#1824]: https://github.com/import-js/eslint-plugin-import/pull/1824
|
1216
|
+
[#1823]: https://github.com/import-js/eslint-plugin-import/pull/1823
|
1217
|
+
[#1822]: https://github.com/import-js/eslint-plugin-import/pull/1822
|
1218
|
+
[#1820]: https://github.com/import-js/eslint-plugin-import/pull/1820
|
1219
|
+
[#1819]: https://github.com/import-js/eslint-plugin-import/pull/1819
|
1220
|
+
[#1802]: https://github.com/import-js/eslint-plugin-import/pull/1802
|
1221
|
+
[#1788]: https://github.com/import-js/eslint-plugin-import/pull/1788
|
1222
|
+
[#1786]: https://github.com/import-js/eslint-plugin-import/pull/1786
|
1223
|
+
[#1785]: https://github.com/import-js/eslint-plugin-import/pull/1785
|
1224
|
+
[#1776]: https://github.com/import-js/eslint-plugin-import/pull/1776
|
1225
|
+
[#1770]: https://github.com/import-js/eslint-plugin-import/pull/1770
|
1226
|
+
[#1764]: https://github.com/import-js/eslint-plugin-import/pull/1764
|
1227
|
+
[#1763]: https://github.com/import-js/eslint-plugin-import/pull/1763
|
1228
|
+
[#1751]: https://github.com/import-js/eslint-plugin-import/pull/1751
|
1229
|
+
[#1744]: https://github.com/import-js/eslint-plugin-import/pull/1744
|
1230
|
+
[#1736]: https://github.com/import-js/eslint-plugin-import/pull/1736
|
1231
|
+
[#1735]: https://github.com/import-js/eslint-plugin-import/pull/1735
|
1232
|
+
[#1726]: https://github.com/import-js/eslint-plugin-import/pull/1726
|
1233
|
+
[#1724]: https://github.com/import-js/eslint-plugin-import/pull/1724
|
1234
|
+
[#1719]: https://github.com/import-js/eslint-plugin-import/pull/1719
|
1235
|
+
[#1696]: https://github.com/import-js/eslint-plugin-import/pull/1696
|
1236
|
+
[#1691]: https://github.com/import-js/eslint-plugin-import/pull/1691
|
1237
|
+
[#1690]: https://github.com/import-js/eslint-plugin-import/pull/1690
|
1238
|
+
[#1689]: https://github.com/import-js/eslint-plugin-import/pull/1689
|
1239
|
+
[#1681]: https://github.com/import-js/eslint-plugin-import/pull/1681
|
1240
|
+
[#1676]: https://github.com/import-js/eslint-plugin-import/pull/1676
|
1241
|
+
[#1666]: https://github.com/import-js/eslint-plugin-import/pull/1666
|
1242
|
+
[#1664]: https://github.com/import-js/eslint-plugin-import/pull/1664
|
1243
|
+
[#1660]: https://github.com/import-js/eslint-plugin-import/pull/1660
|
1244
|
+
[#1658]: https://github.com/import-js/eslint-plugin-import/pull/1658
|
1245
|
+
[#1651]: https://github.com/import-js/eslint-plugin-import/pull/1651
|
1246
|
+
[#1626]: https://github.com/import-js/eslint-plugin-import/pull/1626
|
1247
|
+
[#1620]: https://github.com/import-js/eslint-plugin-import/pull/1620
|
1248
|
+
[#1619]: https://github.com/import-js/eslint-plugin-import/pull/1619
|
1249
|
+
[#1612]: https://github.com/import-js/eslint-plugin-import/pull/1612
|
1250
|
+
[#1611]: https://github.com/import-js/eslint-plugin-import/pull/1611
|
1251
|
+
[#1605]: https://github.com/import-js/eslint-plugin-import/pull/1605
|
1252
|
+
[#1586]: https://github.com/import-js/eslint-plugin-import/pull/1586
|
1253
|
+
[#1572]: https://github.com/import-js/eslint-plugin-import/pull/1572
|
1254
|
+
[#1569]: https://github.com/import-js/eslint-plugin-import/pull/1569
|
1255
|
+
[#1563]: https://github.com/import-js/eslint-plugin-import/pull/1563
|
1256
|
+
[#1560]: https://github.com/import-js/eslint-plugin-import/pull/1560
|
1257
|
+
[#1551]: https://github.com/import-js/eslint-plugin-import/pull/1551
|
1258
|
+
[#1542]: https://github.com/import-js/eslint-plugin-import/pull/1542
|
1259
|
+
[#1534]: https://github.com/import-js/eslint-plugin-import/pull/1534
|
1260
|
+
[#1528]: https://github.com/import-js/eslint-plugin-import/pull/1528
|
1261
|
+
[#1526]: https://github.com/import-js/eslint-plugin-import/pull/1526
|
1262
|
+
[#1521]: https://github.com/import-js/eslint-plugin-import/pull/1521
|
1263
|
+
[#1519]: https://github.com/import-js/eslint-plugin-import/pull/1519
|
1264
|
+
[#1517]: https://github.com/import-js/eslint-plugin-import/pull/1517
|
1265
|
+
[#1507]: https://github.com/import-js/eslint-plugin-import/pull/1507
|
1266
|
+
[#1506]: https://github.com/import-js/eslint-plugin-import/pull/1506
|
1267
|
+
[#1496]: https://github.com/import-js/eslint-plugin-import/pull/1496
|
1268
|
+
[#1495]: https://github.com/import-js/eslint-plugin-import/pull/1495
|
1269
|
+
[#1494]: https://github.com/import-js/eslint-plugin-import/pull/1494
|
1270
|
+
[#1493]: https://github.com/import-js/eslint-plugin-import/pull/1493
|
1271
|
+
[#1491]: https://github.com/import-js/eslint-plugin-import/pull/1491
|
1272
|
+
[#1472]: https://github.com/import-js/eslint-plugin-import/pull/1472
|
1273
|
+
[#1470]: https://github.com/import-js/eslint-plugin-import/pull/1470
|
1274
|
+
[#1447]: https://github.com/import-js/eslint-plugin-import/pull/1447
|
1275
|
+
[#1439]: https://github.com/import-js/eslint-plugin-import/pull/1439
|
1276
|
+
[#1436]: https://github.com/import-js/eslint-plugin-import/pull/1436
|
1277
|
+
[#1435]: https://github.com/import-js/eslint-plugin-import/pull/1435
|
1278
|
+
[#1425]: https://github.com/import-js/eslint-plugin-import/pull/1425
|
1279
|
+
[#1419]: https://github.com/import-js/eslint-plugin-import/pull/1419
|
1280
|
+
[#1412]: https://github.com/import-js/eslint-plugin-import/pull/1412
|
1281
|
+
[#1409]: https://github.com/import-js/eslint-plugin-import/pull/1409
|
1282
|
+
[#1404]: https://github.com/import-js/eslint-plugin-import/pull/1404
|
1283
|
+
[#1401]: https://github.com/import-js/eslint-plugin-import/pull/1401
|
1284
|
+
[#1393]: https://github.com/import-js/eslint-plugin-import/pull/1393
|
1285
|
+
[#1389]: https://github.com/import-js/eslint-plugin-import/pull/1389
|
1286
|
+
[#1386]: https://github.com/import-js/eslint-plugin-import/pull/1386
|
1287
|
+
[#1377]: https://github.com/import-js/eslint-plugin-import/pull/1377
|
1288
|
+
[#1375]: https://github.com/import-js/eslint-plugin-import/pull/1375
|
1289
|
+
[#1372]: https://github.com/import-js/eslint-plugin-import/pull/1372
|
1290
|
+
[#1371]: https://github.com/import-js/eslint-plugin-import/pull/1371
|
1291
|
+
[#1370]: https://github.com/import-js/eslint-plugin-import/pull/1370
|
1292
|
+
[#1363]: https://github.com/import-js/eslint-plugin-import/pull/1363
|
1293
|
+
[#1360]: https://github.com/import-js/eslint-plugin-import/pull/1360
|
1294
|
+
[#1358]: https://github.com/import-js/eslint-plugin-import/pull/1358
|
1295
|
+
[#1356]: https://github.com/import-js/eslint-plugin-import/pull/1356
|
1296
|
+
[#1354]: https://github.com/import-js/eslint-plugin-import/pull/1354
|
1297
|
+
[#1352]: https://github.com/import-js/eslint-plugin-import/pull/1352
|
1298
|
+
[#1347]: https://github.com/import-js/eslint-plugin-import/pull/1347
|
1299
|
+
[#1345]: https://github.com/import-js/eslint-plugin-import/pull/1345
|
1300
|
+
[#1342]: https://github.com/import-js/eslint-plugin-import/pull/1342
|
1301
|
+
[#1340]: https://github.com/import-js/eslint-plugin-import/pull/1340
|
1302
|
+
[#1333]: https://github.com/import-js/eslint-plugin-import/pull/1333
|
1303
|
+
[#1331]: https://github.com/import-js/eslint-plugin-import/pull/1331
|
1304
|
+
[#1330]: https://github.com/import-js/eslint-plugin-import/pull/1330
|
1305
|
+
[#1320]: https://github.com/import-js/eslint-plugin-import/pull/1320
|
1306
|
+
[#1319]: https://github.com/import-js/eslint-plugin-import/pull/1319
|
1307
|
+
[#1312]: https://github.com/import-js/eslint-plugin-import/pull/1312
|
1308
|
+
[#1308]: https://github.com/import-js/eslint-plugin-import/pull/1308
|
1309
|
+
[#1304]: https://github.com/import-js/eslint-plugin-import/pull/1304
|
1310
|
+
[#1297]: https://github.com/import-js/eslint-plugin-import/pull/1297
|
1311
|
+
[#1295]: https://github.com/import-js/eslint-plugin-import/pull/1295
|
1312
|
+
[#1294]: https://github.com/import-js/eslint-plugin-import/pull/1294
|
1313
|
+
[#1290]: https://github.com/import-js/eslint-plugin-import/pull/1290
|
1314
|
+
[#1277]: https://github.com/import-js/eslint-plugin-import/pull/1277
|
1315
|
+
[#1262]: https://github.com/import-js/eslint-plugin-import/pull/1262
|
1316
|
+
[#1257]: https://github.com/import-js/eslint-plugin-import/pull/1257
|
1317
|
+
[#1253]: https://github.com/import-js/eslint-plugin-import/pull/1253
|
1318
|
+
[#1248]: https://github.com/import-js/eslint-plugin-import/pull/1248
|
1319
|
+
[#1238]: https://github.com/import-js/eslint-plugin-import/pull/1238
|
1320
|
+
[#1237]: https://github.com/import-js/eslint-plugin-import/pull/1237
|
1321
|
+
[#1235]: https://github.com/import-js/eslint-plugin-import/pull/1235
|
1322
|
+
[#1234]: https://github.com/import-js/eslint-plugin-import/pull/1234
|
1323
|
+
[#1232]: https://github.com/import-js/eslint-plugin-import/pull/1232
|
1324
|
+
[#1223]: https://github.com/import-js/eslint-plugin-import/pull/1223
|
1325
|
+
[#1222]: https://github.com/import-js/eslint-plugin-import/pull/1222
|
1326
|
+
[#1218]: https://github.com/import-js/eslint-plugin-import/pull/1218
|
1327
|
+
[#1176]: https://github.com/import-js/eslint-plugin-import/pull/1176
|
1328
|
+
[#1163]: https://github.com/import-js/eslint-plugin-import/pull/1163
|
1329
|
+
[#1157]: https://github.com/import-js/eslint-plugin-import/pull/1157
|
1330
|
+
[#1151]: https://github.com/import-js/eslint-plugin-import/pull/1151
|
1331
|
+
[#1142]: https://github.com/import-js/eslint-plugin-import/pull/1142
|
1332
|
+
[#1139]: https://github.com/import-js/eslint-plugin-import/pull/1139
|
1333
|
+
[#1137]: https://github.com/import-js/eslint-plugin-import/pull/1137
|
1334
|
+
[#1135]: https://github.com/import-js/eslint-plugin-import/pull/1135
|
1335
|
+
[#1128]: https://github.com/import-js/eslint-plugin-import/pull/1128
|
1336
|
+
[#1126]: https://github.com/import-js/eslint-plugin-import/pull/1126
|
1337
|
+
[#1122]: https://github.com/import-js/eslint-plugin-import/pull/1122
|
1338
|
+
[#1112]: https://github.com/import-js/eslint-plugin-import/pull/1112
|
1339
|
+
[#1107]: https://github.com/import-js/eslint-plugin-import/pull/1107
|
1340
|
+
[#1106]: https://github.com/import-js/eslint-plugin-import/pull/1106
|
1341
|
+
[#1105]: https://github.com/import-js/eslint-plugin-import/pull/1105
|
1342
|
+
[#1093]: https://github.com/import-js/eslint-plugin-import/pull/1093
|
1343
|
+
[#1085]: https://github.com/import-js/eslint-plugin-import/pull/1085
|
1344
|
+
[#1068]: https://github.com/import-js/eslint-plugin-import/pull/1068
|
1345
|
+
[#1049]: https://github.com/import-js/eslint-plugin-import/pull/1049
|
1346
|
+
[#1046]: https://github.com/import-js/eslint-plugin-import/pull/1046
|
1347
|
+
[#966]: https://github.com/import-js/eslint-plugin-import/pull/966
|
1348
|
+
[#944]: https://github.com/import-js/eslint-plugin-import/pull/944
|
1349
|
+
[#912]: https://github.com/import-js/eslint-plugin-import/pull/912
|
1350
|
+
[#908]: https://github.com/import-js/eslint-plugin-import/pull/908
|
1351
|
+
[#891]: https://github.com/import-js/eslint-plugin-import/pull/891
|
1352
|
+
[#889]: https://github.com/import-js/eslint-plugin-import/pull/889
|
1353
|
+
[#880]: https://github.com/import-js/eslint-plugin-import/pull/880
|
1354
|
+
[#871]: https://github.com/import-js/eslint-plugin-import/pull/871
|
1355
|
+
[#858]: https://github.com/import-js/eslint-plugin-import/pull/858
|
1356
|
+
[#843]: https://github.com/import-js/eslint-plugin-import/pull/843
|
1357
|
+
[#804]: https://github.com/import-js/eslint-plugin-import/pull/804
|
1358
|
+
[#797]: https://github.com/import-js/eslint-plugin-import/pull/797
|
1359
|
+
[#794]: https://github.com/import-js/eslint-plugin-import/pull/794
|
1360
|
+
[#744]: https://github.com/import-js/eslint-plugin-import/pull/744
|
1361
|
+
[#742]: https://github.com/import-js/eslint-plugin-import/pull/742
|
1362
|
+
[#737]: https://github.com/import-js/eslint-plugin-import/pull/737
|
1363
|
+
[#727]: https://github.com/import-js/eslint-plugin-import/pull/727
|
1364
|
+
[#721]: https://github.com/import-js/eslint-plugin-import/pull/721
|
1365
|
+
[#712]: https://github.com/import-js/eslint-plugin-import/pull/712
|
1366
|
+
[#696]: https://github.com/import-js/eslint-plugin-import/pull/696
|
1367
|
+
[#685]: https://github.com/import-js/eslint-plugin-import/pull/685
|
1368
|
+
[#680]: https://github.com/import-js/eslint-plugin-import/pull/680
|
1369
|
+
[#654]: https://github.com/import-js/eslint-plugin-import/pull/654
|
1370
|
+
[#639]: https://github.com/import-js/eslint-plugin-import/pull/639
|
1371
|
+
[#632]: https://github.com/import-js/eslint-plugin-import/pull/632
|
1372
|
+
[#630]: https://github.com/import-js/eslint-plugin-import/pull/630
|
1373
|
+
[#629]: https://github.com/import-js/eslint-plugin-import/pull/629
|
1374
|
+
[#628]: https://github.com/import-js/eslint-plugin-import/pull/628
|
1375
|
+
[#596]: https://github.com/import-js/eslint-plugin-import/pull/596
|
1376
|
+
[#586]: https://github.com/import-js/eslint-plugin-import/pull/586
|
1377
|
+
[#578]: https://github.com/import-js/eslint-plugin-import/pull/578
|
1378
|
+
[#568]: https://github.com/import-js/eslint-plugin-import/pull/568
|
1379
|
+
[#555]: https://github.com/import-js/eslint-plugin-import/pull/555
|
1380
|
+
[#538]: https://github.com/import-js/eslint-plugin-import/pull/538
|
1381
|
+
[#527]: https://github.com/import-js/eslint-plugin-import/pull/527
|
1382
|
+
[#518]: https://github.com/import-js/eslint-plugin-import/pull/518
|
1383
|
+
[#509]: https://github.com/import-js/eslint-plugin-import/pull/509
|
1384
|
+
[#508]: https://github.com/import-js/eslint-plugin-import/pull/508
|
1385
|
+
[#503]: https://github.com/import-js/eslint-plugin-import/pull/503
|
1386
|
+
[#499]: https://github.com/import-js/eslint-plugin-import/pull/499
|
1387
|
+
[#489]: https://github.com/import-js/eslint-plugin-import/pull/489
|
1388
|
+
[#485]: https://github.com/import-js/eslint-plugin-import/pull/485
|
1389
|
+
[#461]: https://github.com/import-js/eslint-plugin-import/pull/461
|
1390
|
+
[#449]: https://github.com/import-js/eslint-plugin-import/pull/449
|
1391
|
+
[#444]: https://github.com/import-js/eslint-plugin-import/pull/444
|
1392
|
+
[#428]: https://github.com/import-js/eslint-plugin-import/pull/428
|
1393
|
+
[#395]: https://github.com/import-js/eslint-plugin-import/pull/395
|
1394
|
+
[#371]: https://github.com/import-js/eslint-plugin-import/pull/371
|
1395
|
+
[#365]: https://github.com/import-js/eslint-plugin-import/pull/365
|
1396
|
+
[#359]: https://github.com/import-js/eslint-plugin-import/pull/359
|
1397
|
+
[#343]: https://github.com/import-js/eslint-plugin-import/pull/343
|
1398
|
+
[#332]: https://github.com/import-js/eslint-plugin-import/pull/332
|
1399
|
+
[#322]: https://github.com/import-js/eslint-plugin-import/pull/322
|
1400
|
+
[#321]: https://github.com/import-js/eslint-plugin-import/pull/321
|
1401
|
+
[#316]: https://github.com/import-js/eslint-plugin-import/pull/316
|
1402
|
+
[#314]: https://github.com/import-js/eslint-plugin-import/pull/314
|
1403
|
+
[#308]: https://github.com/import-js/eslint-plugin-import/pull/308
|
1404
|
+
[#298]: https://github.com/import-js/eslint-plugin-import/pull/298
|
1405
|
+
[#297]: https://github.com/import-js/eslint-plugin-import/pull/297
|
1406
|
+
[#296]: https://github.com/import-js/eslint-plugin-import/pull/296
|
1407
|
+
[#290]: https://github.com/import-js/eslint-plugin-import/pull/290
|
1408
|
+
[#289]: https://github.com/import-js/eslint-plugin-import/pull/289
|
1409
|
+
[#288]: https://github.com/import-js/eslint-plugin-import/pull/288
|
1410
|
+
[#287]: https://github.com/import-js/eslint-plugin-import/pull/287
|
1411
|
+
[#278]: https://github.com/import-js/eslint-plugin-import/pull/278
|
1412
|
+
[#261]: https://github.com/import-js/eslint-plugin-import/pull/261
|
1413
|
+
[#256]: https://github.com/import-js/eslint-plugin-import/pull/256
|
1414
|
+
[#254]: https://github.com/import-js/eslint-plugin-import/pull/254
|
1415
|
+
[#250]: https://github.com/import-js/eslint-plugin-import/pull/250
|
1416
|
+
[#247]: https://github.com/import-js/eslint-plugin-import/pull/247
|
1417
|
+
[#245]: https://github.com/import-js/eslint-plugin-import/pull/245
|
1418
|
+
[#243]: https://github.com/import-js/eslint-plugin-import/pull/243
|
1419
|
+
[#241]: https://github.com/import-js/eslint-plugin-import/pull/241
|
1420
|
+
[#239]: https://github.com/import-js/eslint-plugin-import/pull/239
|
1421
|
+
[#228]: https://github.com/import-js/eslint-plugin-import/pull/228
|
1422
|
+
[#211]: https://github.com/import-js/eslint-plugin-import/pull/211
|
1423
|
+
[#164]: https://github.com/import-js/eslint-plugin-import/pull/164
|
1424
|
+
[#157]: https://github.com/import-js/eslint-plugin-import/pull/157
|
1425
|
+
[#2687]: https://github.com/import-js/eslint-plugin-import/issues/2687
|
1426
|
+
[#2684]: https://github.com/import-js/eslint-plugin-import/issues/2684
|
1427
|
+
[#2674]: https://github.com/import-js/eslint-plugin-import/issues/2674
|
1428
|
+
[#2668]: https://github.com/import-js/eslint-plugin-import/issues/2668
|
1429
|
+
[#2666]: https://github.com/import-js/eslint-plugin-import/issues/2666
|
1430
|
+
[#2665]: https://github.com/import-js/eslint-plugin-import/issues/2665
|
1431
|
+
[#2577]: https://github.com/import-js/eslint-plugin-import/issues/2577
|
1432
|
+
[#2444]: https://github.com/import-js/eslint-plugin-import/issues/2444
|
1433
|
+
[#2412]: https://github.com/import-js/eslint-plugin-import/issues/2412
|
1434
|
+
[#2392]: https://github.com/import-js/eslint-plugin-import/issues/2392
|
1435
|
+
[#2340]: https://github.com/import-js/eslint-plugin-import/issues/2340
|
1436
|
+
[#2255]: https://github.com/import-js/eslint-plugin-import/issues/2255
|
1437
|
+
[#2210]: https://github.com/import-js/eslint-plugin-import/issues/2210
|
1438
|
+
[#2201]: https://github.com/import-js/eslint-plugin-import/issues/2201
|
1439
|
+
[#2199]: https://github.com/import-js/eslint-plugin-import/issues/2199
|
1440
|
+
[#2161]: https://github.com/import-js/eslint-plugin-import/issues/2161
|
1441
|
+
[#2118]: https://github.com/import-js/eslint-plugin-import/issues/2118
|
1442
|
+
[#2067]: https://github.com/import-js/eslint-plugin-import/issues/2067
|
1443
|
+
[#2063]: https://github.com/import-js/eslint-plugin-import/issues/2063
|
1444
|
+
[#2056]: https://github.com/import-js/eslint-plugin-import/issues/2056
|
1445
|
+
[#1998]: https://github.com/import-js/eslint-plugin-import/issues/1998
|
1446
|
+
[#1965]: https://github.com/import-js/eslint-plugin-import/issues/1965
|
1447
|
+
[#1924]: https://github.com/import-js/eslint-plugin-import/issues/1924
|
1448
|
+
[#1854]: https://github.com/import-js/eslint-plugin-import/issues/1854
|
1449
|
+
[#1841]: https://github.com/import-js/eslint-plugin-import/issues/1841
|
1450
|
+
[#1834]: https://github.com/import-js/eslint-plugin-import/issues/1834
|
1451
|
+
[#1814]: https://github.com/import-js/eslint-plugin-import/issues/1814
|
1452
|
+
[#1811]: https://github.com/import-js/eslint-plugin-import/issues/1811
|
1453
|
+
[#1808]: https://github.com/import-js/eslint-plugin-import/issues/1808
|
1454
|
+
[#1805]: https://github.com/import-js/eslint-plugin-import/issues/1805
|
1455
|
+
[#1801]: https://github.com/import-js/eslint-plugin-import/issues/1801
|
1456
|
+
[#1722]: https://github.com/import-js/eslint-plugin-import/issues/1722
|
1457
|
+
[#1704]: https://github.com/import-js/eslint-plugin-import/issues/1704
|
1458
|
+
[#1702]: https://github.com/import-js/eslint-plugin-import/issues/1702
|
1459
|
+
[#1635]: https://github.com/import-js/eslint-plugin-import/issues/1635
|
1460
|
+
[#1631]: https://github.com/import-js/eslint-plugin-import/issues/1631
|
1461
|
+
[#1616]: https://github.com/import-js/eslint-plugin-import/issues/1616
|
1462
|
+
[#1613]: https://github.com/import-js/eslint-plugin-import/issues/1613
|
1463
|
+
[#1590]: https://github.com/import-js/eslint-plugin-import/issues/1590
|
1464
|
+
[#1589]: https://github.com/import-js/eslint-plugin-import/issues/1589
|
1465
|
+
[#1565]: https://github.com/import-js/eslint-plugin-import/issues/1565
|
1466
|
+
[#1366]: https://github.com/import-js/eslint-plugin-import/issues/1366
|
1467
|
+
[#1334]: https://github.com/import-js/eslint-plugin-import/issues/1334
|
1468
|
+
[#1323]: https://github.com/import-js/eslint-plugin-import/issues/1323
|
1469
|
+
[#1322]: https://github.com/import-js/eslint-plugin-import/issues/1322
|
1470
|
+
[#1300]: https://github.com/import-js/eslint-plugin-import/issues/1300
|
1471
|
+
[#1293]: https://github.com/import-js/eslint-plugin-import/issues/1293
|
1472
|
+
[#1266]: https://github.com/import-js/eslint-plugin-import/issues/1266
|
1473
|
+
[#1256]: https://github.com/import-js/eslint-plugin-import/issues/1256
|
1474
|
+
[#1233]: https://github.com/import-js/eslint-plugin-import/issues/1233
|
1475
|
+
[#1175]: https://github.com/import-js/eslint-plugin-import/issues/1175
|
1476
|
+
[#1166]: https://github.com/import-js/eslint-plugin-import/issues/1166
|
1477
|
+
[#1144]: https://github.com/import-js/eslint-plugin-import/issues/1144
|
1478
|
+
[#1058]: https://github.com/import-js/eslint-plugin-import/issues/1058
|
1479
|
+
[#1035]: https://github.com/import-js/eslint-plugin-import/issues/1035
|
1480
|
+
[#931]: https://github.com/import-js/eslint-plugin-import/issues/931
|
1481
|
+
[#886]: https://github.com/import-js/eslint-plugin-import/issues/886
|
1482
|
+
[#863]: https://github.com/import-js/eslint-plugin-import/issues/863
|
1483
|
+
[#842]: https://github.com/import-js/eslint-plugin-import/issues/842
|
1484
|
+
[#839]: https://github.com/import-js/eslint-plugin-import/issues/839
|
1485
|
+
[#795]: https://github.com/import-js/eslint-plugin-import/issues/795
|
1486
|
+
[#793]: https://github.com/import-js/eslint-plugin-import/issues/793
|
1487
|
+
[#720]: https://github.com/import-js/eslint-plugin-import/issues/720
|
1488
|
+
[#717]: https://github.com/import-js/eslint-plugin-import/issues/717
|
1489
|
+
[#686]: https://github.com/import-js/eslint-plugin-import/issues/686
|
1490
|
+
[#671]: https://github.com/import-js/eslint-plugin-import/issues/671
|
1491
|
+
[#660]: https://github.com/import-js/eslint-plugin-import/issues/660
|
1492
|
+
[#653]: https://github.com/import-js/eslint-plugin-import/issues/653
|
1493
|
+
[#627]: https://github.com/import-js/eslint-plugin-import/issues/627
|
1494
|
+
[#620]: https://github.com/import-js/eslint-plugin-import/issues/620
|
1495
|
+
[#609]: https://github.com/import-js/eslint-plugin-import/issues/609
|
1496
|
+
[#604]: https://github.com/import-js/eslint-plugin-import/issues/604
|
1497
|
+
[#602]: https://github.com/import-js/eslint-plugin-import/issues/602
|
1498
|
+
[#601]: https://github.com/import-js/eslint-plugin-import/issues/601
|
1499
|
+
[#592]: https://github.com/import-js/eslint-plugin-import/issues/592
|
1500
|
+
[#577]: https://github.com/import-js/eslint-plugin-import/issues/577
|
1501
|
+
[#570]: https://github.com/import-js/eslint-plugin-import/issues/570
|
1502
|
+
[#567]: https://github.com/import-js/eslint-plugin-import/issues/567
|
1503
|
+
[#566]: https://github.com/import-js/eslint-plugin-import/issues/566
|
1504
|
+
[#545]: https://github.com/import-js/eslint-plugin-import/issues/545
|
1505
|
+
[#530]: https://github.com/import-js/eslint-plugin-import/issues/530
|
1506
|
+
[#529]: https://github.com/import-js/eslint-plugin-import/issues/529
|
1507
|
+
[#519]: https://github.com/import-js/eslint-plugin-import/issues/519
|
1508
|
+
[#507]: https://github.com/import-js/eslint-plugin-import/issues/507
|
1509
|
+
[#484]: https://github.com/import-js/eslint-plugin-import/issues/484
|
1510
|
+
[#478]: https://github.com/import-js/eslint-plugin-import/issues/478
|
1511
|
+
[#456]: https://github.com/import-js/eslint-plugin-import/issues/456
|
1512
|
+
[#453]: https://github.com/import-js/eslint-plugin-import/issues/453
|
1513
|
+
[#452]: https://github.com/import-js/eslint-plugin-import/issues/452
|
1514
|
+
[#447]: https://github.com/import-js/eslint-plugin-import/issues/447
|
1515
|
+
[#441]: https://github.com/import-js/eslint-plugin-import/issues/441
|
1516
|
+
[#423]: https://github.com/import-js/eslint-plugin-import/issues/423
|
1517
|
+
[#416]: https://github.com/import-js/eslint-plugin-import/issues/416
|
1518
|
+
[#415]: https://github.com/import-js/eslint-plugin-import/issues/415
|
1519
|
+
[#402]: https://github.com/import-js/eslint-plugin-import/issues/402
|
1520
|
+
[#386]: https://github.com/import-js/eslint-plugin-import/issues/386
|
1521
|
+
[#373]: https://github.com/import-js/eslint-plugin-import/issues/373
|
1522
|
+
[#370]: https://github.com/import-js/eslint-plugin-import/issues/370
|
1523
|
+
[#348]: https://github.com/import-js/eslint-plugin-import/issues/348
|
1524
|
+
[#342]: https://github.com/import-js/eslint-plugin-import/issues/342
|
1525
|
+
[#328]: https://github.com/import-js/eslint-plugin-import/issues/328
|
1526
|
+
[#317]: https://github.com/import-js/eslint-plugin-import/issues/317
|
1527
|
+
[#313]: https://github.com/import-js/eslint-plugin-import/issues/313
|
1528
|
+
[#311]: https://github.com/import-js/eslint-plugin-import/issues/311
|
1529
|
+
[#306]: https://github.com/import-js/eslint-plugin-import/issues/306
|
1530
|
+
[#286]: https://github.com/import-js/eslint-plugin-import/issues/286
|
1531
|
+
[#283]: https://github.com/import-js/eslint-plugin-import/issues/283
|
1532
|
+
[#281]: https://github.com/import-js/eslint-plugin-import/issues/281
|
1533
|
+
[#275]: https://github.com/import-js/eslint-plugin-import/issues/275
|
1534
|
+
[#272]: https://github.com/import-js/eslint-plugin-import/issues/272
|
1535
|
+
[#270]: https://github.com/import-js/eslint-plugin-import/issues/270
|
1536
|
+
[#267]: https://github.com/import-js/eslint-plugin-import/issues/267
|
1537
|
+
[#266]: https://github.com/import-js/eslint-plugin-import/issues/266
|
1538
|
+
[#216]: https://github.com/import-js/eslint-plugin-import/issues/216
|
1539
|
+
[#214]: https://github.com/import-js/eslint-plugin-import/issues/214
|
1540
|
+
[#210]: https://github.com/import-js/eslint-plugin-import/issues/210
|
1541
|
+
[#200]: https://github.com/import-js/eslint-plugin-import/issues/200
|
1542
|
+
[#192]: https://github.com/import-js/eslint-plugin-import/issues/192
|
1543
|
+
[#191]: https://github.com/import-js/eslint-plugin-import/issues/191
|
1544
|
+
[#189]: https://github.com/import-js/eslint-plugin-import/issues/189
|
1545
|
+
[#170]: https://github.com/import-js/eslint-plugin-import/issues/170
|
1546
|
+
[#155]: https://github.com/import-js/eslint-plugin-import/issues/155
|
1547
|
+
[#119]: https://github.com/import-js/eslint-plugin-import/issues/119
|
1548
|
+
[#89]: https://github.com/import-js/eslint-plugin-import/issues/89
|
1549
|
+
|
1550
|
+
[Unreleased]: https://github.com/import-js/eslint-plugin-import/compare/v2.28.1...HEAD
|
1551
|
+
[2.28.1]: https://github.com/import-js/eslint-plugin-import/compare/v2.28.0...v2.28.1
|
1552
|
+
[2.28.0]: https://github.com/import-js/eslint-plugin-import/compare/v2.27.5...v2.28.0
|
1553
|
+
[2.27.5]: https://github.com/import-js/eslint-plugin-import/compare/v2.27.4...v2.27.5
|
1554
|
+
[2.27.4]: https://github.com/import-js/eslint-plugin-import/compare/v2.27.3...v2.27.4
|
1555
|
+
[2.27.3]: https://github.com/import-js/eslint-plugin-import/compare/v2.27.2...v2.27.3
|
1556
|
+
[2.27.2]: https://github.com/import-js/eslint-plugin-import/compare/v2.27.1...v2.27.2
|
1557
|
+
[2.27.1]: https://github.com/import-js/eslint-plugin-import/compare/v2.27.0...v2.27.1
|
1558
|
+
[2.27.0]: https://github.com/import-js/eslint-plugin-import/compare/v2.26.0...v2.27.0
|
1559
|
+
[2.26.0]: https://github.com/import-js/eslint-plugin-import/compare/v2.25.4...v2.26.0
|
1560
|
+
[2.25.4]: https://github.com/import-js/eslint-plugin-import/compare/v2.25.3...v2.25.4
|
1561
|
+
[2.25.3]: https://github.com/import-js/eslint-plugin-import/compare/v2.25.2...v2.25.3
|
1562
|
+
[2.25.2]: https://github.com/import-js/eslint-plugin-import/compare/v2.25.1...v2.25.2
|
1563
|
+
[2.25.1]: https://github.com/import-js/eslint-plugin-import/compare/v2.25.0...v2.25.1
|
1564
|
+
[2.25.0]: https://github.com/import-js/eslint-plugin-import/compare/v2.24.2...v2.25.0
|
1565
|
+
[2.24.2]: https://github.com/import-js/eslint-plugin-import/compare/v2.24.1...v2.24.2
|
1566
|
+
[2.24.1]: https://github.com/import-js/eslint-plugin-import/compare/v2.24.0...v2.24.1
|
1567
|
+
[2.24.0]: https://github.com/import-js/eslint-plugin-import/compare/v2.23.4...v2.24.0
|
1568
|
+
[2.23.4]: https://github.com/import-js/eslint-plugin-import/compare/v2.23.3...v2.23.4
|
1569
|
+
[2.23.3]: https://github.com/import-js/eslint-plugin-import/compare/v2.23.2...v2.23.3
|
1570
|
+
[2.23.2]: https://github.com/import-js/eslint-plugin-import/compare/v2.23.1...v2.23.2
|
1571
|
+
[2.23.1]: https://github.com/import-js/eslint-plugin-import/compare/v2.23.0...v2.23.1
|
1572
|
+
[2.23.0]: https://github.com/import-js/eslint-plugin-import/compare/v2.22.1...v2.23.0
|
1573
|
+
[2.22.1]: https://github.com/import-js/eslint-plugin-import/compare/v2.22.0...v2.22.1
|
1574
|
+
[2.22.0]: https://github.com/import-js/eslint-plugin-import/compare/v2.21.1...v2.22.0
|
1575
|
+
[2.21.2]: https://github.com/import-js/eslint-plugin-import/compare/v2.21.1...v2.21.2
|
1576
|
+
[2.21.1]: https://github.com/import-js/eslint-plugin-import/compare/v2.21.0...v2.21.1
|
1577
|
+
[2.21.0]: https://github.com/import-js/eslint-plugin-import/compare/v2.20.2...v2.21.0
|
1578
|
+
[2.20.1]: https://github.com/import-js/eslint-plugin-import/compare/v2.20.1...v2.20.2
|
1579
|
+
[2.20.0]: https://github.com/import-js/eslint-plugin-import/compare/v2.20.0...v2.20.1
|
1580
|
+
[2.19.1]: https://github.com/import-js/eslint-plugin-import/compare/v2.19.1...v2.20.0
|
1581
|
+
[2.19.1]: https://github.com/import-js/eslint-plugin-import/compare/v2.19.0...v2.19.1
|
1582
|
+
[2.19.0]: https://github.com/import-js/eslint-plugin-import/compare/v2.18.2...v2.19.0
|
1583
|
+
[2.18.2]: https://github.com/import-js/eslint-plugin-import/compare/v2.18.1...v2.18.2
|
1584
|
+
[2.18.1]: https://github.com/import-js/eslint-plugin-import/compare/v2.18.0...v2.18.1
|
1585
|
+
[2.18.0]: https://github.com/import-js/eslint-plugin-import/compare/v2.17.3...v2.18.0
|
1586
|
+
[2.17.3]: https://github.com/import-js/eslint-plugin-import/compare/v2.17.2...v2.17.3
|
1587
|
+
[2.17.2]: https://github.com/import-js/eslint-plugin-import/compare/v2.17.1...v2.17.2
|
1588
|
+
[2.17.1]: https://github.com/import-js/eslint-plugin-import/compare/v2.17.0...v2.17.1
|
1589
|
+
[2.17.0]: https://github.com/import-js/eslint-plugin-import/compare/v2.16.0...v2.17.0
|
1590
|
+
[2.16.0]: https://github.com/import-js/eslint-plugin-import/compare/v2.15.0...v2.16.0
|
1591
|
+
[2.15.0]: https://github.com/import-js/eslint-plugin-import/compare/v2.14.0...v2.15.0
|
1592
|
+
[2.14.0]: https://github.com/import-js/eslint-plugin-import/compare/v2.13.0...v2.14.0
|
1593
|
+
[2.13.0]: https://github.com/import-js/eslint-plugin-import/compare/v2.12.0...v2.13.0
|
1594
|
+
[2.12.0]: https://github.com/import-js/eslint-plugin-import/compare/v2.11.0...v2.12.0
|
1595
|
+
[2.11.0]: https://github.com/import-js/eslint-plugin-import/compare/v2.10.0...v2.11.0
|
1596
|
+
[2.10.0]: https://github.com/import-js/eslint-plugin-import/compare/v2.9.0...v2.10.0
|
1597
|
+
[2.9.0]: https://github.com/import-js/eslint-plugin-import/compare/v2.8.0...v2.9.0
|
1598
|
+
[2.8.0]: https://github.com/import-js/eslint-plugin-import/compare/v2.7.0...v2.8.0
|
1599
|
+
[2.7.0]: https://github.com/import-js/eslint-plugin-import/compare/v2.6.1...v2.7.0
|
1600
|
+
[2.6.1]: https://github.com/import-js/eslint-plugin-import/compare/v2.6.0...v2.6.1
|
1601
|
+
[2.6.0]: https://github.com/import-js/eslint-plugin-import/compare/v2.5.0...v2.6.0
|
1602
|
+
[2.5.0]: https://github.com/import-js/eslint-plugin-import/compare/v2.4.0...v2.5.0
|
1603
|
+
[2.4.0]: https://github.com/import-js/eslint-plugin-import/compare/v2.3.0...v2.4.0
|
1604
|
+
[2.3.0]: https://github.com/import-js/eslint-plugin-import/compare/v2.2.0...v2.3.0
|
1605
|
+
[2.2.0]: https://github.com/import-js/eslint-plugin-import/compare/v2.1.0...v2.2.0
|
1606
|
+
[2.1.0]: https://github.com/import-js/eslint-plugin-import/compare/v2.0.1...v2.1.0
|
1607
|
+
[2.0.1]: https://github.com/import-js/eslint-plugin-import/compare/v2.0.0...v2.0.1
|
1608
|
+
[2.0.0]: https://github.com/import-js/eslint-plugin-import/compare/v1.16.0...v2.0.0
|
1609
|
+
[1.16.0]: https://github.com/import-js/eslint-plugin-import/compare/v1.15.0...v1.16.0
|
1610
|
+
[1.15.0]: https://github.com/import-js/eslint-plugin-import/compare/v1.14.0...v1.15.0
|
1611
|
+
[1.14.0]: https://github.com/import-js/eslint-plugin-import/compare/v1.13.0...v1.14.0
|
1612
|
+
[1.13.0]: https://github.com/import-js/eslint-plugin-import/compare/v1.12.0...v1.13.0
|
1613
|
+
[1.12.0]: https://github.com/import-js/eslint-plugin-import/compare/v1.11.1...v1.12.0
|
1614
|
+
[1.11.1]: https://github.com/import-js/eslint-plugin-import/compare/v1.11.0...v1.11.1
|
1615
|
+
[1.11.0]: https://github.com/import-js/eslint-plugin-import/compare/v1.10.3...v1.11.0
|
1616
|
+
[1.10.3]: https://github.com/import-js/eslint-plugin-import/compare/v1.10.2...v1.10.3
|
1617
|
+
[1.10.2]: https://github.com/import-js/eslint-plugin-import/compare/v1.10.1...v1.10.2
|
1618
|
+
[1.10.1]: https://github.com/import-js/eslint-plugin-import/compare/v1.10.0...v1.10.1
|
1619
|
+
[1.10.0]: https://github.com/import-js/eslint-plugin-import/compare/v1.9.2...v1.10.0
|
1620
|
+
[1.9.2]: https://github.com/import-js/eslint-plugin-import/compare/v1.9.1...v1.9.2
|
1621
|
+
[1.9.1]: https://github.com/import-js/eslint-plugin-import/compare/v1.9.0...v1.9.1
|
1622
|
+
[1.9.0]: https://github.com/import-js/eslint-plugin-import/compare/v1.8.1...v1.9.0
|
1623
|
+
[1.8.1]: https://github.com/import-js/eslint-plugin-import/compare/v1.8.0...v1.8.1
|
1624
|
+
[1.8.0]: https://github.com/import-js/eslint-plugin-import/compare/v1.7.0...v1.8.0
|
1625
|
+
[1.7.0]: https://github.com/import-js/eslint-plugin-import/compare/v1.6.1...v1.7.0
|
1626
|
+
[1.6.1]: https://github.com/import-js/eslint-plugin-import/compare/v1.6.0...v1.6.1
|
1627
|
+
[1.6.0]: https://github.com/import-js/eslint-plugin-import/compare/v1.5.0...1.6.0
|
1628
|
+
[1.5.0]: https://github.com/import-js/eslint-plugin-import/compare/v1.4.0...v1.5.0
|
1629
|
+
[1.4.0]: https://github.com/import-js/eslint-plugin-import/compare/v1.3.0...v1.4.0
|
1630
|
+
[1.3.0]: https://github.com/import-js/eslint-plugin-import/compare/v1.2.0...v1.3.0
|
1631
|
+
[1.2.0]: https://github.com/import-js/eslint-plugin-import/compare/v1.1.0...v1.2.0
|
1632
|
+
[1.1.0]: https://github.com/import-js/eslint-plugin-import/compare/v1.0.4...v1.1.0
|
1633
|
+
[1.0.4]: https://github.com/import-js/eslint-plugin-import/compare/v1.0.3...v1.0.4
|
1634
|
+
[1.0.3]: https://github.com/import-js/eslint-plugin-import/compare/v1.0.2...v1.0.3
|
1635
|
+
[1.0.2]: https://github.com/import-js/eslint-plugin-import/compare/v1.0.1...v1.0.2
|
1636
|
+
[1.0.1]: https://github.com/import-js/eslint-plugin-import/compare/v1.0.0...v1.0.1
|
1637
|
+
[1.0.0]: https://github.com/import-js/eslint-plugin-import/compare/v1.0.0-beta.0...v1.0.0
|
1638
|
+
[1.0.0-beta.0]: https://github.com/import-js/eslint-plugin-import/compare/v0.13.0...v1.0.0-beta.0
|
1639
|
+
[0.13.0]: https://github.com/import-js/eslint-plugin-import/compare/v0.12.1...v0.13.0
|
1640
|
+
[0.12.2]: https://github.com/import-js/eslint-plugin-import/compare/v0.12.1...v0.12.2
|
1641
|
+
[0.12.1]: https://github.com/import-js/eslint-plugin-import/compare/v0.12.0...v0.12.1
|
1642
|
+
[0.12.0]: https://github.com/import-js/eslint-plugin-import/compare/v0.11.0...v0.12.0
|
1643
|
+
[0.11.0]: https://github.com/import-js/eslint-plugin-import/compare/v0.10.1...v0.11.0
|
1644
|
+
|
1645
|
+
[@1pete]: https://github.com/1pete
|
1646
|
+
[@3nuc]: https://github.com/3nuc
|
1647
|
+
[@aamulumi]: https://github.com/aamulumi
|
1648
|
+
[@aberezkin]: https://github.com/aberezkin
|
1649
|
+
[@adamborowski]: https://github.com/adamborowski
|
1650
|
+
[@adjerbetian]: https://github.com/adjerbetian
|
1651
|
+
[@AdriAt360]: https://github.com/AdriAt360
|
1652
|
+
[@ai]: https://github.com/ai
|
1653
|
+
[@aladdin-add]: https://github.com/aladdin-add
|
1654
|
+
[@alex-page]: https://github.com/alex-page
|
1655
|
+
[@alexgorbatchev]: https://github.com/alexgorbatchev
|
1656
|
+
[@andreubotella]: https://github.com/andreubotella
|
1657
|
+
[@AndrewLeedham]: https://github.com/AndrewLeedham
|
1658
|
+
[@andyogo]: https://github.com/andyogo
|
1659
|
+
[@aravindet]: https://github.com/aravindet
|
1660
|
+
[@arvigeus]: https://github.com/arvigeus
|
1661
|
+
[@asapach]: https://github.com/asapach
|
1662
|
+
[@astorije]: https://github.com/astorije
|
1663
|
+
[@atav32]: https://github.com/atav32
|
1664
|
+
[@atikenny]: https://github.com/atikenny
|
1665
|
+
[@atos1990]: https://github.com/atos1990
|
1666
|
+
[@azyzz228]: https://github.com/azyzz228
|
1667
|
+
[@barbogast]: https://github.com/barbogast
|
1668
|
+
[@BarryThePenguin]: https://github.com/BarryThePenguin
|
1669
|
+
[@be5invis]: https://github.com/be5invis
|
1670
|
+
[@beatrizrezener]: https://github.com/beatrizrezener
|
1671
|
+
[@benasher44]: https://github.com/benasher44
|
1672
|
+
[@benkrejci]: https://github.com/benkrejci
|
1673
|
+
[@benmosher]: https://github.com/benmosher
|
1674
|
+
[@benmunro]: https://github.com/benmunro
|
1675
|
+
[@BenoitZugmeyer]: https://github.com/BenoitZugmeyer
|
1676
|
+
[@bertyhell]: https://github.com/bertyhell
|
1677
|
+
[@bicstone]: https://github.com/bicstone
|
1678
|
+
[@Blasz]: https://github.com/Blasz
|
1679
|
+
[@bmish]: https://github.com/bmish
|
1680
|
+
[@borisyankov]: https://github.com/borisyankov
|
1681
|
+
[@bradennapier]: https://github.com/bradennapier
|
1682
|
+
[@bradzacher]: https://github.com/bradzacher
|
1683
|
+
[@brendo]: https://github.com/brendo
|
1684
|
+
[@brettz9]: https://github.com/brettz9
|
1685
|
+
[@Chamion]: https://github.com/Chamion
|
1686
|
+
[@charlessuh]: https://github.com/charlessuh
|
1687
|
+
[@charpeni]: https://github.com/charpeni
|
1688
|
+
[@cherryblossom000]: https://github.com/cherryblossom000
|
1689
|
+
[@chrislloyd]: https://github.com/chrislloyd
|
1690
|
+
[@christianvuerings]: https://github.com/christianvuerings
|
1691
|
+
[@christophercurrie]: https://github.com/christophercurrie
|
1692
|
+
[@cristobal]: https://github.com/cristobal
|
1693
|
+
[@DamienCassou]: https://github.com/DamienCassou
|
1694
|
+
[@danny-andrews]: https://github.com/dany-andrews
|
1695
|
+
[@darkartur]: https://github.com/darkartur
|
1696
|
+
[@davidbonnet]: https://github.com/davidbonnet
|
1697
|
+
[@dbrewer5]: https://github.com/dbrewer5
|
1698
|
+
[@devinrhode2]: https://github.com/devinrhode2
|
1699
|
+
[@devongovett]: https://github.com/devongovett
|
1700
|
+
[@dmnd]: https://github.com/dmnd
|
1701
|
+
[@duncanbeevers]: https://github.com/duncanbeevers
|
1702
|
+
[@dwardu]: https://github.com/dwardu
|
1703
|
+
[@echenley]: https://github.com/echenley
|
1704
|
+
[@edemaine]: https://github.com/edemaine
|
1705
|
+
[@eelyafi]: https://github.com/eelyafi
|
1706
|
+
[@Ephem]: https://github.com/Ephem
|
1707
|
+
[@ephys]: https://github.com/ephys
|
1708
|
+
[@eps1lon]: https://github.com/eps1lon
|
1709
|
+
[@ernestostifano]: https://github.com/ernestostifano
|
1710
|
+
[@ertrzyiks]: https://github.com/ertrzyiks
|
1711
|
+
[@fa93hws]: https://github.com/fa93hws
|
1712
|
+
[@Fdawgs]: https://github.com/Fdawgs
|
1713
|
+
[@fengkfengk]: https://github.com/fengkfengk
|
1714
|
+
[@fernandopasik]: https://github.com/fernandopasik
|
1715
|
+
[@feychenie]: https://github.com/feychenie
|
1716
|
+
[@fisker]: https://github.com/fisker
|
1717
|
+
[@FloEdelmann]: https://github.com/FloEdelmann
|
1718
|
+
[@fooloomanzoo]: https://github.com/fooloomanzoo
|
1719
|
+
[@foray1010]: https://github.com/foray1010
|
1720
|
+
[@forivall]: https://github.com/forivall
|
1721
|
+
[@fsmaia]: https://github.com/fsmaia
|
1722
|
+
[@fson]: https://github.com/fson
|
1723
|
+
[@futpib]: https://github.com/futpib
|
1724
|
+
[@gajus]: https://github.com/gajus
|
1725
|
+
[@gausie]: https://github.com/gausie
|
1726
|
+
[@gavriguy]: https://github.com/gavriguy
|
1727
|
+
[@georeith]: https://github.com/georeith
|
1728
|
+
[@giodamelio]: https://github.com/giodamelio
|
1729
|
+
[@gnprice]: https://github.com/gnprice
|
1730
|
+
[@golergka]: https://github.com/golergka
|
1731
|
+
[@golopot]: https://github.com/golopot
|
1732
|
+
[@GoodForOneFare]: https://github.com/GoodForOneFare
|
1733
|
+
[@graingert]: https://github.com/graingert
|
1734
|
+
[@grit96]: https://github.com/grit96
|
1735
|
+
[@guilhermelimak]: https://github.com/guilhermelimak
|
1736
|
+
[@guillaumewuip]: https://github.com/guillaumewuip
|
1737
|
+
[@hayes]: https://github.com/hayes
|
1738
|
+
[@himynameisdave]: https://github.com/himynameisdave
|
1739
|
+
[@hulkish]: https://github.com/hulkish
|
1740
|
+
[@hyperupcall]: https://github.com/hyperupcall
|
1741
|
+
[@Hypnosphi]: https://github.com/Hypnosphi
|
1742
|
+
[@isiahmeadows]: https://github.com/isiahmeadows
|
1743
|
+
[@IvanGoncharov]: https://github.com/IvanGoncharov
|
1744
|
+
[@ivo-stefchev]: https://github.com/ivo-stefchev
|
1745
|
+
[@jablko]: https://github.com/jablko
|
1746
|
+
[@jakubsta]: https://github.com/jakubsta
|
1747
|
+
[@jeffshaver]: https://github.com/jeffshaver
|
1748
|
+
[@jf248]: https://github.com/jf248
|
1749
|
+
[@jfmengels]: https://github.com/jfmengels
|
1750
|
+
[@jimbolla]: https://github.com/jimbolla
|
1751
|
+
[@jkimbo]: https://github.com/jkimbo
|
1752
|
+
[@joaovieira]: https://github.com/joaovieira
|
1753
|
+
[@joe-matsec]: https://github.com/joe-matsec
|
1754
|
+
[@johndevedu]: https://github.com/johndevedu
|
1755
|
+
[@johnthagen]: https://github.com/johnthagen
|
1756
|
+
[@jonboiser]: https://github.com/jonboiser
|
1757
|
+
[@josh]: https://github.com/josh
|
1758
|
+
[@JounQin]: https://github.com/JounQin
|
1759
|
+
[@jquense]: https://github.com/jquense
|
1760
|
+
[@jseminck]: https://github.com/jseminck
|
1761
|
+
[@julien1619]: https://github.com/julien1619
|
1762
|
+
[@justinanastos]: https://github.com/justinanastos
|
1763
|
+
[@k15a]: https://github.com/k15a
|
1764
|
+
[@kentcdodds]: https://github.com/kentcdodds
|
1765
|
+
[@kevin940726]: https://github.com/kevin940726
|
1766
|
+
[@kgregory]: https://github.com/kgregory
|
1767
|
+
[@kirill-konshin]: https://github.com/kirill-konshin
|
1768
|
+
[@kiwka]: https://github.com/kiwka
|
1769
|
+
[@klimashkin]: https://github.com/klimashkin
|
1770
|
+
[@kmui2]: https://github.com/kmui2
|
1771
|
+
[@knpwrs]: https://github.com/knpwrs
|
1772
|
+
[@KostyaZgara]: https://github.com/KostyaZgara
|
1773
|
+
[@kylemh]: https://github.com/kylemh
|
1774
|
+
[@laysent]: https://github.com/laysent
|
1775
|
+
[@laurens-dg]: https://github.com/laurens-dg
|
1776
|
+
[@le0nik]: https://github.com/le0nik
|
1777
|
+
[@leipert]: https://github.com/leipert
|
1778
|
+
[@lemonmade]: https://github.com/lemonmade
|
1779
|
+
[@lencioni]: https://github.com/lencioni
|
1780
|
+
[@leonardodino]: https://github.com/leonardodino
|
1781
|
+
[@Librazy]: https://github.com/Librazy
|
1782
|
+
[@liby]: https://github.com/liby
|
1783
|
+
[@lilling]: https://github.com/lilling
|
1784
|
+
[@ljharb]: https://github.com/ljharb
|
1785
|
+
[@ljqx]: https://github.com/ljqx
|
1786
|
+
[@lo1tuma]: https://github.com/lo1tuma
|
1787
|
+
[@loganfsmyth]: https://github.com/loganfsmyth
|
1788
|
+
[@luczsoma]: https://github.com/luczsoma
|
1789
|
+
[@ludofischer]: https://github.com/ludofischer
|
1790
|
+
[@Lukas-Kullmann]: https://github.com/Lukas-Kullmann
|
1791
|
+
[@lukeapage]: https://github.com/lukeapage
|
1792
|
+
[@lydell]: https://github.com/lydell
|
1793
|
+
[@magarcia]: https://github.com/magarcia
|
1794
|
+
[@Mairu]: https://github.com/Mairu
|
1795
|
+
[@malykhinvi]: https://github.com/malykhinvi
|
1796
|
+
[@manovotny]: https://github.com/manovotny
|
1797
|
+
[@manuth]: https://github.com/manuth
|
1798
|
+
[@marcusdarmstrong]: https://github.com/marcusdarmstrong
|
1799
|
+
[@mastilver]: https://github.com/mastilver
|
1800
|
+
[@mathieudutour]: https://github.com/mathieudutour
|
1801
|
+
[@MatthiasKunnen]: https://github.com/MatthiasKunnen
|
1802
|
+
[@mattijsbliek]: https://github.com/mattijsbliek
|
1803
|
+
[@Maxim-Mazurok]: https://github.com/Maxim-Mazurok
|
1804
|
+
[@maxkomarychev]: https://github.com/maxkomarychev
|
1805
|
+
[@maxmalov]: https://github.com/maxmalov
|
1806
|
+
[@meowtec]: https://github.com/meowtec
|
1807
|
+
[@mgwalker]: https://github.com/mgwalker
|
1808
|
+
[@mhmadhamster]: https://github.com/MhMadHamster
|
1809
|
+
[@MikeyBeLike]: https://github.com/MikeyBeLike
|
1810
|
+
[@mpint]: https://github.com/mpint
|
1811
|
+
[@mplewis]: https://github.com/mplewis
|
1812
|
+
[@mrmckeb]: https://github.com/mrmckeb
|
1813
|
+
[@msvab]: https://github.com/msvab
|
1814
|
+
[@mx-bernhard]: https://github.com/mx-bernhard
|
1815
|
+
[@Nfinished]: https://github.com/Nfinished
|
1816
|
+
[@nickofthyme]: https://github.com/nickofthyme
|
1817
|
+
[@nicolashenry]: https://github.com/nicolashenry
|
1818
|
+
[@noelebrun]: https://github.com/noelebrun
|
1819
|
+
[@ntdb]: https://github.com/ntdb
|
1820
|
+
[@nwalters512]: https://github.com/nwalters512
|
1821
|
+
[@ombene]: https://github.com/ombene
|
1822
|
+
[@ota-meshi]: https://github.com/ota-meshi
|
1823
|
+
[@OutdatedVersion]: https://github.com/OutdatedVersion
|
1824
|
+
[@panrafal]: https://github.com/panrafal
|
1825
|
+
[@paztis]: https://github.com/paztis
|
1826
|
+
[@pcorpet]: https://github.com/pcorpet
|
1827
|
+
[@Pearce-Ropion]: https://github.com/Pearce-Ropion
|
1828
|
+
[@Pessimistress]: https://github.com/Pessimistress
|
1829
|
+
[@pmcelhaney]: https://github.com/pmcelhaney
|
1830
|
+
[@preco21]: https://github.com/preco21
|
1831
|
+
[@pri1311]: https://github.com/pri1311
|
1832
|
+
[@ProdigySim]: https://github.com/ProdigySim
|
1833
|
+
[@pzhine]: https://github.com/pzhine
|
1834
|
+
[@ramasilveyra]: https://github.com/ramasilveyra
|
1835
|
+
[@randallreedjr]: https://github.com/randallreedjr
|
1836
|
+
[@redbugz]: https://github.com/redbugz
|
1837
|
+
[@remcohaszing]: https://github.com/remcohaszing
|
1838
|
+
[@rfermann]: https://github.com/rfermann
|
1839
|
+
[@rhettlivingston]: https://github.com/rhettlivingston
|
1840
|
+
[@rhys-vdw]: https://github.com/rhys-vdw
|
1841
|
+
[@richardxia]: https://github.com/richardxia
|
1842
|
+
[@robertrossmann]: https://github.com/robertrossmann
|
1843
|
+
[@rosswarren]: https://github.com/rosswarren
|
1844
|
+
[@rperello]: https://github.com/rperello
|
1845
|
+
[@rsolomon]: https://github.com/rsolomon
|
1846
|
+
[@s-h-a-d-o-w]: https://github.com/s-h-a-d-o-w
|
1847
|
+
[@saschanaz]: https://github.com/saschanaz
|
1848
|
+
[@schmidsi]: https://github.com/schmidsi
|
1849
|
+
[@schmod]: https://github.com/schmod
|
1850
|
+
[@Schweinepriester]: https://github.com/Schweinepriester
|
1851
|
+
[@scottnonnenberg]: https://github.com/scottnonnenberg
|
1852
|
+
[@sergei-startsev]: https://github.com/sergei-startsev
|
1853
|
+
[@sharmilajesupaul]: https://github.com/sharmilajesupaul
|
1854
|
+
[@sheepsteak]: https://github.com/sheepsteak
|
1855
|
+
[@silviogutierrez]: https://github.com/silviogutierrez
|
1856
|
+
[@SimenB]: https://github.com/SimenB
|
1857
|
+
[@simmo]: https://github.com/simmo
|
1858
|
+
[@sindresorhus]: https://github.com/sindresorhus
|
1859
|
+
[@singles]: https://github.com/singles
|
1860
|
+
[@skozin]: https://github.com/skozin
|
1861
|
+
[@skyrpex]: https://github.com/skyrpex
|
1862
|
+
[@snewcomer]: https://github.com/snewcomer
|
1863
|
+
[@sompylasar]: https://github.com/sompylasar
|
1864
|
+
[@soryy708]: https://github.com/soryy708
|
1865
|
+
[@sosukesuzuki]: https://github.com/sosukesuzuki
|
1866
|
+
[@spalger]: https://github.com/spalger
|
1867
|
+
[@st-sloth]: https://github.com/st-sloth
|
1868
|
+
[@stekycz]: https://github.com/stekycz
|
1869
|
+
[@stenin-nikita]: https://github.com/stenin-nikita
|
1870
|
+
[@stephtr]: https://github.com/stephtr
|
1871
|
+
[@straub]: https://github.com/straub
|
1872
|
+
[@strawbrary]: https://github.com/strawbrary
|
1873
|
+
[@stropho]: https://github.com/stropho
|
1874
|
+
[@sveyret]: https://github.com/sveyret
|
1875
|
+
[@swernerx]: https://github.com/swernerx
|
1876
|
+
[@syymza]: https://github.com/syymza
|
1877
|
+
[@taion]: https://github.com/taion
|
1878
|
+
[@TakeScoop]: https://github.com/TakeScoop
|
1879
|
+
[@tapayne88]: https://github.com/tapayne88
|
1880
|
+
[@Taranys]: https://github.com/Taranys
|
1881
|
+
[@taye]: https://github.com/taye
|
1882
|
+
[@TheCrueltySage]: https://github.com/TheCrueltySage
|
1883
|
+
[@TheJaredWilcurt]: https://github.com/TheJaredWilcurt
|
1884
|
+
[@tihonove]: https://github.com/tihonove
|
1885
|
+
[@timkraut]: https://github.com/timkraut
|
1886
|
+
[@tizmagik]: https://github.com/tizmagik
|
1887
|
+
[@tomprats]: https://github.com/tomprats
|
1888
|
+
[@TrevorBurnham]: https://github.com/TrevorBurnham
|
1889
|
+
[@ttmarek]: https://github.com/ttmarek
|
1890
|
+
[@vikr01]: https://github.com/vikr01
|
1891
|
+
[@wenfangdu]: https://github.com/wenfangdu
|
1892
|
+
[@wKich]: https://github.com/wKich
|
1893
|
+
[@wschurman]: https://github.com/wschurman
|
1894
|
+
[@wtgtybhertgeghgtwtg]: https://github.com/wtgtybhertgeghgtwtg
|
1895
|
+
[@xM8WVqaG]: https://github.com/xM8WVqaG
|
1896
|
+
[@xpl]: https://github.com/xpl
|
1897
|
+
[@yndajas]: https://github.com/yndajas
|
1898
|
+
[@yordis]: https://github.com/yordis
|
1899
|
+
[@zloirock]: https://github.com/zloirock
|