brut-js 0.16.0 → 0.17.0
This diff represents the content of publicly available package versions that have been released to one of the supported registries. The information contained in this diff is provided for informational purposes only and reflects changes between package versions as they appear in their respective public registries.
- package/docs/node_modules/.package-lock.json +336 -0
- package/docs/node_modules/@babel/helper-string-parser/LICENSE +22 -0
- package/docs/node_modules/@babel/helper-string-parser/README.md +19 -0
- package/docs/node_modules/@babel/helper-string-parser/lib/index.js +295 -0
- package/docs/node_modules/@babel/helper-string-parser/lib/index.js.map +1 -0
- package/docs/node_modules/@babel/helper-string-parser/package.json +31 -0
- package/docs/node_modules/@babel/helper-validator-identifier/LICENSE +22 -0
- package/docs/node_modules/@babel/helper-validator-identifier/README.md +19 -0
- package/docs/node_modules/@babel/helper-validator-identifier/lib/identifier.js +70 -0
- package/docs/node_modules/@babel/helper-validator-identifier/lib/identifier.js.map +1 -0
- package/docs/node_modules/@babel/helper-validator-identifier/lib/index.js +57 -0
- package/docs/node_modules/@babel/helper-validator-identifier/lib/index.js.map +1 -0
- package/docs/node_modules/@babel/helper-validator-identifier/lib/keyword.js +35 -0
- package/docs/node_modules/@babel/helper-validator-identifier/lib/keyword.js.map +1 -0
- package/docs/node_modules/@babel/helper-validator-identifier/package.json +31 -0
- package/docs/node_modules/@babel/parser/CHANGELOG.md +1073 -0
- package/docs/node_modules/@babel/parser/LICENSE +19 -0
- package/docs/node_modules/@babel/parser/README.md +19 -0
- package/docs/node_modules/@babel/parser/bin/babel-parser.js +15 -0
- package/docs/node_modules/@babel/parser/lib/index.js +14504 -0
- package/docs/node_modules/@babel/parser/lib/index.js.map +1 -0
- package/docs/node_modules/@babel/parser/package.json +50 -0
- package/docs/node_modules/@babel/parser/typings/babel-parser.d.ts +235 -0
- package/docs/node_modules/@babel/types/LICENSE +22 -0
- package/docs/node_modules/@babel/types/README.md +19 -0
- package/docs/node_modules/@babel/types/lib/asserts/assertNode.js +16 -0
- package/docs/node_modules/@babel/types/lib/asserts/assertNode.js.map +1 -0
- package/docs/node_modules/@babel/types/lib/asserts/generated/index.js +1243 -0
- package/docs/node_modules/@babel/types/lib/asserts/generated/index.js.map +1 -0
- package/docs/node_modules/@babel/types/lib/ast-types/generated/index.js +3 -0
- package/docs/node_modules/@babel/types/lib/ast-types/generated/index.js.map +1 -0
- package/docs/node_modules/@babel/types/lib/builders/flow/createFlowUnionType.js +18 -0
- package/docs/node_modules/@babel/types/lib/builders/flow/createFlowUnionType.js.map +1 -0
- package/docs/node_modules/@babel/types/lib/builders/flow/createTypeAnnotationBasedOnTypeof.js +31 -0
- package/docs/node_modules/@babel/types/lib/builders/flow/createTypeAnnotationBasedOnTypeof.js.map +1 -0
- package/docs/node_modules/@babel/types/lib/builders/generated/index.js +29 -0
- package/docs/node_modules/@babel/types/lib/builders/generated/index.js.map +1 -0
- package/docs/node_modules/@babel/types/lib/builders/generated/lowercase.js +2886 -0
- package/docs/node_modules/@babel/types/lib/builders/generated/lowercase.js.map +1 -0
- package/docs/node_modules/@babel/types/lib/builders/generated/uppercase.js +273 -0
- package/docs/node_modules/@babel/types/lib/builders/generated/uppercase.js.map +1 -0
- package/docs/node_modules/@babel/types/lib/builders/productions.js +12 -0
- package/docs/node_modules/@babel/types/lib/builders/productions.js.map +1 -0
- package/docs/node_modules/@babel/types/lib/builders/react/buildChildren.js +24 -0
- package/docs/node_modules/@babel/types/lib/builders/react/buildChildren.js.map +1 -0
- package/docs/node_modules/@babel/types/lib/builders/typescript/createTSUnionType.js +22 -0
- package/docs/node_modules/@babel/types/lib/builders/typescript/createTSUnionType.js.map +1 -0
- package/docs/node_modules/@babel/types/lib/builders/validateNode.js +21 -0
- package/docs/node_modules/@babel/types/lib/builders/validateNode.js.map +1 -0
- package/docs/node_modules/@babel/types/lib/clone/clone.js +12 -0
- package/docs/node_modules/@babel/types/lib/clone/clone.js.map +1 -0
- package/docs/node_modules/@babel/types/lib/clone/cloneDeep.js +12 -0
- package/docs/node_modules/@babel/types/lib/clone/cloneDeep.js.map +1 -0
- package/docs/node_modules/@babel/types/lib/clone/cloneDeepWithoutLoc.js +12 -0
- package/docs/node_modules/@babel/types/lib/clone/cloneDeepWithoutLoc.js.map +1 -0
- package/docs/node_modules/@babel/types/lib/clone/cloneNode.js +107 -0
- package/docs/node_modules/@babel/types/lib/clone/cloneNode.js.map +1 -0
- package/docs/node_modules/@babel/types/lib/clone/cloneWithoutLoc.js +12 -0
- package/docs/node_modules/@babel/types/lib/clone/cloneWithoutLoc.js.map +1 -0
- package/docs/node_modules/@babel/types/lib/comments/addComment.js +15 -0
- package/docs/node_modules/@babel/types/lib/comments/addComment.js.map +1 -0
- package/docs/node_modules/@babel/types/lib/comments/addComments.js +22 -0
- package/docs/node_modules/@babel/types/lib/comments/addComments.js.map +1 -0
- package/docs/node_modules/@babel/types/lib/comments/inheritInnerComments.js +12 -0
- package/docs/node_modules/@babel/types/lib/comments/inheritInnerComments.js.map +1 -0
- package/docs/node_modules/@babel/types/lib/comments/inheritLeadingComments.js +12 -0
- package/docs/node_modules/@babel/types/lib/comments/inheritLeadingComments.js.map +1 -0
- package/docs/node_modules/@babel/types/lib/comments/inheritTrailingComments.js +12 -0
- package/docs/node_modules/@babel/types/lib/comments/inheritTrailingComments.js.map +1 -0
- package/docs/node_modules/@babel/types/lib/comments/inheritsComments.js +17 -0
- package/docs/node_modules/@babel/types/lib/comments/inheritsComments.js.map +1 -0
- package/docs/node_modules/@babel/types/lib/comments/removeComments.js +15 -0
- package/docs/node_modules/@babel/types/lib/comments/removeComments.js.map +1 -0
- package/docs/node_modules/@babel/types/lib/constants/generated/index.js +59 -0
- package/docs/node_modules/@babel/types/lib/constants/generated/index.js.map +1 -0
- package/docs/node_modules/@babel/types/lib/constants/index.js +33 -0
- package/docs/node_modules/@babel/types/lib/constants/index.js.map +1 -0
- package/docs/node_modules/@babel/types/lib/converters/ensureBlock.js +14 -0
- package/docs/node_modules/@babel/types/lib/converters/ensureBlock.js.map +1 -0
- package/docs/node_modules/@babel/types/lib/converters/gatherSequenceExpressions.js +66 -0
- package/docs/node_modules/@babel/types/lib/converters/gatherSequenceExpressions.js.map +1 -0
- package/docs/node_modules/@babel/types/lib/converters/toBindingIdentifierName.js +14 -0
- package/docs/node_modules/@babel/types/lib/converters/toBindingIdentifierName.js.map +1 -0
- package/docs/node_modules/@babel/types/lib/converters/toBlock.js +29 -0
- package/docs/node_modules/@babel/types/lib/converters/toBlock.js.map +1 -0
- package/docs/node_modules/@babel/types/lib/converters/toComputedKey.js +14 -0
- package/docs/node_modules/@babel/types/lib/converters/toComputedKey.js.map +1 -0
- package/docs/node_modules/@babel/types/lib/converters/toExpression.js +28 -0
- package/docs/node_modules/@babel/types/lib/converters/toExpression.js.map +1 -0
- package/docs/node_modules/@babel/types/lib/converters/toIdentifier.js +25 -0
- package/docs/node_modules/@babel/types/lib/converters/toIdentifier.js.map +1 -0
- package/docs/node_modules/@babel/types/lib/converters/toKeyAlias.js +38 -0
- package/docs/node_modules/@babel/types/lib/converters/toKeyAlias.js.map +1 -0
- package/docs/node_modules/@babel/types/lib/converters/toSequenceExpression.js +20 -0
- package/docs/node_modules/@babel/types/lib/converters/toSequenceExpression.js.map +1 -0
- package/docs/node_modules/@babel/types/lib/converters/toStatement.js +39 -0
- package/docs/node_modules/@babel/types/lib/converters/toStatement.js.map +1 -0
- package/docs/node_modules/@babel/types/lib/converters/valueToNode.js +85 -0
- package/docs/node_modules/@babel/types/lib/converters/valueToNode.js.map +1 -0
- package/docs/node_modules/@babel/types/lib/definitions/core.js +1664 -0
- package/docs/node_modules/@babel/types/lib/definitions/core.js.map +1 -0
- package/docs/node_modules/@babel/types/lib/definitions/deprecated-aliases.js +11 -0
- package/docs/node_modules/@babel/types/lib/definitions/deprecated-aliases.js.map +1 -0
- package/docs/node_modules/@babel/types/lib/definitions/experimental.js +123 -0
- package/docs/node_modules/@babel/types/lib/definitions/experimental.js.map +1 -0
- package/docs/node_modules/@babel/types/lib/definitions/flow.js +495 -0
- package/docs/node_modules/@babel/types/lib/definitions/flow.js.map +1 -0
- package/docs/node_modules/@babel/types/lib/definitions/index.js +100 -0
- package/docs/node_modules/@babel/types/lib/definitions/index.js.map +1 -0
- package/docs/node_modules/@babel/types/lib/definitions/jsx.js +157 -0
- package/docs/node_modules/@babel/types/lib/definitions/jsx.js.map +1 -0
- package/docs/node_modules/@babel/types/lib/definitions/misc.js +33 -0
- package/docs/node_modules/@babel/types/lib/definitions/misc.js.map +1 -0
- package/docs/node_modules/@babel/types/lib/definitions/placeholders.js +27 -0
- package/docs/node_modules/@babel/types/lib/definitions/placeholders.js.map +1 -0
- package/docs/node_modules/@babel/types/lib/definitions/typescript.js +524 -0
- package/docs/node_modules/@babel/types/lib/definitions/typescript.js.map +1 -0
- package/docs/node_modules/@babel/types/lib/definitions/utils.js +292 -0
- package/docs/node_modules/@babel/types/lib/definitions/utils.js.map +1 -0
- package/docs/node_modules/@babel/types/lib/index-legacy.d.ts +2786 -0
- package/docs/node_modules/@babel/types/lib/index.d.ts +3295 -0
- package/docs/node_modules/@babel/types/lib/index.js +584 -0
- package/docs/node_modules/@babel/types/lib/index.js.flow +2640 -0
- package/docs/node_modules/@babel/types/lib/index.js.map +1 -0
- package/docs/node_modules/@babel/types/lib/modifications/appendToMemberExpression.js +15 -0
- package/docs/node_modules/@babel/types/lib/modifications/appendToMemberExpression.js.map +1 -0
- package/docs/node_modules/@babel/types/lib/modifications/flow/removeTypeDuplicates.js +65 -0
- package/docs/node_modules/@babel/types/lib/modifications/flow/removeTypeDuplicates.js.map +1 -0
- package/docs/node_modules/@babel/types/lib/modifications/inherits.js +28 -0
- package/docs/node_modules/@babel/types/lib/modifications/inherits.js.map +1 -0
- package/docs/node_modules/@babel/types/lib/modifications/prependToMemberExpression.js +17 -0
- package/docs/node_modules/@babel/types/lib/modifications/prependToMemberExpression.js.map +1 -0
- package/docs/node_modules/@babel/types/lib/modifications/removeProperties.js +24 -0
- package/docs/node_modules/@babel/types/lib/modifications/removeProperties.js.map +1 -0
- package/docs/node_modules/@babel/types/lib/modifications/removePropertiesDeep.js +14 -0
- package/docs/node_modules/@babel/types/lib/modifications/removePropertiesDeep.js.map +1 -0
- package/docs/node_modules/@babel/types/lib/modifications/typescript/removeTypeDuplicates.js +66 -0
- package/docs/node_modules/@babel/types/lib/modifications/typescript/removeTypeDuplicates.js.map +1 -0
- package/docs/node_modules/@babel/types/lib/retrievers/getAssignmentIdentifiers.js +48 -0
- package/docs/node_modules/@babel/types/lib/retrievers/getAssignmentIdentifiers.js.map +1 -0
- package/docs/node_modules/@babel/types/lib/retrievers/getBindingIdentifiers.js +102 -0
- package/docs/node_modules/@babel/types/lib/retrievers/getBindingIdentifiers.js.map +1 -0
- package/docs/node_modules/@babel/types/lib/retrievers/getFunctionName.js +63 -0
- package/docs/node_modules/@babel/types/lib/retrievers/getFunctionName.js.map +1 -0
- package/docs/node_modules/@babel/types/lib/retrievers/getOuterBindingIdentifiers.js +13 -0
- package/docs/node_modules/@babel/types/lib/retrievers/getOuterBindingIdentifiers.js.map +1 -0
- package/docs/node_modules/@babel/types/lib/traverse/traverse.js +50 -0
- package/docs/node_modules/@babel/types/lib/traverse/traverse.js.map +1 -0
- package/docs/node_modules/@babel/types/lib/traverse/traverseFast.js +40 -0
- package/docs/node_modules/@babel/types/lib/traverse/traverseFast.js.map +1 -0
- package/docs/node_modules/@babel/types/lib/utils/deprecationWarning.js +44 -0
- package/docs/node_modules/@babel/types/lib/utils/deprecationWarning.js.map +1 -0
- package/docs/node_modules/@babel/types/lib/utils/inherit.js +13 -0
- package/docs/node_modules/@babel/types/lib/utils/inherit.js.map +1 -0
- package/docs/node_modules/@babel/types/lib/utils/react/cleanJSXElementLiteralChild.js +40 -0
- package/docs/node_modules/@babel/types/lib/utils/react/cleanJSXElementLiteralChild.js.map +1 -0
- package/docs/node_modules/@babel/types/lib/utils/shallowEqual.js +17 -0
- package/docs/node_modules/@babel/types/lib/utils/shallowEqual.js.map +1 -0
- package/docs/node_modules/@babel/types/lib/validators/buildMatchMemberExpression.js +13 -0
- package/docs/node_modules/@babel/types/lib/validators/buildMatchMemberExpression.js.map +1 -0
- package/docs/node_modules/@babel/types/lib/validators/generated/index.js +2770 -0
- package/docs/node_modules/@babel/types/lib/validators/generated/index.js.map +1 -0
- package/docs/node_modules/@babel/types/lib/validators/is.js +27 -0
- package/docs/node_modules/@babel/types/lib/validators/is.js.map +1 -0
- package/docs/node_modules/@babel/types/lib/validators/isBinding.js +27 -0
- package/docs/node_modules/@babel/types/lib/validators/isBinding.js.map +1 -0
- package/docs/node_modules/@babel/types/lib/validators/isBlockScoped.js +13 -0
- package/docs/node_modules/@babel/types/lib/validators/isBlockScoped.js.map +1 -0
- package/docs/node_modules/@babel/types/lib/validators/isImmutable.js +21 -0
- package/docs/node_modules/@babel/types/lib/validators/isImmutable.js.map +1 -0
- package/docs/node_modules/@babel/types/lib/validators/isLet.js +17 -0
- package/docs/node_modules/@babel/types/lib/validators/isLet.js.map +1 -0
- package/docs/node_modules/@babel/types/lib/validators/isNode.js +12 -0
- package/docs/node_modules/@babel/types/lib/validators/isNode.js.map +1 -0
- package/docs/node_modules/@babel/types/lib/validators/isNodesEquivalent.js +57 -0
- package/docs/node_modules/@babel/types/lib/validators/isNodesEquivalent.js.map +1 -0
- package/docs/node_modules/@babel/types/lib/validators/isPlaceholderType.js +15 -0
- package/docs/node_modules/@babel/types/lib/validators/isPlaceholderType.js.map +1 -0
- package/docs/node_modules/@babel/types/lib/validators/isReferenced.js +96 -0
- package/docs/node_modules/@babel/types/lib/validators/isReferenced.js.map +1 -0
- package/docs/node_modules/@babel/types/lib/validators/isScope.js +18 -0
- package/docs/node_modules/@babel/types/lib/validators/isScope.js.map +1 -0
- package/docs/node_modules/@babel/types/lib/validators/isSpecifierDefault.js +14 -0
- package/docs/node_modules/@babel/types/lib/validators/isSpecifierDefault.js.map +1 -0
- package/docs/node_modules/@babel/types/lib/validators/isType.js +17 -0
- package/docs/node_modules/@babel/types/lib/validators/isType.js.map +1 -0
- package/docs/node_modules/@babel/types/lib/validators/isValidES3Identifier.js +13 -0
- package/docs/node_modules/@babel/types/lib/validators/isValidES3Identifier.js.map +1 -0
- package/docs/node_modules/@babel/types/lib/validators/isValidIdentifier.js +18 -0
- package/docs/node_modules/@babel/types/lib/validators/isValidIdentifier.js.map +1 -0
- package/docs/node_modules/@babel/types/lib/validators/isVar.js +19 -0
- package/docs/node_modules/@babel/types/lib/validators/isVar.js.map +1 -0
- package/docs/node_modules/@babel/types/lib/validators/matchesPattern.js +36 -0
- package/docs/node_modules/@babel/types/lib/validators/matchesPattern.js.map +1 -0
- package/docs/node_modules/@babel/types/lib/validators/react/isCompatTag.js +11 -0
- package/docs/node_modules/@babel/types/lib/validators/react/isCompatTag.js.map +1 -0
- package/docs/node_modules/@babel/types/lib/validators/react/isReactComponent.js +11 -0
- package/docs/node_modules/@babel/types/lib/validators/react/isReactComponent.js.map +1 -0
- package/docs/node_modules/@babel/types/lib/validators/validate.js +42 -0
- package/docs/node_modules/@babel/types/lib/validators/validate.js.map +1 -0
- package/docs/node_modules/@babel/types/package.json +39 -0
- package/docs/node_modules/@jsdoc/salty/LICENSE +202 -0
- package/docs/node_modules/@jsdoc/salty/README.md +185 -0
- package/docs/node_modules/@jsdoc/salty/index.js +20 -0
- package/docs/node_modules/@jsdoc/salty/lib/salty.js +257 -0
- package/docs/node_modules/@jsdoc/salty/package.json +32 -0
- package/docs/node_modules/@types/linkify-it/LICENSE +21 -0
- package/docs/node_modules/@types/linkify-it/README.md +15 -0
- package/docs/node_modules/@types/linkify-it/build/index.cjs.d.ts +178 -0
- package/docs/node_modules/@types/linkify-it/index.d.mts +174 -0
- package/docs/node_modules/@types/linkify-it/index.d.ts +3 -0
- package/docs/node_modules/@types/linkify-it/package.json +50 -0
- package/docs/node_modules/@types/markdown-it/LICENSE +21 -0
- package/docs/node_modules/@types/markdown-it/README.md +15 -0
- package/docs/node_modules/@types/markdown-it/dist/index.cjs.d.ts +1236 -0
- package/docs/node_modules/@types/markdown-it/dist/markdown-it.d.ts +5 -0
- package/docs/node_modules/@types/markdown-it/dist/markdown-it.min.d.ts +5 -0
- package/docs/node_modules/@types/markdown-it/index.d.mts +1 -0
- package/docs/node_modules/@types/markdown-it/index.d.ts +3 -0
- package/docs/node_modules/@types/markdown-it/lib/common/html_blocks.d.mts +7 -0
- package/docs/node_modules/@types/markdown-it/lib/common/html_re.d.mts +2 -0
- package/docs/node_modules/@types/markdown-it/lib/common/utils.d.mts +62 -0
- package/docs/node_modules/@types/markdown-it/lib/helpers/index.d.mts +5 -0
- package/docs/node_modules/@types/markdown-it/lib/helpers/parse_link_destination.d.mts +7 -0
- package/docs/node_modules/@types/markdown-it/lib/helpers/parse_link_label.d.mts +3 -0
- package/docs/node_modules/@types/markdown-it/lib/helpers/parse_link_title.d.mts +29 -0
- package/docs/node_modules/@types/markdown-it/lib/index.d.mts +404 -0
- package/docs/node_modules/@types/markdown-it/lib/parser_block.d.mts +25 -0
- package/docs/node_modules/@types/markdown-it/lib/parser_core.d.mts +18 -0
- package/docs/node_modules/@types/markdown-it/lib/parser_inline.d.mts +38 -0
- package/docs/node_modules/@types/markdown-it/lib/renderer.d.mts +96 -0
- package/docs/node_modules/@types/markdown-it/lib/ruler.d.mts +158 -0
- package/docs/node_modules/@types/markdown-it/lib/rules_block/state_block.d.mts +124 -0
- package/docs/node_modules/@types/markdown-it/lib/rules_core/state_core.d.mts +18 -0
- package/docs/node_modules/@types/markdown-it/lib/rules_inline/state_inline.d.mts +73 -0
- package/docs/node_modules/@types/markdown-it/lib/token.d.mts +108 -0
- package/docs/node_modules/@types/markdown-it/package.json +54 -0
- package/docs/node_modules/@types/mdurl/LICENSE +21 -0
- package/docs/node_modules/@types/mdurl/README.md +15 -0
- package/docs/node_modules/@types/mdurl/build/index.cjs.d.ts +52 -0
- package/docs/node_modules/@types/mdurl/index.d.mts +6 -0
- package/docs/node_modules/@types/mdurl/index.d.ts +3 -0
- package/docs/node_modules/@types/mdurl/lib/decode.d.mts +10 -0
- package/docs/node_modules/@types/mdurl/lib/encode.d.mts +15 -0
- package/docs/node_modules/@types/mdurl/lib/format.d.mts +3 -0
- package/docs/node_modules/@types/mdurl/lib/parse.d.mts +18 -0
- package/docs/node_modules/@types/mdurl/package.json +36 -0
- package/docs/node_modules/argparse/CHANGELOG.md +216 -0
- package/docs/node_modules/argparse/LICENSE +254 -0
- package/docs/node_modules/argparse/README.md +84 -0
- package/docs/node_modules/argparse/argparse.js +3707 -0
- package/docs/node_modules/argparse/lib/sub.js +67 -0
- package/docs/node_modules/argparse/lib/textwrap.js +440 -0
- package/docs/node_modules/argparse/package.json +31 -0
- package/docs/node_modules/bluebird/LICENSE +21 -0
- package/docs/node_modules/bluebird/README.md +57 -0
- package/docs/node_modules/bluebird/changelog.md +1 -0
- package/docs/node_modules/bluebird/js/browser/bluebird.core.js +3914 -0
- package/docs/node_modules/bluebird/js/browser/bluebird.core.min.js +31 -0
- package/docs/node_modules/bluebird/js/browser/bluebird.js +5778 -0
- package/docs/node_modules/bluebird/js/browser/bluebird.min.js +31 -0
- package/docs/node_modules/bluebird/js/release/any.js +21 -0
- package/docs/node_modules/bluebird/js/release/assert.js +55 -0
- package/docs/node_modules/bluebird/js/release/async.js +120 -0
- package/docs/node_modules/bluebird/js/release/bind.js +67 -0
- package/docs/node_modules/bluebird/js/release/bluebird.js +11 -0
- package/docs/node_modules/bluebird/js/release/call_get.js +123 -0
- package/docs/node_modules/bluebird/js/release/cancel.js +129 -0
- package/docs/node_modules/bluebird/js/release/catch_filter.js +42 -0
- package/docs/node_modules/bluebird/js/release/context.js +69 -0
- package/docs/node_modules/bluebird/js/release/debuggability.js +1009 -0
- package/docs/node_modules/bluebird/js/release/direct_resolve.js +46 -0
- package/docs/node_modules/bluebird/js/release/each.js +30 -0
- package/docs/node_modules/bluebird/js/release/errors.js +116 -0
- package/docs/node_modules/bluebird/js/release/es5.js +80 -0
- package/docs/node_modules/bluebird/js/release/filter.js +12 -0
- package/docs/node_modules/bluebird/js/release/finally.js +146 -0
- package/docs/node_modules/bluebird/js/release/generators.js +223 -0
- package/docs/node_modules/bluebird/js/release/join.js +165 -0
- package/docs/node_modules/bluebird/js/release/map.js +175 -0
- package/docs/node_modules/bluebird/js/release/method.js +55 -0
- package/docs/node_modules/bluebird/js/release/nodeback.js +51 -0
- package/docs/node_modules/bluebird/js/release/nodeify.js +58 -0
- package/docs/node_modules/bluebird/js/release/promise.js +819 -0
- package/docs/node_modules/bluebird/js/release/promise_array.js +186 -0
- package/docs/node_modules/bluebird/js/release/promisify.js +314 -0
- package/docs/node_modules/bluebird/js/release/props.js +118 -0
- package/docs/node_modules/bluebird/js/release/queue.js +73 -0
- package/docs/node_modules/bluebird/js/release/race.js +49 -0
- package/docs/node_modules/bluebird/js/release/reduce.js +183 -0
- package/docs/node_modules/bluebird/js/release/schedule.js +62 -0
- package/docs/node_modules/bluebird/js/release/settle.js +47 -0
- package/docs/node_modules/bluebird/js/release/some.js +148 -0
- package/docs/node_modules/bluebird/js/release/synchronous_inspection.js +103 -0
- package/docs/node_modules/bluebird/js/release/thenables.js +86 -0
- package/docs/node_modules/bluebird/js/release/timers.js +93 -0
- package/docs/node_modules/bluebird/js/release/using.js +226 -0
- package/docs/node_modules/bluebird/js/release/util.js +421 -0
- package/docs/node_modules/bluebird/package.json +78 -0
- package/docs/node_modules/catharsis/LICENSE +17 -0
- package/docs/node_modules/catharsis/README.md +393 -0
- package/docs/node_modules/catharsis/bin/parse.js +55 -0
- package/docs/node_modules/catharsis/catharsis.js +169 -0
- package/docs/node_modules/catharsis/lib/describe.js +563 -0
- package/docs/node_modules/catharsis/lib/parser.js +5776 -0
- package/docs/node_modules/catharsis/lib/schema.js +72 -0
- package/docs/node_modules/catharsis/lib/stringify.js +277 -0
- package/docs/node_modules/catharsis/lib/types.js +22 -0
- package/docs/node_modules/catharsis/package.json +30 -0
- package/docs/node_modules/catharsis/res/en.json +92 -0
- package/docs/node_modules/entities/LICENSE +11 -0
- package/docs/node_modules/entities/lib/decode.d.ts +211 -0
- package/docs/node_modules/entities/lib/decode.d.ts.map +1 -0
- package/docs/node_modules/entities/lib/decode.js +536 -0
- package/docs/node_modules/entities/lib/decode.js.map +1 -0
- package/docs/node_modules/entities/lib/decode_codepoint.d.ts +19 -0
- package/docs/node_modules/entities/lib/decode_codepoint.d.ts.map +1 -0
- package/docs/node_modules/entities/lib/decode_codepoint.js +76 -0
- package/docs/node_modules/entities/lib/decode_codepoint.js.map +1 -0
- package/docs/node_modules/entities/lib/encode.d.ts +22 -0
- package/docs/node_modules/entities/lib/encode.d.ts.map +1 -0
- package/docs/node_modules/entities/lib/encode.js +77 -0
- package/docs/node_modules/entities/lib/encode.js.map +1 -0
- package/docs/node_modules/entities/lib/escape.d.ts +43 -0
- package/docs/node_modules/entities/lib/escape.d.ts.map +1 -0
- package/docs/node_modules/entities/lib/escape.js +122 -0
- package/docs/node_modules/entities/lib/escape.js.map +1 -0
- package/docs/node_modules/entities/lib/esm/decode.d.ts +211 -0
- package/docs/node_modules/entities/lib/esm/decode.d.ts.map +1 -0
- package/docs/node_modules/entities/lib/esm/decode.js +496 -0
- package/docs/node_modules/entities/lib/esm/decode.js.map +1 -0
- package/docs/node_modules/entities/lib/esm/decode_codepoint.d.ts +19 -0
- package/docs/node_modules/entities/lib/esm/decode_codepoint.d.ts.map +1 -0
- package/docs/node_modules/entities/lib/esm/decode_codepoint.js +71 -0
- package/docs/node_modules/entities/lib/esm/decode_codepoint.js.map +1 -0
- package/docs/node_modules/entities/lib/esm/encode.d.ts +22 -0
- package/docs/node_modules/entities/lib/esm/encode.d.ts.map +1 -0
- package/docs/node_modules/entities/lib/esm/encode.js +69 -0
- package/docs/node_modules/entities/lib/esm/encode.js.map +1 -0
- package/docs/node_modules/entities/lib/esm/escape.d.ts +43 -0
- package/docs/node_modules/entities/lib/esm/escape.d.ts.map +1 -0
- package/docs/node_modules/entities/lib/esm/escape.js +116 -0
- package/docs/node_modules/entities/lib/esm/escape.js.map +1 -0
- package/docs/node_modules/entities/lib/esm/generated/decode-data-html.d.ts +3 -0
- package/docs/node_modules/entities/lib/esm/generated/decode-data-html.d.ts.map +1 -0
- package/docs/node_modules/entities/lib/esm/generated/decode-data-html.js +7 -0
- package/docs/node_modules/entities/lib/esm/generated/decode-data-html.js.map +1 -0
- package/docs/node_modules/entities/lib/esm/generated/decode-data-xml.d.ts +3 -0
- package/docs/node_modules/entities/lib/esm/generated/decode-data-xml.d.ts.map +1 -0
- package/docs/node_modules/entities/lib/esm/generated/decode-data-xml.js +7 -0
- package/docs/node_modules/entities/lib/esm/generated/decode-data-xml.js.map +1 -0
- package/docs/node_modules/entities/lib/esm/generated/encode-html.d.ts +8 -0
- package/docs/node_modules/entities/lib/esm/generated/encode-html.d.ts.map +1 -0
- package/docs/node_modules/entities/lib/esm/generated/encode-html.js +10 -0
- package/docs/node_modules/entities/lib/esm/generated/encode-html.js.map +1 -0
- package/docs/node_modules/entities/lib/esm/index.d.ts +96 -0
- package/docs/node_modules/entities/lib/esm/index.d.ts.map +1 -0
- package/docs/node_modules/entities/lib/esm/index.js +99 -0
- package/docs/node_modules/entities/lib/esm/index.js.map +1 -0
- package/docs/node_modules/entities/lib/esm/package.json +1 -0
- package/docs/node_modules/entities/lib/generated/decode-data-html.d.ts +3 -0
- package/docs/node_modules/entities/lib/generated/decode-data-html.d.ts.map +1 -0
- package/docs/node_modules/entities/lib/generated/decode-data-html.js +9 -0
- package/docs/node_modules/entities/lib/generated/decode-data-html.js.map +1 -0
- package/docs/node_modules/entities/lib/generated/decode-data-xml.d.ts +3 -0
- package/docs/node_modules/entities/lib/generated/decode-data-xml.d.ts.map +1 -0
- package/docs/node_modules/entities/lib/generated/decode-data-xml.js +9 -0
- package/docs/node_modules/entities/lib/generated/decode-data-xml.js.map +1 -0
- package/docs/node_modules/entities/lib/generated/encode-html.d.ts +8 -0
- package/docs/node_modules/entities/lib/generated/encode-html.d.ts.map +1 -0
- package/docs/node_modules/entities/lib/generated/encode-html.js +12 -0
- package/docs/node_modules/entities/lib/generated/encode-html.js.map +1 -0
- package/docs/node_modules/entities/lib/index.d.ts +96 -0
- package/docs/node_modules/entities/lib/index.d.ts.map +1 -0
- package/docs/node_modules/entities/lib/index.js +126 -0
- package/docs/node_modules/entities/lib/index.js.map +1 -0
- package/docs/node_modules/entities/package.json +90 -0
- package/docs/node_modules/entities/readme.md +122 -0
- package/docs/node_modules/escape-string-regexp/index.d.ts +18 -0
- package/docs/node_modules/escape-string-regexp/index.js +11 -0
- package/docs/node_modules/escape-string-regexp/license +9 -0
- package/docs/node_modules/escape-string-regexp/package.json +43 -0
- package/docs/node_modules/escape-string-regexp/readme.md +29 -0
- package/docs/node_modules/graceful-fs/LICENSE +15 -0
- package/docs/node_modules/graceful-fs/README.md +143 -0
- package/docs/node_modules/graceful-fs/clone.js +23 -0
- package/docs/node_modules/graceful-fs/graceful-fs.js +448 -0
- package/docs/node_modules/graceful-fs/legacy-streams.js +118 -0
- package/docs/node_modules/graceful-fs/package.json +53 -0
- package/docs/node_modules/graceful-fs/polyfills.js +355 -0
- package/docs/node_modules/js2xmlparser/CHANGES.md +133 -0
- package/docs/node_modules/js2xmlparser/LICENSE +201 -0
- package/docs/node_modules/js2xmlparser/NOTICE +10 -0
- package/docs/node_modules/js2xmlparser/README.md +155 -0
- package/docs/node_modules/js2xmlparser/lib/main.d.ts +49 -0
- package/docs/node_modules/js2xmlparser/lib/main.js +282 -0
- package/docs/node_modules/js2xmlparser/lib/options.d.ts +477 -0
- package/docs/node_modules/js2xmlparser/lib/options.js +155 -0
- package/docs/node_modules/js2xmlparser/lib/utils.d.ts +32 -0
- package/docs/node_modules/js2xmlparser/lib/utils.js +67 -0
- package/docs/node_modules/js2xmlparser/package.json +65 -0
- package/docs/node_modules/jsdoc/.prettierignore +1 -0
- package/docs/node_modules/jsdoc/.vscode/launch.json +17 -0
- package/docs/node_modules/jsdoc/Apache_License_2.0.txt +202 -0
- package/docs/node_modules/jsdoc/CHANGES.md +904 -0
- package/docs/node_modules/jsdoc/LICENSE.md +102 -0
- package/docs/node_modules/jsdoc/README.md +93 -0
- package/docs/node_modules/jsdoc/cli.js +465 -0
- package/docs/node_modules/jsdoc/conf.json.EXAMPLE +17 -0
- package/docs/node_modules/jsdoc/jsdoc.js +94 -0
- package/docs/node_modules/jsdoc/lib/jsdoc/app.js +19 -0
- package/docs/node_modules/jsdoc/lib/jsdoc/augment.js +608 -0
- package/docs/node_modules/jsdoc/lib/jsdoc/borrow.js +52 -0
- package/docs/node_modules/jsdoc/lib/jsdoc/config.js +74 -0
- package/docs/node_modules/jsdoc/lib/jsdoc/doclet.js +562 -0
- package/docs/node_modules/jsdoc/lib/jsdoc/env.js +77 -0
- package/docs/node_modules/jsdoc/lib/jsdoc/fs.js +109 -0
- package/docs/node_modules/jsdoc/lib/jsdoc/name.js +595 -0
- package/docs/node_modules/jsdoc/lib/jsdoc/opts/argparser.js +306 -0
- package/docs/node_modules/jsdoc/lib/jsdoc/opts/args.js +82 -0
- package/docs/node_modules/jsdoc/lib/jsdoc/package.js +257 -0
- package/docs/node_modules/jsdoc/lib/jsdoc/path.js +169 -0
- package/docs/node_modules/jsdoc/lib/jsdoc/plugins.js +35 -0
- package/docs/node_modules/jsdoc/lib/jsdoc/readme.js +24 -0
- package/docs/node_modules/jsdoc/lib/jsdoc/schema.js +664 -0
- package/docs/node_modules/jsdoc/lib/jsdoc/src/astbuilder.js +72 -0
- package/docs/node_modules/jsdoc/lib/jsdoc/src/astnode.js +555 -0
- package/docs/node_modules/jsdoc/lib/jsdoc/src/filter.js +63 -0
- package/docs/node_modules/jsdoc/lib/jsdoc/src/handlers.js +372 -0
- package/docs/node_modules/jsdoc/lib/jsdoc/src/parser.js +673 -0
- package/docs/node_modules/jsdoc/lib/jsdoc/src/scanner.js +62 -0
- package/docs/node_modules/jsdoc/lib/jsdoc/src/syntax.js +96 -0
- package/docs/node_modules/jsdoc/lib/jsdoc/src/visitor.js +859 -0
- package/docs/node_modules/jsdoc/lib/jsdoc/src/walker.js +704 -0
- package/docs/node_modules/jsdoc/lib/jsdoc/tag/dictionary/definitions.js +1089 -0
- package/docs/node_modules/jsdoc/lib/jsdoc/tag/dictionary.js +120 -0
- package/docs/node_modules/jsdoc/lib/jsdoc/tag/inline.js +135 -0
- package/docs/node_modules/jsdoc/lib/jsdoc/tag/type.js +306 -0
- package/docs/node_modules/jsdoc/lib/jsdoc/tag/validator.js +51 -0
- package/docs/node_modules/jsdoc/lib/jsdoc/tag.js +198 -0
- package/docs/node_modules/jsdoc/lib/jsdoc/template.js +80 -0
- package/docs/node_modules/jsdoc/lib/jsdoc/tutorial/resolver.js +183 -0
- package/docs/node_modules/jsdoc/lib/jsdoc/tutorial.js +153 -0
- package/docs/node_modules/jsdoc/lib/jsdoc/util/cast.js +95 -0
- package/docs/node_modules/jsdoc/lib/jsdoc/util/doop.js +79 -0
- package/docs/node_modules/jsdoc/lib/jsdoc/util/dumper.js +146 -0
- package/docs/node_modules/jsdoc/lib/jsdoc/util/error.js +32 -0
- package/docs/node_modules/jsdoc/lib/jsdoc/util/logger.js +254 -0
- package/docs/node_modules/jsdoc/lib/jsdoc/util/markdown.js +282 -0
- package/docs/node_modules/jsdoc/lib/jsdoc/util/stripbom.js +14 -0
- package/docs/node_modules/jsdoc/lib/jsdoc/util/templateHelper.js +1025 -0
- package/docs/node_modules/jsdoc/package.json +65 -0
- package/docs/node_modules/jsdoc/plugins/commentConvert.js +21 -0
- package/docs/node_modules/jsdoc/plugins/commentsOnly.js +17 -0
- package/docs/node_modules/jsdoc/plugins/escapeHtml.js +18 -0
- package/docs/node_modules/jsdoc/plugins/eventDumper.js +97 -0
- package/docs/node_modules/jsdoc/plugins/markdown.js +88 -0
- package/docs/node_modules/jsdoc/plugins/overloadHelper.js +181 -0
- package/docs/node_modules/jsdoc/plugins/partial.js +30 -0
- package/docs/node_modules/jsdoc/plugins/railsTemplate.js +19 -0
- package/docs/node_modules/jsdoc/plugins/shout.js +15 -0
- package/docs/node_modules/jsdoc/plugins/sourcetag.js +49 -0
- package/docs/node_modules/jsdoc/plugins/summarize.js +58 -0
- package/docs/node_modules/jsdoc/plugins/test/fixtures/markdown.js +31 -0
- package/docs/node_modules/jsdoc/plugins/test/fixtures/overloadHelper.js +50 -0
- package/docs/node_modules/jsdoc/plugins/test/fixtures/railsTemplate.js.erb +19 -0
- package/docs/node_modules/jsdoc/plugins/test/fixtures/underscore.js +22 -0
- package/docs/node_modules/jsdoc/plugins/test/specs/commentConvert.js +20 -0
- package/docs/node_modules/jsdoc/plugins/test/specs/escapeHtml.js +20 -0
- package/docs/node_modules/jsdoc/plugins/test/specs/markdown.js +60 -0
- package/docs/node_modules/jsdoc/plugins/test/specs/overloadHelper.js +102 -0
- package/docs/node_modules/jsdoc/plugins/test/specs/railsTemplate.js +19 -0
- package/docs/node_modules/jsdoc/plugins/test/specs/shout.js +20 -0
- package/docs/node_modules/jsdoc/plugins/test/specs/sourcetag.js +22 -0
- package/docs/node_modules/jsdoc/plugins/test/specs/summarize.js +112 -0
- package/docs/node_modules/jsdoc/plugins/test/specs/underscore.js +35 -0
- package/docs/node_modules/jsdoc/plugins/underscore.js +16 -0
- package/docs/node_modules/jsdoc/templates/README.md +27 -0
- package/docs/node_modules/jsdoc/templates/default/README.md +9 -0
- package/docs/node_modules/jsdoc/templates/default/publish.js +692 -0
- package/docs/node_modules/jsdoc/templates/default/static/fonts/OpenSans-Bold-webfont.eot +0 -0
- package/docs/node_modules/jsdoc/templates/default/static/fonts/OpenSans-Bold-webfont.svg +1830 -0
- package/docs/node_modules/jsdoc/templates/default/static/fonts/OpenSans-Bold-webfont.woff +0 -0
- package/docs/node_modules/jsdoc/templates/default/static/fonts/OpenSans-BoldItalic-webfont.eot +0 -0
- package/docs/node_modules/jsdoc/templates/default/static/fonts/OpenSans-BoldItalic-webfont.svg +1830 -0
- package/docs/node_modules/jsdoc/templates/default/static/fonts/OpenSans-BoldItalic-webfont.woff +0 -0
- package/docs/node_modules/jsdoc/templates/default/static/fonts/OpenSans-Italic-webfont.eot +0 -0
- package/docs/node_modules/jsdoc/templates/default/static/fonts/OpenSans-Italic-webfont.svg +1830 -0
- package/docs/node_modules/jsdoc/templates/default/static/fonts/OpenSans-Italic-webfont.woff +0 -0
- package/docs/node_modules/jsdoc/templates/default/static/fonts/OpenSans-Light-webfont.eot +0 -0
- package/docs/node_modules/jsdoc/templates/default/static/fonts/OpenSans-Light-webfont.svg +1831 -0
- package/docs/node_modules/jsdoc/templates/default/static/fonts/OpenSans-Light-webfont.woff +0 -0
- package/docs/node_modules/jsdoc/templates/default/static/fonts/OpenSans-LightItalic-webfont.eot +0 -0
- package/docs/node_modules/jsdoc/templates/default/static/fonts/OpenSans-LightItalic-webfont.svg +1835 -0
- package/docs/node_modules/jsdoc/templates/default/static/fonts/OpenSans-LightItalic-webfont.woff +0 -0
- package/docs/node_modules/jsdoc/templates/default/static/fonts/OpenSans-Regular-webfont.eot +0 -0
- package/docs/node_modules/jsdoc/templates/default/static/fonts/OpenSans-Regular-webfont.svg +1831 -0
- package/docs/node_modules/jsdoc/templates/default/static/fonts/OpenSans-Regular-webfont.woff +0 -0
- package/docs/node_modules/jsdoc/templates/default/static/scripts/linenumber.js +25 -0
- package/docs/node_modules/jsdoc/templates/default/static/scripts/prettify/Apache-License-2.0.txt +202 -0
- package/docs/node_modules/jsdoc/templates/default/static/scripts/prettify/lang-css.js +2 -0
- package/docs/node_modules/jsdoc/templates/default/static/scripts/prettify/prettify.js +28 -0
- package/docs/node_modules/jsdoc/templates/default/static/styles/jsdoc-default.css +358 -0
- package/docs/node_modules/jsdoc/templates/default/static/styles/prettify-jsdoc.css +111 -0
- package/docs/node_modules/jsdoc/templates/default/static/styles/prettify-tomorrow.css +132 -0
- package/docs/node_modules/jsdoc/templates/default/tmpl/augments.tmpl +10 -0
- package/docs/node_modules/jsdoc/templates/default/tmpl/container.tmpl +196 -0
- package/docs/node_modules/jsdoc/templates/default/tmpl/details.tmpl +143 -0
- package/docs/node_modules/jsdoc/templates/default/tmpl/example.tmpl +2 -0
- package/docs/node_modules/jsdoc/templates/default/tmpl/examples.tmpl +13 -0
- package/docs/node_modules/jsdoc/templates/default/tmpl/exceptions.tmpl +32 -0
- package/docs/node_modules/jsdoc/templates/default/tmpl/layout.tmpl +38 -0
- package/docs/node_modules/jsdoc/templates/default/tmpl/mainpage.tmpl +14 -0
- package/docs/node_modules/jsdoc/templates/default/tmpl/members.tmpl +38 -0
- package/docs/node_modules/jsdoc/templates/default/tmpl/method.tmpl +131 -0
- package/docs/node_modules/jsdoc/templates/default/tmpl/modifies.tmpl +14 -0
- package/docs/node_modules/jsdoc/templates/default/tmpl/params.tmpl +131 -0
- package/docs/node_modules/jsdoc/templates/default/tmpl/properties.tmpl +108 -0
- package/docs/node_modules/jsdoc/templates/default/tmpl/returns.tmpl +19 -0
- package/docs/node_modules/jsdoc/templates/default/tmpl/source.tmpl +8 -0
- package/docs/node_modules/jsdoc/templates/default/tmpl/tutorial.tmpl +19 -0
- package/docs/node_modules/jsdoc/templates/default/tmpl/type.tmpl +7 -0
- package/docs/node_modules/jsdoc/templates/haruki/README.md +39 -0
- package/docs/node_modules/jsdoc/templates/haruki/publish.js +224 -0
- package/docs/node_modules/jsdoc/templates/silent/README.md +11 -0
- package/docs/node_modules/jsdoc/templates/silent/publish.js +7 -0
- package/docs/node_modules/klaw/CHANGELOG.md +68 -0
- package/docs/node_modules/klaw/LICENSE +15 -0
- package/docs/node_modules/klaw/README.md +253 -0
- package/docs/node_modules/klaw/package.json +40 -0
- package/docs/node_modules/klaw/src/index.js +64 -0
- package/docs/node_modules/linkify-it/LICENSE +22 -0
- package/docs/node_modules/linkify-it/README.md +196 -0
- package/docs/node_modules/linkify-it/build/index.cjs.js +832 -0
- package/docs/node_modules/linkify-it/index.mjs +642 -0
- package/docs/node_modules/linkify-it/lib/re.mjs +189 -0
- package/docs/node_modules/linkify-it/package.json +58 -0
- package/docs/node_modules/lodash/LICENSE +47 -0
- package/docs/node_modules/lodash/README.md +39 -0
- package/docs/node_modules/lodash/_DataView.js +7 -0
- package/docs/node_modules/lodash/_Hash.js +32 -0
- package/docs/node_modules/lodash/_LazyWrapper.js +28 -0
- package/docs/node_modules/lodash/_ListCache.js +32 -0
- package/docs/node_modules/lodash/_LodashWrapper.js +22 -0
- package/docs/node_modules/lodash/_Map.js +7 -0
- package/docs/node_modules/lodash/_MapCache.js +32 -0
- package/docs/node_modules/lodash/_Promise.js +7 -0
- package/docs/node_modules/lodash/_Set.js +7 -0
- package/docs/node_modules/lodash/_SetCache.js +27 -0
- package/docs/node_modules/lodash/_Stack.js +27 -0
- package/docs/node_modules/lodash/_Symbol.js +6 -0
- package/docs/node_modules/lodash/_Uint8Array.js +6 -0
- package/docs/node_modules/lodash/_WeakMap.js +7 -0
- package/docs/node_modules/lodash/_apply.js +21 -0
- package/docs/node_modules/lodash/_arrayAggregator.js +22 -0
- package/docs/node_modules/lodash/_arrayEach.js +22 -0
- package/docs/node_modules/lodash/_arrayEachRight.js +21 -0
- package/docs/node_modules/lodash/_arrayEvery.js +23 -0
- package/docs/node_modules/lodash/_arrayFilter.js +25 -0
- package/docs/node_modules/lodash/_arrayIncludes.js +17 -0
- package/docs/node_modules/lodash/_arrayIncludesWith.js +22 -0
- package/docs/node_modules/lodash/_arrayLikeKeys.js +49 -0
- package/docs/node_modules/lodash/_arrayMap.js +21 -0
- package/docs/node_modules/lodash/_arrayPush.js +20 -0
- package/docs/node_modules/lodash/_arrayReduce.js +26 -0
- package/docs/node_modules/lodash/_arrayReduceRight.js +24 -0
- package/docs/node_modules/lodash/_arraySample.js +15 -0
- package/docs/node_modules/lodash/_arraySampleSize.js +17 -0
- package/docs/node_modules/lodash/_arrayShuffle.js +15 -0
- package/docs/node_modules/lodash/_arraySome.js +23 -0
- package/docs/node_modules/lodash/_asciiSize.js +12 -0
- package/docs/node_modules/lodash/_asciiToArray.js +12 -0
- package/docs/node_modules/lodash/_asciiWords.js +15 -0
- package/docs/node_modules/lodash/_assignMergeValue.js +20 -0
- package/docs/node_modules/lodash/_assignValue.js +28 -0
- package/docs/node_modules/lodash/_assocIndexOf.js +21 -0
- package/docs/node_modules/lodash/_baseAggregator.js +21 -0
- package/docs/node_modules/lodash/_baseAssign.js +17 -0
- package/docs/node_modules/lodash/_baseAssignIn.js +17 -0
- package/docs/node_modules/lodash/_baseAssignValue.js +25 -0
- package/docs/node_modules/lodash/_baseAt.js +23 -0
- package/docs/node_modules/lodash/_baseClamp.js +22 -0
- package/docs/node_modules/lodash/_baseClone.js +166 -0
- package/docs/node_modules/lodash/_baseConforms.js +18 -0
- package/docs/node_modules/lodash/_baseConformsTo.js +27 -0
- package/docs/node_modules/lodash/_baseCreate.js +30 -0
- package/docs/node_modules/lodash/_baseDelay.js +21 -0
- package/docs/node_modules/lodash/_baseDifference.js +67 -0
- package/docs/node_modules/lodash/_baseEach.js +14 -0
- package/docs/node_modules/lodash/_baseEachRight.js +14 -0
- package/docs/node_modules/lodash/_baseEvery.js +21 -0
- package/docs/node_modules/lodash/_baseExtremum.js +32 -0
- package/docs/node_modules/lodash/_baseFill.js +32 -0
- package/docs/node_modules/lodash/_baseFilter.js +21 -0
- package/docs/node_modules/lodash/_baseFindIndex.js +24 -0
- package/docs/node_modules/lodash/_baseFindKey.js +23 -0
- package/docs/node_modules/lodash/_baseFlatten.js +38 -0
- package/docs/node_modules/lodash/_baseFor.js +16 -0
- package/docs/node_modules/lodash/_baseForOwn.js +16 -0
- package/docs/node_modules/lodash/_baseForOwnRight.js +16 -0
- package/docs/node_modules/lodash/_baseForRight.js +15 -0
- package/docs/node_modules/lodash/_baseFunctions.js +19 -0
- package/docs/node_modules/lodash/_baseGet.js +24 -0
- package/docs/node_modules/lodash/_baseGetAllKeys.js +20 -0
- package/docs/node_modules/lodash/_baseGetTag.js +28 -0
- package/docs/node_modules/lodash/_baseGt.js +14 -0
- package/docs/node_modules/lodash/_baseHas.js +19 -0
- package/docs/node_modules/lodash/_baseHasIn.js +13 -0
- package/docs/node_modules/lodash/_baseInRange.js +18 -0
- package/docs/node_modules/lodash/_baseIndexOf.js +20 -0
- package/docs/node_modules/lodash/_baseIndexOfWith.js +23 -0
- package/docs/node_modules/lodash/_baseIntersection.js +74 -0
- package/docs/node_modules/lodash/_baseInverter.js +21 -0
- package/docs/node_modules/lodash/_baseInvoke.js +24 -0
- package/docs/node_modules/lodash/_baseIsArguments.js +18 -0
- package/docs/node_modules/lodash/_baseIsArrayBuffer.js +17 -0
- package/docs/node_modules/lodash/_baseIsDate.js +18 -0
- package/docs/node_modules/lodash/_baseIsEqual.js +28 -0
- package/docs/node_modules/lodash/_baseIsEqualDeep.js +83 -0
- package/docs/node_modules/lodash/_baseIsMap.js +18 -0
- package/docs/node_modules/lodash/_baseIsMatch.js +62 -0
- package/docs/node_modules/lodash/_baseIsNaN.js +12 -0
- package/docs/node_modules/lodash/_baseIsNative.js +47 -0
- package/docs/node_modules/lodash/_baseIsRegExp.js +18 -0
- package/docs/node_modules/lodash/_baseIsSet.js +18 -0
- package/docs/node_modules/lodash/_baseIsTypedArray.js +60 -0
- package/docs/node_modules/lodash/_baseIteratee.js +31 -0
- package/docs/node_modules/lodash/_baseKeys.js +30 -0
- package/docs/node_modules/lodash/_baseKeysIn.js +33 -0
- package/docs/node_modules/lodash/_baseLodash.js +10 -0
- package/docs/node_modules/lodash/_baseLt.js +14 -0
- package/docs/node_modules/lodash/_baseMap.js +22 -0
- package/docs/node_modules/lodash/_baseMatches.js +22 -0
- package/docs/node_modules/lodash/_baseMatchesProperty.js +33 -0
- package/docs/node_modules/lodash/_baseMean.js +20 -0
- package/docs/node_modules/lodash/_baseMerge.js +42 -0
- package/docs/node_modules/lodash/_baseMergeDeep.js +94 -0
- package/docs/node_modules/lodash/_baseNth.js +20 -0
- package/docs/node_modules/lodash/_baseOrderBy.js +49 -0
- package/docs/node_modules/lodash/_basePick.js +19 -0
- package/docs/node_modules/lodash/_basePickBy.js +30 -0
- package/docs/node_modules/lodash/_baseProperty.js +14 -0
- package/docs/node_modules/lodash/_basePropertyDeep.js +16 -0
- package/docs/node_modules/lodash/_basePropertyOf.js +14 -0
- package/docs/node_modules/lodash/_basePullAll.js +51 -0
- package/docs/node_modules/lodash/_basePullAt.js +37 -0
- package/docs/node_modules/lodash/_baseRandom.js +18 -0
- package/docs/node_modules/lodash/_baseRange.js +28 -0
- package/docs/node_modules/lodash/_baseReduce.js +23 -0
- package/docs/node_modules/lodash/_baseRepeat.js +35 -0
- package/docs/node_modules/lodash/_baseRest.js +17 -0
- package/docs/node_modules/lodash/_baseSample.js +15 -0
- package/docs/node_modules/lodash/_baseSampleSize.js +18 -0
- package/docs/node_modules/lodash/_baseSet.js +51 -0
- package/docs/node_modules/lodash/_baseSetData.js +17 -0
- package/docs/node_modules/lodash/_baseSetToString.js +22 -0
- package/docs/node_modules/lodash/_baseShuffle.js +15 -0
- package/docs/node_modules/lodash/_baseSlice.js +31 -0
- package/docs/node_modules/lodash/_baseSome.js +22 -0
- package/docs/node_modules/lodash/_baseSortBy.js +21 -0
- package/docs/node_modules/lodash/_baseSortedIndex.js +42 -0
- package/docs/node_modules/lodash/_baseSortedIndexBy.js +67 -0
- package/docs/node_modules/lodash/_baseSortedUniq.js +30 -0
- package/docs/node_modules/lodash/_baseSum.js +24 -0
- package/docs/node_modules/lodash/_baseTimes.js +20 -0
- package/docs/node_modules/lodash/_baseToNumber.js +24 -0
- package/docs/node_modules/lodash/_baseToPairs.js +18 -0
- package/docs/node_modules/lodash/_baseToString.js +37 -0
- package/docs/node_modules/lodash/_baseTrim.js +19 -0
- package/docs/node_modules/lodash/_baseUnary.js +14 -0
- package/docs/node_modules/lodash/_baseUniq.js +72 -0
- package/docs/node_modules/lodash/_baseUnset.js +20 -0
- package/docs/node_modules/lodash/_baseUpdate.js +18 -0
- package/docs/node_modules/lodash/_baseValues.js +19 -0
- package/docs/node_modules/lodash/_baseWhile.js +26 -0
- package/docs/node_modules/lodash/_baseWrapperValue.js +25 -0
- package/docs/node_modules/lodash/_baseXor.js +36 -0
- package/docs/node_modules/lodash/_baseZipObject.js +23 -0
- package/docs/node_modules/lodash/_cacheHas.js +13 -0
- package/docs/node_modules/lodash/_castArrayLikeObject.js +14 -0
- package/docs/node_modules/lodash/_castFunction.js +14 -0
- package/docs/node_modules/lodash/_castPath.js +21 -0
- package/docs/node_modules/lodash/_castRest.js +14 -0
- package/docs/node_modules/lodash/_castSlice.js +18 -0
- package/docs/node_modules/lodash/_charsEndIndex.js +19 -0
- package/docs/node_modules/lodash/_charsStartIndex.js +20 -0
- package/docs/node_modules/lodash/_cloneArrayBuffer.js +16 -0
- package/docs/node_modules/lodash/_cloneBuffer.js +35 -0
- package/docs/node_modules/lodash/_cloneDataView.js +16 -0
- package/docs/node_modules/lodash/_cloneRegExp.js +17 -0
- package/docs/node_modules/lodash/_cloneSymbol.js +18 -0
- package/docs/node_modules/lodash/_cloneTypedArray.js +16 -0
- package/docs/node_modules/lodash/_compareAscending.js +41 -0
- package/docs/node_modules/lodash/_compareMultiple.js +44 -0
- package/docs/node_modules/lodash/_composeArgs.js +39 -0
- package/docs/node_modules/lodash/_composeArgsRight.js +41 -0
- package/docs/node_modules/lodash/_copyArray.js +20 -0
- package/docs/node_modules/lodash/_copyObject.js +40 -0
- package/docs/node_modules/lodash/_copySymbols.js +16 -0
- package/docs/node_modules/lodash/_copySymbolsIn.js +16 -0
- package/docs/node_modules/lodash/_coreJsData.js +6 -0
- package/docs/node_modules/lodash/_countHolders.js +21 -0
- package/docs/node_modules/lodash/_createAggregator.js +23 -0
- package/docs/node_modules/lodash/_createAssigner.js +37 -0
- package/docs/node_modules/lodash/_createBaseEach.js +32 -0
- package/docs/node_modules/lodash/_createBaseFor.js +25 -0
- package/docs/node_modules/lodash/_createBind.js +28 -0
- package/docs/node_modules/lodash/_createCaseFirst.js +33 -0
- package/docs/node_modules/lodash/_createCompounder.js +24 -0
- package/docs/node_modules/lodash/_createCtor.js +37 -0
- package/docs/node_modules/lodash/_createCurry.js +46 -0
- package/docs/node_modules/lodash/_createFind.js +25 -0
- package/docs/node_modules/lodash/_createFlow.js +78 -0
- package/docs/node_modules/lodash/_createHybrid.js +92 -0
- package/docs/node_modules/lodash/_createInverter.js +17 -0
- package/docs/node_modules/lodash/_createMathOperation.js +38 -0
- package/docs/node_modules/lodash/_createOver.js +27 -0
- package/docs/node_modules/lodash/_createPadding.js +33 -0
- package/docs/node_modules/lodash/_createPartial.js +43 -0
- package/docs/node_modules/lodash/_createRange.js +30 -0
- package/docs/node_modules/lodash/_createRecurry.js +56 -0
- package/docs/node_modules/lodash/_createRelationalOperation.js +20 -0
- package/docs/node_modules/lodash/_createRound.js +35 -0
- package/docs/node_modules/lodash/_createSet.js +19 -0
- package/docs/node_modules/lodash/_createToPairs.js +30 -0
- package/docs/node_modules/lodash/_createWrap.js +106 -0
- package/docs/node_modules/lodash/_customDefaultsAssignIn.js +29 -0
- package/docs/node_modules/lodash/_customDefaultsMerge.js +28 -0
- package/docs/node_modules/lodash/_customOmitClone.js +16 -0
- package/docs/node_modules/lodash/_deburrLetter.js +71 -0
- package/docs/node_modules/lodash/_defineProperty.js +11 -0
- package/docs/node_modules/lodash/_equalArrays.js +84 -0
- package/docs/node_modules/lodash/_equalByTag.js +112 -0
- package/docs/node_modules/lodash/_equalObjects.js +90 -0
- package/docs/node_modules/lodash/_escapeHtmlChar.js +21 -0
- package/docs/node_modules/lodash/_escapeStringChar.js +22 -0
- package/docs/node_modules/lodash/_flatRest.js +16 -0
- package/docs/node_modules/lodash/_freeGlobal.js +4 -0
- package/docs/node_modules/lodash/_getAllKeys.js +16 -0
- package/docs/node_modules/lodash/_getAllKeysIn.js +17 -0
- package/docs/node_modules/lodash/_getData.js +15 -0
- package/docs/node_modules/lodash/_getFuncName.js +31 -0
- package/docs/node_modules/lodash/_getHolder.js +13 -0
- package/docs/node_modules/lodash/_getMapData.js +18 -0
- package/docs/node_modules/lodash/_getMatchData.js +24 -0
- package/docs/node_modules/lodash/_getNative.js +17 -0
- package/docs/node_modules/lodash/_getPrototype.js +6 -0
- package/docs/node_modules/lodash/_getRawTag.js +46 -0
- package/docs/node_modules/lodash/_getSymbols.js +30 -0
- package/docs/node_modules/lodash/_getSymbolsIn.js +25 -0
- package/docs/node_modules/lodash/_getTag.js +58 -0
- package/docs/node_modules/lodash/_getValue.js +13 -0
- package/docs/node_modules/lodash/_getView.js +33 -0
- package/docs/node_modules/lodash/_getWrapDetails.js +17 -0
- package/docs/node_modules/lodash/_hasPath.js +39 -0
- package/docs/node_modules/lodash/_hasUnicode.js +26 -0
- package/docs/node_modules/lodash/_hasUnicodeWord.js +15 -0
- package/docs/node_modules/lodash/_hashClear.js +15 -0
- package/docs/node_modules/lodash/_hashDelete.js +17 -0
- package/docs/node_modules/lodash/_hashGet.js +30 -0
- package/docs/node_modules/lodash/_hashHas.js +23 -0
- package/docs/node_modules/lodash/_hashSet.js +23 -0
- package/docs/node_modules/lodash/_initCloneArray.js +26 -0
- package/docs/node_modules/lodash/_initCloneByTag.js +77 -0
- package/docs/node_modules/lodash/_initCloneObject.js +18 -0
- package/docs/node_modules/lodash/_insertWrapDetails.js +23 -0
- package/docs/node_modules/lodash/_isFlattenable.js +20 -0
- package/docs/node_modules/lodash/_isIndex.js +25 -0
- package/docs/node_modules/lodash/_isIterateeCall.js +30 -0
- package/docs/node_modules/lodash/_isKey.js +29 -0
- package/docs/node_modules/lodash/_isKeyable.js +15 -0
- package/docs/node_modules/lodash/_isLaziable.js +28 -0
- package/docs/node_modules/lodash/_isMaskable.js +14 -0
- package/docs/node_modules/lodash/_isMasked.js +20 -0
- package/docs/node_modules/lodash/_isPrototype.js +18 -0
- package/docs/node_modules/lodash/_isStrictComparable.js +15 -0
- package/docs/node_modules/lodash/_iteratorToArray.js +18 -0
- package/docs/node_modules/lodash/_lazyClone.js +23 -0
- package/docs/node_modules/lodash/_lazyReverse.js +23 -0
- package/docs/node_modules/lodash/_lazyValue.js +69 -0
- package/docs/node_modules/lodash/_listCacheClear.js +13 -0
- package/docs/node_modules/lodash/_listCacheDelete.js +35 -0
- package/docs/node_modules/lodash/_listCacheGet.js +19 -0
- package/docs/node_modules/lodash/_listCacheHas.js +16 -0
- package/docs/node_modules/lodash/_listCacheSet.js +26 -0
- package/docs/node_modules/lodash/_mapCacheClear.js +21 -0
- package/docs/node_modules/lodash/_mapCacheDelete.js +18 -0
- package/docs/node_modules/lodash/_mapCacheGet.js +16 -0
- package/docs/node_modules/lodash/_mapCacheHas.js +16 -0
- package/docs/node_modules/lodash/_mapCacheSet.js +22 -0
- package/docs/node_modules/lodash/_mapToArray.js +18 -0
- package/docs/node_modules/lodash/_matchesStrictComparable.js +20 -0
- package/docs/node_modules/lodash/_memoizeCapped.js +26 -0
- package/docs/node_modules/lodash/_mergeData.js +90 -0
- package/docs/node_modules/lodash/_metaMap.js +6 -0
- package/docs/node_modules/lodash/_nativeCreate.js +6 -0
- package/docs/node_modules/lodash/_nativeKeys.js +6 -0
- package/docs/node_modules/lodash/_nativeKeysIn.js +20 -0
- package/docs/node_modules/lodash/_nodeUtil.js +30 -0
- package/docs/node_modules/lodash/_objectToString.js +22 -0
- package/docs/node_modules/lodash/_overArg.js +15 -0
- package/docs/node_modules/lodash/_overRest.js +36 -0
- package/docs/node_modules/lodash/_parent.js +16 -0
- package/docs/node_modules/lodash/_reEscape.js +4 -0
- package/docs/node_modules/lodash/_reEvaluate.js +4 -0
- package/docs/node_modules/lodash/_reInterpolate.js +4 -0
- package/docs/node_modules/lodash/_realNames.js +4 -0
- package/docs/node_modules/lodash/_reorder.js +29 -0
- package/docs/node_modules/lodash/_replaceHolders.js +29 -0
- package/docs/node_modules/lodash/_root.js +9 -0
- package/docs/node_modules/lodash/_safeGet.js +21 -0
- package/docs/node_modules/lodash/_setCacheAdd.js +19 -0
- package/docs/node_modules/lodash/_setCacheHas.js +14 -0
- package/docs/node_modules/lodash/_setData.js +20 -0
- package/docs/node_modules/lodash/_setToArray.js +18 -0
- package/docs/node_modules/lodash/_setToPairs.js +18 -0
- package/docs/node_modules/lodash/_setToString.js +14 -0
- package/docs/node_modules/lodash/_setWrapToString.js +21 -0
- package/docs/node_modules/lodash/_shortOut.js +37 -0
- package/docs/node_modules/lodash/_shuffleSelf.js +28 -0
- package/docs/node_modules/lodash/_stackClear.js +15 -0
- package/docs/node_modules/lodash/_stackDelete.js +18 -0
- package/docs/node_modules/lodash/_stackGet.js +14 -0
- package/docs/node_modules/lodash/_stackHas.js +14 -0
- package/docs/node_modules/lodash/_stackSet.js +34 -0
- package/docs/node_modules/lodash/_strictIndexOf.js +23 -0
- package/docs/node_modules/lodash/_strictLastIndexOf.js +21 -0
- package/docs/node_modules/lodash/_stringSize.js +18 -0
- package/docs/node_modules/lodash/_stringToArray.js +18 -0
- package/docs/node_modules/lodash/_stringToPath.js +27 -0
- package/docs/node_modules/lodash/_toKey.js +21 -0
- package/docs/node_modules/lodash/_toSource.js +26 -0
- package/docs/node_modules/lodash/_trimmedEndIndex.js +19 -0
- package/docs/node_modules/lodash/_unescapeHtmlChar.js +21 -0
- package/docs/node_modules/lodash/_unicodeSize.js +44 -0
- package/docs/node_modules/lodash/_unicodeToArray.js +40 -0
- package/docs/node_modules/lodash/_unicodeWords.js +69 -0
- package/docs/node_modules/lodash/_updateWrapDetails.js +46 -0
- package/docs/node_modules/lodash/_wrapperClone.js +23 -0
- package/docs/node_modules/lodash/add.js +22 -0
- package/docs/node_modules/lodash/after.js +42 -0
- package/docs/node_modules/lodash/array.js +67 -0
- package/docs/node_modules/lodash/ary.js +29 -0
- package/docs/node_modules/lodash/assign.js +58 -0
- package/docs/node_modules/lodash/assignIn.js +40 -0
- package/docs/node_modules/lodash/assignInWith.js +38 -0
- package/docs/node_modules/lodash/assignWith.js +37 -0
- package/docs/node_modules/lodash/at.js +23 -0
- package/docs/node_modules/lodash/attempt.js +35 -0
- package/docs/node_modules/lodash/before.js +40 -0
- package/docs/node_modules/lodash/bind.js +57 -0
- package/docs/node_modules/lodash/bindAll.js +41 -0
- package/docs/node_modules/lodash/bindKey.js +68 -0
- package/docs/node_modules/lodash/camelCase.js +29 -0
- package/docs/node_modules/lodash/capitalize.js +23 -0
- package/docs/node_modules/lodash/castArray.js +44 -0
- package/docs/node_modules/lodash/ceil.js +26 -0
- package/docs/node_modules/lodash/chain.js +38 -0
- package/docs/node_modules/lodash/chunk.js +50 -0
- package/docs/node_modules/lodash/clamp.js +39 -0
- package/docs/node_modules/lodash/clone.js +36 -0
- package/docs/node_modules/lodash/cloneDeep.js +29 -0
- package/docs/node_modules/lodash/cloneDeepWith.js +40 -0
- package/docs/node_modules/lodash/cloneWith.js +42 -0
- package/docs/node_modules/lodash/collection.js +30 -0
- package/docs/node_modules/lodash/commit.js +33 -0
- package/docs/node_modules/lodash/compact.js +31 -0
- package/docs/node_modules/lodash/concat.js +43 -0
- package/docs/node_modules/lodash/cond.js +60 -0
- package/docs/node_modules/lodash/conforms.js +35 -0
- package/docs/node_modules/lodash/conformsTo.js +32 -0
- package/docs/node_modules/lodash/constant.js +26 -0
- package/docs/node_modules/lodash/core.js +3877 -0
- package/docs/node_modules/lodash/core.min.js +29 -0
- package/docs/node_modules/lodash/countBy.js +40 -0
- package/docs/node_modules/lodash/create.js +43 -0
- package/docs/node_modules/lodash/curry.js +57 -0
- package/docs/node_modules/lodash/curryRight.js +54 -0
- package/docs/node_modules/lodash/date.js +3 -0
- package/docs/node_modules/lodash/debounce.js +191 -0
- package/docs/node_modules/lodash/deburr.js +45 -0
- package/docs/node_modules/lodash/defaultTo.js +25 -0
- package/docs/node_modules/lodash/defaults.js +64 -0
- package/docs/node_modules/lodash/defaultsDeep.js +30 -0
- package/docs/node_modules/lodash/defer.js +26 -0
- package/docs/node_modules/lodash/delay.js +28 -0
- package/docs/node_modules/lodash/difference.js +33 -0
- package/docs/node_modules/lodash/differenceBy.js +44 -0
- package/docs/node_modules/lodash/differenceWith.js +40 -0
- package/docs/node_modules/lodash/divide.js +22 -0
- package/docs/node_modules/lodash/drop.js +38 -0
- package/docs/node_modules/lodash/dropRight.js +39 -0
- package/docs/node_modules/lodash/dropRightWhile.js +45 -0
- package/docs/node_modules/lodash/dropWhile.js +45 -0
- package/docs/node_modules/lodash/each.js +1 -0
- package/docs/node_modules/lodash/eachRight.js +1 -0
- package/docs/node_modules/lodash/endsWith.js +43 -0
- package/docs/node_modules/lodash/entries.js +1 -0
- package/docs/node_modules/lodash/entriesIn.js +1 -0
- package/docs/node_modules/lodash/eq.js +37 -0
- package/docs/node_modules/lodash/escape.js +43 -0
- package/docs/node_modules/lodash/escapeRegExp.js +32 -0
- package/docs/node_modules/lodash/every.js +56 -0
- package/docs/node_modules/lodash/extend.js +1 -0
- package/docs/node_modules/lodash/extendWith.js +1 -0
- package/docs/node_modules/lodash/fill.js +45 -0
- package/docs/node_modules/lodash/filter.js +52 -0
- package/docs/node_modules/lodash/find.js +42 -0
- package/docs/node_modules/lodash/findIndex.js +55 -0
- package/docs/node_modules/lodash/findKey.js +44 -0
- package/docs/node_modules/lodash/findLast.js +25 -0
- package/docs/node_modules/lodash/findLastIndex.js +59 -0
- package/docs/node_modules/lodash/findLastKey.js +44 -0
- package/docs/node_modules/lodash/first.js +1 -0
- package/docs/node_modules/lodash/flake.lock +40 -0
- package/docs/node_modules/lodash/flake.nix +20 -0
- package/docs/node_modules/lodash/flatMap.js +29 -0
- package/docs/node_modules/lodash/flatMapDeep.js +31 -0
- package/docs/node_modules/lodash/flatMapDepth.js +31 -0
- package/docs/node_modules/lodash/flatten.js +22 -0
- package/docs/node_modules/lodash/flattenDeep.js +25 -0
- package/docs/node_modules/lodash/flattenDepth.js +33 -0
- package/docs/node_modules/lodash/flip.js +28 -0
- package/docs/node_modules/lodash/floor.js +26 -0
- package/docs/node_modules/lodash/flow.js +27 -0
- package/docs/node_modules/lodash/flowRight.js +26 -0
- package/docs/node_modules/lodash/forEach.js +41 -0
- package/docs/node_modules/lodash/forEachRight.js +31 -0
- package/docs/node_modules/lodash/forIn.js +39 -0
- package/docs/node_modules/lodash/forInRight.js +37 -0
- package/docs/node_modules/lodash/forOwn.js +36 -0
- package/docs/node_modules/lodash/forOwnRight.js +34 -0
- package/docs/node_modules/lodash/fp/F.js +1 -0
- package/docs/node_modules/lodash/fp/T.js +1 -0
- package/docs/node_modules/lodash/fp/__.js +1 -0
- package/docs/node_modules/lodash/fp/_baseConvert.js +569 -0
- package/docs/node_modules/lodash/fp/_convertBrowser.js +18 -0
- package/docs/node_modules/lodash/fp/_falseOptions.js +7 -0
- package/docs/node_modules/lodash/fp/_mapping.js +358 -0
- package/docs/node_modules/lodash/fp/_util.js +16 -0
- package/docs/node_modules/lodash/fp/add.js +5 -0
- package/docs/node_modules/lodash/fp/after.js +5 -0
- package/docs/node_modules/lodash/fp/all.js +1 -0
- package/docs/node_modules/lodash/fp/allPass.js +1 -0
- package/docs/node_modules/lodash/fp/always.js +1 -0
- package/docs/node_modules/lodash/fp/any.js +1 -0
- package/docs/node_modules/lodash/fp/anyPass.js +1 -0
- package/docs/node_modules/lodash/fp/apply.js +1 -0
- package/docs/node_modules/lodash/fp/array.js +2 -0
- package/docs/node_modules/lodash/fp/ary.js +5 -0
- package/docs/node_modules/lodash/fp/assign.js +5 -0
- package/docs/node_modules/lodash/fp/assignAll.js +5 -0
- package/docs/node_modules/lodash/fp/assignAllWith.js +5 -0
- package/docs/node_modules/lodash/fp/assignIn.js +5 -0
- package/docs/node_modules/lodash/fp/assignInAll.js +5 -0
- package/docs/node_modules/lodash/fp/assignInAllWith.js +5 -0
- package/docs/node_modules/lodash/fp/assignInWith.js +5 -0
- package/docs/node_modules/lodash/fp/assignWith.js +5 -0
- package/docs/node_modules/lodash/fp/assoc.js +1 -0
- package/docs/node_modules/lodash/fp/assocPath.js +1 -0
- package/docs/node_modules/lodash/fp/at.js +5 -0
- package/docs/node_modules/lodash/fp/attempt.js +5 -0
- package/docs/node_modules/lodash/fp/before.js +5 -0
- package/docs/node_modules/lodash/fp/bind.js +5 -0
- package/docs/node_modules/lodash/fp/bindAll.js +5 -0
- package/docs/node_modules/lodash/fp/bindKey.js +5 -0
- package/docs/node_modules/lodash/fp/camelCase.js +5 -0
- package/docs/node_modules/lodash/fp/capitalize.js +5 -0
- package/docs/node_modules/lodash/fp/castArray.js +5 -0
- package/docs/node_modules/lodash/fp/ceil.js +5 -0
- package/docs/node_modules/lodash/fp/chain.js +5 -0
- package/docs/node_modules/lodash/fp/chunk.js +5 -0
- package/docs/node_modules/lodash/fp/clamp.js +5 -0
- package/docs/node_modules/lodash/fp/clone.js +5 -0
- package/docs/node_modules/lodash/fp/cloneDeep.js +5 -0
- package/docs/node_modules/lodash/fp/cloneDeepWith.js +5 -0
- package/docs/node_modules/lodash/fp/cloneWith.js +5 -0
- package/docs/node_modules/lodash/fp/collection.js +2 -0
- package/docs/node_modules/lodash/fp/commit.js +5 -0
- package/docs/node_modules/lodash/fp/compact.js +5 -0
- package/docs/node_modules/lodash/fp/complement.js +1 -0
- package/docs/node_modules/lodash/fp/compose.js +1 -0
- package/docs/node_modules/lodash/fp/concat.js +5 -0
- package/docs/node_modules/lodash/fp/cond.js +5 -0
- package/docs/node_modules/lodash/fp/conforms.js +1 -0
- package/docs/node_modules/lodash/fp/conformsTo.js +5 -0
- package/docs/node_modules/lodash/fp/constant.js +5 -0
- package/docs/node_modules/lodash/fp/contains.js +1 -0
- package/docs/node_modules/lodash/fp/convert.js +18 -0
- package/docs/node_modules/lodash/fp/countBy.js +5 -0
- package/docs/node_modules/lodash/fp/create.js +5 -0
- package/docs/node_modules/lodash/fp/curry.js +5 -0
- package/docs/node_modules/lodash/fp/curryN.js +5 -0
- package/docs/node_modules/lodash/fp/curryRight.js +5 -0
- package/docs/node_modules/lodash/fp/curryRightN.js +5 -0
- package/docs/node_modules/lodash/fp/date.js +2 -0
- package/docs/node_modules/lodash/fp/debounce.js +5 -0
- package/docs/node_modules/lodash/fp/deburr.js +5 -0
- package/docs/node_modules/lodash/fp/defaultTo.js +5 -0
- package/docs/node_modules/lodash/fp/defaults.js +5 -0
- package/docs/node_modules/lodash/fp/defaultsAll.js +5 -0
- package/docs/node_modules/lodash/fp/defaultsDeep.js +5 -0
- package/docs/node_modules/lodash/fp/defaultsDeepAll.js +5 -0
- package/docs/node_modules/lodash/fp/defer.js +5 -0
- package/docs/node_modules/lodash/fp/delay.js +5 -0
- package/docs/node_modules/lodash/fp/difference.js +5 -0
- package/docs/node_modules/lodash/fp/differenceBy.js +5 -0
- package/docs/node_modules/lodash/fp/differenceWith.js +5 -0
- package/docs/node_modules/lodash/fp/dissoc.js +1 -0
- package/docs/node_modules/lodash/fp/dissocPath.js +1 -0
- package/docs/node_modules/lodash/fp/divide.js +5 -0
- package/docs/node_modules/lodash/fp/drop.js +5 -0
- package/docs/node_modules/lodash/fp/dropLast.js +1 -0
- package/docs/node_modules/lodash/fp/dropLastWhile.js +1 -0
- package/docs/node_modules/lodash/fp/dropRight.js +5 -0
- package/docs/node_modules/lodash/fp/dropRightWhile.js +5 -0
- package/docs/node_modules/lodash/fp/dropWhile.js +5 -0
- package/docs/node_modules/lodash/fp/each.js +1 -0
- package/docs/node_modules/lodash/fp/eachRight.js +1 -0
- package/docs/node_modules/lodash/fp/endsWith.js +5 -0
- package/docs/node_modules/lodash/fp/entries.js +1 -0
- package/docs/node_modules/lodash/fp/entriesIn.js +1 -0
- package/docs/node_modules/lodash/fp/eq.js +5 -0
- package/docs/node_modules/lodash/fp/equals.js +1 -0
- package/docs/node_modules/lodash/fp/escape.js +5 -0
- package/docs/node_modules/lodash/fp/escapeRegExp.js +5 -0
- package/docs/node_modules/lodash/fp/every.js +5 -0
- package/docs/node_modules/lodash/fp/extend.js +1 -0
- package/docs/node_modules/lodash/fp/extendAll.js +1 -0
- package/docs/node_modules/lodash/fp/extendAllWith.js +1 -0
- package/docs/node_modules/lodash/fp/extendWith.js +1 -0
- package/docs/node_modules/lodash/fp/fill.js +5 -0
- package/docs/node_modules/lodash/fp/filter.js +5 -0
- package/docs/node_modules/lodash/fp/find.js +5 -0
- package/docs/node_modules/lodash/fp/findFrom.js +5 -0
- package/docs/node_modules/lodash/fp/findIndex.js +5 -0
- package/docs/node_modules/lodash/fp/findIndexFrom.js +5 -0
- package/docs/node_modules/lodash/fp/findKey.js +5 -0
- package/docs/node_modules/lodash/fp/findLast.js +5 -0
- package/docs/node_modules/lodash/fp/findLastFrom.js +5 -0
- package/docs/node_modules/lodash/fp/findLastIndex.js +5 -0
- package/docs/node_modules/lodash/fp/findLastIndexFrom.js +5 -0
- package/docs/node_modules/lodash/fp/findLastKey.js +5 -0
- package/docs/node_modules/lodash/fp/first.js +1 -0
- package/docs/node_modules/lodash/fp/flatMap.js +5 -0
- package/docs/node_modules/lodash/fp/flatMapDeep.js +5 -0
- package/docs/node_modules/lodash/fp/flatMapDepth.js +5 -0
- package/docs/node_modules/lodash/fp/flatten.js +5 -0
- package/docs/node_modules/lodash/fp/flattenDeep.js +5 -0
- package/docs/node_modules/lodash/fp/flattenDepth.js +5 -0
- package/docs/node_modules/lodash/fp/flip.js +5 -0
- package/docs/node_modules/lodash/fp/floor.js +5 -0
- package/docs/node_modules/lodash/fp/flow.js +5 -0
- package/docs/node_modules/lodash/fp/flowRight.js +5 -0
- package/docs/node_modules/lodash/fp/forEach.js +5 -0
- package/docs/node_modules/lodash/fp/forEachRight.js +5 -0
- package/docs/node_modules/lodash/fp/forIn.js +5 -0
- package/docs/node_modules/lodash/fp/forInRight.js +5 -0
- package/docs/node_modules/lodash/fp/forOwn.js +5 -0
- package/docs/node_modules/lodash/fp/forOwnRight.js +5 -0
- package/docs/node_modules/lodash/fp/fromPairs.js +5 -0
- package/docs/node_modules/lodash/fp/function.js +2 -0
- package/docs/node_modules/lodash/fp/functions.js +5 -0
- package/docs/node_modules/lodash/fp/functionsIn.js +5 -0
- package/docs/node_modules/lodash/fp/get.js +5 -0
- package/docs/node_modules/lodash/fp/getOr.js +5 -0
- package/docs/node_modules/lodash/fp/groupBy.js +5 -0
- package/docs/node_modules/lodash/fp/gt.js +5 -0
- package/docs/node_modules/lodash/fp/gte.js +5 -0
- package/docs/node_modules/lodash/fp/has.js +5 -0
- package/docs/node_modules/lodash/fp/hasIn.js +5 -0
- package/docs/node_modules/lodash/fp/head.js +5 -0
- package/docs/node_modules/lodash/fp/identical.js +1 -0
- package/docs/node_modules/lodash/fp/identity.js +5 -0
- package/docs/node_modules/lodash/fp/inRange.js +5 -0
- package/docs/node_modules/lodash/fp/includes.js +5 -0
- package/docs/node_modules/lodash/fp/includesFrom.js +5 -0
- package/docs/node_modules/lodash/fp/indexBy.js +1 -0
- package/docs/node_modules/lodash/fp/indexOf.js +5 -0
- package/docs/node_modules/lodash/fp/indexOfFrom.js +5 -0
- package/docs/node_modules/lodash/fp/init.js +1 -0
- package/docs/node_modules/lodash/fp/initial.js +5 -0
- package/docs/node_modules/lodash/fp/intersection.js +5 -0
- package/docs/node_modules/lodash/fp/intersectionBy.js +5 -0
- package/docs/node_modules/lodash/fp/intersectionWith.js +5 -0
- package/docs/node_modules/lodash/fp/invert.js +5 -0
- package/docs/node_modules/lodash/fp/invertBy.js +5 -0
- package/docs/node_modules/lodash/fp/invertObj.js +1 -0
- package/docs/node_modules/lodash/fp/invoke.js +5 -0
- package/docs/node_modules/lodash/fp/invokeArgs.js +5 -0
- package/docs/node_modules/lodash/fp/invokeArgsMap.js +5 -0
- package/docs/node_modules/lodash/fp/invokeMap.js +5 -0
- package/docs/node_modules/lodash/fp/isArguments.js +5 -0
- package/docs/node_modules/lodash/fp/isArray.js +5 -0
- package/docs/node_modules/lodash/fp/isArrayBuffer.js +5 -0
- package/docs/node_modules/lodash/fp/isArrayLike.js +5 -0
- package/docs/node_modules/lodash/fp/isArrayLikeObject.js +5 -0
- package/docs/node_modules/lodash/fp/isBoolean.js +5 -0
- package/docs/node_modules/lodash/fp/isBuffer.js +5 -0
- package/docs/node_modules/lodash/fp/isDate.js +5 -0
- package/docs/node_modules/lodash/fp/isElement.js +5 -0
- package/docs/node_modules/lodash/fp/isEmpty.js +5 -0
- package/docs/node_modules/lodash/fp/isEqual.js +5 -0
- package/docs/node_modules/lodash/fp/isEqualWith.js +5 -0
- package/docs/node_modules/lodash/fp/isError.js +5 -0
- package/docs/node_modules/lodash/fp/isFinite.js +5 -0
- package/docs/node_modules/lodash/fp/isFunction.js +5 -0
- package/docs/node_modules/lodash/fp/isInteger.js +5 -0
- package/docs/node_modules/lodash/fp/isLength.js +5 -0
- package/docs/node_modules/lodash/fp/isMap.js +5 -0
- package/docs/node_modules/lodash/fp/isMatch.js +5 -0
- package/docs/node_modules/lodash/fp/isMatchWith.js +5 -0
- package/docs/node_modules/lodash/fp/isNaN.js +5 -0
- package/docs/node_modules/lodash/fp/isNative.js +5 -0
- package/docs/node_modules/lodash/fp/isNil.js +5 -0
- package/docs/node_modules/lodash/fp/isNull.js +5 -0
- package/docs/node_modules/lodash/fp/isNumber.js +5 -0
- package/docs/node_modules/lodash/fp/isObject.js +5 -0
- package/docs/node_modules/lodash/fp/isObjectLike.js +5 -0
- package/docs/node_modules/lodash/fp/isPlainObject.js +5 -0
- package/docs/node_modules/lodash/fp/isRegExp.js +5 -0
- package/docs/node_modules/lodash/fp/isSafeInteger.js +5 -0
- package/docs/node_modules/lodash/fp/isSet.js +5 -0
- package/docs/node_modules/lodash/fp/isString.js +5 -0
- package/docs/node_modules/lodash/fp/isSymbol.js +5 -0
- package/docs/node_modules/lodash/fp/isTypedArray.js +5 -0
- package/docs/node_modules/lodash/fp/isUndefined.js +5 -0
- package/docs/node_modules/lodash/fp/isWeakMap.js +5 -0
- package/docs/node_modules/lodash/fp/isWeakSet.js +5 -0
- package/docs/node_modules/lodash/fp/iteratee.js +5 -0
- package/docs/node_modules/lodash/fp/join.js +5 -0
- package/docs/node_modules/lodash/fp/juxt.js +1 -0
- package/docs/node_modules/lodash/fp/kebabCase.js +5 -0
- package/docs/node_modules/lodash/fp/keyBy.js +5 -0
- package/docs/node_modules/lodash/fp/keys.js +5 -0
- package/docs/node_modules/lodash/fp/keysIn.js +5 -0
- package/docs/node_modules/lodash/fp/lang.js +2 -0
- package/docs/node_modules/lodash/fp/last.js +5 -0
- package/docs/node_modules/lodash/fp/lastIndexOf.js +5 -0
- package/docs/node_modules/lodash/fp/lastIndexOfFrom.js +5 -0
- package/docs/node_modules/lodash/fp/lowerCase.js +5 -0
- package/docs/node_modules/lodash/fp/lowerFirst.js +5 -0
- package/docs/node_modules/lodash/fp/lt.js +5 -0
- package/docs/node_modules/lodash/fp/lte.js +5 -0
- package/docs/node_modules/lodash/fp/map.js +5 -0
- package/docs/node_modules/lodash/fp/mapKeys.js +5 -0
- package/docs/node_modules/lodash/fp/mapValues.js +5 -0
- package/docs/node_modules/lodash/fp/matches.js +1 -0
- package/docs/node_modules/lodash/fp/matchesProperty.js +5 -0
- package/docs/node_modules/lodash/fp/math.js +2 -0
- package/docs/node_modules/lodash/fp/max.js +5 -0
- package/docs/node_modules/lodash/fp/maxBy.js +5 -0
- package/docs/node_modules/lodash/fp/mean.js +5 -0
- package/docs/node_modules/lodash/fp/meanBy.js +5 -0
- package/docs/node_modules/lodash/fp/memoize.js +5 -0
- package/docs/node_modules/lodash/fp/merge.js +5 -0
- package/docs/node_modules/lodash/fp/mergeAll.js +5 -0
- package/docs/node_modules/lodash/fp/mergeAllWith.js +5 -0
- package/docs/node_modules/lodash/fp/mergeWith.js +5 -0
- package/docs/node_modules/lodash/fp/method.js +5 -0
- package/docs/node_modules/lodash/fp/methodOf.js +5 -0
- package/docs/node_modules/lodash/fp/min.js +5 -0
- package/docs/node_modules/lodash/fp/minBy.js +5 -0
- package/docs/node_modules/lodash/fp/mixin.js +5 -0
- package/docs/node_modules/lodash/fp/multiply.js +5 -0
- package/docs/node_modules/lodash/fp/nAry.js +1 -0
- package/docs/node_modules/lodash/fp/negate.js +5 -0
- package/docs/node_modules/lodash/fp/next.js +5 -0
- package/docs/node_modules/lodash/fp/noop.js +5 -0
- package/docs/node_modules/lodash/fp/now.js +5 -0
- package/docs/node_modules/lodash/fp/nth.js +5 -0
- package/docs/node_modules/lodash/fp/nthArg.js +5 -0
- package/docs/node_modules/lodash/fp/number.js +2 -0
- package/docs/node_modules/lodash/fp/object.js +2 -0
- package/docs/node_modules/lodash/fp/omit.js +5 -0
- package/docs/node_modules/lodash/fp/omitAll.js +1 -0
- package/docs/node_modules/lodash/fp/omitBy.js +5 -0
- package/docs/node_modules/lodash/fp/once.js +5 -0
- package/docs/node_modules/lodash/fp/orderBy.js +5 -0
- package/docs/node_modules/lodash/fp/over.js +5 -0
- package/docs/node_modules/lodash/fp/overArgs.js +5 -0
- package/docs/node_modules/lodash/fp/overEvery.js +5 -0
- package/docs/node_modules/lodash/fp/overSome.js +5 -0
- package/docs/node_modules/lodash/fp/pad.js +5 -0
- package/docs/node_modules/lodash/fp/padChars.js +5 -0
- package/docs/node_modules/lodash/fp/padCharsEnd.js +5 -0
- package/docs/node_modules/lodash/fp/padCharsStart.js +5 -0
- package/docs/node_modules/lodash/fp/padEnd.js +5 -0
- package/docs/node_modules/lodash/fp/padStart.js +5 -0
- package/docs/node_modules/lodash/fp/parseInt.js +5 -0
- package/docs/node_modules/lodash/fp/partial.js +5 -0
- package/docs/node_modules/lodash/fp/partialRight.js +5 -0
- package/docs/node_modules/lodash/fp/partition.js +5 -0
- package/docs/node_modules/lodash/fp/path.js +1 -0
- package/docs/node_modules/lodash/fp/pathEq.js +1 -0
- package/docs/node_modules/lodash/fp/pathOr.js +1 -0
- package/docs/node_modules/lodash/fp/paths.js +1 -0
- package/docs/node_modules/lodash/fp/pick.js +5 -0
- package/docs/node_modules/lodash/fp/pickAll.js +1 -0
- package/docs/node_modules/lodash/fp/pickBy.js +5 -0
- package/docs/node_modules/lodash/fp/pipe.js +1 -0
- package/docs/node_modules/lodash/fp/placeholder.js +6 -0
- package/docs/node_modules/lodash/fp/plant.js +5 -0
- package/docs/node_modules/lodash/fp/pluck.js +1 -0
- package/docs/node_modules/lodash/fp/prop.js +1 -0
- package/docs/node_modules/lodash/fp/propEq.js +1 -0
- package/docs/node_modules/lodash/fp/propOr.js +1 -0
- package/docs/node_modules/lodash/fp/property.js +1 -0
- package/docs/node_modules/lodash/fp/propertyOf.js +5 -0
- package/docs/node_modules/lodash/fp/props.js +1 -0
- package/docs/node_modules/lodash/fp/pull.js +5 -0
- package/docs/node_modules/lodash/fp/pullAll.js +5 -0
- package/docs/node_modules/lodash/fp/pullAllBy.js +5 -0
- package/docs/node_modules/lodash/fp/pullAllWith.js +5 -0
- package/docs/node_modules/lodash/fp/pullAt.js +5 -0
- package/docs/node_modules/lodash/fp/random.js +5 -0
- package/docs/node_modules/lodash/fp/range.js +5 -0
- package/docs/node_modules/lodash/fp/rangeRight.js +5 -0
- package/docs/node_modules/lodash/fp/rangeStep.js +5 -0
- package/docs/node_modules/lodash/fp/rangeStepRight.js +5 -0
- package/docs/node_modules/lodash/fp/rearg.js +5 -0
- package/docs/node_modules/lodash/fp/reduce.js +5 -0
- package/docs/node_modules/lodash/fp/reduceRight.js +5 -0
- package/docs/node_modules/lodash/fp/reject.js +5 -0
- package/docs/node_modules/lodash/fp/remove.js +5 -0
- package/docs/node_modules/lodash/fp/repeat.js +5 -0
- package/docs/node_modules/lodash/fp/replace.js +5 -0
- package/docs/node_modules/lodash/fp/rest.js +5 -0
- package/docs/node_modules/lodash/fp/restFrom.js +5 -0
- package/docs/node_modules/lodash/fp/result.js +5 -0
- package/docs/node_modules/lodash/fp/reverse.js +5 -0
- package/docs/node_modules/lodash/fp/round.js +5 -0
- package/docs/node_modules/lodash/fp/sample.js +5 -0
- package/docs/node_modules/lodash/fp/sampleSize.js +5 -0
- package/docs/node_modules/lodash/fp/seq.js +2 -0
- package/docs/node_modules/lodash/fp/set.js +5 -0
- package/docs/node_modules/lodash/fp/setWith.js +5 -0
- package/docs/node_modules/lodash/fp/shuffle.js +5 -0
- package/docs/node_modules/lodash/fp/size.js +5 -0
- package/docs/node_modules/lodash/fp/slice.js +5 -0
- package/docs/node_modules/lodash/fp/snakeCase.js +5 -0
- package/docs/node_modules/lodash/fp/some.js +5 -0
- package/docs/node_modules/lodash/fp/sortBy.js +5 -0
- package/docs/node_modules/lodash/fp/sortedIndex.js +5 -0
- package/docs/node_modules/lodash/fp/sortedIndexBy.js +5 -0
- package/docs/node_modules/lodash/fp/sortedIndexOf.js +5 -0
- package/docs/node_modules/lodash/fp/sortedLastIndex.js +5 -0
- package/docs/node_modules/lodash/fp/sortedLastIndexBy.js +5 -0
- package/docs/node_modules/lodash/fp/sortedLastIndexOf.js +5 -0
- package/docs/node_modules/lodash/fp/sortedUniq.js +5 -0
- package/docs/node_modules/lodash/fp/sortedUniqBy.js +5 -0
- package/docs/node_modules/lodash/fp/split.js +5 -0
- package/docs/node_modules/lodash/fp/spread.js +5 -0
- package/docs/node_modules/lodash/fp/spreadFrom.js +5 -0
- package/docs/node_modules/lodash/fp/startCase.js +5 -0
- package/docs/node_modules/lodash/fp/startsWith.js +5 -0
- package/docs/node_modules/lodash/fp/string.js +2 -0
- package/docs/node_modules/lodash/fp/stubArray.js +5 -0
- package/docs/node_modules/lodash/fp/stubFalse.js +5 -0
- package/docs/node_modules/lodash/fp/stubObject.js +5 -0
- package/docs/node_modules/lodash/fp/stubString.js +5 -0
- package/docs/node_modules/lodash/fp/stubTrue.js +5 -0
- package/docs/node_modules/lodash/fp/subtract.js +5 -0
- package/docs/node_modules/lodash/fp/sum.js +5 -0
- package/docs/node_modules/lodash/fp/sumBy.js +5 -0
- package/docs/node_modules/lodash/fp/symmetricDifference.js +1 -0
- package/docs/node_modules/lodash/fp/symmetricDifferenceBy.js +1 -0
- package/docs/node_modules/lodash/fp/symmetricDifferenceWith.js +1 -0
- package/docs/node_modules/lodash/fp/tail.js +5 -0
- package/docs/node_modules/lodash/fp/take.js +5 -0
- package/docs/node_modules/lodash/fp/takeLast.js +1 -0
- package/docs/node_modules/lodash/fp/takeLastWhile.js +1 -0
- package/docs/node_modules/lodash/fp/takeRight.js +5 -0
- package/docs/node_modules/lodash/fp/takeRightWhile.js +5 -0
- package/docs/node_modules/lodash/fp/takeWhile.js +5 -0
- package/docs/node_modules/lodash/fp/tap.js +5 -0
- package/docs/node_modules/lodash/fp/template.js +5 -0
- package/docs/node_modules/lodash/fp/templateSettings.js +5 -0
- package/docs/node_modules/lodash/fp/throttle.js +5 -0
- package/docs/node_modules/lodash/fp/thru.js +5 -0
- package/docs/node_modules/lodash/fp/times.js +5 -0
- package/docs/node_modules/lodash/fp/toArray.js +5 -0
- package/docs/node_modules/lodash/fp/toFinite.js +5 -0
- package/docs/node_modules/lodash/fp/toInteger.js +5 -0
- package/docs/node_modules/lodash/fp/toIterator.js +5 -0
- package/docs/node_modules/lodash/fp/toJSON.js +5 -0
- package/docs/node_modules/lodash/fp/toLength.js +5 -0
- package/docs/node_modules/lodash/fp/toLower.js +5 -0
- package/docs/node_modules/lodash/fp/toNumber.js +5 -0
- package/docs/node_modules/lodash/fp/toPairs.js +5 -0
- package/docs/node_modules/lodash/fp/toPairsIn.js +5 -0
- package/docs/node_modules/lodash/fp/toPath.js +5 -0
- package/docs/node_modules/lodash/fp/toPlainObject.js +5 -0
- package/docs/node_modules/lodash/fp/toSafeInteger.js +5 -0
- package/docs/node_modules/lodash/fp/toString.js +5 -0
- package/docs/node_modules/lodash/fp/toUpper.js +5 -0
- package/docs/node_modules/lodash/fp/transform.js +5 -0
- package/docs/node_modules/lodash/fp/trim.js +5 -0
- package/docs/node_modules/lodash/fp/trimChars.js +5 -0
- package/docs/node_modules/lodash/fp/trimCharsEnd.js +5 -0
- package/docs/node_modules/lodash/fp/trimCharsStart.js +5 -0
- package/docs/node_modules/lodash/fp/trimEnd.js +5 -0
- package/docs/node_modules/lodash/fp/trimStart.js +5 -0
- package/docs/node_modules/lodash/fp/truncate.js +5 -0
- package/docs/node_modules/lodash/fp/unapply.js +1 -0
- package/docs/node_modules/lodash/fp/unary.js +5 -0
- package/docs/node_modules/lodash/fp/unescape.js +5 -0
- package/docs/node_modules/lodash/fp/union.js +5 -0
- package/docs/node_modules/lodash/fp/unionBy.js +5 -0
- package/docs/node_modules/lodash/fp/unionWith.js +5 -0
- package/docs/node_modules/lodash/fp/uniq.js +5 -0
- package/docs/node_modules/lodash/fp/uniqBy.js +5 -0
- package/docs/node_modules/lodash/fp/uniqWith.js +5 -0
- package/docs/node_modules/lodash/fp/uniqueId.js +5 -0
- package/docs/node_modules/lodash/fp/unnest.js +1 -0
- package/docs/node_modules/lodash/fp/unset.js +5 -0
- package/docs/node_modules/lodash/fp/unzip.js +5 -0
- package/docs/node_modules/lodash/fp/unzipWith.js +5 -0
- package/docs/node_modules/lodash/fp/update.js +5 -0
- package/docs/node_modules/lodash/fp/updateWith.js +5 -0
- package/docs/node_modules/lodash/fp/upperCase.js +5 -0
- package/docs/node_modules/lodash/fp/upperFirst.js +5 -0
- package/docs/node_modules/lodash/fp/useWith.js +1 -0
- package/docs/node_modules/lodash/fp/util.js +2 -0
- package/docs/node_modules/lodash/fp/value.js +5 -0
- package/docs/node_modules/lodash/fp/valueOf.js +5 -0
- package/docs/node_modules/lodash/fp/values.js +5 -0
- package/docs/node_modules/lodash/fp/valuesIn.js +5 -0
- package/docs/node_modules/lodash/fp/where.js +1 -0
- package/docs/node_modules/lodash/fp/whereEq.js +1 -0
- package/docs/node_modules/lodash/fp/without.js +5 -0
- package/docs/node_modules/lodash/fp/words.js +5 -0
- package/docs/node_modules/lodash/fp/wrap.js +5 -0
- package/docs/node_modules/lodash/fp/wrapperAt.js +5 -0
- package/docs/node_modules/lodash/fp/wrapperChain.js +5 -0
- package/docs/node_modules/lodash/fp/wrapperLodash.js +5 -0
- package/docs/node_modules/lodash/fp/wrapperReverse.js +5 -0
- package/docs/node_modules/lodash/fp/wrapperValue.js +5 -0
- package/docs/node_modules/lodash/fp/xor.js +5 -0
- package/docs/node_modules/lodash/fp/xorBy.js +5 -0
- package/docs/node_modules/lodash/fp/xorWith.js +5 -0
- package/docs/node_modules/lodash/fp/zip.js +5 -0
- package/docs/node_modules/lodash/fp/zipAll.js +5 -0
- package/docs/node_modules/lodash/fp/zipObj.js +1 -0
- package/docs/node_modules/lodash/fp/zipObject.js +5 -0
- package/docs/node_modules/lodash/fp/zipObjectDeep.js +5 -0
- package/docs/node_modules/lodash/fp/zipWith.js +5 -0
- package/docs/node_modules/lodash/fp.js +2 -0
- package/docs/node_modules/lodash/fromPairs.js +28 -0
- package/docs/node_modules/lodash/function.js +25 -0
- package/docs/node_modules/lodash/functions.js +31 -0
- package/docs/node_modules/lodash/functionsIn.js +31 -0
- package/docs/node_modules/lodash/get.js +33 -0
- package/docs/node_modules/lodash/groupBy.js +41 -0
- package/docs/node_modules/lodash/gt.js +29 -0
- package/docs/node_modules/lodash/gte.js +30 -0
- package/docs/node_modules/lodash/has.js +35 -0
- package/docs/node_modules/lodash/hasIn.js +34 -0
- package/docs/node_modules/lodash/head.js +23 -0
- package/docs/node_modules/lodash/identity.js +21 -0
- package/docs/node_modules/lodash/inRange.js +55 -0
- package/docs/node_modules/lodash/includes.js +53 -0
- package/docs/node_modules/lodash/index.js +1 -0
- package/docs/node_modules/lodash/indexOf.js +42 -0
- package/docs/node_modules/lodash/initial.js +22 -0
- package/docs/node_modules/lodash/intersection.js +30 -0
- package/docs/node_modules/lodash/intersectionBy.js +45 -0
- package/docs/node_modules/lodash/intersectionWith.js +41 -0
- package/docs/node_modules/lodash/invert.js +42 -0
- package/docs/node_modules/lodash/invertBy.js +56 -0
- package/docs/node_modules/lodash/invoke.js +24 -0
- package/docs/node_modules/lodash/invokeMap.js +41 -0
- package/docs/node_modules/lodash/isArguments.js +36 -0
- package/docs/node_modules/lodash/isArray.js +26 -0
- package/docs/node_modules/lodash/isArrayBuffer.js +27 -0
- package/docs/node_modules/lodash/isArrayLike.js +33 -0
- package/docs/node_modules/lodash/isArrayLikeObject.js +33 -0
- package/docs/node_modules/lodash/isBoolean.js +29 -0
- package/docs/node_modules/lodash/isBuffer.js +38 -0
- package/docs/node_modules/lodash/isDate.js +27 -0
- package/docs/node_modules/lodash/isElement.js +25 -0
- package/docs/node_modules/lodash/isEmpty.js +77 -0
- package/docs/node_modules/lodash/isEqual.js +35 -0
- package/docs/node_modules/lodash/isEqualWith.js +41 -0
- package/docs/node_modules/lodash/isError.js +36 -0
- package/docs/node_modules/lodash/isFinite.js +36 -0
- package/docs/node_modules/lodash/isFunction.js +37 -0
- package/docs/node_modules/lodash/isInteger.js +33 -0
- package/docs/node_modules/lodash/isLength.js +35 -0
- package/docs/node_modules/lodash/isMap.js +27 -0
- package/docs/node_modules/lodash/isMatch.js +36 -0
- package/docs/node_modules/lodash/isMatchWith.js +41 -0
- package/docs/node_modules/lodash/isNaN.js +38 -0
- package/docs/node_modules/lodash/isNative.js +40 -0
- package/docs/node_modules/lodash/isNil.js +25 -0
- package/docs/node_modules/lodash/isNull.js +22 -0
- package/docs/node_modules/lodash/isNumber.js +38 -0
- package/docs/node_modules/lodash/isObject.js +31 -0
- package/docs/node_modules/lodash/isObjectLike.js +29 -0
- package/docs/node_modules/lodash/isPlainObject.js +62 -0
- package/docs/node_modules/lodash/isRegExp.js +27 -0
- package/docs/node_modules/lodash/isSafeInteger.js +37 -0
- package/docs/node_modules/lodash/isSet.js +27 -0
- package/docs/node_modules/lodash/isString.js +30 -0
- package/docs/node_modules/lodash/isSymbol.js +29 -0
- package/docs/node_modules/lodash/isTypedArray.js +27 -0
- package/docs/node_modules/lodash/isUndefined.js +22 -0
- package/docs/node_modules/lodash/isWeakMap.js +28 -0
- package/docs/node_modules/lodash/isWeakSet.js +28 -0
- package/docs/node_modules/lodash/iteratee.js +53 -0
- package/docs/node_modules/lodash/join.js +26 -0
- package/docs/node_modules/lodash/kebabCase.js +28 -0
- package/docs/node_modules/lodash/keyBy.js +36 -0
- package/docs/node_modules/lodash/keys.js +37 -0
- package/docs/node_modules/lodash/keysIn.js +32 -0
- package/docs/node_modules/lodash/lang.js +58 -0
- package/docs/node_modules/lodash/last.js +20 -0
- package/docs/node_modules/lodash/lastIndexOf.js +46 -0
- package/docs/node_modules/lodash/lodash.js +17209 -0
- package/docs/node_modules/lodash/lodash.min.js +140 -0
- package/docs/node_modules/lodash/lowerCase.js +27 -0
- package/docs/node_modules/lodash/lowerFirst.js +22 -0
- package/docs/node_modules/lodash/lt.js +29 -0
- package/docs/node_modules/lodash/lte.js +30 -0
- package/docs/node_modules/lodash/map.js +53 -0
- package/docs/node_modules/lodash/mapKeys.js +36 -0
- package/docs/node_modules/lodash/mapValues.js +43 -0
- package/docs/node_modules/lodash/matches.js +46 -0
- package/docs/node_modules/lodash/matchesProperty.js +44 -0
- package/docs/node_modules/lodash/math.js +17 -0
- package/docs/node_modules/lodash/max.js +29 -0
- package/docs/node_modules/lodash/maxBy.js +34 -0
- package/docs/node_modules/lodash/mean.js +22 -0
- package/docs/node_modules/lodash/meanBy.js +31 -0
- package/docs/node_modules/lodash/memoize.js +73 -0
- package/docs/node_modules/lodash/merge.js +39 -0
- package/docs/node_modules/lodash/mergeWith.js +39 -0
- package/docs/node_modules/lodash/method.js +34 -0
- package/docs/node_modules/lodash/methodOf.js +33 -0
- package/docs/node_modules/lodash/min.js +29 -0
- package/docs/node_modules/lodash/minBy.js +34 -0
- package/docs/node_modules/lodash/mixin.js +74 -0
- package/docs/node_modules/lodash/multiply.js +22 -0
- package/docs/node_modules/lodash/negate.js +40 -0
- package/docs/node_modules/lodash/next.js +35 -0
- package/docs/node_modules/lodash/noop.js +17 -0
- package/docs/node_modules/lodash/now.js +23 -0
- package/docs/node_modules/lodash/nth.js +29 -0
- package/docs/node_modules/lodash/nthArg.js +32 -0
- package/docs/node_modules/lodash/number.js +5 -0
- package/docs/node_modules/lodash/object.js +49 -0
- package/docs/node_modules/lodash/omit.js +57 -0
- package/docs/node_modules/lodash/omitBy.js +29 -0
- package/docs/node_modules/lodash/once.js +25 -0
- package/docs/node_modules/lodash/orderBy.js +47 -0
- package/docs/node_modules/lodash/over.js +24 -0
- package/docs/node_modules/lodash/overArgs.js +61 -0
- package/docs/node_modules/lodash/overEvery.js +34 -0
- package/docs/node_modules/lodash/overSome.js +37 -0
- package/docs/node_modules/lodash/package.json +17 -0
- package/docs/node_modules/lodash/pad.js +49 -0
- package/docs/node_modules/lodash/padEnd.js +39 -0
- package/docs/node_modules/lodash/padStart.js +39 -0
- package/docs/node_modules/lodash/parseInt.js +43 -0
- package/docs/node_modules/lodash/partial.js +50 -0
- package/docs/node_modules/lodash/partialRight.js +49 -0
- package/docs/node_modules/lodash/partition.js +43 -0
- package/docs/node_modules/lodash/pick.js +25 -0
- package/docs/node_modules/lodash/pickBy.js +37 -0
- package/docs/node_modules/lodash/plant.js +48 -0
- package/docs/node_modules/lodash/property.js +32 -0
- package/docs/node_modules/lodash/propertyOf.js +30 -0
- package/docs/node_modules/lodash/pull.js +29 -0
- package/docs/node_modules/lodash/pullAll.js +29 -0
- package/docs/node_modules/lodash/pullAllBy.js +33 -0
- package/docs/node_modules/lodash/pullAllWith.js +32 -0
- package/docs/node_modules/lodash/pullAt.js +43 -0
- package/docs/node_modules/lodash/random.js +82 -0
- package/docs/node_modules/lodash/range.js +46 -0
- package/docs/node_modules/lodash/rangeRight.js +41 -0
- package/docs/node_modules/lodash/rearg.js +33 -0
- package/docs/node_modules/lodash/reduce.js +51 -0
- package/docs/node_modules/lodash/reduceRight.js +36 -0
- package/docs/node_modules/lodash/reject.js +46 -0
- package/docs/node_modules/lodash/release.md +48 -0
- package/docs/node_modules/lodash/remove.js +53 -0
- package/docs/node_modules/lodash/repeat.js +37 -0
- package/docs/node_modules/lodash/replace.js +29 -0
- package/docs/node_modules/lodash/rest.js +40 -0
- package/docs/node_modules/lodash/result.js +56 -0
- package/docs/node_modules/lodash/reverse.js +34 -0
- package/docs/node_modules/lodash/round.js +26 -0
- package/docs/node_modules/lodash/sample.js +24 -0
- package/docs/node_modules/lodash/sampleSize.js +37 -0
- package/docs/node_modules/lodash/seq.js +16 -0
- package/docs/node_modules/lodash/set.js +35 -0
- package/docs/node_modules/lodash/setWith.js +32 -0
- package/docs/node_modules/lodash/shuffle.js +25 -0
- package/docs/node_modules/lodash/size.js +46 -0
- package/docs/node_modules/lodash/slice.js +37 -0
- package/docs/node_modules/lodash/snakeCase.js +28 -0
- package/docs/node_modules/lodash/some.js +51 -0
- package/docs/node_modules/lodash/sortBy.js +48 -0
- package/docs/node_modules/lodash/sortedIndex.js +24 -0
- package/docs/node_modules/lodash/sortedIndexBy.js +33 -0
- package/docs/node_modules/lodash/sortedIndexOf.js +31 -0
- package/docs/node_modules/lodash/sortedLastIndex.js +25 -0
- package/docs/node_modules/lodash/sortedLastIndexBy.js +33 -0
- package/docs/node_modules/lodash/sortedLastIndexOf.js +31 -0
- package/docs/node_modules/lodash/sortedUniq.js +24 -0
- package/docs/node_modules/lodash/sortedUniqBy.js +26 -0
- package/docs/node_modules/lodash/split.js +52 -0
- package/docs/node_modules/lodash/spread.js +63 -0
- package/docs/node_modules/lodash/startCase.js +29 -0
- package/docs/node_modules/lodash/startsWith.js +39 -0
- package/docs/node_modules/lodash/string.js +33 -0
- package/docs/node_modules/lodash/stubArray.js +23 -0
- package/docs/node_modules/lodash/stubFalse.js +18 -0
- package/docs/node_modules/lodash/stubObject.js +23 -0
- package/docs/node_modules/lodash/stubString.js +18 -0
- package/docs/node_modules/lodash/stubTrue.js +18 -0
- package/docs/node_modules/lodash/subtract.js +22 -0
- package/docs/node_modules/lodash/sum.js +24 -0
- package/docs/node_modules/lodash/sumBy.js +33 -0
- package/docs/node_modules/lodash/tail.js +22 -0
- package/docs/node_modules/lodash/take.js +37 -0
- package/docs/node_modules/lodash/takeRight.js +39 -0
- package/docs/node_modules/lodash/takeRightWhile.js +45 -0
- package/docs/node_modules/lodash/takeWhile.js +45 -0
- package/docs/node_modules/lodash/tap.js +29 -0
- package/docs/node_modules/lodash/template.js +272 -0
- package/docs/node_modules/lodash/templateSettings.js +67 -0
- package/docs/node_modules/lodash/throttle.js +69 -0
- package/docs/node_modules/lodash/thru.js +28 -0
- package/docs/node_modules/lodash/times.js +51 -0
- package/docs/node_modules/lodash/toArray.js +58 -0
- package/docs/node_modules/lodash/toFinite.js +42 -0
- package/docs/node_modules/lodash/toInteger.js +36 -0
- package/docs/node_modules/lodash/toIterator.js +23 -0
- package/docs/node_modules/lodash/toJSON.js +1 -0
- package/docs/node_modules/lodash/toLength.js +38 -0
- package/docs/node_modules/lodash/toLower.js +28 -0
- package/docs/node_modules/lodash/toNumber.js +64 -0
- package/docs/node_modules/lodash/toPairs.js +30 -0
- package/docs/node_modules/lodash/toPairsIn.js +30 -0
- package/docs/node_modules/lodash/toPath.js +33 -0
- package/docs/node_modules/lodash/toPlainObject.js +32 -0
- package/docs/node_modules/lodash/toSafeInteger.js +37 -0
- package/docs/node_modules/lodash/toString.js +28 -0
- package/docs/node_modules/lodash/toUpper.js +28 -0
- package/docs/node_modules/lodash/transform.js +65 -0
- package/docs/node_modules/lodash/trim.js +47 -0
- package/docs/node_modules/lodash/trimEnd.js +41 -0
- package/docs/node_modules/lodash/trimStart.js +43 -0
- package/docs/node_modules/lodash/truncate.js +111 -0
- package/docs/node_modules/lodash/unary.js +22 -0
- package/docs/node_modules/lodash/unescape.js +34 -0
- package/docs/node_modules/lodash/union.js +26 -0
- package/docs/node_modules/lodash/unionBy.js +39 -0
- package/docs/node_modules/lodash/unionWith.js +34 -0
- package/docs/node_modules/lodash/uniq.js +25 -0
- package/docs/node_modules/lodash/uniqBy.js +31 -0
- package/docs/node_modules/lodash/uniqWith.js +28 -0
- package/docs/node_modules/lodash/uniqueId.js +28 -0
- package/docs/node_modules/lodash/unset.js +34 -0
- package/docs/node_modules/lodash/unzip.js +45 -0
- package/docs/node_modules/lodash/unzipWith.js +39 -0
- package/docs/node_modules/lodash/update.js +35 -0
- package/docs/node_modules/lodash/updateWith.js +33 -0
- package/docs/node_modules/lodash/upperCase.js +27 -0
- package/docs/node_modules/lodash/upperFirst.js +22 -0
- package/docs/node_modules/lodash/util.js +34 -0
- package/docs/node_modules/lodash/value.js +1 -0
- package/docs/node_modules/lodash/valueOf.js +1 -0
- package/docs/node_modules/lodash/values.js +34 -0
- package/docs/node_modules/lodash/valuesIn.js +32 -0
- package/docs/node_modules/lodash/without.js +31 -0
- package/docs/node_modules/lodash/words.js +35 -0
- package/docs/node_modules/lodash/wrap.js +30 -0
- package/docs/node_modules/lodash/wrapperAt.js +48 -0
- package/docs/node_modules/lodash/wrapperChain.js +34 -0
- package/docs/node_modules/lodash/wrapperLodash.js +147 -0
- package/docs/node_modules/lodash/wrapperReverse.js +44 -0
- package/docs/node_modules/lodash/wrapperValue.js +21 -0
- package/docs/node_modules/lodash/xor.js +28 -0
- package/docs/node_modules/lodash/xorBy.js +39 -0
- package/docs/node_modules/lodash/xorWith.js +34 -0
- package/docs/node_modules/lodash/zip.js +22 -0
- package/docs/node_modules/lodash/zipObject.js +24 -0
- package/docs/node_modules/lodash/zipObjectDeep.js +23 -0
- package/docs/node_modules/lodash/zipWith.js +32 -0
- package/docs/node_modules/markdown-it/LICENSE +22 -0
- package/docs/node_modules/markdown-it/README.md +324 -0
- package/docs/node_modules/markdown-it/bin/markdown-it.mjs +107 -0
- package/docs/node_modules/markdown-it/dist/index.cjs.js +5540 -0
- package/docs/node_modules/markdown-it/dist/markdown-it.js +6963 -0
- package/docs/node_modules/markdown-it/dist/markdown-it.min.js +2 -0
- package/docs/node_modules/markdown-it/index.mjs +1 -0
- package/docs/node_modules/markdown-it/lib/common/html_blocks.mjs +67 -0
- package/docs/node_modules/markdown-it/lib/common/html_re.mjs +25 -0
- package/docs/node_modules/markdown-it/lib/common/utils.mjs +304 -0
- package/docs/node_modules/markdown-it/lib/helpers/index.mjs +11 -0
- package/docs/node_modules/markdown-it/lib/helpers/parse_link_destination.mjs +77 -0
- package/docs/node_modules/markdown-it/lib/helpers/parse_link_label.mjs +49 -0
- package/docs/node_modules/markdown-it/lib/helpers/parse_link_title.mjs +66 -0
- package/docs/node_modules/markdown-it/lib/index.mjs +565 -0
- package/docs/node_modules/markdown-it/lib/parser_block.mjs +134 -0
- package/docs/node_modules/markdown-it/lib/parser_core.mjs +62 -0
- package/docs/node_modules/markdown-it/lib/parser_inline.mjs +197 -0
- package/docs/node_modules/markdown-it/lib/presets/commonmark.mjs +88 -0
- package/docs/node_modules/markdown-it/lib/presets/default.mjs +47 -0
- package/docs/node_modules/markdown-it/lib/presets/zero.mjs +70 -0
- package/docs/node_modules/markdown-it/lib/renderer.mjs +322 -0
- package/docs/node_modules/markdown-it/lib/ruler.mjs +340 -0
- package/docs/node_modules/markdown-it/lib/rules_block/blockquote.mjs +209 -0
- package/docs/node_modules/markdown-it/lib/rules_block/code.mjs +30 -0
- package/docs/node_modules/markdown-it/lib/rules_block/fence.mjs +94 -0
- package/docs/node_modules/markdown-it/lib/rules_block/heading.mjs +51 -0
- package/docs/node_modules/markdown-it/lib/rules_block/hr.mjs +40 -0
- package/docs/node_modules/markdown-it/lib/rules_block/html_block.mjs +69 -0
- package/docs/node_modules/markdown-it/lib/rules_block/lheading.mjs +82 -0
- package/docs/node_modules/markdown-it/lib/rules_block/list.mjs +331 -0
- package/docs/node_modules/markdown-it/lib/rules_block/paragraph.mjs +46 -0
- package/docs/node_modules/markdown-it/lib/rules_block/reference.mjs +212 -0
- package/docs/node_modules/markdown-it/lib/rules_block/state_block.mjs +220 -0
- package/docs/node_modules/markdown-it/lib/rules_block/table.mjs +228 -0
- package/docs/node_modules/markdown-it/lib/rules_core/block.mjs +13 -0
- package/docs/node_modules/markdown-it/lib/rules_core/inline.mjs +11 -0
- package/docs/node_modules/markdown-it/lib/rules_core/linkify.mjs +134 -0
- package/docs/node_modules/markdown-it/lib/rules_core/normalize.mjs +17 -0
- package/docs/node_modules/markdown-it/lib/rules_core/replacements.mjs +101 -0
- package/docs/node_modules/markdown-it/lib/rules_core/smartquotes.mjs +193 -0
- package/docs/node_modules/markdown-it/lib/rules_core/state_core.mjs +17 -0
- package/docs/node_modules/markdown-it/lib/rules_core/text_join.mjs +43 -0
- package/docs/node_modules/markdown-it/lib/rules_inline/autolink.mjs +72 -0
- package/docs/node_modules/markdown-it/lib/rules_inline/backticks.mjs +60 -0
- package/docs/node_modules/markdown-it/lib/rules_inline/balance_pairs.mjs +124 -0
- package/docs/node_modules/markdown-it/lib/rules_inline/emphasis.mjs +123 -0
- package/docs/node_modules/markdown-it/lib/rules_inline/entity.mjs +51 -0
- package/docs/node_modules/markdown-it/lib/rules_inline/escape.mjs +69 -0
- package/docs/node_modules/markdown-it/lib/rules_inline/fragments_join.mjs +38 -0
- package/docs/node_modules/markdown-it/lib/rules_inline/html_inline.mjs +50 -0
- package/docs/node_modules/markdown-it/lib/rules_inline/image.mjs +138 -0
- package/docs/node_modules/markdown-it/lib/rules_inline/link.mjs +139 -0
- package/docs/node_modules/markdown-it/lib/rules_inline/linkify.mjs +56 -0
- package/docs/node_modules/markdown-it/lib/rules_inline/newline.mjs +42 -0
- package/docs/node_modules/markdown-it/lib/rules_inline/state_inline.mjs +123 -0
- package/docs/node_modules/markdown-it/lib/rules_inline/strikethrough.mjs +127 -0
- package/docs/node_modules/markdown-it/lib/rules_inline/text.mjs +86 -0
- package/docs/node_modules/markdown-it/lib/token.mjs +191 -0
- package/docs/node_modules/markdown-it/package.json +92 -0
- package/docs/node_modules/markdown-it-anchor/README.md +586 -0
- package/docs/node_modules/markdown-it-anchor/UNLICENSE +24 -0
- package/docs/node_modules/markdown-it-anchor/dist/markdownItAnchor.js +2 -0
- package/docs/node_modules/markdown-it-anchor/dist/markdownItAnchor.js.map +1 -0
- package/docs/node_modules/markdown-it-anchor/dist/markdownItAnchor.mjs +2 -0
- package/docs/node_modules/markdown-it-anchor/dist/markdownItAnchor.mjs.map +1 -0
- package/docs/node_modules/markdown-it-anchor/dist/markdownItAnchor.modern.js +2 -0
- package/docs/node_modules/markdown-it-anchor/dist/markdownItAnchor.modern.js.map +1 -0
- package/docs/node_modules/markdown-it-anchor/dist/markdownItAnchor.modern.mjs +2 -0
- package/docs/node_modules/markdown-it-anchor/dist/markdownItAnchor.modern.mjs.map +1 -0
- package/docs/node_modules/markdown-it-anchor/dist/markdownItAnchor.umd.js +2 -0
- package/docs/node_modules/markdown-it-anchor/dist/markdownItAnchor.umd.js.map +1 -0
- package/docs/node_modules/markdown-it-anchor/package.json +53 -0
- package/docs/node_modules/markdown-it-anchor/runkit.js +22 -0
- package/docs/node_modules/markdown-it-anchor/types/index.d.ts +71 -0
- package/docs/node_modules/markdown-it-anchor/types/package.json +3 -0
- package/docs/node_modules/marked/LICENSE.md +44 -0
- package/docs/node_modules/marked/README.md +99 -0
- package/docs/node_modules/marked/bin/marked.js +217 -0
- package/docs/node_modules/marked/lib/marked.cjs +2811 -0
- package/docs/node_modules/marked/lib/marked.esm.js +2887 -0
- package/docs/node_modules/marked/lib/marked.umd.js +2817 -0
- package/docs/node_modules/marked/man/marked.1 +92 -0
- package/docs/node_modules/marked/man/marked.1.txt +86 -0
- package/docs/node_modules/marked/marked.min.js +6 -0
- package/docs/node_modules/marked/package.json +93 -0
- package/docs/node_modules/marked/src/Hooks.js +26 -0
- package/docs/node_modules/marked/src/Lexer.js +503 -0
- package/docs/node_modules/marked/src/Parser.js +286 -0
- package/docs/node_modules/marked/src/Renderer.js +203 -0
- package/docs/node_modules/marked/src/Slugger.js +55 -0
- package/docs/node_modules/marked/src/TextRenderer.js +42 -0
- package/docs/node_modules/marked/src/Tokenizer.js +794 -0
- package/docs/node_modules/marked/src/defaults.js +30 -0
- package/docs/node_modules/marked/src/helpers.js +259 -0
- package/docs/node_modules/marked/src/marked.js +416 -0
- package/docs/node_modules/marked/src/rules.js +309 -0
- package/docs/node_modules/mdurl/LICENSE +45 -0
- package/docs/node_modules/mdurl/README.md +102 -0
- package/docs/node_modules/mdurl/build/index.cjs.js +534 -0
- package/docs/node_modules/mdurl/index.mjs +11 -0
- package/docs/node_modules/mdurl/lib/decode.mjs +112 -0
- package/docs/node_modules/mdurl/lib/encode.mjs +89 -0
- package/docs/node_modules/mdurl/lib/format.mjs +21 -0
- package/docs/node_modules/mdurl/lib/parse.mjs +308 -0
- package/docs/node_modules/mdurl/package.json +37 -0
- package/docs/node_modules/mkdirp/CHANGELOG.md +15 -0
- package/docs/node_modules/mkdirp/LICENSE +21 -0
- package/docs/node_modules/mkdirp/bin/cmd.js +68 -0
- package/docs/node_modules/mkdirp/index.js +31 -0
- package/docs/node_modules/mkdirp/lib/find-made.js +29 -0
- package/docs/node_modules/mkdirp/lib/mkdirp-manual.js +64 -0
- package/docs/node_modules/mkdirp/lib/mkdirp-native.js +39 -0
- package/docs/node_modules/mkdirp/lib/opts-arg.js +23 -0
- package/docs/node_modules/mkdirp/lib/path-arg.js +29 -0
- package/docs/node_modules/mkdirp/lib/use-native.js +10 -0
- package/docs/node_modules/mkdirp/package.json +44 -0
- package/docs/node_modules/mkdirp/readme.markdown +266 -0
- package/docs/node_modules/punycode.js/LICENSE-MIT.txt +20 -0
- package/docs/node_modules/punycode.js/README.md +148 -0
- package/docs/node_modules/punycode.js/package.json +58 -0
- package/docs/node_modules/punycode.js/punycode.es6.js +444 -0
- package/docs/node_modules/punycode.js/punycode.js +443 -0
- package/docs/node_modules/requizzle/LICENSE +22 -0
- package/docs/node_modules/requizzle/README.md +174 -0
- package/docs/node_modules/requizzle/index.js +28 -0
- package/docs/node_modules/requizzle/lib/loader.js +162 -0
- package/docs/node_modules/requizzle/lib/requizzle.js +102 -0
- package/docs/node_modules/requizzle/lib/wrappers/extras.js +21 -0
- package/docs/node_modules/requizzle/lib/wrappers/requirepaths.js +48 -0
- package/docs/node_modules/requizzle/lib/wrappers/strict.js +13 -0
- package/docs/node_modules/requizzle/package.json +40 -0
- package/docs/node_modules/strip-json-comments/index.d.ts +36 -0
- package/docs/node_modules/strip-json-comments/index.js +77 -0
- package/docs/node_modules/strip-json-comments/license +9 -0
- package/docs/node_modules/strip-json-comments/package.json +47 -0
- package/docs/node_modules/strip-json-comments/readme.md +78 -0
- package/docs/node_modules/uc.micro/LICENSE.txt +20 -0
- package/docs/node_modules/uc.micro/README.md +14 -0
- package/docs/node_modules/uc.micro/build/index.cjs.js +20 -0
- package/docs/node_modules/uc.micro/categories/Cc/regex.mjs +1 -0
- package/docs/node_modules/uc.micro/categories/Cf/regex.mjs +1 -0
- package/docs/node_modules/uc.micro/categories/P/regex.mjs +1 -0
- package/docs/node_modules/uc.micro/categories/S/regex.mjs +1 -0
- package/docs/node_modules/uc.micro/categories/Z/regex.mjs +1 -0
- package/docs/node_modules/uc.micro/index.mjs +8 -0
- package/docs/node_modules/uc.micro/package.json +37 -0
- package/docs/node_modules/uc.micro/properties/Any/regex.mjs +1 -0
- package/docs/node_modules/underscore/LICENSE +22 -0
- package/docs/node_modules/underscore/README.md +34 -0
- package/docs/node_modules/underscore/amd/_baseCreate.js +21 -0
- package/docs/node_modules/underscore/amd/_baseIteratee.js +15 -0
- package/docs/node_modules/underscore/amd/_cb.js +12 -0
- package/docs/node_modules/underscore/amd/_chainResult.js +10 -0
- package/docs/node_modules/underscore/amd/_collectNonEnumProps.js +42 -0
- package/docs/node_modules/underscore/amd/_createAssigner.js +24 -0
- package/docs/node_modules/underscore/amd/_createEscaper.js +21 -0
- package/docs/node_modules/underscore/amd/_createIndexFinder.js +30 -0
- package/docs/node_modules/underscore/amd/_createPredicateIndexFinder.js +18 -0
- package/docs/node_modules/underscore/amd/_createReduce.js +30 -0
- package/docs/node_modules/underscore/amd/_createSizePropertyCheck.js +13 -0
- package/docs/node_modules/underscore/amd/_deepGet.js +15 -0
- package/docs/node_modules/underscore/amd/_escapeMap.js +15 -0
- package/docs/node_modules/underscore/amd/_executeBound.js +16 -0
- package/docs/node_modules/underscore/amd/_flatten.js +32 -0
- package/docs/node_modules/underscore/amd/_getByteLength.js +8 -0
- package/docs/node_modules/underscore/amd/_getLength.js +8 -0
- package/docs/node_modules/underscore/amd/_group.js +18 -0
- package/docs/node_modules/underscore/amd/_has.js +10 -0
- package/docs/node_modules/underscore/amd/_hasObjectTag.js +7 -0
- package/docs/node_modules/underscore/amd/_isArrayLike.js +11 -0
- package/docs/node_modules/underscore/amd/_isBufferLike.js +9 -0
- package/docs/node_modules/underscore/amd/_keyInObj.js +11 -0
- package/docs/node_modules/underscore/amd/_methodFingerprint.js +44 -0
- package/docs/node_modules/underscore/amd/_optimizeCb.js +27 -0
- package/docs/node_modules/underscore/amd/_set.js +21 -0
- package/docs/node_modules/underscore/amd/_setup.js +70 -0
- package/docs/node_modules/underscore/amd/_shallowProperty.js +12 -0
- package/docs/node_modules/underscore/amd/_stringTagBug.js +19 -0
- package/docs/node_modules/underscore/amd/_tagTester.js +13 -0
- package/docs/node_modules/underscore/amd/_toBufferView.js +15 -0
- package/docs/node_modules/underscore/amd/_toPath.js +11 -0
- package/docs/node_modules/underscore/amd/_unescapeMap.js +8 -0
- package/docs/node_modules/underscore/amd/after.js +14 -0
- package/docs/node_modules/underscore/amd/allKeys.js +15 -0
- package/docs/node_modules/underscore/amd/before.js +18 -0
- package/docs/node_modules/underscore/amd/bind.js +15 -0
- package/docs/node_modules/underscore/amd/bindAll.js +19 -0
- package/docs/node_modules/underscore/amd/chain.js +12 -0
- package/docs/node_modules/underscore/amd/chunk.js +17 -0
- package/docs/node_modules/underscore/amd/clone.js +11 -0
- package/docs/node_modules/underscore/amd/compact.js +10 -0
- package/docs/node_modules/underscore/amd/compose.js +18 -0
- package/docs/node_modules/underscore/amd/constant.js +12 -0
- package/docs/node_modules/underscore/amd/contains.js +12 -0
- package/docs/node_modules/underscore/amd/countBy.js +12 -0
- package/docs/node_modules/underscore/amd/create.js +14 -0
- package/docs/node_modules/underscore/amd/debounce.js +43 -0
- package/docs/node_modules/underscore/amd/defaults.js +8 -0
- package/docs/node_modules/underscore/amd/defer.js +9 -0
- package/docs/node_modules/underscore/amd/delay.js +13 -0
- package/docs/node_modules/underscore/amd/difference.js +14 -0
- package/docs/node_modules/underscore/amd/each.js +25 -0
- package/docs/node_modules/underscore/amd/escape.js +8 -0
- package/docs/node_modules/underscore/amd/every.js +17 -0
- package/docs/node_modules/underscore/amd/extend.js +8 -0
- package/docs/node_modules/underscore/amd/extendOwn.js +10 -0
- package/docs/node_modules/underscore/amd/filter.js +15 -0
- package/docs/node_modules/underscore/amd/find.js +12 -0
- package/docs/node_modules/underscore/amd/findIndex.js +8 -0
- package/docs/node_modules/underscore/amd/findKey.js +15 -0
- package/docs/node_modules/underscore/amd/findLastIndex.js +8 -0
- package/docs/node_modules/underscore/amd/findWhere.js +11 -0
- package/docs/node_modules/underscore/amd/first.js +13 -0
- package/docs/node_modules/underscore/amd/flatten.js +11 -0
- package/docs/node_modules/underscore/amd/functions.js +14 -0
- package/docs/node_modules/underscore/amd/get.js +14 -0
- package/docs/node_modules/underscore/amd/groupBy.js +11 -0
- package/docs/node_modules/underscore/amd/has.js +19 -0
- package/docs/node_modules/underscore/amd/identity.js +10 -0
- package/docs/node_modules/underscore/amd/index-default.js +12 -0
- package/docs/node_modules/underscore/amd/index.js +154 -0
- package/docs/node_modules/underscore/amd/indexBy.js +11 -0
- package/docs/node_modules/underscore/amd/indexOf.js +11 -0
- package/docs/node_modules/underscore/amd/initial.js +12 -0
- package/docs/node_modules/underscore/amd/intersection.js +22 -0
- package/docs/node_modules/underscore/amd/invert.js +15 -0
- package/docs/node_modules/underscore/amd/invoke.js +28 -0
- package/docs/node_modules/underscore/amd/isArguments.js +19 -0
- package/docs/node_modules/underscore/amd/isArray.js +9 -0
- package/docs/node_modules/underscore/amd/isArrayBuffer.js +7 -0
- package/docs/node_modules/underscore/amd/isBoolean.js +10 -0
- package/docs/node_modules/underscore/amd/isDataView.js +17 -0
- package/docs/node_modules/underscore/amd/isDate.js +7 -0
- package/docs/node_modules/underscore/amd/isElement.js +10 -0
- package/docs/node_modules/underscore/amd/isEmpty.js +18 -0
- package/docs/node_modules/underscore/amd/isEqual.js +133 -0
- package/docs/node_modules/underscore/amd/isError.js +7 -0
- package/docs/node_modules/underscore/amd/isFinite.js +10 -0
- package/docs/node_modules/underscore/amd/isFunction.js +18 -0
- package/docs/node_modules/underscore/amd/isMap.js +7 -0
- package/docs/node_modules/underscore/amd/isMatch.js +17 -0
- package/docs/node_modules/underscore/amd/isNaN.js +10 -0
- package/docs/node_modules/underscore/amd/isNull.js +10 -0
- package/docs/node_modules/underscore/amd/isNumber.js +7 -0
- package/docs/node_modules/underscore/amd/isObject.js +11 -0
- package/docs/node_modules/underscore/amd/isRegExp.js +7 -0
- package/docs/node_modules/underscore/amd/isSet.js +7 -0
- package/docs/node_modules/underscore/amd/isString.js +7 -0
- package/docs/node_modules/underscore/amd/isSymbol.js +7 -0
- package/docs/node_modules/underscore/amd/isTypedArray.js +16 -0
- package/docs/node_modules/underscore/amd/isUndefined.js +10 -0
- package/docs/node_modules/underscore/amd/isWeakMap.js +7 -0
- package/docs/node_modules/underscore/amd/isWeakSet.js +7 -0
- package/docs/node_modules/underscore/amd/iteratee.js +13 -0
- package/docs/node_modules/underscore/amd/keys.js +17 -0
- package/docs/node_modules/underscore/amd/last.js +13 -0
- package/docs/node_modules/underscore/amd/lastIndexOf.js +9 -0
- package/docs/node_modules/underscore/amd/map.js +18 -0
- package/docs/node_modules/underscore/amd/mapObject.js +19 -0
- package/docs/node_modules/underscore/amd/matcher.js +14 -0
- package/docs/node_modules/underscore/amd/max.js +30 -0
- package/docs/node_modules/underscore/amd/memoize.js +17 -0
- package/docs/node_modules/underscore/amd/min.js +30 -0
- package/docs/node_modules/underscore/amd/mixin.js +18 -0
- package/docs/node_modules/underscore/amd/negate.js +12 -0
- package/docs/node_modules/underscore/amd/noop.js +8 -0
- package/docs/node_modules/underscore/amd/now.js +10 -0
- package/docs/node_modules/underscore/amd/object.js +20 -0
- package/docs/node_modules/underscore/amd/omit.js +20 -0
- package/docs/node_modules/underscore/amd/once.js +9 -0
- package/docs/node_modules/underscore/amd/pairs.js +17 -0
- package/docs/node_modules/underscore/amd/partial.js +25 -0
- package/docs/node_modules/underscore/amd/partition.js +11 -0
- package/docs/node_modules/underscore/amd/pick.js +25 -0
- package/docs/node_modules/underscore/amd/pluck.js +10 -0
- package/docs/node_modules/underscore/amd/property.js +14 -0
- package/docs/node_modules/underscore/amd/propertyOf.js +13 -0
- package/docs/node_modules/underscore/amd/random.js +14 -0
- package/docs/node_modules/underscore/amd/range.js +27 -0
- package/docs/node_modules/underscore/amd/reduce.js +9 -0
- package/docs/node_modules/underscore/amd/reduceRight.js +8 -0
- package/docs/node_modules/underscore/amd/reject.js +10 -0
- package/docs/node_modules/underscore/amd/rest.js +12 -0
- package/docs/node_modules/underscore/amd/restArguments.js +33 -0
- package/docs/node_modules/underscore/amd/result.js +25 -0
- package/docs/node_modules/underscore/amd/sample.js +27 -0
- package/docs/node_modules/underscore/amd/set.js +15 -0
- package/docs/node_modules/underscore/amd/shuffle.js +10 -0
- package/docs/node_modules/underscore/amd/size.js +11 -0
- package/docs/node_modules/underscore/amd/some.js +17 -0
- package/docs/node_modules/underscore/amd/sortBy.js +26 -0
- package/docs/node_modules/underscore/amd/sortedIndex.js +18 -0
- package/docs/node_modules/underscore/amd/tap.js +13 -0
- package/docs/node_modules/underscore/amd/template.js +103 -0
- package/docs/node_modules/underscore/amd/templateSettings.js +13 -0
- package/docs/node_modules/underscore/amd/throttle.js +51 -0
- package/docs/node_modules/underscore/amd/times.js +13 -0
- package/docs/node_modules/underscore/amd/toArray.js +18 -0
- package/docs/node_modules/underscore/amd/toPath.js +12 -0
- package/docs/node_modules/underscore/amd/underscore-array-methods.js +30 -0
- package/docs/node_modules/underscore/amd/underscore.js +29 -0
- package/docs/node_modules/underscore/amd/unescape.js +8 -0
- package/docs/node_modules/underscore/amd/union.js +11 -0
- package/docs/node_modules/underscore/amd/uniq.js +37 -0
- package/docs/node_modules/underscore/amd/uniqueId.js +13 -0
- package/docs/node_modules/underscore/amd/unzip.js +17 -0
- package/docs/node_modules/underscore/amd/values.js +16 -0
- package/docs/node_modules/underscore/amd/where.js +11 -0
- package/docs/node_modules/underscore/amd/without.js +10 -0
- package/docs/node_modules/underscore/amd/wrap.js +12 -0
- package/docs/node_modules/underscore/amd/zip.js +9 -0
- package/docs/node_modules/underscore/cjs/_baseCreate.js +20 -0
- package/docs/node_modules/underscore/cjs/_baseIteratee.js +19 -0
- package/docs/node_modules/underscore/cjs/_cb.js +12 -0
- package/docs/node_modules/underscore/cjs/_chainResult.js +8 -0
- package/docs/node_modules/underscore/cjs/_collectNonEnumProps.js +42 -0
- package/docs/node_modules/underscore/cjs/_createAssigner.js +20 -0
- package/docs/node_modules/underscore/cjs/_createEscaper.js +19 -0
- package/docs/node_modules/underscore/cjs/_createIndexFinder.js +30 -0
- package/docs/node_modules/underscore/cjs/_createPredicateIndexFinder.js +17 -0
- package/docs/node_modules/underscore/cjs/_createReduce.js +30 -0
- package/docs/node_modules/underscore/cjs/_createSizePropertyCheck.js +11 -0
- package/docs/node_modules/underscore/cjs/_deepGet.js +11 -0
- package/docs/node_modules/underscore/cjs/_escapeMap.js +11 -0
- package/docs/node_modules/underscore/cjs/_executeBound.js +15 -0
- package/docs/node_modules/underscore/cjs/_flatten.js +33 -0
- package/docs/node_modules/underscore/cjs/_getByteLength.js +6 -0
- package/docs/node_modules/underscore/cjs/_getLength.js +6 -0
- package/docs/node_modules/underscore/cjs/_group.js +17 -0
- package/docs/node_modules/underscore/cjs/_has.js +8 -0
- package/docs/node_modules/underscore/cjs/_hasObjectTag.js +5 -0
- package/docs/node_modules/underscore/cjs/_isArrayLike.js +10 -0
- package/docs/node_modules/underscore/cjs/_isBufferLike.js +8 -0
- package/docs/node_modules/underscore/cjs/_keyInObj.js +7 -0
- package/docs/node_modules/underscore/cjs/_methodFingerprint.js +44 -0
- package/docs/node_modules/underscore/cjs/_optimizeCb.js +23 -0
- package/docs/node_modules/underscore/cjs/_set.js +21 -0
- package/docs/node_modules/underscore/cjs/_setup.js +66 -0
- package/docs/node_modules/underscore/cjs/_shallowProperty.js +8 -0
- package/docs/node_modules/underscore/cjs/_stringTagBug.js +18 -0
- package/docs/node_modules/underscore/cjs/_tagTester.js +11 -0
- package/docs/node_modules/underscore/cjs/_toBufferView.js +13 -0
- package/docs/node_modules/underscore/cjs/_toPath.js +10 -0
- package/docs/node_modules/underscore/cjs/_unescapeMap.js +7 -0
- package/docs/node_modules/underscore/cjs/after.js +10 -0
- package/docs/node_modules/underscore/cjs/allKeys.js +15 -0
- package/docs/node_modules/underscore/cjs/before.js +14 -0
- package/docs/node_modules/underscore/cjs/bind.js +15 -0
- package/docs/node_modules/underscore/cjs/bindAll.js +19 -0
- package/docs/node_modules/underscore/cjs/chain.js +10 -0
- package/docs/node_modules/underscore/cjs/chunk.js +15 -0
- package/docs/node_modules/underscore/cjs/clone.js +11 -0
- package/docs/node_modules/underscore/cjs/compact.js +8 -0
- package/docs/node_modules/underscore/cjs/compose.js +14 -0
- package/docs/node_modules/underscore/cjs/constant.js +8 -0
- package/docs/node_modules/underscore/cjs/contains.js +12 -0
- package/docs/node_modules/underscore/cjs/countBy.js +11 -0
- package/docs/node_modules/underscore/cjs/create.js +13 -0
- package/docs/node_modules/underscore/cjs/debounce.js +42 -0
- package/docs/node_modules/underscore/cjs/defaults.js +7 -0
- package/docs/node_modules/underscore/cjs/defer.js +9 -0
- package/docs/node_modules/underscore/cjs/delay.js +11 -0
- package/docs/node_modules/underscore/cjs/difference.js +15 -0
- package/docs/node_modules/underscore/cjs/each.js +25 -0
- package/docs/node_modules/underscore/cjs/escape.js +7 -0
- package/docs/node_modules/underscore/cjs/every.js +17 -0
- package/docs/node_modules/underscore/cjs/extend.js +7 -0
- package/docs/node_modules/underscore/cjs/extendOwn.js +9 -0
- package/docs/node_modules/underscore/cjs/filter.js +14 -0
- package/docs/node_modules/underscore/cjs/find.js +12 -0
- package/docs/node_modules/underscore/cjs/findIndex.js +6 -0
- package/docs/node_modules/underscore/cjs/findKey.js +14 -0
- package/docs/node_modules/underscore/cjs/findLastIndex.js +6 -0
- package/docs/node_modules/underscore/cjs/findWhere.js +10 -0
- package/docs/node_modules/underscore/cjs/first.js +11 -0
- package/docs/node_modules/underscore/cjs/flatten.js +9 -0
- package/docs/node_modules/underscore/cjs/functions.js +12 -0
- package/docs/node_modules/underscore/cjs/get.js +14 -0
- package/docs/node_modules/underscore/cjs/groupBy.js +10 -0
- package/docs/node_modules/underscore/cjs/has.js +18 -0
- package/docs/node_modules/underscore/cjs/identity.js +6 -0
- package/docs/node_modules/underscore/cjs/index-default.js +11 -0
- package/docs/node_modules/underscore/cjs/index.js +278 -0
- package/docs/node_modules/underscore/cjs/indexBy.js +9 -0
- package/docs/node_modules/underscore/cjs/indexOf.js +11 -0
- package/docs/node_modules/underscore/cjs/initial.js +10 -0
- package/docs/node_modules/underscore/cjs/intersection.js +21 -0
- package/docs/node_modules/underscore/cjs/invert.js +13 -0
- package/docs/node_modules/underscore/cjs/invoke.js +30 -0
- package/docs/node_modules/underscore/cjs/isArguments.js +18 -0
- package/docs/node_modules/underscore/cjs/isArray.js +8 -0
- package/docs/node_modules/underscore/cjs/isArrayBuffer.js +5 -0
- package/docs/node_modules/underscore/cjs/isBoolean.js +8 -0
- package/docs/node_modules/underscore/cjs/isDataView.js +18 -0
- package/docs/node_modules/underscore/cjs/isDate.js +5 -0
- package/docs/node_modules/underscore/cjs/isElement.js +6 -0
- package/docs/node_modules/underscore/cjs/isEmpty.js +20 -0
- package/docs/node_modules/underscore/cjs/isEqual.js +140 -0
- package/docs/node_modules/underscore/cjs/isError.js +5 -0
- package/docs/node_modules/underscore/cjs/isFinite.js +9 -0
- package/docs/node_modules/underscore/cjs/isFunction.js +17 -0
- package/docs/node_modules/underscore/cjs/isMap.js +7 -0
- package/docs/node_modules/underscore/cjs/isMatch.js +15 -0
- package/docs/node_modules/underscore/cjs/isNaN.js +9 -0
- package/docs/node_modules/underscore/cjs/isNull.js +6 -0
- package/docs/node_modules/underscore/cjs/isNumber.js +5 -0
- package/docs/node_modules/underscore/cjs/isObject.js +7 -0
- package/docs/node_modules/underscore/cjs/isRegExp.js +5 -0
- package/docs/node_modules/underscore/cjs/isSet.js +7 -0
- package/docs/node_modules/underscore/cjs/isString.js +5 -0
- package/docs/node_modules/underscore/cjs/isSymbol.js +5 -0
- package/docs/node_modules/underscore/cjs/isTypedArray.js +17 -0
- package/docs/node_modules/underscore/cjs/isUndefined.js +6 -0
- package/docs/node_modules/underscore/cjs/isWeakMap.js +7 -0
- package/docs/node_modules/underscore/cjs/isWeakSet.js +5 -0
- package/docs/node_modules/underscore/cjs/iteratee.js +12 -0
- package/docs/node_modules/underscore/cjs/keys.js +18 -0
- package/docs/node_modules/underscore/cjs/last.js +11 -0
- package/docs/node_modules/underscore/cjs/lastIndexOf.js +8 -0
- package/docs/node_modules/underscore/cjs/map.js +18 -0
- package/docs/node_modules/underscore/cjs/mapObject.js +18 -0
- package/docs/node_modules/underscore/cjs/matcher.js +13 -0
- package/docs/node_modules/underscore/cjs/max.js +31 -0
- package/docs/node_modules/underscore/cjs/memoize.js +15 -0
- package/docs/node_modules/underscore/cjs/min.js +31 -0
- package/docs/node_modules/underscore/cjs/mixin.js +20 -0
- package/docs/node_modules/underscore/cjs/negate.js +8 -0
- package/docs/node_modules/underscore/cjs/noop.js +4 -0
- package/docs/node_modules/underscore/cjs/now.js +6 -0
- package/docs/node_modules/underscore/cjs/object.js +18 -0
- package/docs/node_modules/underscore/cjs/omit.js +24 -0
- package/docs/node_modules/underscore/cjs/once.js +8 -0
- package/docs/node_modules/underscore/cjs/pairs.js +15 -0
- package/docs/node_modules/underscore/cjs/partial.js +25 -0
- package/docs/node_modules/underscore/cjs/partition.js +9 -0
- package/docs/node_modules/underscore/cjs/pick.js +28 -0
- package/docs/node_modules/underscore/cjs/pluck.js +9 -0
- package/docs/node_modules/underscore/cjs/property.js +13 -0
- package/docs/node_modules/underscore/cjs/propertyOf.js +12 -0
- package/docs/node_modules/underscore/cjs/random.js +10 -0
- package/docs/node_modules/underscore/cjs/range.js +23 -0
- package/docs/node_modules/underscore/cjs/reduce.js +7 -0
- package/docs/node_modules/underscore/cjs/reduceRight.js +6 -0
- package/docs/node_modules/underscore/cjs/reject.js +10 -0
- package/docs/node_modules/underscore/cjs/rest.js +10 -0
- package/docs/node_modules/underscore/cjs/restArguments.js +29 -0
- package/docs/node_modules/underscore/cjs/result.js +24 -0
- package/docs/node_modules/underscore/cjs/sample.js +29 -0
- package/docs/node_modules/underscore/cjs/set.js +15 -0
- package/docs/node_modules/underscore/cjs/shuffle.js +8 -0
- package/docs/node_modules/underscore/cjs/size.js +10 -0
- package/docs/node_modules/underscore/cjs/some.js +17 -0
- package/docs/node_modules/underscore/cjs/sortBy.js +26 -0
- package/docs/node_modules/underscore/cjs/sortedIndex.js +17 -0
- package/docs/node_modules/underscore/cjs/tap.js +9 -0
- package/docs/node_modules/underscore/cjs/template.js +103 -0
- package/docs/node_modules/underscore/cjs/templateSettings.js +11 -0
- package/docs/node_modules/underscore/cjs/throttle.js +49 -0
- package/docs/node_modules/underscore/cjs/times.js +11 -0
- package/docs/node_modules/underscore/cjs/toArray.js +22 -0
- package/docs/node_modules/underscore/cjs/toPath.js +11 -0
- package/docs/node_modules/underscore/cjs/underscore-array-methods.js +31 -0
- package/docs/node_modules/underscore/cjs/underscore.js +27 -0
- package/docs/node_modules/underscore/cjs/unescape.js +7 -0
- package/docs/node_modules/underscore/cjs/union.js +11 -0
- package/docs/node_modules/underscore/cjs/uniq.js +38 -0
- package/docs/node_modules/underscore/cjs/uniqueId.js +9 -0
- package/docs/node_modules/underscore/cjs/unzip.js +17 -0
- package/docs/node_modules/underscore/cjs/values.js +14 -0
- package/docs/node_modules/underscore/cjs/where.js +10 -0
- package/docs/node_modules/underscore/cjs/without.js +9 -0
- package/docs/node_modules/underscore/cjs/wrap.js +10 -0
- package/docs/node_modules/underscore/cjs/zip.js +8 -0
- package/docs/node_modules/underscore/modules/.eslintrc +21 -0
- package/docs/node_modules/underscore/modules/_baseCreate.js +18 -0
- package/docs/node_modules/underscore/modules/_baseIteratee.js +17 -0
- package/docs/node_modules/underscore/modules/_cb.js +10 -0
- package/docs/node_modules/underscore/modules/_chainResult.js +6 -0
- package/docs/node_modules/underscore/modules/_collectNonEnumProps.js +40 -0
- package/docs/node_modules/underscore/modules/_createAssigner.js +18 -0
- package/docs/node_modules/underscore/modules/_createEscaper.js +17 -0
- package/docs/node_modules/underscore/modules/_createIndexFinder.js +28 -0
- package/docs/node_modules/underscore/modules/_createPredicateIndexFinder.js +15 -0
- package/docs/node_modules/underscore/modules/_createReduce.js +28 -0
- package/docs/node_modules/underscore/modules/_createSizePropertyCheck.js +9 -0
- package/docs/node_modules/underscore/modules/_deepGet.js +9 -0
- package/docs/node_modules/underscore/modules/_escapeMap.js +9 -0
- package/docs/node_modules/underscore/modules/_executeBound.js +13 -0
- package/docs/node_modules/underscore/modules/_flatten.js +31 -0
- package/docs/node_modules/underscore/modules/_getByteLength.js +4 -0
- package/docs/node_modules/underscore/modules/_getLength.js +4 -0
- package/docs/node_modules/underscore/modules/_group.js +15 -0
- package/docs/node_modules/underscore/modules/_has.js +6 -0
- package/docs/node_modules/underscore/modules/_hasObjectTag.js +3 -0
- package/docs/node_modules/underscore/modules/_isArrayLike.js +8 -0
- package/docs/node_modules/underscore/modules/_isBufferLike.js +6 -0
- package/docs/node_modules/underscore/modules/_keyInObj.js +5 -0
- package/docs/node_modules/underscore/modules/_methodFingerprint.js +37 -0
- package/docs/node_modules/underscore/modules/_optimizeCb.js +21 -0
- package/docs/node_modules/underscore/modules/_setup.js +43 -0
- package/docs/node_modules/underscore/modules/_shallowProperty.js +6 -0
- package/docs/node_modules/underscore/modules/_stringTagBug.js +13 -0
- package/docs/node_modules/underscore/modules/_tagTester.js +9 -0
- package/docs/node_modules/underscore/modules/_toBufferView.js +11 -0
- package/docs/node_modules/underscore/modules/_toPath.js +8 -0
- package/docs/node_modules/underscore/modules/_unescapeMap.js +5 -0
- package/docs/node_modules/underscore/modules/after.js +8 -0
- package/docs/node_modules/underscore/modules/allKeys.js +13 -0
- package/docs/node_modules/underscore/modules/before.js +12 -0
- package/docs/node_modules/underscore/modules/bind.js +13 -0
- package/docs/node_modules/underscore/modules/bindAll.js +17 -0
- package/docs/node_modules/underscore/modules/chain.js +8 -0
- package/docs/node_modules/underscore/modules/chunk.js +13 -0
- package/docs/node_modules/underscore/modules/clone.js +9 -0
- package/docs/node_modules/underscore/modules/compact.js +6 -0
- package/docs/node_modules/underscore/modules/compose.js +12 -0
- package/docs/node_modules/underscore/modules/constant.js +6 -0
- package/docs/node_modules/underscore/modules/contains.js +10 -0
- package/docs/node_modules/underscore/modules/countBy.js +9 -0
- package/docs/node_modules/underscore/modules/create.js +11 -0
- package/docs/node_modules/underscore/modules/debounce.js +40 -0
- package/docs/node_modules/underscore/modules/defaults.js +5 -0
- package/docs/node_modules/underscore/modules/defer.js +7 -0
- package/docs/node_modules/underscore/modules/delay.js +9 -0
- package/docs/node_modules/underscore/modules/difference.js +13 -0
- package/docs/node_modules/underscore/modules/each.js +23 -0
- package/docs/node_modules/underscore/modules/escape.js +5 -0
- package/docs/node_modules/underscore/modules/every.js +15 -0
- package/docs/node_modules/underscore/modules/extend.js +5 -0
- package/docs/node_modules/underscore/modules/extendOwn.js +7 -0
- package/docs/node_modules/underscore/modules/filter.js +12 -0
- package/docs/node_modules/underscore/modules/find.js +10 -0
- package/docs/node_modules/underscore/modules/findIndex.js +4 -0
- package/docs/node_modules/underscore/modules/findKey.js +12 -0
- package/docs/node_modules/underscore/modules/findLastIndex.js +4 -0
- package/docs/node_modules/underscore/modules/findWhere.js +8 -0
- package/docs/node_modules/underscore/modules/first.js +9 -0
- package/docs/node_modules/underscore/modules/flatten.js +7 -0
- package/docs/node_modules/underscore/modules/functions.js +10 -0
- package/docs/node_modules/underscore/modules/get.js +12 -0
- package/docs/node_modules/underscore/modules/groupBy.js +8 -0
- package/docs/node_modules/underscore/modules/has.js +16 -0
- package/docs/node_modules/underscore/modules/identity.js +4 -0
- package/docs/node_modules/underscore/modules/index-all.js +18 -0
- package/docs/node_modules/underscore/modules/index-default.js +27 -0
- package/docs/node_modules/underscore/modules/index.js +200 -0
- package/docs/node_modules/underscore/modules/indexBy.js +7 -0
- package/docs/node_modules/underscore/modules/indexOf.js +9 -0
- package/docs/node_modules/underscore/modules/initial.js +8 -0
- package/docs/node_modules/underscore/modules/intersection.js +19 -0
- package/docs/node_modules/underscore/modules/invert.js +11 -0
- package/docs/node_modules/underscore/modules/invoke.js +28 -0
- package/docs/node_modules/underscore/modules/isArguments.js +16 -0
- package/docs/node_modules/underscore/modules/isArray.js +6 -0
- package/docs/node_modules/underscore/modules/isArrayBuffer.js +3 -0
- package/docs/node_modules/underscore/modules/isBoolean.js +6 -0
- package/docs/node_modules/underscore/modules/isDataView.js +16 -0
- package/docs/node_modules/underscore/modules/isDate.js +3 -0
- package/docs/node_modules/underscore/modules/isElement.js +4 -0
- package/docs/node_modules/underscore/modules/isEmpty.js +18 -0
- package/docs/node_modules/underscore/modules/isEqual.js +138 -0
- package/docs/node_modules/underscore/modules/isError.js +3 -0
- package/docs/node_modules/underscore/modules/isFinite.js +7 -0
- package/docs/node_modules/underscore/modules/isFunction.js +15 -0
- package/docs/node_modules/underscore/modules/isMap.js +5 -0
- package/docs/node_modules/underscore/modules/isMatch.js +13 -0
- package/docs/node_modules/underscore/modules/isNaN.js +7 -0
- package/docs/node_modules/underscore/modules/isNull.js +4 -0
- package/docs/node_modules/underscore/modules/isNumber.js +3 -0
- package/docs/node_modules/underscore/modules/isObject.js +5 -0
- package/docs/node_modules/underscore/modules/isRegExp.js +3 -0
- package/docs/node_modules/underscore/modules/isSet.js +5 -0
- package/docs/node_modules/underscore/modules/isString.js +3 -0
- package/docs/node_modules/underscore/modules/isSymbol.js +3 -0
- package/docs/node_modules/underscore/modules/isTypedArray.js +15 -0
- package/docs/node_modules/underscore/modules/isUndefined.js +4 -0
- package/docs/node_modules/underscore/modules/isWeakMap.js +5 -0
- package/docs/node_modules/underscore/modules/isWeakSet.js +3 -0
- package/docs/node_modules/underscore/modules/iteratee.js +10 -0
- package/docs/node_modules/underscore/modules/keys.js +16 -0
- package/docs/node_modules/underscore/modules/last.js +9 -0
- package/docs/node_modules/underscore/modules/lastIndexOf.js +6 -0
- package/docs/node_modules/underscore/modules/map.js +16 -0
- package/docs/node_modules/underscore/modules/mapObject.js +16 -0
- package/docs/node_modules/underscore/modules/matcher.js +11 -0
- package/docs/node_modules/underscore/modules/max.js +29 -0
- package/docs/node_modules/underscore/modules/memoize.js +13 -0
- package/docs/node_modules/underscore/modules/min.js +29 -0
- package/docs/node_modules/underscore/modules/mixin.js +18 -0
- package/docs/node_modules/underscore/modules/negate.js +6 -0
- package/docs/node_modules/underscore/modules/noop.js +2 -0
- package/docs/node_modules/underscore/modules/now.js +4 -0
- package/docs/node_modules/underscore/modules/object.js +16 -0
- package/docs/node_modules/underscore/modules/omit.js +22 -0
- package/docs/node_modules/underscore/modules/once.js +6 -0
- package/docs/node_modules/underscore/modules/package.json +1 -0
- package/docs/node_modules/underscore/modules/pairs.js +13 -0
- package/docs/node_modules/underscore/modules/partial.js +24 -0
- package/docs/node_modules/underscore/modules/partition.js +7 -0
- package/docs/node_modules/underscore/modules/pick.js +26 -0
- package/docs/node_modules/underscore/modules/pluck.js +7 -0
- package/docs/node_modules/underscore/modules/property.js +11 -0
- package/docs/node_modules/underscore/modules/propertyOf.js +10 -0
- package/docs/node_modules/underscore/modules/random.js +8 -0
- package/docs/node_modules/underscore/modules/range.js +21 -0
- package/docs/node_modules/underscore/modules/reduce.js +5 -0
- package/docs/node_modules/underscore/modules/reduceRight.js +4 -0
- package/docs/node_modules/underscore/modules/reject.js +8 -0
- package/docs/node_modules/underscore/modules/rest.js +8 -0
- package/docs/node_modules/underscore/modules/restArguments.js +27 -0
- package/docs/node_modules/underscore/modules/result.js +22 -0
- package/docs/node_modules/underscore/modules/sample.js +27 -0
- package/docs/node_modules/underscore/modules/shuffle.js +6 -0
- package/docs/node_modules/underscore/modules/size.js +8 -0
- package/docs/node_modules/underscore/modules/some.js +15 -0
- package/docs/node_modules/underscore/modules/sortBy.js +24 -0
- package/docs/node_modules/underscore/modules/sortedIndex.js +15 -0
- package/docs/node_modules/underscore/modules/tap.js +7 -0
- package/docs/node_modules/underscore/modules/template.js +101 -0
- package/docs/node_modules/underscore/modules/templateSettings.js +9 -0
- package/docs/node_modules/underscore/modules/throttle.js +47 -0
- package/docs/node_modules/underscore/modules/times.js +9 -0
- package/docs/node_modules/underscore/modules/toArray.js +20 -0
- package/docs/node_modules/underscore/modules/toPath.js +9 -0
- package/docs/node_modules/underscore/modules/underscore-array-methods.js +31 -0
- package/docs/node_modules/underscore/modules/underscore.js +25 -0
- package/docs/node_modules/underscore/modules/unescape.js +5 -0
- package/docs/node_modules/underscore/modules/union.js +9 -0
- package/docs/node_modules/underscore/modules/uniq.js +36 -0
- package/docs/node_modules/underscore/modules/uniqueId.js +7 -0
- package/docs/node_modules/underscore/modules/unzip.js +15 -0
- package/docs/node_modules/underscore/modules/values.js +12 -0
- package/docs/node_modules/underscore/modules/where.js +8 -0
- package/docs/node_modules/underscore/modules/without.js +7 -0
- package/docs/node_modules/underscore/modules/wrap.js +8 -0
- package/docs/node_modules/underscore/modules/zip.js +6 -0
- package/docs/node_modules/underscore/package.json +124 -0
- package/docs/node_modules/underscore/underscore-esm-min.js +5 -0
- package/docs/node_modules/underscore/underscore-esm-min.js.map +1 -0
- package/docs/node_modules/underscore/underscore-esm.js +2039 -0
- package/docs/node_modules/underscore/underscore-esm.js.map +1 -0
- package/docs/node_modules/underscore/underscore-min.js +6 -0
- package/docs/node_modules/underscore/underscore-min.js.map +1 -0
- package/docs/node_modules/underscore/underscore-node-f.cjs +2163 -0
- package/docs/node_modules/underscore/underscore-node-f.cjs.map +1 -0
- package/docs/node_modules/underscore/underscore-node.cjs +11 -0
- package/docs/node_modules/underscore/underscore-node.cjs.map +1 -0
- package/docs/node_modules/underscore/underscore-node.mjs +7 -0
- package/docs/node_modules/underscore/underscore-node.mjs.map +1 -0
- package/docs/node_modules/underscore/underscore-umd-min.js +6 -0
- package/docs/node_modules/underscore/underscore-umd-min.js.map +1 -0
- package/docs/node_modules/underscore/underscore-umd.js +2047 -0
- package/docs/node_modules/underscore/underscore-umd.js.map +1 -0
- package/docs/node_modules/underscore/underscore.js +2047 -0
- package/docs/node_modules/xmlcreate/CHANGES.md +53 -0
- package/docs/node_modules/xmlcreate/LICENSE +201 -0
- package/docs/node_modules/xmlcreate/NOTICE +2 -0
- package/docs/node_modules/xmlcreate/README.md +141 -0
- package/docs/node_modules/xmlcreate/lib/error.d.ts +19 -0
- package/docs/node_modules/xmlcreate/lib/error.js +47 -0
- package/docs/node_modules/xmlcreate/lib/escape.d.ts +37 -0
- package/docs/node_modules/xmlcreate/lib/escape.js +55 -0
- package/docs/node_modules/xmlcreate/lib/main.d.ts +38 -0
- package/docs/node_modules/xmlcreate/lib/main.js +64 -0
- package/docs/node_modules/xmlcreate/lib/nodes/XmlAttribute.d.ts +88 -0
- package/docs/node_modules/xmlcreate/lib/nodes/XmlAttribute.js +146 -0
- package/docs/node_modules/xmlcreate/lib/nodes/XmlAttributeText.d.ts +58 -0
- package/docs/node_modules/xmlcreate/lib/nodes/XmlAttributeText.js +80 -0
- package/docs/node_modules/xmlcreate/lib/nodes/XmlCdata.d.ts +63 -0
- package/docs/node_modules/xmlcreate/lib/nodes/XmlCdata.js +88 -0
- package/docs/node_modules/xmlcreate/lib/nodes/XmlCharData.d.ts +59 -0
- package/docs/node_modules/xmlcreate/lib/nodes/XmlCharData.js +82 -0
- package/docs/node_modules/xmlcreate/lib/nodes/XmlCharRef.d.ts +89 -0
- package/docs/node_modules/xmlcreate/lib/nodes/XmlCharRef.js +136 -0
- package/docs/node_modules/xmlcreate/lib/nodes/XmlComment.d.ts +62 -0
- package/docs/node_modules/xmlcreate/lib/nodes/XmlComment.js +99 -0
- package/docs/node_modules/xmlcreate/lib/nodes/XmlDecl.d.ts +92 -0
- package/docs/node_modules/xmlcreate/lib/nodes/XmlDecl.js +180 -0
- package/docs/node_modules/xmlcreate/lib/nodes/XmlDocument.d.ts +96 -0
- package/docs/node_modules/xmlcreate/lib/nodes/XmlDocument.js +166 -0
- package/docs/node_modules/xmlcreate/lib/nodes/XmlDtd.d.ts +147 -0
- package/docs/node_modules/xmlcreate/lib/nodes/XmlDtd.js +312 -0
- package/docs/node_modules/xmlcreate/lib/nodes/XmlDtdAttlist.d.ts +56 -0
- package/docs/node_modules/xmlcreate/lib/nodes/XmlDtdAttlist.js +71 -0
- package/docs/node_modules/xmlcreate/lib/nodes/XmlDtdElement.d.ts +56 -0
- package/docs/node_modules/xmlcreate/lib/nodes/XmlDtdElement.js +71 -0
- package/docs/node_modules/xmlcreate/lib/nodes/XmlDtdEntity.d.ts +56 -0
- package/docs/node_modules/xmlcreate/lib/nodes/XmlDtdEntity.js +71 -0
- package/docs/node_modules/xmlcreate/lib/nodes/XmlDtdNotation.d.ts +56 -0
- package/docs/node_modules/xmlcreate/lib/nodes/XmlDtdNotation.js +71 -0
- package/docs/node_modules/xmlcreate/lib/nodes/XmlDtdParamEntityRef.d.ts +56 -0
- package/docs/node_modules/xmlcreate/lib/nodes/XmlDtdParamEntityRef.js +71 -0
- package/docs/node_modules/xmlcreate/lib/nodes/XmlElement.d.ts +153 -0
- package/docs/node_modules/xmlcreate/lib/nodes/XmlElement.js +302 -0
- package/docs/node_modules/xmlcreate/lib/nodes/XmlEntityRef.d.ts +56 -0
- package/docs/node_modules/xmlcreate/lib/nodes/XmlEntityRef.js +71 -0
- package/docs/node_modules/xmlcreate/lib/nodes/XmlProcInst.d.ts +71 -0
- package/docs/node_modules/xmlcreate/lib/nodes/XmlProcInst.js +112 -0
- package/docs/node_modules/xmlcreate/lib/options.d.ts +51 -0
- package/docs/node_modules/xmlcreate/lib/options.js +45 -0
- package/docs/node_modules/xmlcreate/lib/validate.d.ts +46 -0
- package/docs/node_modules/xmlcreate/lib/validate.js +274 -0
- package/docs/node_modules/xmlcreate/package.json +55 -0
- package/package.json +1 -1
|
@@ -0,0 +1,1664 @@
|
|
|
1
|
+
"use strict";
|
|
2
|
+
|
|
3
|
+
Object.defineProperty(exports, "__esModule", {
|
|
4
|
+
value: true
|
|
5
|
+
});
|
|
6
|
+
exports.patternLikeCommon = exports.importAttributes = exports.functionTypeAnnotationCommon = exports.functionDeclarationCommon = exports.functionCommon = exports.classMethodOrPropertyCommon = exports.classMethodOrDeclareMethodCommon = void 0;
|
|
7
|
+
var _is = require("../validators/is.js");
|
|
8
|
+
var _isValidIdentifier = require("../validators/isValidIdentifier.js");
|
|
9
|
+
var _helperValidatorIdentifier = require("@babel/helper-validator-identifier");
|
|
10
|
+
var _helperStringParser = require("@babel/helper-string-parser");
|
|
11
|
+
var _index = require("../constants/index.js");
|
|
12
|
+
var _utils = require("./utils.js");
|
|
13
|
+
const defineType = (0, _utils.defineAliasedType)("Standardized");
|
|
14
|
+
defineType("ArrayExpression", {
|
|
15
|
+
fields: {
|
|
16
|
+
elements: {
|
|
17
|
+
validate: (0, _utils.arrayOf)((0, _utils.assertNodeOrValueType)("null", "Expression", "SpreadElement")),
|
|
18
|
+
default: !process.env.BABEL_TYPES_8_BREAKING ? [] : undefined
|
|
19
|
+
}
|
|
20
|
+
},
|
|
21
|
+
visitor: ["elements"],
|
|
22
|
+
aliases: ["Expression"]
|
|
23
|
+
});
|
|
24
|
+
defineType("AssignmentExpression", {
|
|
25
|
+
fields: {
|
|
26
|
+
operator: {
|
|
27
|
+
validate: !process.env.BABEL_TYPES_8_BREAKING ? (0, _utils.assertValueType)("string") : Object.assign(function () {
|
|
28
|
+
const identifier = (0, _utils.assertOneOf)(..._index.ASSIGNMENT_OPERATORS);
|
|
29
|
+
const pattern = (0, _utils.assertOneOf)("=");
|
|
30
|
+
return function (node, key, val) {
|
|
31
|
+
const validator = (0, _is.default)("Pattern", node.left) ? pattern : identifier;
|
|
32
|
+
validator(node, key, val);
|
|
33
|
+
};
|
|
34
|
+
}(), {
|
|
35
|
+
oneOf: _index.ASSIGNMENT_OPERATORS
|
|
36
|
+
})
|
|
37
|
+
},
|
|
38
|
+
left: {
|
|
39
|
+
validate: !process.env.BABEL_TYPES_8_BREAKING ? (0, _utils.assertNodeType)("LVal", "OptionalMemberExpression") : (0, _utils.assertNodeType)("Identifier", "MemberExpression", "OptionalMemberExpression", "ArrayPattern", "ObjectPattern", "TSAsExpression", "TSSatisfiesExpression", "TSTypeAssertion", "TSNonNullExpression")
|
|
40
|
+
},
|
|
41
|
+
right: {
|
|
42
|
+
validate: (0, _utils.assertNodeType)("Expression")
|
|
43
|
+
}
|
|
44
|
+
},
|
|
45
|
+
builder: ["operator", "left", "right"],
|
|
46
|
+
visitor: ["left", "right"],
|
|
47
|
+
aliases: ["Expression"]
|
|
48
|
+
});
|
|
49
|
+
defineType("BinaryExpression", {
|
|
50
|
+
builder: ["operator", "left", "right"],
|
|
51
|
+
fields: {
|
|
52
|
+
operator: {
|
|
53
|
+
validate: (0, _utils.assertOneOf)(..._index.BINARY_OPERATORS)
|
|
54
|
+
},
|
|
55
|
+
left: {
|
|
56
|
+
validate: function () {
|
|
57
|
+
const expression = (0, _utils.assertNodeType)("Expression");
|
|
58
|
+
const inOp = (0, _utils.assertNodeType)("Expression", "PrivateName");
|
|
59
|
+
const validator = Object.assign(function (node, key, val) {
|
|
60
|
+
const validator = node.operator === "in" ? inOp : expression;
|
|
61
|
+
validator(node, key, val);
|
|
62
|
+
}, {
|
|
63
|
+
oneOfNodeTypes: ["Expression", "PrivateName"]
|
|
64
|
+
});
|
|
65
|
+
return validator;
|
|
66
|
+
}()
|
|
67
|
+
},
|
|
68
|
+
right: {
|
|
69
|
+
validate: (0, _utils.assertNodeType)("Expression")
|
|
70
|
+
}
|
|
71
|
+
},
|
|
72
|
+
visitor: ["left", "right"],
|
|
73
|
+
aliases: ["Binary", "Expression"]
|
|
74
|
+
});
|
|
75
|
+
defineType("InterpreterDirective", {
|
|
76
|
+
builder: ["value"],
|
|
77
|
+
fields: {
|
|
78
|
+
value: {
|
|
79
|
+
validate: (0, _utils.assertValueType)("string")
|
|
80
|
+
}
|
|
81
|
+
}
|
|
82
|
+
});
|
|
83
|
+
defineType("Directive", {
|
|
84
|
+
visitor: ["value"],
|
|
85
|
+
fields: {
|
|
86
|
+
value: {
|
|
87
|
+
validate: (0, _utils.assertNodeType)("DirectiveLiteral")
|
|
88
|
+
}
|
|
89
|
+
}
|
|
90
|
+
});
|
|
91
|
+
defineType("DirectiveLiteral", {
|
|
92
|
+
builder: ["value"],
|
|
93
|
+
fields: {
|
|
94
|
+
value: {
|
|
95
|
+
validate: (0, _utils.assertValueType)("string")
|
|
96
|
+
}
|
|
97
|
+
}
|
|
98
|
+
});
|
|
99
|
+
defineType("BlockStatement", {
|
|
100
|
+
builder: ["body", "directives"],
|
|
101
|
+
visitor: ["directives", "body"],
|
|
102
|
+
fields: {
|
|
103
|
+
directives: {
|
|
104
|
+
validate: (0, _utils.arrayOfType)("Directive"),
|
|
105
|
+
default: []
|
|
106
|
+
},
|
|
107
|
+
body: (0, _utils.validateArrayOfType)("Statement")
|
|
108
|
+
},
|
|
109
|
+
aliases: ["Scopable", "BlockParent", "Block", "Statement"]
|
|
110
|
+
});
|
|
111
|
+
defineType("BreakStatement", {
|
|
112
|
+
visitor: ["label"],
|
|
113
|
+
fields: {
|
|
114
|
+
label: {
|
|
115
|
+
validate: (0, _utils.assertNodeType)("Identifier"),
|
|
116
|
+
optional: true
|
|
117
|
+
}
|
|
118
|
+
},
|
|
119
|
+
aliases: ["Statement", "Terminatorless", "CompletionStatement"]
|
|
120
|
+
});
|
|
121
|
+
defineType("CallExpression", {
|
|
122
|
+
visitor: ["callee", "typeParameters", "typeArguments", "arguments"],
|
|
123
|
+
builder: ["callee", "arguments"],
|
|
124
|
+
aliases: ["Expression"],
|
|
125
|
+
fields: Object.assign({
|
|
126
|
+
callee: {
|
|
127
|
+
validate: (0, _utils.assertNodeType)("Expression", "Super", "V8IntrinsicIdentifier")
|
|
128
|
+
},
|
|
129
|
+
arguments: (0, _utils.validateArrayOfType)("Expression", "SpreadElement", "ArgumentPlaceholder"),
|
|
130
|
+
typeArguments: {
|
|
131
|
+
validate: (0, _utils.assertNodeType)("TypeParameterInstantiation"),
|
|
132
|
+
optional: true
|
|
133
|
+
}
|
|
134
|
+
}, {
|
|
135
|
+
optional: {
|
|
136
|
+
validate: (0, _utils.assertValueType)("boolean"),
|
|
137
|
+
optional: true
|
|
138
|
+
},
|
|
139
|
+
typeParameters: {
|
|
140
|
+
validate: (0, _utils.assertNodeType)("TSTypeParameterInstantiation"),
|
|
141
|
+
optional: true
|
|
142
|
+
}
|
|
143
|
+
}, process.env.BABEL_TYPES_8_BREAKING ? {} : {
|
|
144
|
+
optional: {
|
|
145
|
+
validate: (0, _utils.assertValueType)("boolean"),
|
|
146
|
+
optional: true
|
|
147
|
+
}
|
|
148
|
+
})
|
|
149
|
+
});
|
|
150
|
+
defineType("CatchClause", {
|
|
151
|
+
visitor: ["param", "body"],
|
|
152
|
+
fields: {
|
|
153
|
+
param: {
|
|
154
|
+
validate: (0, _utils.assertNodeType)("Identifier", "ArrayPattern", "ObjectPattern"),
|
|
155
|
+
optional: true
|
|
156
|
+
},
|
|
157
|
+
body: {
|
|
158
|
+
validate: (0, _utils.assertNodeType)("BlockStatement")
|
|
159
|
+
}
|
|
160
|
+
},
|
|
161
|
+
aliases: ["Scopable", "BlockParent"]
|
|
162
|
+
});
|
|
163
|
+
defineType("ConditionalExpression", {
|
|
164
|
+
visitor: ["test", "consequent", "alternate"],
|
|
165
|
+
fields: {
|
|
166
|
+
test: {
|
|
167
|
+
validate: (0, _utils.assertNodeType)("Expression")
|
|
168
|
+
},
|
|
169
|
+
consequent: {
|
|
170
|
+
validate: (0, _utils.assertNodeType)("Expression")
|
|
171
|
+
},
|
|
172
|
+
alternate: {
|
|
173
|
+
validate: (0, _utils.assertNodeType)("Expression")
|
|
174
|
+
}
|
|
175
|
+
},
|
|
176
|
+
aliases: ["Expression", "Conditional"]
|
|
177
|
+
});
|
|
178
|
+
defineType("ContinueStatement", {
|
|
179
|
+
visitor: ["label"],
|
|
180
|
+
fields: {
|
|
181
|
+
label: {
|
|
182
|
+
validate: (0, _utils.assertNodeType)("Identifier"),
|
|
183
|
+
optional: true
|
|
184
|
+
}
|
|
185
|
+
},
|
|
186
|
+
aliases: ["Statement", "Terminatorless", "CompletionStatement"]
|
|
187
|
+
});
|
|
188
|
+
defineType("DebuggerStatement", {
|
|
189
|
+
aliases: ["Statement"]
|
|
190
|
+
});
|
|
191
|
+
defineType("DoWhileStatement", {
|
|
192
|
+
builder: ["test", "body"],
|
|
193
|
+
visitor: ["body", "test"],
|
|
194
|
+
fields: {
|
|
195
|
+
test: {
|
|
196
|
+
validate: (0, _utils.assertNodeType)("Expression")
|
|
197
|
+
},
|
|
198
|
+
body: {
|
|
199
|
+
validate: (0, _utils.assertNodeType)("Statement")
|
|
200
|
+
}
|
|
201
|
+
},
|
|
202
|
+
aliases: ["Statement", "BlockParent", "Loop", "While", "Scopable"]
|
|
203
|
+
});
|
|
204
|
+
defineType("EmptyStatement", {
|
|
205
|
+
aliases: ["Statement"]
|
|
206
|
+
});
|
|
207
|
+
defineType("ExpressionStatement", {
|
|
208
|
+
visitor: ["expression"],
|
|
209
|
+
fields: {
|
|
210
|
+
expression: {
|
|
211
|
+
validate: (0, _utils.assertNodeType)("Expression")
|
|
212
|
+
}
|
|
213
|
+
},
|
|
214
|
+
aliases: ["Statement", "ExpressionWrapper"]
|
|
215
|
+
});
|
|
216
|
+
defineType("File", {
|
|
217
|
+
builder: ["program", "comments", "tokens"],
|
|
218
|
+
visitor: ["program"],
|
|
219
|
+
fields: {
|
|
220
|
+
program: {
|
|
221
|
+
validate: (0, _utils.assertNodeType)("Program")
|
|
222
|
+
},
|
|
223
|
+
comments: {
|
|
224
|
+
validate: !process.env.BABEL_TYPES_8_BREAKING ? Object.assign(() => {}, {
|
|
225
|
+
each: {
|
|
226
|
+
oneOfNodeTypes: ["CommentBlock", "CommentLine"]
|
|
227
|
+
}
|
|
228
|
+
}) : (0, _utils.assertEach)((0, _utils.assertNodeType)("CommentBlock", "CommentLine")),
|
|
229
|
+
optional: true
|
|
230
|
+
},
|
|
231
|
+
tokens: {
|
|
232
|
+
validate: (0, _utils.assertEach)(Object.assign(() => {}, {
|
|
233
|
+
type: "any"
|
|
234
|
+
})),
|
|
235
|
+
optional: true
|
|
236
|
+
}
|
|
237
|
+
}
|
|
238
|
+
});
|
|
239
|
+
defineType("ForInStatement", {
|
|
240
|
+
visitor: ["left", "right", "body"],
|
|
241
|
+
aliases: ["Scopable", "Statement", "For", "BlockParent", "Loop", "ForXStatement"],
|
|
242
|
+
fields: {
|
|
243
|
+
left: {
|
|
244
|
+
validate: !process.env.BABEL_TYPES_8_BREAKING ? (0, _utils.assertNodeType)("VariableDeclaration", "LVal") : (0, _utils.assertNodeType)("VariableDeclaration", "Identifier", "MemberExpression", "ArrayPattern", "ObjectPattern", "TSAsExpression", "TSSatisfiesExpression", "TSTypeAssertion", "TSNonNullExpression")
|
|
245
|
+
},
|
|
246
|
+
right: {
|
|
247
|
+
validate: (0, _utils.assertNodeType)("Expression")
|
|
248
|
+
},
|
|
249
|
+
body: {
|
|
250
|
+
validate: (0, _utils.assertNodeType)("Statement")
|
|
251
|
+
}
|
|
252
|
+
}
|
|
253
|
+
});
|
|
254
|
+
defineType("ForStatement", {
|
|
255
|
+
visitor: ["init", "test", "update", "body"],
|
|
256
|
+
aliases: ["Scopable", "Statement", "For", "BlockParent", "Loop"],
|
|
257
|
+
fields: {
|
|
258
|
+
init: {
|
|
259
|
+
validate: (0, _utils.assertNodeType)("VariableDeclaration", "Expression"),
|
|
260
|
+
optional: true
|
|
261
|
+
},
|
|
262
|
+
test: {
|
|
263
|
+
validate: (0, _utils.assertNodeType)("Expression"),
|
|
264
|
+
optional: true
|
|
265
|
+
},
|
|
266
|
+
update: {
|
|
267
|
+
validate: (0, _utils.assertNodeType)("Expression"),
|
|
268
|
+
optional: true
|
|
269
|
+
},
|
|
270
|
+
body: {
|
|
271
|
+
validate: (0, _utils.assertNodeType)("Statement")
|
|
272
|
+
}
|
|
273
|
+
}
|
|
274
|
+
});
|
|
275
|
+
const functionCommon = () => ({
|
|
276
|
+
params: (0, _utils.validateArrayOfType)("Identifier", "Pattern", "RestElement"),
|
|
277
|
+
generator: {
|
|
278
|
+
default: false
|
|
279
|
+
},
|
|
280
|
+
async: {
|
|
281
|
+
default: false
|
|
282
|
+
}
|
|
283
|
+
});
|
|
284
|
+
exports.functionCommon = functionCommon;
|
|
285
|
+
const functionTypeAnnotationCommon = () => ({
|
|
286
|
+
returnType: {
|
|
287
|
+
validate: (0, _utils.assertNodeType)("TypeAnnotation", "TSTypeAnnotation", "Noop"),
|
|
288
|
+
optional: true
|
|
289
|
+
},
|
|
290
|
+
typeParameters: {
|
|
291
|
+
validate: (0, _utils.assertNodeType)("TypeParameterDeclaration", "TSTypeParameterDeclaration", "Noop"),
|
|
292
|
+
optional: true
|
|
293
|
+
}
|
|
294
|
+
});
|
|
295
|
+
exports.functionTypeAnnotationCommon = functionTypeAnnotationCommon;
|
|
296
|
+
const functionDeclarationCommon = () => Object.assign({}, functionCommon(), {
|
|
297
|
+
declare: {
|
|
298
|
+
validate: (0, _utils.assertValueType)("boolean"),
|
|
299
|
+
optional: true
|
|
300
|
+
},
|
|
301
|
+
id: {
|
|
302
|
+
validate: (0, _utils.assertNodeType)("Identifier"),
|
|
303
|
+
optional: true
|
|
304
|
+
}
|
|
305
|
+
});
|
|
306
|
+
exports.functionDeclarationCommon = functionDeclarationCommon;
|
|
307
|
+
defineType("FunctionDeclaration", {
|
|
308
|
+
builder: ["id", "params", "body", "generator", "async"],
|
|
309
|
+
visitor: ["id", "typeParameters", "params", "predicate", "returnType", "body"],
|
|
310
|
+
fields: Object.assign({}, functionDeclarationCommon(), functionTypeAnnotationCommon(), {
|
|
311
|
+
body: {
|
|
312
|
+
validate: (0, _utils.assertNodeType)("BlockStatement")
|
|
313
|
+
},
|
|
314
|
+
predicate: {
|
|
315
|
+
validate: (0, _utils.assertNodeType)("DeclaredPredicate", "InferredPredicate"),
|
|
316
|
+
optional: true
|
|
317
|
+
}
|
|
318
|
+
}),
|
|
319
|
+
aliases: ["Scopable", "Function", "BlockParent", "FunctionParent", "Statement", "Pureish", "Declaration"],
|
|
320
|
+
validate: !process.env.BABEL_TYPES_8_BREAKING ? undefined : function () {
|
|
321
|
+
const identifier = (0, _utils.assertNodeType)("Identifier");
|
|
322
|
+
return function (parent, key, node) {
|
|
323
|
+
if (!(0, _is.default)("ExportDefaultDeclaration", parent)) {
|
|
324
|
+
identifier(node, "id", node.id);
|
|
325
|
+
}
|
|
326
|
+
};
|
|
327
|
+
}()
|
|
328
|
+
});
|
|
329
|
+
defineType("FunctionExpression", {
|
|
330
|
+
inherits: "FunctionDeclaration",
|
|
331
|
+
aliases: ["Scopable", "Function", "BlockParent", "FunctionParent", "Expression", "Pureish"],
|
|
332
|
+
fields: Object.assign({}, functionCommon(), functionTypeAnnotationCommon(), {
|
|
333
|
+
id: {
|
|
334
|
+
validate: (0, _utils.assertNodeType)("Identifier"),
|
|
335
|
+
optional: true
|
|
336
|
+
},
|
|
337
|
+
body: {
|
|
338
|
+
validate: (0, _utils.assertNodeType)("BlockStatement")
|
|
339
|
+
},
|
|
340
|
+
predicate: {
|
|
341
|
+
validate: (0, _utils.assertNodeType)("DeclaredPredicate", "InferredPredicate"),
|
|
342
|
+
optional: true
|
|
343
|
+
}
|
|
344
|
+
})
|
|
345
|
+
});
|
|
346
|
+
const patternLikeCommon = () => ({
|
|
347
|
+
typeAnnotation: {
|
|
348
|
+
validate: (0, _utils.assertNodeType)("TypeAnnotation", "TSTypeAnnotation", "Noop"),
|
|
349
|
+
optional: true
|
|
350
|
+
},
|
|
351
|
+
optional: {
|
|
352
|
+
validate: (0, _utils.assertValueType)("boolean"),
|
|
353
|
+
optional: true
|
|
354
|
+
},
|
|
355
|
+
decorators: {
|
|
356
|
+
validate: (0, _utils.arrayOfType)("Decorator"),
|
|
357
|
+
optional: true
|
|
358
|
+
}
|
|
359
|
+
});
|
|
360
|
+
exports.patternLikeCommon = patternLikeCommon;
|
|
361
|
+
defineType("Identifier", {
|
|
362
|
+
builder: ["name"],
|
|
363
|
+
visitor: ["typeAnnotation", "decorators"],
|
|
364
|
+
aliases: ["Expression", "PatternLike", "LVal", "TSEntityName"],
|
|
365
|
+
fields: Object.assign({}, patternLikeCommon(), {
|
|
366
|
+
name: {
|
|
367
|
+
validate: process.env.BABEL_TYPES_8_BREAKING ? (0, _utils.chain)((0, _utils.assertValueType)("string"), Object.assign(function (node, key, val) {
|
|
368
|
+
if (!(0, _isValidIdentifier.default)(val, false)) {
|
|
369
|
+
throw new TypeError(`"${val}" is not a valid identifier name`);
|
|
370
|
+
}
|
|
371
|
+
}, {
|
|
372
|
+
type: "string"
|
|
373
|
+
})) : (0, _utils.assertValueType)("string")
|
|
374
|
+
}
|
|
375
|
+
}),
|
|
376
|
+
validate: process.env.BABEL_TYPES_8_BREAKING ? function (parent, key, node) {
|
|
377
|
+
const match = /\.(\w+)$/.exec(key.toString());
|
|
378
|
+
if (!match) return;
|
|
379
|
+
const [, parentKey] = match;
|
|
380
|
+
const nonComp = {
|
|
381
|
+
computed: false
|
|
382
|
+
};
|
|
383
|
+
if (parentKey === "property") {
|
|
384
|
+
if ((0, _is.default)("MemberExpression", parent, nonComp)) return;
|
|
385
|
+
if ((0, _is.default)("OptionalMemberExpression", parent, nonComp)) return;
|
|
386
|
+
} else if (parentKey === "key") {
|
|
387
|
+
if ((0, _is.default)("Property", parent, nonComp)) return;
|
|
388
|
+
if ((0, _is.default)("Method", parent, nonComp)) return;
|
|
389
|
+
} else if (parentKey === "exported") {
|
|
390
|
+
if ((0, _is.default)("ExportSpecifier", parent)) return;
|
|
391
|
+
} else if (parentKey === "imported") {
|
|
392
|
+
if ((0, _is.default)("ImportSpecifier", parent, {
|
|
393
|
+
imported: node
|
|
394
|
+
})) return;
|
|
395
|
+
} else if (parentKey === "meta") {
|
|
396
|
+
if ((0, _is.default)("MetaProperty", parent, {
|
|
397
|
+
meta: node
|
|
398
|
+
})) return;
|
|
399
|
+
}
|
|
400
|
+
if (((0, _helperValidatorIdentifier.isKeyword)(node.name) || (0, _helperValidatorIdentifier.isReservedWord)(node.name, false)) && node.name !== "this") {
|
|
401
|
+
throw new TypeError(`"${node.name}" is not a valid identifier`);
|
|
402
|
+
}
|
|
403
|
+
} : undefined
|
|
404
|
+
});
|
|
405
|
+
defineType("IfStatement", {
|
|
406
|
+
visitor: ["test", "consequent", "alternate"],
|
|
407
|
+
aliases: ["Statement", "Conditional"],
|
|
408
|
+
fields: {
|
|
409
|
+
test: {
|
|
410
|
+
validate: (0, _utils.assertNodeType)("Expression")
|
|
411
|
+
},
|
|
412
|
+
consequent: {
|
|
413
|
+
validate: (0, _utils.assertNodeType)("Statement")
|
|
414
|
+
},
|
|
415
|
+
alternate: {
|
|
416
|
+
optional: true,
|
|
417
|
+
validate: (0, _utils.assertNodeType)("Statement")
|
|
418
|
+
}
|
|
419
|
+
}
|
|
420
|
+
});
|
|
421
|
+
defineType("LabeledStatement", {
|
|
422
|
+
visitor: ["label", "body"],
|
|
423
|
+
aliases: ["Statement"],
|
|
424
|
+
fields: {
|
|
425
|
+
label: {
|
|
426
|
+
validate: (0, _utils.assertNodeType)("Identifier")
|
|
427
|
+
},
|
|
428
|
+
body: {
|
|
429
|
+
validate: (0, _utils.assertNodeType)("Statement")
|
|
430
|
+
}
|
|
431
|
+
}
|
|
432
|
+
});
|
|
433
|
+
defineType("StringLiteral", {
|
|
434
|
+
builder: ["value"],
|
|
435
|
+
fields: {
|
|
436
|
+
value: {
|
|
437
|
+
validate: (0, _utils.assertValueType)("string")
|
|
438
|
+
}
|
|
439
|
+
},
|
|
440
|
+
aliases: ["Expression", "Pureish", "Literal", "Immutable"]
|
|
441
|
+
});
|
|
442
|
+
defineType("NumericLiteral", {
|
|
443
|
+
builder: ["value"],
|
|
444
|
+
deprecatedAlias: "NumberLiteral",
|
|
445
|
+
fields: {
|
|
446
|
+
value: {
|
|
447
|
+
validate: (0, _utils.chain)((0, _utils.assertValueType)("number"), Object.assign(function (node, key, val) {
|
|
448
|
+
if (1 / val < 0 || !Number.isFinite(val)) {
|
|
449
|
+
const error = new Error("NumericLiterals must be non-negative finite numbers. " + `You can use t.valueToNode(${val}) instead.`);
|
|
450
|
+
{}
|
|
451
|
+
}
|
|
452
|
+
}, {
|
|
453
|
+
type: "number"
|
|
454
|
+
}))
|
|
455
|
+
}
|
|
456
|
+
},
|
|
457
|
+
aliases: ["Expression", "Pureish", "Literal", "Immutable"]
|
|
458
|
+
});
|
|
459
|
+
defineType("NullLiteral", {
|
|
460
|
+
aliases: ["Expression", "Pureish", "Literal", "Immutable"]
|
|
461
|
+
});
|
|
462
|
+
defineType("BooleanLiteral", {
|
|
463
|
+
builder: ["value"],
|
|
464
|
+
fields: {
|
|
465
|
+
value: {
|
|
466
|
+
validate: (0, _utils.assertValueType)("boolean")
|
|
467
|
+
}
|
|
468
|
+
},
|
|
469
|
+
aliases: ["Expression", "Pureish", "Literal", "Immutable"]
|
|
470
|
+
});
|
|
471
|
+
defineType("RegExpLiteral", {
|
|
472
|
+
builder: ["pattern", "flags"],
|
|
473
|
+
deprecatedAlias: "RegexLiteral",
|
|
474
|
+
aliases: ["Expression", "Pureish", "Literal"],
|
|
475
|
+
fields: {
|
|
476
|
+
pattern: {
|
|
477
|
+
validate: (0, _utils.assertValueType)("string")
|
|
478
|
+
},
|
|
479
|
+
flags: {
|
|
480
|
+
validate: process.env.BABEL_TYPES_8_BREAKING ? (0, _utils.chain)((0, _utils.assertValueType)("string"), Object.assign(function (node, key, val) {
|
|
481
|
+
const invalid = /[^gimsuy]/.exec(val);
|
|
482
|
+
if (invalid) {
|
|
483
|
+
throw new TypeError(`"${invalid[0]}" is not a valid RegExp flag`);
|
|
484
|
+
}
|
|
485
|
+
}, {
|
|
486
|
+
type: "string"
|
|
487
|
+
})) : (0, _utils.assertValueType)("string"),
|
|
488
|
+
default: ""
|
|
489
|
+
}
|
|
490
|
+
}
|
|
491
|
+
});
|
|
492
|
+
defineType("LogicalExpression", {
|
|
493
|
+
builder: ["operator", "left", "right"],
|
|
494
|
+
visitor: ["left", "right"],
|
|
495
|
+
aliases: ["Binary", "Expression"],
|
|
496
|
+
fields: {
|
|
497
|
+
operator: {
|
|
498
|
+
validate: (0, _utils.assertOneOf)(..._index.LOGICAL_OPERATORS)
|
|
499
|
+
},
|
|
500
|
+
left: {
|
|
501
|
+
validate: (0, _utils.assertNodeType)("Expression")
|
|
502
|
+
},
|
|
503
|
+
right: {
|
|
504
|
+
validate: (0, _utils.assertNodeType)("Expression")
|
|
505
|
+
}
|
|
506
|
+
}
|
|
507
|
+
});
|
|
508
|
+
defineType("MemberExpression", {
|
|
509
|
+
builder: ["object", "property", "computed", ...(!process.env.BABEL_TYPES_8_BREAKING ? ["optional"] : [])],
|
|
510
|
+
visitor: ["object", "property"],
|
|
511
|
+
aliases: ["Expression", "LVal"],
|
|
512
|
+
fields: Object.assign({
|
|
513
|
+
object: {
|
|
514
|
+
validate: (0, _utils.assertNodeType)("Expression", "Super")
|
|
515
|
+
},
|
|
516
|
+
property: {
|
|
517
|
+
validate: function () {
|
|
518
|
+
const normal = (0, _utils.assertNodeType)("Identifier", "PrivateName");
|
|
519
|
+
const computed = (0, _utils.assertNodeType)("Expression");
|
|
520
|
+
const validator = function (node, key, val) {
|
|
521
|
+
const validator = node.computed ? computed : normal;
|
|
522
|
+
validator(node, key, val);
|
|
523
|
+
};
|
|
524
|
+
validator.oneOfNodeTypes = ["Expression", "Identifier", "PrivateName"];
|
|
525
|
+
return validator;
|
|
526
|
+
}()
|
|
527
|
+
},
|
|
528
|
+
computed: {
|
|
529
|
+
default: false
|
|
530
|
+
}
|
|
531
|
+
}, !process.env.BABEL_TYPES_8_BREAKING ? {
|
|
532
|
+
optional: {
|
|
533
|
+
validate: (0, _utils.assertValueType)("boolean"),
|
|
534
|
+
optional: true
|
|
535
|
+
}
|
|
536
|
+
} : {})
|
|
537
|
+
});
|
|
538
|
+
defineType("NewExpression", {
|
|
539
|
+
inherits: "CallExpression"
|
|
540
|
+
});
|
|
541
|
+
defineType("Program", {
|
|
542
|
+
visitor: ["directives", "body"],
|
|
543
|
+
builder: ["body", "directives", "sourceType", "interpreter"],
|
|
544
|
+
fields: {
|
|
545
|
+
sourceType: {
|
|
546
|
+
validate: (0, _utils.assertOneOf)("script", "module"),
|
|
547
|
+
default: "script"
|
|
548
|
+
},
|
|
549
|
+
interpreter: {
|
|
550
|
+
validate: (0, _utils.assertNodeType)("InterpreterDirective"),
|
|
551
|
+
default: null,
|
|
552
|
+
optional: true
|
|
553
|
+
},
|
|
554
|
+
directives: {
|
|
555
|
+
validate: (0, _utils.arrayOfType)("Directive"),
|
|
556
|
+
default: []
|
|
557
|
+
},
|
|
558
|
+
body: (0, _utils.validateArrayOfType)("Statement")
|
|
559
|
+
},
|
|
560
|
+
aliases: ["Scopable", "BlockParent", "Block"]
|
|
561
|
+
});
|
|
562
|
+
defineType("ObjectExpression", {
|
|
563
|
+
visitor: ["properties"],
|
|
564
|
+
aliases: ["Expression"],
|
|
565
|
+
fields: {
|
|
566
|
+
properties: (0, _utils.validateArrayOfType)("ObjectMethod", "ObjectProperty", "SpreadElement")
|
|
567
|
+
}
|
|
568
|
+
});
|
|
569
|
+
defineType("ObjectMethod", {
|
|
570
|
+
builder: ["kind", "key", "params", "body", "computed", "generator", "async"],
|
|
571
|
+
visitor: ["decorators", "key", "typeParameters", "params", "returnType", "body"],
|
|
572
|
+
fields: Object.assign({}, functionCommon(), functionTypeAnnotationCommon(), {
|
|
573
|
+
kind: Object.assign({
|
|
574
|
+
validate: (0, _utils.assertOneOf)("method", "get", "set")
|
|
575
|
+
}, !process.env.BABEL_TYPES_8_BREAKING ? {
|
|
576
|
+
default: "method"
|
|
577
|
+
} : {}),
|
|
578
|
+
computed: {
|
|
579
|
+
default: false
|
|
580
|
+
},
|
|
581
|
+
key: {
|
|
582
|
+
validate: function () {
|
|
583
|
+
const normal = (0, _utils.assertNodeType)("Identifier", "StringLiteral", "NumericLiteral", "BigIntLiteral");
|
|
584
|
+
const computed = (0, _utils.assertNodeType)("Expression");
|
|
585
|
+
const validator = function (node, key, val) {
|
|
586
|
+
const validator = node.computed ? computed : normal;
|
|
587
|
+
validator(node, key, val);
|
|
588
|
+
};
|
|
589
|
+
validator.oneOfNodeTypes = ["Expression", "Identifier", "StringLiteral", "NumericLiteral", "BigIntLiteral"];
|
|
590
|
+
return validator;
|
|
591
|
+
}()
|
|
592
|
+
},
|
|
593
|
+
decorators: {
|
|
594
|
+
validate: (0, _utils.arrayOfType)("Decorator"),
|
|
595
|
+
optional: true
|
|
596
|
+
},
|
|
597
|
+
body: {
|
|
598
|
+
validate: (0, _utils.assertNodeType)("BlockStatement")
|
|
599
|
+
}
|
|
600
|
+
}),
|
|
601
|
+
aliases: ["UserWhitespacable", "Function", "Scopable", "BlockParent", "FunctionParent", "Method", "ObjectMember"]
|
|
602
|
+
});
|
|
603
|
+
defineType("ObjectProperty", {
|
|
604
|
+
builder: ["key", "value", "computed", "shorthand", ...(!process.env.BABEL_TYPES_8_BREAKING ? ["decorators"] : [])],
|
|
605
|
+
fields: {
|
|
606
|
+
computed: {
|
|
607
|
+
default: false
|
|
608
|
+
},
|
|
609
|
+
key: {
|
|
610
|
+
validate: function () {
|
|
611
|
+
const normal = (0, _utils.assertNodeType)("Identifier", "StringLiteral", "NumericLiteral", "BigIntLiteral", "DecimalLiteral", "PrivateName");
|
|
612
|
+
const computed = (0, _utils.assertNodeType)("Expression");
|
|
613
|
+
const validator = Object.assign(function (node, key, val) {
|
|
614
|
+
const validator = node.computed ? computed : normal;
|
|
615
|
+
validator(node, key, val);
|
|
616
|
+
}, {
|
|
617
|
+
oneOfNodeTypes: ["Expression", "Identifier", "StringLiteral", "NumericLiteral", "BigIntLiteral", "DecimalLiteral", "PrivateName"]
|
|
618
|
+
});
|
|
619
|
+
return validator;
|
|
620
|
+
}()
|
|
621
|
+
},
|
|
622
|
+
value: {
|
|
623
|
+
validate: (0, _utils.assertNodeType)("Expression", "PatternLike")
|
|
624
|
+
},
|
|
625
|
+
shorthand: {
|
|
626
|
+
validate: process.env.BABEL_TYPES_8_BREAKING ? (0, _utils.chain)((0, _utils.assertValueType)("boolean"), Object.assign(function (node, key, shorthand) {
|
|
627
|
+
if (!shorthand) return;
|
|
628
|
+
if (node.computed) {
|
|
629
|
+
throw new TypeError("Property shorthand of ObjectProperty cannot be true if computed is true");
|
|
630
|
+
}
|
|
631
|
+
if (!(0, _is.default)("Identifier", node.key)) {
|
|
632
|
+
throw new TypeError("Property shorthand of ObjectProperty cannot be true if key is not an Identifier");
|
|
633
|
+
}
|
|
634
|
+
}, {
|
|
635
|
+
type: "boolean"
|
|
636
|
+
})) : (0, _utils.assertValueType)("boolean"),
|
|
637
|
+
default: false
|
|
638
|
+
},
|
|
639
|
+
decorators: {
|
|
640
|
+
validate: (0, _utils.arrayOfType)("Decorator"),
|
|
641
|
+
optional: true
|
|
642
|
+
}
|
|
643
|
+
},
|
|
644
|
+
visitor: ["decorators", "key", "value"],
|
|
645
|
+
aliases: ["UserWhitespacable", "Property", "ObjectMember"],
|
|
646
|
+
validate: !process.env.BABEL_TYPES_8_BREAKING ? undefined : function () {
|
|
647
|
+
const pattern = (0, _utils.assertNodeType)("Identifier", "Pattern", "TSAsExpression", "TSSatisfiesExpression", "TSNonNullExpression", "TSTypeAssertion");
|
|
648
|
+
const expression = (0, _utils.assertNodeType)("Expression");
|
|
649
|
+
return function (parent, key, node) {
|
|
650
|
+
const validator = (0, _is.default)("ObjectPattern", parent) ? pattern : expression;
|
|
651
|
+
validator(node, "value", node.value);
|
|
652
|
+
};
|
|
653
|
+
}()
|
|
654
|
+
});
|
|
655
|
+
defineType("RestElement", {
|
|
656
|
+
visitor: ["argument", "typeAnnotation"],
|
|
657
|
+
builder: ["argument"],
|
|
658
|
+
aliases: ["LVal", "PatternLike"],
|
|
659
|
+
deprecatedAlias: "RestProperty",
|
|
660
|
+
fields: Object.assign({}, patternLikeCommon(), {
|
|
661
|
+
argument: {
|
|
662
|
+
validate: !process.env.BABEL_TYPES_8_BREAKING ? (0, _utils.assertNodeType)("LVal") : (0, _utils.assertNodeType)("Identifier", "ArrayPattern", "ObjectPattern", "MemberExpression", "TSAsExpression", "TSSatisfiesExpression", "TSTypeAssertion", "TSNonNullExpression")
|
|
663
|
+
}
|
|
664
|
+
}),
|
|
665
|
+
validate: process.env.BABEL_TYPES_8_BREAKING ? function (parent, key) {
|
|
666
|
+
const match = /(\w+)\[(\d+)\]/.exec(key.toString());
|
|
667
|
+
if (!match) throw new Error("Internal Babel error: malformed key.");
|
|
668
|
+
const [, listKey, index] = match;
|
|
669
|
+
if (parent[listKey].length > +index + 1) {
|
|
670
|
+
throw new TypeError(`RestElement must be last element of ${listKey}`);
|
|
671
|
+
}
|
|
672
|
+
} : undefined
|
|
673
|
+
});
|
|
674
|
+
defineType("ReturnStatement", {
|
|
675
|
+
visitor: ["argument"],
|
|
676
|
+
aliases: ["Statement", "Terminatorless", "CompletionStatement"],
|
|
677
|
+
fields: {
|
|
678
|
+
argument: {
|
|
679
|
+
validate: (0, _utils.assertNodeType)("Expression"),
|
|
680
|
+
optional: true
|
|
681
|
+
}
|
|
682
|
+
}
|
|
683
|
+
});
|
|
684
|
+
defineType("SequenceExpression", {
|
|
685
|
+
visitor: ["expressions"],
|
|
686
|
+
fields: {
|
|
687
|
+
expressions: (0, _utils.validateArrayOfType)("Expression")
|
|
688
|
+
},
|
|
689
|
+
aliases: ["Expression"]
|
|
690
|
+
});
|
|
691
|
+
defineType("ParenthesizedExpression", {
|
|
692
|
+
visitor: ["expression"],
|
|
693
|
+
aliases: ["Expression", "ExpressionWrapper"],
|
|
694
|
+
fields: {
|
|
695
|
+
expression: {
|
|
696
|
+
validate: (0, _utils.assertNodeType)("Expression")
|
|
697
|
+
}
|
|
698
|
+
}
|
|
699
|
+
});
|
|
700
|
+
defineType("SwitchCase", {
|
|
701
|
+
visitor: ["test", "consequent"],
|
|
702
|
+
fields: {
|
|
703
|
+
test: {
|
|
704
|
+
validate: (0, _utils.assertNodeType)("Expression"),
|
|
705
|
+
optional: true
|
|
706
|
+
},
|
|
707
|
+
consequent: (0, _utils.validateArrayOfType)("Statement")
|
|
708
|
+
}
|
|
709
|
+
});
|
|
710
|
+
defineType("SwitchStatement", {
|
|
711
|
+
visitor: ["discriminant", "cases"],
|
|
712
|
+
aliases: ["Statement", "BlockParent", "Scopable"],
|
|
713
|
+
fields: {
|
|
714
|
+
discriminant: {
|
|
715
|
+
validate: (0, _utils.assertNodeType)("Expression")
|
|
716
|
+
},
|
|
717
|
+
cases: (0, _utils.validateArrayOfType)("SwitchCase")
|
|
718
|
+
}
|
|
719
|
+
});
|
|
720
|
+
defineType("ThisExpression", {
|
|
721
|
+
aliases: ["Expression"]
|
|
722
|
+
});
|
|
723
|
+
defineType("ThrowStatement", {
|
|
724
|
+
visitor: ["argument"],
|
|
725
|
+
aliases: ["Statement", "Terminatorless", "CompletionStatement"],
|
|
726
|
+
fields: {
|
|
727
|
+
argument: {
|
|
728
|
+
validate: (0, _utils.assertNodeType)("Expression")
|
|
729
|
+
}
|
|
730
|
+
}
|
|
731
|
+
});
|
|
732
|
+
defineType("TryStatement", {
|
|
733
|
+
visitor: ["block", "handler", "finalizer"],
|
|
734
|
+
aliases: ["Statement"],
|
|
735
|
+
fields: {
|
|
736
|
+
block: {
|
|
737
|
+
validate: process.env.BABEL_TYPES_8_BREAKING ? (0, _utils.chain)((0, _utils.assertNodeType)("BlockStatement"), Object.assign(function (node) {
|
|
738
|
+
if (!node.handler && !node.finalizer) {
|
|
739
|
+
throw new TypeError("TryStatement expects either a handler or finalizer, or both");
|
|
740
|
+
}
|
|
741
|
+
}, {
|
|
742
|
+
oneOfNodeTypes: ["BlockStatement"]
|
|
743
|
+
})) : (0, _utils.assertNodeType)("BlockStatement")
|
|
744
|
+
},
|
|
745
|
+
handler: {
|
|
746
|
+
optional: true,
|
|
747
|
+
validate: (0, _utils.assertNodeType)("CatchClause")
|
|
748
|
+
},
|
|
749
|
+
finalizer: {
|
|
750
|
+
optional: true,
|
|
751
|
+
validate: (0, _utils.assertNodeType)("BlockStatement")
|
|
752
|
+
}
|
|
753
|
+
}
|
|
754
|
+
});
|
|
755
|
+
defineType("UnaryExpression", {
|
|
756
|
+
builder: ["operator", "argument", "prefix"],
|
|
757
|
+
fields: {
|
|
758
|
+
prefix: {
|
|
759
|
+
default: true
|
|
760
|
+
},
|
|
761
|
+
argument: {
|
|
762
|
+
validate: (0, _utils.assertNodeType)("Expression")
|
|
763
|
+
},
|
|
764
|
+
operator: {
|
|
765
|
+
validate: (0, _utils.assertOneOf)(..._index.UNARY_OPERATORS)
|
|
766
|
+
}
|
|
767
|
+
},
|
|
768
|
+
visitor: ["argument"],
|
|
769
|
+
aliases: ["UnaryLike", "Expression"]
|
|
770
|
+
});
|
|
771
|
+
defineType("UpdateExpression", {
|
|
772
|
+
builder: ["operator", "argument", "prefix"],
|
|
773
|
+
fields: {
|
|
774
|
+
prefix: {
|
|
775
|
+
default: false
|
|
776
|
+
},
|
|
777
|
+
argument: {
|
|
778
|
+
validate: !process.env.BABEL_TYPES_8_BREAKING ? (0, _utils.assertNodeType)("Expression") : (0, _utils.assertNodeType)("Identifier", "MemberExpression")
|
|
779
|
+
},
|
|
780
|
+
operator: {
|
|
781
|
+
validate: (0, _utils.assertOneOf)(..._index.UPDATE_OPERATORS)
|
|
782
|
+
}
|
|
783
|
+
},
|
|
784
|
+
visitor: ["argument"],
|
|
785
|
+
aliases: ["Expression"]
|
|
786
|
+
});
|
|
787
|
+
defineType("VariableDeclaration", {
|
|
788
|
+
builder: ["kind", "declarations"],
|
|
789
|
+
visitor: ["declarations"],
|
|
790
|
+
aliases: ["Statement", "Declaration"],
|
|
791
|
+
fields: {
|
|
792
|
+
declare: {
|
|
793
|
+
validate: (0, _utils.assertValueType)("boolean"),
|
|
794
|
+
optional: true
|
|
795
|
+
},
|
|
796
|
+
kind: {
|
|
797
|
+
validate: (0, _utils.assertOneOf)("var", "let", "const", "using", "await using")
|
|
798
|
+
},
|
|
799
|
+
declarations: (0, _utils.validateArrayOfType)("VariableDeclarator")
|
|
800
|
+
},
|
|
801
|
+
validate: process.env.BABEL_TYPES_8_BREAKING ? (() => {
|
|
802
|
+
const withoutInit = (0, _utils.assertNodeType)("Identifier", "Placeholder");
|
|
803
|
+
const constOrLetOrVar = (0, _utils.assertNodeType)("Identifier", "ArrayPattern", "ObjectPattern", "Placeholder");
|
|
804
|
+
const usingOrAwaitUsing = withoutInit;
|
|
805
|
+
return function (parent, key, node) {
|
|
806
|
+
const {
|
|
807
|
+
kind,
|
|
808
|
+
declarations
|
|
809
|
+
} = node;
|
|
810
|
+
const parentIsForX = (0, _is.default)("ForXStatement", parent, {
|
|
811
|
+
left: node
|
|
812
|
+
});
|
|
813
|
+
if (parentIsForX) {
|
|
814
|
+
if (declarations.length !== 1) {
|
|
815
|
+
throw new TypeError(`Exactly one VariableDeclarator is required in the VariableDeclaration of a ${parent.type}`);
|
|
816
|
+
}
|
|
817
|
+
}
|
|
818
|
+
for (const decl of declarations) {
|
|
819
|
+
if (kind === "const" || kind === "let" || kind === "var") {
|
|
820
|
+
if (!parentIsForX && !decl.init) {
|
|
821
|
+
withoutInit(decl, "id", decl.id);
|
|
822
|
+
} else {
|
|
823
|
+
constOrLetOrVar(decl, "id", decl.id);
|
|
824
|
+
}
|
|
825
|
+
} else {
|
|
826
|
+
usingOrAwaitUsing(decl, "id", decl.id);
|
|
827
|
+
}
|
|
828
|
+
}
|
|
829
|
+
};
|
|
830
|
+
})() : undefined
|
|
831
|
+
});
|
|
832
|
+
defineType("VariableDeclarator", {
|
|
833
|
+
visitor: ["id", "init"],
|
|
834
|
+
fields: {
|
|
835
|
+
id: {
|
|
836
|
+
validate: !process.env.BABEL_TYPES_8_BREAKING ? (0, _utils.assertNodeType)("LVal") : (0, _utils.assertNodeType)("Identifier", "ArrayPattern", "ObjectPattern")
|
|
837
|
+
},
|
|
838
|
+
definite: {
|
|
839
|
+
optional: true,
|
|
840
|
+
validate: (0, _utils.assertValueType)("boolean")
|
|
841
|
+
},
|
|
842
|
+
init: {
|
|
843
|
+
optional: true,
|
|
844
|
+
validate: (0, _utils.assertNodeType)("Expression")
|
|
845
|
+
}
|
|
846
|
+
}
|
|
847
|
+
});
|
|
848
|
+
defineType("WhileStatement", {
|
|
849
|
+
visitor: ["test", "body"],
|
|
850
|
+
aliases: ["Statement", "BlockParent", "Loop", "While", "Scopable"],
|
|
851
|
+
fields: {
|
|
852
|
+
test: {
|
|
853
|
+
validate: (0, _utils.assertNodeType)("Expression")
|
|
854
|
+
},
|
|
855
|
+
body: {
|
|
856
|
+
validate: (0, _utils.assertNodeType)("Statement")
|
|
857
|
+
}
|
|
858
|
+
}
|
|
859
|
+
});
|
|
860
|
+
defineType("WithStatement", {
|
|
861
|
+
visitor: ["object", "body"],
|
|
862
|
+
aliases: ["Statement"],
|
|
863
|
+
fields: {
|
|
864
|
+
object: {
|
|
865
|
+
validate: (0, _utils.assertNodeType)("Expression")
|
|
866
|
+
},
|
|
867
|
+
body: {
|
|
868
|
+
validate: (0, _utils.assertNodeType)("Statement")
|
|
869
|
+
}
|
|
870
|
+
}
|
|
871
|
+
});
|
|
872
|
+
defineType("AssignmentPattern", {
|
|
873
|
+
visitor: ["left", "right", "decorators"],
|
|
874
|
+
builder: ["left", "right"],
|
|
875
|
+
aliases: ["Pattern", "PatternLike", "LVal"],
|
|
876
|
+
fields: Object.assign({}, patternLikeCommon(), {
|
|
877
|
+
left: {
|
|
878
|
+
validate: (0, _utils.assertNodeType)("Identifier", "ObjectPattern", "ArrayPattern", "MemberExpression", "TSAsExpression", "TSSatisfiesExpression", "TSTypeAssertion", "TSNonNullExpression")
|
|
879
|
+
},
|
|
880
|
+
right: {
|
|
881
|
+
validate: (0, _utils.assertNodeType)("Expression")
|
|
882
|
+
},
|
|
883
|
+
decorators: {
|
|
884
|
+
validate: (0, _utils.arrayOfType)("Decorator"),
|
|
885
|
+
optional: true
|
|
886
|
+
}
|
|
887
|
+
})
|
|
888
|
+
});
|
|
889
|
+
defineType("ArrayPattern", {
|
|
890
|
+
visitor: ["elements", "typeAnnotation"],
|
|
891
|
+
builder: ["elements"],
|
|
892
|
+
aliases: ["Pattern", "PatternLike", "LVal"],
|
|
893
|
+
fields: Object.assign({}, patternLikeCommon(), {
|
|
894
|
+
elements: {
|
|
895
|
+
validate: (0, _utils.chain)((0, _utils.assertValueType)("array"), (0, _utils.assertEach)((0, _utils.assertNodeOrValueType)("null", "PatternLike", "LVal")))
|
|
896
|
+
}
|
|
897
|
+
})
|
|
898
|
+
});
|
|
899
|
+
defineType("ArrowFunctionExpression", {
|
|
900
|
+
builder: ["params", "body", "async"],
|
|
901
|
+
visitor: ["typeParameters", "params", "predicate", "returnType", "body"],
|
|
902
|
+
aliases: ["Scopable", "Function", "BlockParent", "FunctionParent", "Expression", "Pureish"],
|
|
903
|
+
fields: Object.assign({}, functionCommon(), functionTypeAnnotationCommon(), {
|
|
904
|
+
expression: {
|
|
905
|
+
validate: (0, _utils.assertValueType)("boolean")
|
|
906
|
+
},
|
|
907
|
+
body: {
|
|
908
|
+
validate: (0, _utils.assertNodeType)("BlockStatement", "Expression")
|
|
909
|
+
},
|
|
910
|
+
predicate: {
|
|
911
|
+
validate: (0, _utils.assertNodeType)("DeclaredPredicate", "InferredPredicate"),
|
|
912
|
+
optional: true
|
|
913
|
+
}
|
|
914
|
+
})
|
|
915
|
+
});
|
|
916
|
+
defineType("ClassBody", {
|
|
917
|
+
visitor: ["body"],
|
|
918
|
+
fields: {
|
|
919
|
+
body: (0, _utils.validateArrayOfType)("ClassMethod", "ClassPrivateMethod", "ClassProperty", "ClassPrivateProperty", "ClassAccessorProperty", "TSDeclareMethod", "TSIndexSignature", "StaticBlock")
|
|
920
|
+
}
|
|
921
|
+
});
|
|
922
|
+
defineType("ClassExpression", {
|
|
923
|
+
builder: ["id", "superClass", "body", "decorators"],
|
|
924
|
+
visitor: ["decorators", "id", "typeParameters", "superClass", "superTypeParameters", "mixins", "implements", "body"],
|
|
925
|
+
aliases: ["Scopable", "Class", "Expression"],
|
|
926
|
+
fields: {
|
|
927
|
+
id: {
|
|
928
|
+
validate: (0, _utils.assertNodeType)("Identifier"),
|
|
929
|
+
optional: true
|
|
930
|
+
},
|
|
931
|
+
typeParameters: {
|
|
932
|
+
validate: (0, _utils.assertNodeType)("TypeParameterDeclaration", "TSTypeParameterDeclaration", "Noop"),
|
|
933
|
+
optional: true
|
|
934
|
+
},
|
|
935
|
+
body: {
|
|
936
|
+
validate: (0, _utils.assertNodeType)("ClassBody")
|
|
937
|
+
},
|
|
938
|
+
superClass: {
|
|
939
|
+
optional: true,
|
|
940
|
+
validate: (0, _utils.assertNodeType)("Expression")
|
|
941
|
+
},
|
|
942
|
+
["superTypeParameters"]: {
|
|
943
|
+
validate: (0, _utils.assertNodeType)("TypeParameterInstantiation", "TSTypeParameterInstantiation"),
|
|
944
|
+
optional: true
|
|
945
|
+
},
|
|
946
|
+
implements: {
|
|
947
|
+
validate: (0, _utils.arrayOfType)("TSExpressionWithTypeArguments", "ClassImplements"),
|
|
948
|
+
optional: true
|
|
949
|
+
},
|
|
950
|
+
decorators: {
|
|
951
|
+
validate: (0, _utils.arrayOfType)("Decorator"),
|
|
952
|
+
optional: true
|
|
953
|
+
},
|
|
954
|
+
mixins: {
|
|
955
|
+
validate: (0, _utils.assertNodeType)("InterfaceExtends"),
|
|
956
|
+
optional: true
|
|
957
|
+
}
|
|
958
|
+
}
|
|
959
|
+
});
|
|
960
|
+
defineType("ClassDeclaration", {
|
|
961
|
+
inherits: "ClassExpression",
|
|
962
|
+
aliases: ["Scopable", "Class", "Statement", "Declaration"],
|
|
963
|
+
fields: {
|
|
964
|
+
id: {
|
|
965
|
+
validate: (0, _utils.assertNodeType)("Identifier"),
|
|
966
|
+
optional: true
|
|
967
|
+
},
|
|
968
|
+
typeParameters: {
|
|
969
|
+
validate: (0, _utils.assertNodeType)("TypeParameterDeclaration", "TSTypeParameterDeclaration", "Noop"),
|
|
970
|
+
optional: true
|
|
971
|
+
},
|
|
972
|
+
body: {
|
|
973
|
+
validate: (0, _utils.assertNodeType)("ClassBody")
|
|
974
|
+
},
|
|
975
|
+
superClass: {
|
|
976
|
+
optional: true,
|
|
977
|
+
validate: (0, _utils.assertNodeType)("Expression")
|
|
978
|
+
},
|
|
979
|
+
["superTypeParameters"]: {
|
|
980
|
+
validate: (0, _utils.assertNodeType)("TypeParameterInstantiation", "TSTypeParameterInstantiation"),
|
|
981
|
+
optional: true
|
|
982
|
+
},
|
|
983
|
+
implements: {
|
|
984
|
+
validate: (0, _utils.arrayOfType)("TSExpressionWithTypeArguments", "ClassImplements"),
|
|
985
|
+
optional: true
|
|
986
|
+
},
|
|
987
|
+
decorators: {
|
|
988
|
+
validate: (0, _utils.arrayOfType)("Decorator"),
|
|
989
|
+
optional: true
|
|
990
|
+
},
|
|
991
|
+
mixins: {
|
|
992
|
+
validate: (0, _utils.assertNodeType)("InterfaceExtends"),
|
|
993
|
+
optional: true
|
|
994
|
+
},
|
|
995
|
+
declare: {
|
|
996
|
+
validate: (0, _utils.assertValueType)("boolean"),
|
|
997
|
+
optional: true
|
|
998
|
+
},
|
|
999
|
+
abstract: {
|
|
1000
|
+
validate: (0, _utils.assertValueType)("boolean"),
|
|
1001
|
+
optional: true
|
|
1002
|
+
}
|
|
1003
|
+
},
|
|
1004
|
+
validate: !process.env.BABEL_TYPES_8_BREAKING ? undefined : function () {
|
|
1005
|
+
const identifier = (0, _utils.assertNodeType)("Identifier");
|
|
1006
|
+
return function (parent, key, node) {
|
|
1007
|
+
if (!(0, _is.default)("ExportDefaultDeclaration", parent)) {
|
|
1008
|
+
identifier(node, "id", node.id);
|
|
1009
|
+
}
|
|
1010
|
+
};
|
|
1011
|
+
}()
|
|
1012
|
+
});
|
|
1013
|
+
const importAttributes = exports.importAttributes = {
|
|
1014
|
+
attributes: {
|
|
1015
|
+
optional: true,
|
|
1016
|
+
validate: (0, _utils.arrayOfType)("ImportAttribute")
|
|
1017
|
+
},
|
|
1018
|
+
assertions: {
|
|
1019
|
+
deprecated: true,
|
|
1020
|
+
optional: true,
|
|
1021
|
+
validate: (0, _utils.arrayOfType)("ImportAttribute")
|
|
1022
|
+
}
|
|
1023
|
+
};
|
|
1024
|
+
defineType("ExportAllDeclaration", {
|
|
1025
|
+
builder: ["source"],
|
|
1026
|
+
visitor: ["source", "attributes", "assertions"],
|
|
1027
|
+
aliases: ["Statement", "Declaration", "ImportOrExportDeclaration", "ExportDeclaration"],
|
|
1028
|
+
fields: Object.assign({
|
|
1029
|
+
source: {
|
|
1030
|
+
validate: (0, _utils.assertNodeType)("StringLiteral")
|
|
1031
|
+
},
|
|
1032
|
+
exportKind: (0, _utils.validateOptional)((0, _utils.assertOneOf)("type", "value"))
|
|
1033
|
+
}, importAttributes)
|
|
1034
|
+
});
|
|
1035
|
+
defineType("ExportDefaultDeclaration", {
|
|
1036
|
+
visitor: ["declaration"],
|
|
1037
|
+
aliases: ["Statement", "Declaration", "ImportOrExportDeclaration", "ExportDeclaration"],
|
|
1038
|
+
fields: {
|
|
1039
|
+
declaration: (0, _utils.validateType)("TSDeclareFunction", "FunctionDeclaration", "ClassDeclaration", "Expression"),
|
|
1040
|
+
exportKind: (0, _utils.validateOptional)((0, _utils.assertOneOf)("value"))
|
|
1041
|
+
}
|
|
1042
|
+
});
|
|
1043
|
+
defineType("ExportNamedDeclaration", {
|
|
1044
|
+
builder: ["declaration", "specifiers", "source"],
|
|
1045
|
+
visitor: process.env ? ["declaration", "specifiers", "source", "attributes"] : ["declaration", "specifiers", "source", "attributes", "assertions"],
|
|
1046
|
+
aliases: ["Statement", "Declaration", "ImportOrExportDeclaration", "ExportDeclaration"],
|
|
1047
|
+
fields: Object.assign({
|
|
1048
|
+
declaration: {
|
|
1049
|
+
optional: true,
|
|
1050
|
+
validate: process.env.BABEL_TYPES_8_BREAKING ? (0, _utils.chain)((0, _utils.assertNodeType)("Declaration"), Object.assign(function (node, key, val) {
|
|
1051
|
+
if (val && node.specifiers.length) {
|
|
1052
|
+
throw new TypeError("Only declaration or specifiers is allowed on ExportNamedDeclaration");
|
|
1053
|
+
}
|
|
1054
|
+
if (val && node.source) {
|
|
1055
|
+
throw new TypeError("Cannot export a declaration from a source");
|
|
1056
|
+
}
|
|
1057
|
+
}, {
|
|
1058
|
+
oneOfNodeTypes: ["Declaration"]
|
|
1059
|
+
})) : (0, _utils.assertNodeType)("Declaration")
|
|
1060
|
+
}
|
|
1061
|
+
}, importAttributes, {
|
|
1062
|
+
specifiers: {
|
|
1063
|
+
default: [],
|
|
1064
|
+
validate: (0, _utils.arrayOf)(function () {
|
|
1065
|
+
const sourced = (0, _utils.assertNodeType)("ExportSpecifier", "ExportDefaultSpecifier", "ExportNamespaceSpecifier");
|
|
1066
|
+
const sourceless = (0, _utils.assertNodeType)("ExportSpecifier");
|
|
1067
|
+
if (!process.env.BABEL_TYPES_8_BREAKING) return sourced;
|
|
1068
|
+
return Object.assign(function (node, key, val) {
|
|
1069
|
+
const validator = node.source ? sourced : sourceless;
|
|
1070
|
+
validator(node, key, val);
|
|
1071
|
+
}, {
|
|
1072
|
+
oneOfNodeTypes: ["ExportSpecifier", "ExportDefaultSpecifier", "ExportNamespaceSpecifier"]
|
|
1073
|
+
});
|
|
1074
|
+
}())
|
|
1075
|
+
},
|
|
1076
|
+
source: {
|
|
1077
|
+
validate: (0, _utils.assertNodeType)("StringLiteral"),
|
|
1078
|
+
optional: true
|
|
1079
|
+
},
|
|
1080
|
+
exportKind: (0, _utils.validateOptional)((0, _utils.assertOneOf)("type", "value"))
|
|
1081
|
+
})
|
|
1082
|
+
});
|
|
1083
|
+
defineType("ExportSpecifier", {
|
|
1084
|
+
visitor: ["local", "exported"],
|
|
1085
|
+
aliases: ["ModuleSpecifier"],
|
|
1086
|
+
fields: {
|
|
1087
|
+
local: {
|
|
1088
|
+
validate: (0, _utils.assertNodeType)("Identifier")
|
|
1089
|
+
},
|
|
1090
|
+
exported: {
|
|
1091
|
+
validate: (0, _utils.assertNodeType)("Identifier", "StringLiteral")
|
|
1092
|
+
},
|
|
1093
|
+
exportKind: {
|
|
1094
|
+
validate: (0, _utils.assertOneOf)("type", "value"),
|
|
1095
|
+
optional: true
|
|
1096
|
+
}
|
|
1097
|
+
}
|
|
1098
|
+
});
|
|
1099
|
+
defineType("ForOfStatement", {
|
|
1100
|
+
visitor: ["left", "right", "body"],
|
|
1101
|
+
builder: ["left", "right", "body", "await"],
|
|
1102
|
+
aliases: ["Scopable", "Statement", "For", "BlockParent", "Loop", "ForXStatement"],
|
|
1103
|
+
fields: {
|
|
1104
|
+
left: {
|
|
1105
|
+
validate: function () {
|
|
1106
|
+
if (!process.env.BABEL_TYPES_8_BREAKING) {
|
|
1107
|
+
return (0, _utils.assertNodeType)("VariableDeclaration", "LVal");
|
|
1108
|
+
}
|
|
1109
|
+
const declaration = (0, _utils.assertNodeType)("VariableDeclaration");
|
|
1110
|
+
const lval = (0, _utils.assertNodeType)("Identifier", "MemberExpression", "ArrayPattern", "ObjectPattern", "TSAsExpression", "TSSatisfiesExpression", "TSTypeAssertion", "TSNonNullExpression");
|
|
1111
|
+
return Object.assign(function (node, key, val) {
|
|
1112
|
+
if ((0, _is.default)("VariableDeclaration", val)) {
|
|
1113
|
+
declaration(node, key, val);
|
|
1114
|
+
} else {
|
|
1115
|
+
lval(node, key, val);
|
|
1116
|
+
}
|
|
1117
|
+
}, {
|
|
1118
|
+
oneOfNodeTypes: ["VariableDeclaration", "Identifier", "MemberExpression", "ArrayPattern", "ObjectPattern", "TSAsExpression", "TSSatisfiesExpression", "TSTypeAssertion", "TSNonNullExpression"]
|
|
1119
|
+
});
|
|
1120
|
+
}()
|
|
1121
|
+
},
|
|
1122
|
+
right: {
|
|
1123
|
+
validate: (0, _utils.assertNodeType)("Expression")
|
|
1124
|
+
},
|
|
1125
|
+
body: {
|
|
1126
|
+
validate: (0, _utils.assertNodeType)("Statement")
|
|
1127
|
+
},
|
|
1128
|
+
await: {
|
|
1129
|
+
default: false
|
|
1130
|
+
}
|
|
1131
|
+
}
|
|
1132
|
+
});
|
|
1133
|
+
defineType("ImportDeclaration", {
|
|
1134
|
+
builder: ["specifiers", "source"],
|
|
1135
|
+
visitor: ["specifiers", "source", "attributes", "assertions"],
|
|
1136
|
+
aliases: ["Statement", "Declaration", "ImportOrExportDeclaration"],
|
|
1137
|
+
fields: Object.assign({}, importAttributes, {
|
|
1138
|
+
module: {
|
|
1139
|
+
optional: true,
|
|
1140
|
+
validate: (0, _utils.assertValueType)("boolean")
|
|
1141
|
+
},
|
|
1142
|
+
phase: {
|
|
1143
|
+
default: null,
|
|
1144
|
+
validate: (0, _utils.assertOneOf)("source", "defer")
|
|
1145
|
+
},
|
|
1146
|
+
specifiers: (0, _utils.validateArrayOfType)("ImportSpecifier", "ImportDefaultSpecifier", "ImportNamespaceSpecifier"),
|
|
1147
|
+
source: {
|
|
1148
|
+
validate: (0, _utils.assertNodeType)("StringLiteral")
|
|
1149
|
+
},
|
|
1150
|
+
importKind: {
|
|
1151
|
+
validate: (0, _utils.assertOneOf)("type", "typeof", "value"),
|
|
1152
|
+
optional: true
|
|
1153
|
+
}
|
|
1154
|
+
})
|
|
1155
|
+
});
|
|
1156
|
+
defineType("ImportDefaultSpecifier", {
|
|
1157
|
+
visitor: ["local"],
|
|
1158
|
+
aliases: ["ModuleSpecifier"],
|
|
1159
|
+
fields: {
|
|
1160
|
+
local: {
|
|
1161
|
+
validate: (0, _utils.assertNodeType)("Identifier")
|
|
1162
|
+
}
|
|
1163
|
+
}
|
|
1164
|
+
});
|
|
1165
|
+
defineType("ImportNamespaceSpecifier", {
|
|
1166
|
+
visitor: ["local"],
|
|
1167
|
+
aliases: ["ModuleSpecifier"],
|
|
1168
|
+
fields: {
|
|
1169
|
+
local: {
|
|
1170
|
+
validate: (0, _utils.assertNodeType)("Identifier")
|
|
1171
|
+
}
|
|
1172
|
+
}
|
|
1173
|
+
});
|
|
1174
|
+
defineType("ImportSpecifier", {
|
|
1175
|
+
visitor: ["imported", "local"],
|
|
1176
|
+
builder: ["local", "imported"],
|
|
1177
|
+
aliases: ["ModuleSpecifier"],
|
|
1178
|
+
fields: {
|
|
1179
|
+
local: {
|
|
1180
|
+
validate: (0, _utils.assertNodeType)("Identifier")
|
|
1181
|
+
},
|
|
1182
|
+
imported: {
|
|
1183
|
+
validate: (0, _utils.assertNodeType)("Identifier", "StringLiteral")
|
|
1184
|
+
},
|
|
1185
|
+
importKind: {
|
|
1186
|
+
validate: (0, _utils.assertOneOf)("type", "typeof", "value"),
|
|
1187
|
+
optional: true
|
|
1188
|
+
}
|
|
1189
|
+
}
|
|
1190
|
+
});
|
|
1191
|
+
defineType("ImportExpression", {
|
|
1192
|
+
visitor: ["source", "options"],
|
|
1193
|
+
aliases: ["Expression"],
|
|
1194
|
+
fields: {
|
|
1195
|
+
phase: {
|
|
1196
|
+
default: null,
|
|
1197
|
+
validate: (0, _utils.assertOneOf)("source", "defer")
|
|
1198
|
+
},
|
|
1199
|
+
source: {
|
|
1200
|
+
validate: (0, _utils.assertNodeType)("Expression")
|
|
1201
|
+
},
|
|
1202
|
+
options: {
|
|
1203
|
+
validate: (0, _utils.assertNodeType)("Expression"),
|
|
1204
|
+
optional: true
|
|
1205
|
+
}
|
|
1206
|
+
}
|
|
1207
|
+
});
|
|
1208
|
+
defineType("MetaProperty", {
|
|
1209
|
+
visitor: ["meta", "property"],
|
|
1210
|
+
aliases: ["Expression"],
|
|
1211
|
+
fields: {
|
|
1212
|
+
meta: {
|
|
1213
|
+
validate: process.env.BABEL_TYPES_8_BREAKING ? (0, _utils.chain)((0, _utils.assertNodeType)("Identifier"), Object.assign(function (node, key, val) {
|
|
1214
|
+
let property;
|
|
1215
|
+
switch (val.name) {
|
|
1216
|
+
case "function":
|
|
1217
|
+
property = "sent";
|
|
1218
|
+
break;
|
|
1219
|
+
case "new":
|
|
1220
|
+
property = "target";
|
|
1221
|
+
break;
|
|
1222
|
+
case "import":
|
|
1223
|
+
property = "meta";
|
|
1224
|
+
break;
|
|
1225
|
+
}
|
|
1226
|
+
if (!(0, _is.default)("Identifier", node.property, {
|
|
1227
|
+
name: property
|
|
1228
|
+
})) {
|
|
1229
|
+
throw new TypeError("Unrecognised MetaProperty");
|
|
1230
|
+
}
|
|
1231
|
+
}, {
|
|
1232
|
+
oneOfNodeTypes: ["Identifier"]
|
|
1233
|
+
})) : (0, _utils.assertNodeType)("Identifier")
|
|
1234
|
+
},
|
|
1235
|
+
property: {
|
|
1236
|
+
validate: (0, _utils.assertNodeType)("Identifier")
|
|
1237
|
+
}
|
|
1238
|
+
}
|
|
1239
|
+
});
|
|
1240
|
+
const classMethodOrPropertyCommon = () => ({
|
|
1241
|
+
abstract: {
|
|
1242
|
+
validate: (0, _utils.assertValueType)("boolean"),
|
|
1243
|
+
optional: true
|
|
1244
|
+
},
|
|
1245
|
+
accessibility: {
|
|
1246
|
+
validate: (0, _utils.assertOneOf)("public", "private", "protected"),
|
|
1247
|
+
optional: true
|
|
1248
|
+
},
|
|
1249
|
+
static: {
|
|
1250
|
+
default: false
|
|
1251
|
+
},
|
|
1252
|
+
override: {
|
|
1253
|
+
default: false
|
|
1254
|
+
},
|
|
1255
|
+
computed: {
|
|
1256
|
+
default: false
|
|
1257
|
+
},
|
|
1258
|
+
optional: {
|
|
1259
|
+
validate: (0, _utils.assertValueType)("boolean"),
|
|
1260
|
+
optional: true
|
|
1261
|
+
},
|
|
1262
|
+
key: {
|
|
1263
|
+
validate: (0, _utils.chain)(function () {
|
|
1264
|
+
const normal = (0, _utils.assertNodeType)("Identifier", "StringLiteral", "NumericLiteral", "BigIntLiteral");
|
|
1265
|
+
const computed = (0, _utils.assertNodeType)("Expression");
|
|
1266
|
+
return function (node, key, val) {
|
|
1267
|
+
const validator = node.computed ? computed : normal;
|
|
1268
|
+
validator(node, key, val);
|
|
1269
|
+
};
|
|
1270
|
+
}(), (0, _utils.assertNodeType)("Identifier", "StringLiteral", "NumericLiteral", "BigIntLiteral", "Expression"))
|
|
1271
|
+
}
|
|
1272
|
+
});
|
|
1273
|
+
exports.classMethodOrPropertyCommon = classMethodOrPropertyCommon;
|
|
1274
|
+
const classMethodOrDeclareMethodCommon = () => Object.assign({}, functionCommon(), classMethodOrPropertyCommon(), {
|
|
1275
|
+
params: (0, _utils.validateArrayOfType)("Identifier", "Pattern", "RestElement", "TSParameterProperty"),
|
|
1276
|
+
kind: {
|
|
1277
|
+
validate: (0, _utils.assertOneOf)("get", "set", "method", "constructor"),
|
|
1278
|
+
default: "method"
|
|
1279
|
+
},
|
|
1280
|
+
access: {
|
|
1281
|
+
validate: (0, _utils.chain)((0, _utils.assertValueType)("string"), (0, _utils.assertOneOf)("public", "private", "protected")),
|
|
1282
|
+
optional: true
|
|
1283
|
+
},
|
|
1284
|
+
decorators: {
|
|
1285
|
+
validate: (0, _utils.arrayOfType)("Decorator"),
|
|
1286
|
+
optional: true
|
|
1287
|
+
}
|
|
1288
|
+
});
|
|
1289
|
+
exports.classMethodOrDeclareMethodCommon = classMethodOrDeclareMethodCommon;
|
|
1290
|
+
defineType("ClassMethod", {
|
|
1291
|
+
aliases: ["Function", "Scopable", "BlockParent", "FunctionParent", "Method"],
|
|
1292
|
+
builder: ["kind", "key", "params", "body", "computed", "static", "generator", "async"],
|
|
1293
|
+
visitor: ["decorators", "key", "typeParameters", "params", "returnType", "body"],
|
|
1294
|
+
fields: Object.assign({}, classMethodOrDeclareMethodCommon(), functionTypeAnnotationCommon(), {
|
|
1295
|
+
body: {
|
|
1296
|
+
validate: (0, _utils.assertNodeType)("BlockStatement")
|
|
1297
|
+
}
|
|
1298
|
+
})
|
|
1299
|
+
});
|
|
1300
|
+
defineType("ObjectPattern", {
|
|
1301
|
+
visitor: ["decorators", "properties", "typeAnnotation"],
|
|
1302
|
+
builder: ["properties"],
|
|
1303
|
+
aliases: ["Pattern", "PatternLike", "LVal"],
|
|
1304
|
+
fields: Object.assign({}, patternLikeCommon(), {
|
|
1305
|
+
properties: (0, _utils.validateArrayOfType)("RestElement", "ObjectProperty")
|
|
1306
|
+
})
|
|
1307
|
+
});
|
|
1308
|
+
defineType("SpreadElement", {
|
|
1309
|
+
visitor: ["argument"],
|
|
1310
|
+
aliases: ["UnaryLike"],
|
|
1311
|
+
deprecatedAlias: "SpreadProperty",
|
|
1312
|
+
fields: {
|
|
1313
|
+
argument: {
|
|
1314
|
+
validate: (0, _utils.assertNodeType)("Expression")
|
|
1315
|
+
}
|
|
1316
|
+
}
|
|
1317
|
+
});
|
|
1318
|
+
defineType("Super", {
|
|
1319
|
+
aliases: ["Expression"]
|
|
1320
|
+
});
|
|
1321
|
+
defineType("TaggedTemplateExpression", {
|
|
1322
|
+
visitor: ["tag", "typeParameters", "quasi"],
|
|
1323
|
+
builder: ["tag", "quasi"],
|
|
1324
|
+
aliases: ["Expression"],
|
|
1325
|
+
fields: {
|
|
1326
|
+
tag: {
|
|
1327
|
+
validate: (0, _utils.assertNodeType)("Expression")
|
|
1328
|
+
},
|
|
1329
|
+
quasi: {
|
|
1330
|
+
validate: (0, _utils.assertNodeType)("TemplateLiteral")
|
|
1331
|
+
},
|
|
1332
|
+
["typeParameters"]: {
|
|
1333
|
+
validate: (0, _utils.assertNodeType)("TypeParameterInstantiation", "TSTypeParameterInstantiation"),
|
|
1334
|
+
optional: true
|
|
1335
|
+
}
|
|
1336
|
+
}
|
|
1337
|
+
});
|
|
1338
|
+
defineType("TemplateElement", {
|
|
1339
|
+
builder: ["value", "tail"],
|
|
1340
|
+
fields: {
|
|
1341
|
+
value: {
|
|
1342
|
+
validate: (0, _utils.chain)((0, _utils.assertShape)({
|
|
1343
|
+
raw: {
|
|
1344
|
+
validate: (0, _utils.assertValueType)("string")
|
|
1345
|
+
},
|
|
1346
|
+
cooked: {
|
|
1347
|
+
validate: (0, _utils.assertValueType)("string"),
|
|
1348
|
+
optional: true
|
|
1349
|
+
}
|
|
1350
|
+
}), function templateElementCookedValidator(node) {
|
|
1351
|
+
const raw = node.value.raw;
|
|
1352
|
+
let unterminatedCalled = false;
|
|
1353
|
+
const error = () => {
|
|
1354
|
+
throw new Error("Internal @babel/types error.");
|
|
1355
|
+
};
|
|
1356
|
+
const {
|
|
1357
|
+
str,
|
|
1358
|
+
firstInvalidLoc
|
|
1359
|
+
} = (0, _helperStringParser.readStringContents)("template", raw, 0, 0, 0, {
|
|
1360
|
+
unterminated() {
|
|
1361
|
+
unterminatedCalled = true;
|
|
1362
|
+
},
|
|
1363
|
+
strictNumericEscape: error,
|
|
1364
|
+
invalidEscapeSequence: error,
|
|
1365
|
+
numericSeparatorInEscapeSequence: error,
|
|
1366
|
+
unexpectedNumericSeparator: error,
|
|
1367
|
+
invalidDigit: error,
|
|
1368
|
+
invalidCodePoint: error
|
|
1369
|
+
});
|
|
1370
|
+
if (!unterminatedCalled) throw new Error("Invalid raw");
|
|
1371
|
+
node.value.cooked = firstInvalidLoc ? null : str;
|
|
1372
|
+
})
|
|
1373
|
+
},
|
|
1374
|
+
tail: {
|
|
1375
|
+
default: false
|
|
1376
|
+
}
|
|
1377
|
+
}
|
|
1378
|
+
});
|
|
1379
|
+
defineType("TemplateLiteral", {
|
|
1380
|
+
visitor: ["quasis", "expressions"],
|
|
1381
|
+
aliases: ["Expression", "Literal"],
|
|
1382
|
+
fields: {
|
|
1383
|
+
quasis: (0, _utils.validateArrayOfType)("TemplateElement"),
|
|
1384
|
+
expressions: {
|
|
1385
|
+
validate: (0, _utils.chain)((0, _utils.assertValueType)("array"), (0, _utils.assertEach)((0, _utils.assertNodeType)("Expression", "TSType")), function (node, key, val) {
|
|
1386
|
+
if (node.quasis.length !== val.length + 1) {
|
|
1387
|
+
throw new TypeError(`Number of ${node.type} quasis should be exactly one more than the number of expressions.\nExpected ${val.length + 1} quasis but got ${node.quasis.length}`);
|
|
1388
|
+
}
|
|
1389
|
+
})
|
|
1390
|
+
}
|
|
1391
|
+
}
|
|
1392
|
+
});
|
|
1393
|
+
defineType("YieldExpression", {
|
|
1394
|
+
builder: ["argument", "delegate"],
|
|
1395
|
+
visitor: ["argument"],
|
|
1396
|
+
aliases: ["Expression", "Terminatorless"],
|
|
1397
|
+
fields: {
|
|
1398
|
+
delegate: {
|
|
1399
|
+
validate: process.env.BABEL_TYPES_8_BREAKING ? (0, _utils.chain)((0, _utils.assertValueType)("boolean"), Object.assign(function (node, key, val) {
|
|
1400
|
+
if (val && !node.argument) {
|
|
1401
|
+
throw new TypeError("Property delegate of YieldExpression cannot be true if there is no argument");
|
|
1402
|
+
}
|
|
1403
|
+
}, {
|
|
1404
|
+
type: "boolean"
|
|
1405
|
+
})) : (0, _utils.assertValueType)("boolean"),
|
|
1406
|
+
default: false
|
|
1407
|
+
},
|
|
1408
|
+
argument: {
|
|
1409
|
+
optional: true,
|
|
1410
|
+
validate: (0, _utils.assertNodeType)("Expression")
|
|
1411
|
+
}
|
|
1412
|
+
}
|
|
1413
|
+
});
|
|
1414
|
+
defineType("AwaitExpression", {
|
|
1415
|
+
builder: ["argument"],
|
|
1416
|
+
visitor: ["argument"],
|
|
1417
|
+
aliases: ["Expression", "Terminatorless"],
|
|
1418
|
+
fields: {
|
|
1419
|
+
argument: {
|
|
1420
|
+
validate: (0, _utils.assertNodeType)("Expression")
|
|
1421
|
+
}
|
|
1422
|
+
}
|
|
1423
|
+
});
|
|
1424
|
+
defineType("Import", {
|
|
1425
|
+
aliases: ["Expression"]
|
|
1426
|
+
});
|
|
1427
|
+
defineType("BigIntLiteral", {
|
|
1428
|
+
builder: ["value"],
|
|
1429
|
+
fields: {
|
|
1430
|
+
value: {
|
|
1431
|
+
validate: (0, _utils.assertValueType)("string")
|
|
1432
|
+
}
|
|
1433
|
+
},
|
|
1434
|
+
aliases: ["Expression", "Pureish", "Literal", "Immutable"]
|
|
1435
|
+
});
|
|
1436
|
+
defineType("ExportNamespaceSpecifier", {
|
|
1437
|
+
visitor: ["exported"],
|
|
1438
|
+
aliases: ["ModuleSpecifier"],
|
|
1439
|
+
fields: {
|
|
1440
|
+
exported: {
|
|
1441
|
+
validate: (0, _utils.assertNodeType)("Identifier")
|
|
1442
|
+
}
|
|
1443
|
+
}
|
|
1444
|
+
});
|
|
1445
|
+
defineType("OptionalMemberExpression", {
|
|
1446
|
+
builder: ["object", "property", "computed", "optional"],
|
|
1447
|
+
visitor: ["object", "property"],
|
|
1448
|
+
aliases: ["Expression"],
|
|
1449
|
+
fields: {
|
|
1450
|
+
object: {
|
|
1451
|
+
validate: (0, _utils.assertNodeType)("Expression")
|
|
1452
|
+
},
|
|
1453
|
+
property: {
|
|
1454
|
+
validate: function () {
|
|
1455
|
+
const normal = (0, _utils.assertNodeType)("Identifier");
|
|
1456
|
+
const computed = (0, _utils.assertNodeType)("Expression");
|
|
1457
|
+
const validator = Object.assign(function (node, key, val) {
|
|
1458
|
+
const validator = node.computed ? computed : normal;
|
|
1459
|
+
validator(node, key, val);
|
|
1460
|
+
}, {
|
|
1461
|
+
oneOfNodeTypes: ["Expression", "Identifier"]
|
|
1462
|
+
});
|
|
1463
|
+
return validator;
|
|
1464
|
+
}()
|
|
1465
|
+
},
|
|
1466
|
+
computed: {
|
|
1467
|
+
default: false
|
|
1468
|
+
},
|
|
1469
|
+
optional: {
|
|
1470
|
+
validate: !process.env.BABEL_TYPES_8_BREAKING ? (0, _utils.assertValueType)("boolean") : (0, _utils.chain)((0, _utils.assertValueType)("boolean"), (0, _utils.assertOptionalChainStart)())
|
|
1471
|
+
}
|
|
1472
|
+
}
|
|
1473
|
+
});
|
|
1474
|
+
defineType("OptionalCallExpression", {
|
|
1475
|
+
visitor: ["callee", "typeParameters", "typeArguments", "arguments"],
|
|
1476
|
+
builder: ["callee", "arguments", "optional"],
|
|
1477
|
+
aliases: ["Expression"],
|
|
1478
|
+
fields: Object.assign({
|
|
1479
|
+
callee: {
|
|
1480
|
+
validate: (0, _utils.assertNodeType)("Expression")
|
|
1481
|
+
},
|
|
1482
|
+
arguments: (0, _utils.validateArrayOfType)("Expression", "SpreadElement", "ArgumentPlaceholder"),
|
|
1483
|
+
optional: {
|
|
1484
|
+
validate: !process.env.BABEL_TYPES_8_BREAKING ? (0, _utils.assertValueType)("boolean") : (0, _utils.chain)((0, _utils.assertValueType)("boolean"), (0, _utils.assertOptionalChainStart)())
|
|
1485
|
+
},
|
|
1486
|
+
typeArguments: {
|
|
1487
|
+
validate: (0, _utils.assertNodeType)("TypeParameterInstantiation"),
|
|
1488
|
+
optional: true
|
|
1489
|
+
}
|
|
1490
|
+
}, {
|
|
1491
|
+
typeParameters: {
|
|
1492
|
+
validate: (0, _utils.assertNodeType)("TSTypeParameterInstantiation"),
|
|
1493
|
+
optional: true
|
|
1494
|
+
}
|
|
1495
|
+
})
|
|
1496
|
+
});
|
|
1497
|
+
defineType("ClassProperty", {
|
|
1498
|
+
visitor: ["decorators", "variance", "key", "typeAnnotation", "value"],
|
|
1499
|
+
builder: ["key", "value", "typeAnnotation", "decorators", "computed", "static"],
|
|
1500
|
+
aliases: ["Property"],
|
|
1501
|
+
fields: Object.assign({}, classMethodOrPropertyCommon(), {
|
|
1502
|
+
value: {
|
|
1503
|
+
validate: (0, _utils.assertNodeType)("Expression"),
|
|
1504
|
+
optional: true
|
|
1505
|
+
},
|
|
1506
|
+
definite: {
|
|
1507
|
+
validate: (0, _utils.assertValueType)("boolean"),
|
|
1508
|
+
optional: true
|
|
1509
|
+
},
|
|
1510
|
+
typeAnnotation: {
|
|
1511
|
+
validate: (0, _utils.assertNodeType)("TypeAnnotation", "TSTypeAnnotation", "Noop"),
|
|
1512
|
+
optional: true
|
|
1513
|
+
},
|
|
1514
|
+
decorators: {
|
|
1515
|
+
validate: (0, _utils.arrayOfType)("Decorator"),
|
|
1516
|
+
optional: true
|
|
1517
|
+
},
|
|
1518
|
+
readonly: {
|
|
1519
|
+
validate: (0, _utils.assertValueType)("boolean"),
|
|
1520
|
+
optional: true
|
|
1521
|
+
},
|
|
1522
|
+
declare: {
|
|
1523
|
+
validate: (0, _utils.assertValueType)("boolean"),
|
|
1524
|
+
optional: true
|
|
1525
|
+
},
|
|
1526
|
+
variance: {
|
|
1527
|
+
validate: (0, _utils.assertNodeType)("Variance"),
|
|
1528
|
+
optional: true
|
|
1529
|
+
}
|
|
1530
|
+
})
|
|
1531
|
+
});
|
|
1532
|
+
defineType("ClassAccessorProperty", {
|
|
1533
|
+
visitor: ["decorators", "key", "typeAnnotation", "value"],
|
|
1534
|
+
builder: ["key", "value", "typeAnnotation", "decorators", "computed", "static"],
|
|
1535
|
+
aliases: ["Property", "Accessor"],
|
|
1536
|
+
fields: Object.assign({}, classMethodOrPropertyCommon(), {
|
|
1537
|
+
key: {
|
|
1538
|
+
validate: (0, _utils.chain)(function () {
|
|
1539
|
+
const normal = (0, _utils.assertNodeType)("Identifier", "StringLiteral", "NumericLiteral", "BigIntLiteral", "PrivateName");
|
|
1540
|
+
const computed = (0, _utils.assertNodeType)("Expression");
|
|
1541
|
+
return function (node, key, val) {
|
|
1542
|
+
const validator = node.computed ? computed : normal;
|
|
1543
|
+
validator(node, key, val);
|
|
1544
|
+
};
|
|
1545
|
+
}(), (0, _utils.assertNodeType)("Identifier", "StringLiteral", "NumericLiteral", "BigIntLiteral", "Expression", "PrivateName"))
|
|
1546
|
+
},
|
|
1547
|
+
value: {
|
|
1548
|
+
validate: (0, _utils.assertNodeType)("Expression"),
|
|
1549
|
+
optional: true
|
|
1550
|
+
},
|
|
1551
|
+
definite: {
|
|
1552
|
+
validate: (0, _utils.assertValueType)("boolean"),
|
|
1553
|
+
optional: true
|
|
1554
|
+
},
|
|
1555
|
+
typeAnnotation: {
|
|
1556
|
+
validate: (0, _utils.assertNodeType)("TypeAnnotation", "TSTypeAnnotation", "Noop"),
|
|
1557
|
+
optional: true
|
|
1558
|
+
},
|
|
1559
|
+
decorators: {
|
|
1560
|
+
validate: (0, _utils.arrayOfType)("Decorator"),
|
|
1561
|
+
optional: true
|
|
1562
|
+
},
|
|
1563
|
+
readonly: {
|
|
1564
|
+
validate: (0, _utils.assertValueType)("boolean"),
|
|
1565
|
+
optional: true
|
|
1566
|
+
},
|
|
1567
|
+
declare: {
|
|
1568
|
+
validate: (0, _utils.assertValueType)("boolean"),
|
|
1569
|
+
optional: true
|
|
1570
|
+
},
|
|
1571
|
+
variance: {
|
|
1572
|
+
validate: (0, _utils.assertNodeType)("Variance"),
|
|
1573
|
+
optional: true
|
|
1574
|
+
}
|
|
1575
|
+
})
|
|
1576
|
+
});
|
|
1577
|
+
defineType("ClassPrivateProperty", {
|
|
1578
|
+
visitor: ["decorators", "variance", "key", "typeAnnotation", "value"],
|
|
1579
|
+
builder: ["key", "value", "decorators", "static"],
|
|
1580
|
+
aliases: ["Property", "Private"],
|
|
1581
|
+
fields: {
|
|
1582
|
+
key: {
|
|
1583
|
+
validate: (0, _utils.assertNodeType)("PrivateName")
|
|
1584
|
+
},
|
|
1585
|
+
value: {
|
|
1586
|
+
validate: (0, _utils.assertNodeType)("Expression"),
|
|
1587
|
+
optional: true
|
|
1588
|
+
},
|
|
1589
|
+
typeAnnotation: {
|
|
1590
|
+
validate: (0, _utils.assertNodeType)("TypeAnnotation", "TSTypeAnnotation", "Noop"),
|
|
1591
|
+
optional: true
|
|
1592
|
+
},
|
|
1593
|
+
decorators: {
|
|
1594
|
+
validate: (0, _utils.arrayOfType)("Decorator"),
|
|
1595
|
+
optional: true
|
|
1596
|
+
},
|
|
1597
|
+
static: {
|
|
1598
|
+
validate: (0, _utils.assertValueType)("boolean"),
|
|
1599
|
+
default: false
|
|
1600
|
+
},
|
|
1601
|
+
readonly: {
|
|
1602
|
+
validate: (0, _utils.assertValueType)("boolean"),
|
|
1603
|
+
optional: true
|
|
1604
|
+
},
|
|
1605
|
+
optional: {
|
|
1606
|
+
validate: (0, _utils.assertValueType)("boolean"),
|
|
1607
|
+
optional: true
|
|
1608
|
+
},
|
|
1609
|
+
definite: {
|
|
1610
|
+
validate: (0, _utils.assertValueType)("boolean"),
|
|
1611
|
+
optional: true
|
|
1612
|
+
},
|
|
1613
|
+
variance: {
|
|
1614
|
+
validate: (0, _utils.assertNodeType)("Variance"),
|
|
1615
|
+
optional: true
|
|
1616
|
+
}
|
|
1617
|
+
}
|
|
1618
|
+
});
|
|
1619
|
+
defineType("ClassPrivateMethod", {
|
|
1620
|
+
builder: ["kind", "key", "params", "body", "static"],
|
|
1621
|
+
visitor: ["decorators", "key", "typeParameters", "params", "returnType", "body"],
|
|
1622
|
+
aliases: ["Function", "Scopable", "BlockParent", "FunctionParent", "Method", "Private"],
|
|
1623
|
+
fields: Object.assign({}, classMethodOrDeclareMethodCommon(), functionTypeAnnotationCommon(), {
|
|
1624
|
+
kind: {
|
|
1625
|
+
validate: (0, _utils.assertOneOf)("get", "set", "method"),
|
|
1626
|
+
default: "method"
|
|
1627
|
+
},
|
|
1628
|
+
key: {
|
|
1629
|
+
validate: (0, _utils.assertNodeType)("PrivateName")
|
|
1630
|
+
},
|
|
1631
|
+
body: {
|
|
1632
|
+
validate: (0, _utils.assertNodeType)("BlockStatement")
|
|
1633
|
+
}
|
|
1634
|
+
})
|
|
1635
|
+
});
|
|
1636
|
+
defineType("PrivateName", {
|
|
1637
|
+
visitor: ["id"],
|
|
1638
|
+
aliases: ["Private"],
|
|
1639
|
+
fields: {
|
|
1640
|
+
id: {
|
|
1641
|
+
validate: (0, _utils.assertNodeType)("Identifier")
|
|
1642
|
+
}
|
|
1643
|
+
}
|
|
1644
|
+
});
|
|
1645
|
+
defineType("StaticBlock", {
|
|
1646
|
+
visitor: ["body"],
|
|
1647
|
+
fields: {
|
|
1648
|
+
body: (0, _utils.validateArrayOfType)("Statement")
|
|
1649
|
+
},
|
|
1650
|
+
aliases: ["Scopable", "BlockParent", "FunctionParent"]
|
|
1651
|
+
});
|
|
1652
|
+
defineType("ImportAttribute", {
|
|
1653
|
+
visitor: ["key", "value"],
|
|
1654
|
+
fields: {
|
|
1655
|
+
key: {
|
|
1656
|
+
validate: (0, _utils.assertNodeType)("Identifier", "StringLiteral")
|
|
1657
|
+
},
|
|
1658
|
+
value: {
|
|
1659
|
+
validate: (0, _utils.assertNodeType)("StringLiteral")
|
|
1660
|
+
}
|
|
1661
|
+
}
|
|
1662
|
+
});
|
|
1663
|
+
|
|
1664
|
+
//# sourceMappingURL=core.js.map
|