brut-js 0.0.11 → 0.0.21
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/.projections.json +10 -0
- package/bin/build +10 -0
- package/bin/ci +5 -0
- package/bin/setup +5 -0
- package/docs/README.md +8 -0
- package/docs/jsdoc-plugins/customElementTag.js +8 -0
- package/docs/jsdoc-theme/publish.js +692 -0
- package/docs/jsdoc-theme/static/scripts/linenumber.js +25 -0
- package/docs/jsdoc-theme/static/scripts/prettify/Apache-License-2.0.txt +202 -0
- package/docs/jsdoc-theme/static/scripts/prettify/lang-css.js +2 -0
- package/docs/jsdoc-theme/static/scripts/prettify/prettify.js +28 -0
- package/docs/jsdoc-theme/static/styles/jsdoc-default.css +327 -0
- package/docs/jsdoc-theme/static/styles/prettify-jsdoc.css +111 -0
- package/docs/jsdoc-theme/static/styles/prettify-tomorrow.css +132 -0
- package/docs/jsdoc-theme/tmpl/augments.tmpl +10 -0
- package/docs/jsdoc-theme/tmpl/container.tmpl +199 -0
- package/docs/jsdoc-theme/tmpl/details.tmpl +143 -0
- package/docs/jsdoc-theme/tmpl/example.tmpl +2 -0
- package/docs/jsdoc-theme/tmpl/examples.tmpl +13 -0
- package/docs/jsdoc-theme/tmpl/exceptions.tmpl +32 -0
- package/docs/jsdoc-theme/tmpl/layout.tmpl +38 -0
- package/docs/jsdoc-theme/tmpl/mainpage.tmpl +14 -0
- package/docs/jsdoc-theme/tmpl/members.tmpl +38 -0
- package/docs/jsdoc-theme/tmpl/method.tmpl +131 -0
- package/docs/jsdoc-theme/tmpl/modifies.tmpl +14 -0
- package/docs/jsdoc-theme/tmpl/params.tmpl +131 -0
- package/docs/jsdoc-theme/tmpl/properties.tmpl +108 -0
- package/docs/jsdoc-theme/tmpl/returns.tmpl +19 -0
- package/docs/jsdoc-theme/tmpl/source.tmpl +8 -0
- package/docs/jsdoc-theme/tmpl/tutorial.tmpl +19 -0
- package/docs/jsdoc-theme/tmpl/type.tmpl +7 -0
- package/docs/jsdoc.config.json +23 -0
- 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/docs/package-lock.json +343 -0
- package/docs/package.json +7 -0
- package/package.json +2 -4
- package/specs/ConstraintViolationMessage.spec.js +5 -5
- package/specs/ConstraintViolationMessages.spec.js +2 -2
- package/specs/Form.spec.js +5 -5
- package/specs/public/js/bundle.js +2 -2
- package/specs/public/js/bundle.js.map +2 -2
- package/src/AjaxSubmit.js +3 -1
- package/src/Autosubmit.js +2 -0
- package/src/ConfirmSubmit.js +2 -0
- package/src/ConfirmationDialog.js +2 -0
- package/src/ConstraintViolationMessage.js +5 -3
- package/src/ConstraintViolationMessages.js +3 -1
- package/src/CopyToClipboard.js +2 -0
- package/src/Form.js +2 -0
- package/src/I18nTranslation.js +2 -0
- package/src/LocaleDetection.js +24 -0
- package/src/Message.js +3 -2
- package/src/Tabs.js +1 -0
- package/src/Tracing.js +2 -0
- package/src/index.js +1 -0
- package/CODE_OF_CONDUCT.txt +0 -99
- package/LICENSE.txt +0 -370
|
@@ -0,0 +1,2886 @@
|
|
|
1
|
+
"use strict";
|
|
2
|
+
|
|
3
|
+
Object.defineProperty(exports, "__esModule", {
|
|
4
|
+
value: true
|
|
5
|
+
});
|
|
6
|
+
exports.anyTypeAnnotation = anyTypeAnnotation;
|
|
7
|
+
exports.argumentPlaceholder = argumentPlaceholder;
|
|
8
|
+
exports.arrayExpression = arrayExpression;
|
|
9
|
+
exports.arrayPattern = arrayPattern;
|
|
10
|
+
exports.arrayTypeAnnotation = arrayTypeAnnotation;
|
|
11
|
+
exports.arrowFunctionExpression = arrowFunctionExpression;
|
|
12
|
+
exports.assignmentExpression = assignmentExpression;
|
|
13
|
+
exports.assignmentPattern = assignmentPattern;
|
|
14
|
+
exports.awaitExpression = awaitExpression;
|
|
15
|
+
exports.bigIntLiteral = bigIntLiteral;
|
|
16
|
+
exports.binaryExpression = binaryExpression;
|
|
17
|
+
exports.bindExpression = bindExpression;
|
|
18
|
+
exports.blockStatement = blockStatement;
|
|
19
|
+
exports.booleanLiteral = booleanLiteral;
|
|
20
|
+
exports.booleanLiteralTypeAnnotation = booleanLiteralTypeAnnotation;
|
|
21
|
+
exports.booleanTypeAnnotation = booleanTypeAnnotation;
|
|
22
|
+
exports.breakStatement = breakStatement;
|
|
23
|
+
exports.callExpression = callExpression;
|
|
24
|
+
exports.catchClause = catchClause;
|
|
25
|
+
exports.classAccessorProperty = classAccessorProperty;
|
|
26
|
+
exports.classBody = classBody;
|
|
27
|
+
exports.classDeclaration = classDeclaration;
|
|
28
|
+
exports.classExpression = classExpression;
|
|
29
|
+
exports.classImplements = classImplements;
|
|
30
|
+
exports.classMethod = classMethod;
|
|
31
|
+
exports.classPrivateMethod = classPrivateMethod;
|
|
32
|
+
exports.classPrivateProperty = classPrivateProperty;
|
|
33
|
+
exports.classProperty = classProperty;
|
|
34
|
+
exports.conditionalExpression = conditionalExpression;
|
|
35
|
+
exports.continueStatement = continueStatement;
|
|
36
|
+
exports.debuggerStatement = debuggerStatement;
|
|
37
|
+
exports.decimalLiteral = decimalLiteral;
|
|
38
|
+
exports.declareClass = declareClass;
|
|
39
|
+
exports.declareExportAllDeclaration = declareExportAllDeclaration;
|
|
40
|
+
exports.declareExportDeclaration = declareExportDeclaration;
|
|
41
|
+
exports.declareFunction = declareFunction;
|
|
42
|
+
exports.declareInterface = declareInterface;
|
|
43
|
+
exports.declareModule = declareModule;
|
|
44
|
+
exports.declareModuleExports = declareModuleExports;
|
|
45
|
+
exports.declareOpaqueType = declareOpaqueType;
|
|
46
|
+
exports.declareTypeAlias = declareTypeAlias;
|
|
47
|
+
exports.declareVariable = declareVariable;
|
|
48
|
+
exports.declaredPredicate = declaredPredicate;
|
|
49
|
+
exports.decorator = decorator;
|
|
50
|
+
exports.directive = directive;
|
|
51
|
+
exports.directiveLiteral = directiveLiteral;
|
|
52
|
+
exports.doExpression = doExpression;
|
|
53
|
+
exports.doWhileStatement = doWhileStatement;
|
|
54
|
+
exports.emptyStatement = emptyStatement;
|
|
55
|
+
exports.emptyTypeAnnotation = emptyTypeAnnotation;
|
|
56
|
+
exports.enumBooleanBody = enumBooleanBody;
|
|
57
|
+
exports.enumBooleanMember = enumBooleanMember;
|
|
58
|
+
exports.enumDeclaration = enumDeclaration;
|
|
59
|
+
exports.enumDefaultedMember = enumDefaultedMember;
|
|
60
|
+
exports.enumNumberBody = enumNumberBody;
|
|
61
|
+
exports.enumNumberMember = enumNumberMember;
|
|
62
|
+
exports.enumStringBody = enumStringBody;
|
|
63
|
+
exports.enumStringMember = enumStringMember;
|
|
64
|
+
exports.enumSymbolBody = enumSymbolBody;
|
|
65
|
+
exports.existsTypeAnnotation = existsTypeAnnotation;
|
|
66
|
+
exports.exportAllDeclaration = exportAllDeclaration;
|
|
67
|
+
exports.exportDefaultDeclaration = exportDefaultDeclaration;
|
|
68
|
+
exports.exportDefaultSpecifier = exportDefaultSpecifier;
|
|
69
|
+
exports.exportNamedDeclaration = exportNamedDeclaration;
|
|
70
|
+
exports.exportNamespaceSpecifier = exportNamespaceSpecifier;
|
|
71
|
+
exports.exportSpecifier = exportSpecifier;
|
|
72
|
+
exports.expressionStatement = expressionStatement;
|
|
73
|
+
exports.file = file;
|
|
74
|
+
exports.forInStatement = forInStatement;
|
|
75
|
+
exports.forOfStatement = forOfStatement;
|
|
76
|
+
exports.forStatement = forStatement;
|
|
77
|
+
exports.functionDeclaration = functionDeclaration;
|
|
78
|
+
exports.functionExpression = functionExpression;
|
|
79
|
+
exports.functionTypeAnnotation = functionTypeAnnotation;
|
|
80
|
+
exports.functionTypeParam = functionTypeParam;
|
|
81
|
+
exports.genericTypeAnnotation = genericTypeAnnotation;
|
|
82
|
+
exports.identifier = identifier;
|
|
83
|
+
exports.ifStatement = ifStatement;
|
|
84
|
+
exports.import = _import;
|
|
85
|
+
exports.importAttribute = importAttribute;
|
|
86
|
+
exports.importDeclaration = importDeclaration;
|
|
87
|
+
exports.importDefaultSpecifier = importDefaultSpecifier;
|
|
88
|
+
exports.importExpression = importExpression;
|
|
89
|
+
exports.importNamespaceSpecifier = importNamespaceSpecifier;
|
|
90
|
+
exports.importSpecifier = importSpecifier;
|
|
91
|
+
exports.indexedAccessType = indexedAccessType;
|
|
92
|
+
exports.inferredPredicate = inferredPredicate;
|
|
93
|
+
exports.interfaceDeclaration = interfaceDeclaration;
|
|
94
|
+
exports.interfaceExtends = interfaceExtends;
|
|
95
|
+
exports.interfaceTypeAnnotation = interfaceTypeAnnotation;
|
|
96
|
+
exports.interpreterDirective = interpreterDirective;
|
|
97
|
+
exports.intersectionTypeAnnotation = intersectionTypeAnnotation;
|
|
98
|
+
exports.jSXAttribute = exports.jsxAttribute = jsxAttribute;
|
|
99
|
+
exports.jSXClosingElement = exports.jsxClosingElement = jsxClosingElement;
|
|
100
|
+
exports.jSXClosingFragment = exports.jsxClosingFragment = jsxClosingFragment;
|
|
101
|
+
exports.jSXElement = exports.jsxElement = jsxElement;
|
|
102
|
+
exports.jSXEmptyExpression = exports.jsxEmptyExpression = jsxEmptyExpression;
|
|
103
|
+
exports.jSXExpressionContainer = exports.jsxExpressionContainer = jsxExpressionContainer;
|
|
104
|
+
exports.jSXFragment = exports.jsxFragment = jsxFragment;
|
|
105
|
+
exports.jSXIdentifier = exports.jsxIdentifier = jsxIdentifier;
|
|
106
|
+
exports.jSXMemberExpression = exports.jsxMemberExpression = jsxMemberExpression;
|
|
107
|
+
exports.jSXNamespacedName = exports.jsxNamespacedName = jsxNamespacedName;
|
|
108
|
+
exports.jSXOpeningElement = exports.jsxOpeningElement = jsxOpeningElement;
|
|
109
|
+
exports.jSXOpeningFragment = exports.jsxOpeningFragment = jsxOpeningFragment;
|
|
110
|
+
exports.jSXSpreadAttribute = exports.jsxSpreadAttribute = jsxSpreadAttribute;
|
|
111
|
+
exports.jSXSpreadChild = exports.jsxSpreadChild = jsxSpreadChild;
|
|
112
|
+
exports.jSXText = exports.jsxText = jsxText;
|
|
113
|
+
exports.labeledStatement = labeledStatement;
|
|
114
|
+
exports.logicalExpression = logicalExpression;
|
|
115
|
+
exports.memberExpression = memberExpression;
|
|
116
|
+
exports.metaProperty = metaProperty;
|
|
117
|
+
exports.mixedTypeAnnotation = mixedTypeAnnotation;
|
|
118
|
+
exports.moduleExpression = moduleExpression;
|
|
119
|
+
exports.newExpression = newExpression;
|
|
120
|
+
exports.noop = noop;
|
|
121
|
+
exports.nullLiteral = nullLiteral;
|
|
122
|
+
exports.nullLiteralTypeAnnotation = nullLiteralTypeAnnotation;
|
|
123
|
+
exports.nullableTypeAnnotation = nullableTypeAnnotation;
|
|
124
|
+
exports.numberLiteral = NumberLiteral;
|
|
125
|
+
exports.numberLiteralTypeAnnotation = numberLiteralTypeAnnotation;
|
|
126
|
+
exports.numberTypeAnnotation = numberTypeAnnotation;
|
|
127
|
+
exports.numericLiteral = numericLiteral;
|
|
128
|
+
exports.objectExpression = objectExpression;
|
|
129
|
+
exports.objectMethod = objectMethod;
|
|
130
|
+
exports.objectPattern = objectPattern;
|
|
131
|
+
exports.objectProperty = objectProperty;
|
|
132
|
+
exports.objectTypeAnnotation = objectTypeAnnotation;
|
|
133
|
+
exports.objectTypeCallProperty = objectTypeCallProperty;
|
|
134
|
+
exports.objectTypeIndexer = objectTypeIndexer;
|
|
135
|
+
exports.objectTypeInternalSlot = objectTypeInternalSlot;
|
|
136
|
+
exports.objectTypeProperty = objectTypeProperty;
|
|
137
|
+
exports.objectTypeSpreadProperty = objectTypeSpreadProperty;
|
|
138
|
+
exports.opaqueType = opaqueType;
|
|
139
|
+
exports.optionalCallExpression = optionalCallExpression;
|
|
140
|
+
exports.optionalIndexedAccessType = optionalIndexedAccessType;
|
|
141
|
+
exports.optionalMemberExpression = optionalMemberExpression;
|
|
142
|
+
exports.parenthesizedExpression = parenthesizedExpression;
|
|
143
|
+
exports.pipelineBareFunction = pipelineBareFunction;
|
|
144
|
+
exports.pipelinePrimaryTopicReference = pipelinePrimaryTopicReference;
|
|
145
|
+
exports.pipelineTopicExpression = pipelineTopicExpression;
|
|
146
|
+
exports.placeholder = placeholder;
|
|
147
|
+
exports.privateName = privateName;
|
|
148
|
+
exports.program = program;
|
|
149
|
+
exports.qualifiedTypeIdentifier = qualifiedTypeIdentifier;
|
|
150
|
+
exports.recordExpression = recordExpression;
|
|
151
|
+
exports.regExpLiteral = regExpLiteral;
|
|
152
|
+
exports.regexLiteral = RegexLiteral;
|
|
153
|
+
exports.restElement = restElement;
|
|
154
|
+
exports.restProperty = RestProperty;
|
|
155
|
+
exports.returnStatement = returnStatement;
|
|
156
|
+
exports.sequenceExpression = sequenceExpression;
|
|
157
|
+
exports.spreadElement = spreadElement;
|
|
158
|
+
exports.spreadProperty = SpreadProperty;
|
|
159
|
+
exports.staticBlock = staticBlock;
|
|
160
|
+
exports.stringLiteral = stringLiteral;
|
|
161
|
+
exports.stringLiteralTypeAnnotation = stringLiteralTypeAnnotation;
|
|
162
|
+
exports.stringTypeAnnotation = stringTypeAnnotation;
|
|
163
|
+
exports.super = _super;
|
|
164
|
+
exports.switchCase = switchCase;
|
|
165
|
+
exports.switchStatement = switchStatement;
|
|
166
|
+
exports.symbolTypeAnnotation = symbolTypeAnnotation;
|
|
167
|
+
exports.taggedTemplateExpression = taggedTemplateExpression;
|
|
168
|
+
exports.templateElement = templateElement;
|
|
169
|
+
exports.templateLiteral = templateLiteral;
|
|
170
|
+
exports.thisExpression = thisExpression;
|
|
171
|
+
exports.thisTypeAnnotation = thisTypeAnnotation;
|
|
172
|
+
exports.throwStatement = throwStatement;
|
|
173
|
+
exports.topicReference = topicReference;
|
|
174
|
+
exports.tryStatement = tryStatement;
|
|
175
|
+
exports.tSAnyKeyword = exports.tsAnyKeyword = tsAnyKeyword;
|
|
176
|
+
exports.tSArrayType = exports.tsArrayType = tsArrayType;
|
|
177
|
+
exports.tSAsExpression = exports.tsAsExpression = tsAsExpression;
|
|
178
|
+
exports.tSBigIntKeyword = exports.tsBigIntKeyword = tsBigIntKeyword;
|
|
179
|
+
exports.tSBooleanKeyword = exports.tsBooleanKeyword = tsBooleanKeyword;
|
|
180
|
+
exports.tSCallSignatureDeclaration = exports.tsCallSignatureDeclaration = tsCallSignatureDeclaration;
|
|
181
|
+
exports.tSConditionalType = exports.tsConditionalType = tsConditionalType;
|
|
182
|
+
exports.tSConstructSignatureDeclaration = exports.tsConstructSignatureDeclaration = tsConstructSignatureDeclaration;
|
|
183
|
+
exports.tSConstructorType = exports.tsConstructorType = tsConstructorType;
|
|
184
|
+
exports.tSDeclareFunction = exports.tsDeclareFunction = tsDeclareFunction;
|
|
185
|
+
exports.tSDeclareMethod = exports.tsDeclareMethod = tsDeclareMethod;
|
|
186
|
+
exports.tSEnumBody = exports.tsEnumBody = tsEnumBody;
|
|
187
|
+
exports.tSEnumDeclaration = exports.tsEnumDeclaration = tsEnumDeclaration;
|
|
188
|
+
exports.tSEnumMember = exports.tsEnumMember = tsEnumMember;
|
|
189
|
+
exports.tSExportAssignment = exports.tsExportAssignment = tsExportAssignment;
|
|
190
|
+
exports.tSExpressionWithTypeArguments = exports.tsExpressionWithTypeArguments = tsExpressionWithTypeArguments;
|
|
191
|
+
exports.tSExternalModuleReference = exports.tsExternalModuleReference = tsExternalModuleReference;
|
|
192
|
+
exports.tSFunctionType = exports.tsFunctionType = tsFunctionType;
|
|
193
|
+
exports.tSImportEqualsDeclaration = exports.tsImportEqualsDeclaration = tsImportEqualsDeclaration;
|
|
194
|
+
exports.tSImportType = exports.tsImportType = tsImportType;
|
|
195
|
+
exports.tSIndexSignature = exports.tsIndexSignature = tsIndexSignature;
|
|
196
|
+
exports.tSIndexedAccessType = exports.tsIndexedAccessType = tsIndexedAccessType;
|
|
197
|
+
exports.tSInferType = exports.tsInferType = tsInferType;
|
|
198
|
+
exports.tSInstantiationExpression = exports.tsInstantiationExpression = tsInstantiationExpression;
|
|
199
|
+
exports.tSInterfaceBody = exports.tsInterfaceBody = tsInterfaceBody;
|
|
200
|
+
exports.tSInterfaceDeclaration = exports.tsInterfaceDeclaration = tsInterfaceDeclaration;
|
|
201
|
+
exports.tSIntersectionType = exports.tsIntersectionType = tsIntersectionType;
|
|
202
|
+
exports.tSIntrinsicKeyword = exports.tsIntrinsicKeyword = tsIntrinsicKeyword;
|
|
203
|
+
exports.tSLiteralType = exports.tsLiteralType = tsLiteralType;
|
|
204
|
+
exports.tSMappedType = exports.tsMappedType = tsMappedType;
|
|
205
|
+
exports.tSMethodSignature = exports.tsMethodSignature = tsMethodSignature;
|
|
206
|
+
exports.tSModuleBlock = exports.tsModuleBlock = tsModuleBlock;
|
|
207
|
+
exports.tSModuleDeclaration = exports.tsModuleDeclaration = tsModuleDeclaration;
|
|
208
|
+
exports.tSNamedTupleMember = exports.tsNamedTupleMember = tsNamedTupleMember;
|
|
209
|
+
exports.tSNamespaceExportDeclaration = exports.tsNamespaceExportDeclaration = tsNamespaceExportDeclaration;
|
|
210
|
+
exports.tSNeverKeyword = exports.tsNeverKeyword = tsNeverKeyword;
|
|
211
|
+
exports.tSNonNullExpression = exports.tsNonNullExpression = tsNonNullExpression;
|
|
212
|
+
exports.tSNullKeyword = exports.tsNullKeyword = tsNullKeyword;
|
|
213
|
+
exports.tSNumberKeyword = exports.tsNumberKeyword = tsNumberKeyword;
|
|
214
|
+
exports.tSObjectKeyword = exports.tsObjectKeyword = tsObjectKeyword;
|
|
215
|
+
exports.tSOptionalType = exports.tsOptionalType = tsOptionalType;
|
|
216
|
+
exports.tSParameterProperty = exports.tsParameterProperty = tsParameterProperty;
|
|
217
|
+
exports.tSParenthesizedType = exports.tsParenthesizedType = tsParenthesizedType;
|
|
218
|
+
exports.tSPropertySignature = exports.tsPropertySignature = tsPropertySignature;
|
|
219
|
+
exports.tSQualifiedName = exports.tsQualifiedName = tsQualifiedName;
|
|
220
|
+
exports.tSRestType = exports.tsRestType = tsRestType;
|
|
221
|
+
exports.tSSatisfiesExpression = exports.tsSatisfiesExpression = tsSatisfiesExpression;
|
|
222
|
+
exports.tSStringKeyword = exports.tsStringKeyword = tsStringKeyword;
|
|
223
|
+
exports.tSSymbolKeyword = exports.tsSymbolKeyword = tsSymbolKeyword;
|
|
224
|
+
exports.tSTemplateLiteralType = exports.tsTemplateLiteralType = tsTemplateLiteralType;
|
|
225
|
+
exports.tSThisType = exports.tsThisType = tsThisType;
|
|
226
|
+
exports.tSTupleType = exports.tsTupleType = tsTupleType;
|
|
227
|
+
exports.tSTypeAliasDeclaration = exports.tsTypeAliasDeclaration = tsTypeAliasDeclaration;
|
|
228
|
+
exports.tSTypeAnnotation = exports.tsTypeAnnotation = tsTypeAnnotation;
|
|
229
|
+
exports.tSTypeAssertion = exports.tsTypeAssertion = tsTypeAssertion;
|
|
230
|
+
exports.tSTypeLiteral = exports.tsTypeLiteral = tsTypeLiteral;
|
|
231
|
+
exports.tSTypeOperator = exports.tsTypeOperator = tsTypeOperator;
|
|
232
|
+
exports.tSTypeParameter = exports.tsTypeParameter = tsTypeParameter;
|
|
233
|
+
exports.tSTypeParameterDeclaration = exports.tsTypeParameterDeclaration = tsTypeParameterDeclaration;
|
|
234
|
+
exports.tSTypeParameterInstantiation = exports.tsTypeParameterInstantiation = tsTypeParameterInstantiation;
|
|
235
|
+
exports.tSTypePredicate = exports.tsTypePredicate = tsTypePredicate;
|
|
236
|
+
exports.tSTypeQuery = exports.tsTypeQuery = tsTypeQuery;
|
|
237
|
+
exports.tSTypeReference = exports.tsTypeReference = tsTypeReference;
|
|
238
|
+
exports.tSUndefinedKeyword = exports.tsUndefinedKeyword = tsUndefinedKeyword;
|
|
239
|
+
exports.tSUnionType = exports.tsUnionType = tsUnionType;
|
|
240
|
+
exports.tSUnknownKeyword = exports.tsUnknownKeyword = tsUnknownKeyword;
|
|
241
|
+
exports.tSVoidKeyword = exports.tsVoidKeyword = tsVoidKeyword;
|
|
242
|
+
exports.tupleExpression = tupleExpression;
|
|
243
|
+
exports.tupleTypeAnnotation = tupleTypeAnnotation;
|
|
244
|
+
exports.typeAlias = typeAlias;
|
|
245
|
+
exports.typeAnnotation = typeAnnotation;
|
|
246
|
+
exports.typeCastExpression = typeCastExpression;
|
|
247
|
+
exports.typeParameter = typeParameter;
|
|
248
|
+
exports.typeParameterDeclaration = typeParameterDeclaration;
|
|
249
|
+
exports.typeParameterInstantiation = typeParameterInstantiation;
|
|
250
|
+
exports.typeofTypeAnnotation = typeofTypeAnnotation;
|
|
251
|
+
exports.unaryExpression = unaryExpression;
|
|
252
|
+
exports.unionTypeAnnotation = unionTypeAnnotation;
|
|
253
|
+
exports.updateExpression = updateExpression;
|
|
254
|
+
exports.v8IntrinsicIdentifier = v8IntrinsicIdentifier;
|
|
255
|
+
exports.variableDeclaration = variableDeclaration;
|
|
256
|
+
exports.variableDeclarator = variableDeclarator;
|
|
257
|
+
exports.variance = variance;
|
|
258
|
+
exports.voidTypeAnnotation = voidTypeAnnotation;
|
|
259
|
+
exports.whileStatement = whileStatement;
|
|
260
|
+
exports.withStatement = withStatement;
|
|
261
|
+
exports.yieldExpression = yieldExpression;
|
|
262
|
+
var _validate = require("../../validators/validate.js");
|
|
263
|
+
var _deprecationWarning = require("../../utils/deprecationWarning.js");
|
|
264
|
+
var utils = require("../../definitions/utils.js");
|
|
265
|
+
const {
|
|
266
|
+
validateInternal: validate
|
|
267
|
+
} = _validate;
|
|
268
|
+
const {
|
|
269
|
+
NODE_FIELDS
|
|
270
|
+
} = utils;
|
|
271
|
+
function arrayExpression(elements = []) {
|
|
272
|
+
const node = {
|
|
273
|
+
type: "ArrayExpression",
|
|
274
|
+
elements
|
|
275
|
+
};
|
|
276
|
+
const defs = NODE_FIELDS.ArrayExpression;
|
|
277
|
+
validate(defs.elements, node, "elements", elements, 1);
|
|
278
|
+
return node;
|
|
279
|
+
}
|
|
280
|
+
function assignmentExpression(operator, left, right) {
|
|
281
|
+
const node = {
|
|
282
|
+
type: "AssignmentExpression",
|
|
283
|
+
operator,
|
|
284
|
+
left,
|
|
285
|
+
right
|
|
286
|
+
};
|
|
287
|
+
const defs = NODE_FIELDS.AssignmentExpression;
|
|
288
|
+
validate(defs.operator, node, "operator", operator);
|
|
289
|
+
validate(defs.left, node, "left", left, 1);
|
|
290
|
+
validate(defs.right, node, "right", right, 1);
|
|
291
|
+
return node;
|
|
292
|
+
}
|
|
293
|
+
function binaryExpression(operator, left, right) {
|
|
294
|
+
const node = {
|
|
295
|
+
type: "BinaryExpression",
|
|
296
|
+
operator,
|
|
297
|
+
left,
|
|
298
|
+
right
|
|
299
|
+
};
|
|
300
|
+
const defs = NODE_FIELDS.BinaryExpression;
|
|
301
|
+
validate(defs.operator, node, "operator", operator);
|
|
302
|
+
validate(defs.left, node, "left", left, 1);
|
|
303
|
+
validate(defs.right, node, "right", right, 1);
|
|
304
|
+
return node;
|
|
305
|
+
}
|
|
306
|
+
function interpreterDirective(value) {
|
|
307
|
+
const node = {
|
|
308
|
+
type: "InterpreterDirective",
|
|
309
|
+
value
|
|
310
|
+
};
|
|
311
|
+
const defs = NODE_FIELDS.InterpreterDirective;
|
|
312
|
+
validate(defs.value, node, "value", value);
|
|
313
|
+
return node;
|
|
314
|
+
}
|
|
315
|
+
function directive(value) {
|
|
316
|
+
const node = {
|
|
317
|
+
type: "Directive",
|
|
318
|
+
value
|
|
319
|
+
};
|
|
320
|
+
const defs = NODE_FIELDS.Directive;
|
|
321
|
+
validate(defs.value, node, "value", value, 1);
|
|
322
|
+
return node;
|
|
323
|
+
}
|
|
324
|
+
function directiveLiteral(value) {
|
|
325
|
+
const node = {
|
|
326
|
+
type: "DirectiveLiteral",
|
|
327
|
+
value
|
|
328
|
+
};
|
|
329
|
+
const defs = NODE_FIELDS.DirectiveLiteral;
|
|
330
|
+
validate(defs.value, node, "value", value);
|
|
331
|
+
return node;
|
|
332
|
+
}
|
|
333
|
+
function blockStatement(body, directives = []) {
|
|
334
|
+
const node = {
|
|
335
|
+
type: "BlockStatement",
|
|
336
|
+
body,
|
|
337
|
+
directives
|
|
338
|
+
};
|
|
339
|
+
const defs = NODE_FIELDS.BlockStatement;
|
|
340
|
+
validate(defs.body, node, "body", body, 1);
|
|
341
|
+
validate(defs.directives, node, "directives", directives, 1);
|
|
342
|
+
return node;
|
|
343
|
+
}
|
|
344
|
+
function breakStatement(label = null) {
|
|
345
|
+
const node = {
|
|
346
|
+
type: "BreakStatement",
|
|
347
|
+
label
|
|
348
|
+
};
|
|
349
|
+
const defs = NODE_FIELDS.BreakStatement;
|
|
350
|
+
validate(defs.label, node, "label", label, 1);
|
|
351
|
+
return node;
|
|
352
|
+
}
|
|
353
|
+
function callExpression(callee, _arguments) {
|
|
354
|
+
const node = {
|
|
355
|
+
type: "CallExpression",
|
|
356
|
+
callee,
|
|
357
|
+
arguments: _arguments
|
|
358
|
+
};
|
|
359
|
+
const defs = NODE_FIELDS.CallExpression;
|
|
360
|
+
validate(defs.callee, node, "callee", callee, 1);
|
|
361
|
+
validate(defs.arguments, node, "arguments", _arguments, 1);
|
|
362
|
+
return node;
|
|
363
|
+
}
|
|
364
|
+
function catchClause(param = null, body) {
|
|
365
|
+
const node = {
|
|
366
|
+
type: "CatchClause",
|
|
367
|
+
param,
|
|
368
|
+
body
|
|
369
|
+
};
|
|
370
|
+
const defs = NODE_FIELDS.CatchClause;
|
|
371
|
+
validate(defs.param, node, "param", param, 1);
|
|
372
|
+
validate(defs.body, node, "body", body, 1);
|
|
373
|
+
return node;
|
|
374
|
+
}
|
|
375
|
+
function conditionalExpression(test, consequent, alternate) {
|
|
376
|
+
const node = {
|
|
377
|
+
type: "ConditionalExpression",
|
|
378
|
+
test,
|
|
379
|
+
consequent,
|
|
380
|
+
alternate
|
|
381
|
+
};
|
|
382
|
+
const defs = NODE_FIELDS.ConditionalExpression;
|
|
383
|
+
validate(defs.test, node, "test", test, 1);
|
|
384
|
+
validate(defs.consequent, node, "consequent", consequent, 1);
|
|
385
|
+
validate(defs.alternate, node, "alternate", alternate, 1);
|
|
386
|
+
return node;
|
|
387
|
+
}
|
|
388
|
+
function continueStatement(label = null) {
|
|
389
|
+
const node = {
|
|
390
|
+
type: "ContinueStatement",
|
|
391
|
+
label
|
|
392
|
+
};
|
|
393
|
+
const defs = NODE_FIELDS.ContinueStatement;
|
|
394
|
+
validate(defs.label, node, "label", label, 1);
|
|
395
|
+
return node;
|
|
396
|
+
}
|
|
397
|
+
function debuggerStatement() {
|
|
398
|
+
return {
|
|
399
|
+
type: "DebuggerStatement"
|
|
400
|
+
};
|
|
401
|
+
}
|
|
402
|
+
function doWhileStatement(test, body) {
|
|
403
|
+
const node = {
|
|
404
|
+
type: "DoWhileStatement",
|
|
405
|
+
test,
|
|
406
|
+
body
|
|
407
|
+
};
|
|
408
|
+
const defs = NODE_FIELDS.DoWhileStatement;
|
|
409
|
+
validate(defs.test, node, "test", test, 1);
|
|
410
|
+
validate(defs.body, node, "body", body, 1);
|
|
411
|
+
return node;
|
|
412
|
+
}
|
|
413
|
+
function emptyStatement() {
|
|
414
|
+
return {
|
|
415
|
+
type: "EmptyStatement"
|
|
416
|
+
};
|
|
417
|
+
}
|
|
418
|
+
function expressionStatement(expression) {
|
|
419
|
+
const node = {
|
|
420
|
+
type: "ExpressionStatement",
|
|
421
|
+
expression
|
|
422
|
+
};
|
|
423
|
+
const defs = NODE_FIELDS.ExpressionStatement;
|
|
424
|
+
validate(defs.expression, node, "expression", expression, 1);
|
|
425
|
+
return node;
|
|
426
|
+
}
|
|
427
|
+
function file(program, comments = null, tokens = null) {
|
|
428
|
+
const node = {
|
|
429
|
+
type: "File",
|
|
430
|
+
program,
|
|
431
|
+
comments,
|
|
432
|
+
tokens
|
|
433
|
+
};
|
|
434
|
+
const defs = NODE_FIELDS.File;
|
|
435
|
+
validate(defs.program, node, "program", program, 1);
|
|
436
|
+
validate(defs.comments, node, "comments", comments, 1);
|
|
437
|
+
validate(defs.tokens, node, "tokens", tokens);
|
|
438
|
+
return node;
|
|
439
|
+
}
|
|
440
|
+
function forInStatement(left, right, body) {
|
|
441
|
+
const node = {
|
|
442
|
+
type: "ForInStatement",
|
|
443
|
+
left,
|
|
444
|
+
right,
|
|
445
|
+
body
|
|
446
|
+
};
|
|
447
|
+
const defs = NODE_FIELDS.ForInStatement;
|
|
448
|
+
validate(defs.left, node, "left", left, 1);
|
|
449
|
+
validate(defs.right, node, "right", right, 1);
|
|
450
|
+
validate(defs.body, node, "body", body, 1);
|
|
451
|
+
return node;
|
|
452
|
+
}
|
|
453
|
+
function forStatement(init = null, test = null, update = null, body) {
|
|
454
|
+
const node = {
|
|
455
|
+
type: "ForStatement",
|
|
456
|
+
init,
|
|
457
|
+
test,
|
|
458
|
+
update,
|
|
459
|
+
body
|
|
460
|
+
};
|
|
461
|
+
const defs = NODE_FIELDS.ForStatement;
|
|
462
|
+
validate(defs.init, node, "init", init, 1);
|
|
463
|
+
validate(defs.test, node, "test", test, 1);
|
|
464
|
+
validate(defs.update, node, "update", update, 1);
|
|
465
|
+
validate(defs.body, node, "body", body, 1);
|
|
466
|
+
return node;
|
|
467
|
+
}
|
|
468
|
+
function functionDeclaration(id = null, params, body, generator = false, async = false) {
|
|
469
|
+
const node = {
|
|
470
|
+
type: "FunctionDeclaration",
|
|
471
|
+
id,
|
|
472
|
+
params,
|
|
473
|
+
body,
|
|
474
|
+
generator,
|
|
475
|
+
async
|
|
476
|
+
};
|
|
477
|
+
const defs = NODE_FIELDS.FunctionDeclaration;
|
|
478
|
+
validate(defs.id, node, "id", id, 1);
|
|
479
|
+
validate(defs.params, node, "params", params, 1);
|
|
480
|
+
validate(defs.body, node, "body", body, 1);
|
|
481
|
+
validate(defs.generator, node, "generator", generator);
|
|
482
|
+
validate(defs.async, node, "async", async);
|
|
483
|
+
return node;
|
|
484
|
+
}
|
|
485
|
+
function functionExpression(id = null, params, body, generator = false, async = false) {
|
|
486
|
+
const node = {
|
|
487
|
+
type: "FunctionExpression",
|
|
488
|
+
id,
|
|
489
|
+
params,
|
|
490
|
+
body,
|
|
491
|
+
generator,
|
|
492
|
+
async
|
|
493
|
+
};
|
|
494
|
+
const defs = NODE_FIELDS.FunctionExpression;
|
|
495
|
+
validate(defs.id, node, "id", id, 1);
|
|
496
|
+
validate(defs.params, node, "params", params, 1);
|
|
497
|
+
validate(defs.body, node, "body", body, 1);
|
|
498
|
+
validate(defs.generator, node, "generator", generator);
|
|
499
|
+
validate(defs.async, node, "async", async);
|
|
500
|
+
return node;
|
|
501
|
+
}
|
|
502
|
+
function identifier(name) {
|
|
503
|
+
const node = {
|
|
504
|
+
type: "Identifier",
|
|
505
|
+
name
|
|
506
|
+
};
|
|
507
|
+
const defs = NODE_FIELDS.Identifier;
|
|
508
|
+
validate(defs.name, node, "name", name);
|
|
509
|
+
return node;
|
|
510
|
+
}
|
|
511
|
+
function ifStatement(test, consequent, alternate = null) {
|
|
512
|
+
const node = {
|
|
513
|
+
type: "IfStatement",
|
|
514
|
+
test,
|
|
515
|
+
consequent,
|
|
516
|
+
alternate
|
|
517
|
+
};
|
|
518
|
+
const defs = NODE_FIELDS.IfStatement;
|
|
519
|
+
validate(defs.test, node, "test", test, 1);
|
|
520
|
+
validate(defs.consequent, node, "consequent", consequent, 1);
|
|
521
|
+
validate(defs.alternate, node, "alternate", alternate, 1);
|
|
522
|
+
return node;
|
|
523
|
+
}
|
|
524
|
+
function labeledStatement(label, body) {
|
|
525
|
+
const node = {
|
|
526
|
+
type: "LabeledStatement",
|
|
527
|
+
label,
|
|
528
|
+
body
|
|
529
|
+
};
|
|
530
|
+
const defs = NODE_FIELDS.LabeledStatement;
|
|
531
|
+
validate(defs.label, node, "label", label, 1);
|
|
532
|
+
validate(defs.body, node, "body", body, 1);
|
|
533
|
+
return node;
|
|
534
|
+
}
|
|
535
|
+
function stringLiteral(value) {
|
|
536
|
+
const node = {
|
|
537
|
+
type: "StringLiteral",
|
|
538
|
+
value
|
|
539
|
+
};
|
|
540
|
+
const defs = NODE_FIELDS.StringLiteral;
|
|
541
|
+
validate(defs.value, node, "value", value);
|
|
542
|
+
return node;
|
|
543
|
+
}
|
|
544
|
+
function numericLiteral(value) {
|
|
545
|
+
const node = {
|
|
546
|
+
type: "NumericLiteral",
|
|
547
|
+
value
|
|
548
|
+
};
|
|
549
|
+
const defs = NODE_FIELDS.NumericLiteral;
|
|
550
|
+
validate(defs.value, node, "value", value);
|
|
551
|
+
return node;
|
|
552
|
+
}
|
|
553
|
+
function nullLiteral() {
|
|
554
|
+
return {
|
|
555
|
+
type: "NullLiteral"
|
|
556
|
+
};
|
|
557
|
+
}
|
|
558
|
+
function booleanLiteral(value) {
|
|
559
|
+
const node = {
|
|
560
|
+
type: "BooleanLiteral",
|
|
561
|
+
value
|
|
562
|
+
};
|
|
563
|
+
const defs = NODE_FIELDS.BooleanLiteral;
|
|
564
|
+
validate(defs.value, node, "value", value);
|
|
565
|
+
return node;
|
|
566
|
+
}
|
|
567
|
+
function regExpLiteral(pattern, flags = "") {
|
|
568
|
+
const node = {
|
|
569
|
+
type: "RegExpLiteral",
|
|
570
|
+
pattern,
|
|
571
|
+
flags
|
|
572
|
+
};
|
|
573
|
+
const defs = NODE_FIELDS.RegExpLiteral;
|
|
574
|
+
validate(defs.pattern, node, "pattern", pattern);
|
|
575
|
+
validate(defs.flags, node, "flags", flags);
|
|
576
|
+
return node;
|
|
577
|
+
}
|
|
578
|
+
function logicalExpression(operator, left, right) {
|
|
579
|
+
const node = {
|
|
580
|
+
type: "LogicalExpression",
|
|
581
|
+
operator,
|
|
582
|
+
left,
|
|
583
|
+
right
|
|
584
|
+
};
|
|
585
|
+
const defs = NODE_FIELDS.LogicalExpression;
|
|
586
|
+
validate(defs.operator, node, "operator", operator);
|
|
587
|
+
validate(defs.left, node, "left", left, 1);
|
|
588
|
+
validate(defs.right, node, "right", right, 1);
|
|
589
|
+
return node;
|
|
590
|
+
}
|
|
591
|
+
function memberExpression(object, property, computed = false, optional = null) {
|
|
592
|
+
const node = {
|
|
593
|
+
type: "MemberExpression",
|
|
594
|
+
object,
|
|
595
|
+
property,
|
|
596
|
+
computed,
|
|
597
|
+
optional
|
|
598
|
+
};
|
|
599
|
+
const defs = NODE_FIELDS.MemberExpression;
|
|
600
|
+
validate(defs.object, node, "object", object, 1);
|
|
601
|
+
validate(defs.property, node, "property", property, 1);
|
|
602
|
+
validate(defs.computed, node, "computed", computed);
|
|
603
|
+
validate(defs.optional, node, "optional", optional);
|
|
604
|
+
return node;
|
|
605
|
+
}
|
|
606
|
+
function newExpression(callee, _arguments) {
|
|
607
|
+
const node = {
|
|
608
|
+
type: "NewExpression",
|
|
609
|
+
callee,
|
|
610
|
+
arguments: _arguments
|
|
611
|
+
};
|
|
612
|
+
const defs = NODE_FIELDS.NewExpression;
|
|
613
|
+
validate(defs.callee, node, "callee", callee, 1);
|
|
614
|
+
validate(defs.arguments, node, "arguments", _arguments, 1);
|
|
615
|
+
return node;
|
|
616
|
+
}
|
|
617
|
+
function program(body, directives = [], sourceType = "script", interpreter = null) {
|
|
618
|
+
const node = {
|
|
619
|
+
type: "Program",
|
|
620
|
+
body,
|
|
621
|
+
directives,
|
|
622
|
+
sourceType,
|
|
623
|
+
interpreter
|
|
624
|
+
};
|
|
625
|
+
const defs = NODE_FIELDS.Program;
|
|
626
|
+
validate(defs.body, node, "body", body, 1);
|
|
627
|
+
validate(defs.directives, node, "directives", directives, 1);
|
|
628
|
+
validate(defs.sourceType, node, "sourceType", sourceType);
|
|
629
|
+
validate(defs.interpreter, node, "interpreter", interpreter, 1);
|
|
630
|
+
return node;
|
|
631
|
+
}
|
|
632
|
+
function objectExpression(properties) {
|
|
633
|
+
const node = {
|
|
634
|
+
type: "ObjectExpression",
|
|
635
|
+
properties
|
|
636
|
+
};
|
|
637
|
+
const defs = NODE_FIELDS.ObjectExpression;
|
|
638
|
+
validate(defs.properties, node, "properties", properties, 1);
|
|
639
|
+
return node;
|
|
640
|
+
}
|
|
641
|
+
function objectMethod(kind = "method", key, params, body, computed = false, generator = false, async = false) {
|
|
642
|
+
const node = {
|
|
643
|
+
type: "ObjectMethod",
|
|
644
|
+
kind,
|
|
645
|
+
key,
|
|
646
|
+
params,
|
|
647
|
+
body,
|
|
648
|
+
computed,
|
|
649
|
+
generator,
|
|
650
|
+
async
|
|
651
|
+
};
|
|
652
|
+
const defs = NODE_FIELDS.ObjectMethod;
|
|
653
|
+
validate(defs.kind, node, "kind", kind);
|
|
654
|
+
validate(defs.key, node, "key", key, 1);
|
|
655
|
+
validate(defs.params, node, "params", params, 1);
|
|
656
|
+
validate(defs.body, node, "body", body, 1);
|
|
657
|
+
validate(defs.computed, node, "computed", computed);
|
|
658
|
+
validate(defs.generator, node, "generator", generator);
|
|
659
|
+
validate(defs.async, node, "async", async);
|
|
660
|
+
return node;
|
|
661
|
+
}
|
|
662
|
+
function objectProperty(key, value, computed = false, shorthand = false, decorators = null) {
|
|
663
|
+
const node = {
|
|
664
|
+
type: "ObjectProperty",
|
|
665
|
+
key,
|
|
666
|
+
value,
|
|
667
|
+
computed,
|
|
668
|
+
shorthand,
|
|
669
|
+
decorators
|
|
670
|
+
};
|
|
671
|
+
const defs = NODE_FIELDS.ObjectProperty;
|
|
672
|
+
validate(defs.key, node, "key", key, 1);
|
|
673
|
+
validate(defs.value, node, "value", value, 1);
|
|
674
|
+
validate(defs.computed, node, "computed", computed);
|
|
675
|
+
validate(defs.shorthand, node, "shorthand", shorthand);
|
|
676
|
+
validate(defs.decorators, node, "decorators", decorators, 1);
|
|
677
|
+
return node;
|
|
678
|
+
}
|
|
679
|
+
function restElement(argument) {
|
|
680
|
+
const node = {
|
|
681
|
+
type: "RestElement",
|
|
682
|
+
argument
|
|
683
|
+
};
|
|
684
|
+
const defs = NODE_FIELDS.RestElement;
|
|
685
|
+
validate(defs.argument, node, "argument", argument, 1);
|
|
686
|
+
return node;
|
|
687
|
+
}
|
|
688
|
+
function returnStatement(argument = null) {
|
|
689
|
+
const node = {
|
|
690
|
+
type: "ReturnStatement",
|
|
691
|
+
argument
|
|
692
|
+
};
|
|
693
|
+
const defs = NODE_FIELDS.ReturnStatement;
|
|
694
|
+
validate(defs.argument, node, "argument", argument, 1);
|
|
695
|
+
return node;
|
|
696
|
+
}
|
|
697
|
+
function sequenceExpression(expressions) {
|
|
698
|
+
const node = {
|
|
699
|
+
type: "SequenceExpression",
|
|
700
|
+
expressions
|
|
701
|
+
};
|
|
702
|
+
const defs = NODE_FIELDS.SequenceExpression;
|
|
703
|
+
validate(defs.expressions, node, "expressions", expressions, 1);
|
|
704
|
+
return node;
|
|
705
|
+
}
|
|
706
|
+
function parenthesizedExpression(expression) {
|
|
707
|
+
const node = {
|
|
708
|
+
type: "ParenthesizedExpression",
|
|
709
|
+
expression
|
|
710
|
+
};
|
|
711
|
+
const defs = NODE_FIELDS.ParenthesizedExpression;
|
|
712
|
+
validate(defs.expression, node, "expression", expression, 1);
|
|
713
|
+
return node;
|
|
714
|
+
}
|
|
715
|
+
function switchCase(test = null, consequent) {
|
|
716
|
+
const node = {
|
|
717
|
+
type: "SwitchCase",
|
|
718
|
+
test,
|
|
719
|
+
consequent
|
|
720
|
+
};
|
|
721
|
+
const defs = NODE_FIELDS.SwitchCase;
|
|
722
|
+
validate(defs.test, node, "test", test, 1);
|
|
723
|
+
validate(defs.consequent, node, "consequent", consequent, 1);
|
|
724
|
+
return node;
|
|
725
|
+
}
|
|
726
|
+
function switchStatement(discriminant, cases) {
|
|
727
|
+
const node = {
|
|
728
|
+
type: "SwitchStatement",
|
|
729
|
+
discriminant,
|
|
730
|
+
cases
|
|
731
|
+
};
|
|
732
|
+
const defs = NODE_FIELDS.SwitchStatement;
|
|
733
|
+
validate(defs.discriminant, node, "discriminant", discriminant, 1);
|
|
734
|
+
validate(defs.cases, node, "cases", cases, 1);
|
|
735
|
+
return node;
|
|
736
|
+
}
|
|
737
|
+
function thisExpression() {
|
|
738
|
+
return {
|
|
739
|
+
type: "ThisExpression"
|
|
740
|
+
};
|
|
741
|
+
}
|
|
742
|
+
function throwStatement(argument) {
|
|
743
|
+
const node = {
|
|
744
|
+
type: "ThrowStatement",
|
|
745
|
+
argument
|
|
746
|
+
};
|
|
747
|
+
const defs = NODE_FIELDS.ThrowStatement;
|
|
748
|
+
validate(defs.argument, node, "argument", argument, 1);
|
|
749
|
+
return node;
|
|
750
|
+
}
|
|
751
|
+
function tryStatement(block, handler = null, finalizer = null) {
|
|
752
|
+
const node = {
|
|
753
|
+
type: "TryStatement",
|
|
754
|
+
block,
|
|
755
|
+
handler,
|
|
756
|
+
finalizer
|
|
757
|
+
};
|
|
758
|
+
const defs = NODE_FIELDS.TryStatement;
|
|
759
|
+
validate(defs.block, node, "block", block, 1);
|
|
760
|
+
validate(defs.handler, node, "handler", handler, 1);
|
|
761
|
+
validate(defs.finalizer, node, "finalizer", finalizer, 1);
|
|
762
|
+
return node;
|
|
763
|
+
}
|
|
764
|
+
function unaryExpression(operator, argument, prefix = true) {
|
|
765
|
+
const node = {
|
|
766
|
+
type: "UnaryExpression",
|
|
767
|
+
operator,
|
|
768
|
+
argument,
|
|
769
|
+
prefix
|
|
770
|
+
};
|
|
771
|
+
const defs = NODE_FIELDS.UnaryExpression;
|
|
772
|
+
validate(defs.operator, node, "operator", operator);
|
|
773
|
+
validate(defs.argument, node, "argument", argument, 1);
|
|
774
|
+
validate(defs.prefix, node, "prefix", prefix);
|
|
775
|
+
return node;
|
|
776
|
+
}
|
|
777
|
+
function updateExpression(operator, argument, prefix = false) {
|
|
778
|
+
const node = {
|
|
779
|
+
type: "UpdateExpression",
|
|
780
|
+
operator,
|
|
781
|
+
argument,
|
|
782
|
+
prefix
|
|
783
|
+
};
|
|
784
|
+
const defs = NODE_FIELDS.UpdateExpression;
|
|
785
|
+
validate(defs.operator, node, "operator", operator);
|
|
786
|
+
validate(defs.argument, node, "argument", argument, 1);
|
|
787
|
+
validate(defs.prefix, node, "prefix", prefix);
|
|
788
|
+
return node;
|
|
789
|
+
}
|
|
790
|
+
function variableDeclaration(kind, declarations) {
|
|
791
|
+
const node = {
|
|
792
|
+
type: "VariableDeclaration",
|
|
793
|
+
kind,
|
|
794
|
+
declarations
|
|
795
|
+
};
|
|
796
|
+
const defs = NODE_FIELDS.VariableDeclaration;
|
|
797
|
+
validate(defs.kind, node, "kind", kind);
|
|
798
|
+
validate(defs.declarations, node, "declarations", declarations, 1);
|
|
799
|
+
return node;
|
|
800
|
+
}
|
|
801
|
+
function variableDeclarator(id, init = null) {
|
|
802
|
+
const node = {
|
|
803
|
+
type: "VariableDeclarator",
|
|
804
|
+
id,
|
|
805
|
+
init
|
|
806
|
+
};
|
|
807
|
+
const defs = NODE_FIELDS.VariableDeclarator;
|
|
808
|
+
validate(defs.id, node, "id", id, 1);
|
|
809
|
+
validate(defs.init, node, "init", init, 1);
|
|
810
|
+
return node;
|
|
811
|
+
}
|
|
812
|
+
function whileStatement(test, body) {
|
|
813
|
+
const node = {
|
|
814
|
+
type: "WhileStatement",
|
|
815
|
+
test,
|
|
816
|
+
body
|
|
817
|
+
};
|
|
818
|
+
const defs = NODE_FIELDS.WhileStatement;
|
|
819
|
+
validate(defs.test, node, "test", test, 1);
|
|
820
|
+
validate(defs.body, node, "body", body, 1);
|
|
821
|
+
return node;
|
|
822
|
+
}
|
|
823
|
+
function withStatement(object, body) {
|
|
824
|
+
const node = {
|
|
825
|
+
type: "WithStatement",
|
|
826
|
+
object,
|
|
827
|
+
body
|
|
828
|
+
};
|
|
829
|
+
const defs = NODE_FIELDS.WithStatement;
|
|
830
|
+
validate(defs.object, node, "object", object, 1);
|
|
831
|
+
validate(defs.body, node, "body", body, 1);
|
|
832
|
+
return node;
|
|
833
|
+
}
|
|
834
|
+
function assignmentPattern(left, right) {
|
|
835
|
+
const node = {
|
|
836
|
+
type: "AssignmentPattern",
|
|
837
|
+
left,
|
|
838
|
+
right
|
|
839
|
+
};
|
|
840
|
+
const defs = NODE_FIELDS.AssignmentPattern;
|
|
841
|
+
validate(defs.left, node, "left", left, 1);
|
|
842
|
+
validate(defs.right, node, "right", right, 1);
|
|
843
|
+
return node;
|
|
844
|
+
}
|
|
845
|
+
function arrayPattern(elements) {
|
|
846
|
+
const node = {
|
|
847
|
+
type: "ArrayPattern",
|
|
848
|
+
elements
|
|
849
|
+
};
|
|
850
|
+
const defs = NODE_FIELDS.ArrayPattern;
|
|
851
|
+
validate(defs.elements, node, "elements", elements, 1);
|
|
852
|
+
return node;
|
|
853
|
+
}
|
|
854
|
+
function arrowFunctionExpression(params, body, async = false) {
|
|
855
|
+
const node = {
|
|
856
|
+
type: "ArrowFunctionExpression",
|
|
857
|
+
params,
|
|
858
|
+
body,
|
|
859
|
+
async,
|
|
860
|
+
expression: null
|
|
861
|
+
};
|
|
862
|
+
const defs = NODE_FIELDS.ArrowFunctionExpression;
|
|
863
|
+
validate(defs.params, node, "params", params, 1);
|
|
864
|
+
validate(defs.body, node, "body", body, 1);
|
|
865
|
+
validate(defs.async, node, "async", async);
|
|
866
|
+
return node;
|
|
867
|
+
}
|
|
868
|
+
function classBody(body) {
|
|
869
|
+
const node = {
|
|
870
|
+
type: "ClassBody",
|
|
871
|
+
body
|
|
872
|
+
};
|
|
873
|
+
const defs = NODE_FIELDS.ClassBody;
|
|
874
|
+
validate(defs.body, node, "body", body, 1);
|
|
875
|
+
return node;
|
|
876
|
+
}
|
|
877
|
+
function classExpression(id = null, superClass = null, body, decorators = null) {
|
|
878
|
+
const node = {
|
|
879
|
+
type: "ClassExpression",
|
|
880
|
+
id,
|
|
881
|
+
superClass,
|
|
882
|
+
body,
|
|
883
|
+
decorators
|
|
884
|
+
};
|
|
885
|
+
const defs = NODE_FIELDS.ClassExpression;
|
|
886
|
+
validate(defs.id, node, "id", id, 1);
|
|
887
|
+
validate(defs.superClass, node, "superClass", superClass, 1);
|
|
888
|
+
validate(defs.body, node, "body", body, 1);
|
|
889
|
+
validate(defs.decorators, node, "decorators", decorators, 1);
|
|
890
|
+
return node;
|
|
891
|
+
}
|
|
892
|
+
function classDeclaration(id = null, superClass = null, body, decorators = null) {
|
|
893
|
+
const node = {
|
|
894
|
+
type: "ClassDeclaration",
|
|
895
|
+
id,
|
|
896
|
+
superClass,
|
|
897
|
+
body,
|
|
898
|
+
decorators
|
|
899
|
+
};
|
|
900
|
+
const defs = NODE_FIELDS.ClassDeclaration;
|
|
901
|
+
validate(defs.id, node, "id", id, 1);
|
|
902
|
+
validate(defs.superClass, node, "superClass", superClass, 1);
|
|
903
|
+
validate(defs.body, node, "body", body, 1);
|
|
904
|
+
validate(defs.decorators, node, "decorators", decorators, 1);
|
|
905
|
+
return node;
|
|
906
|
+
}
|
|
907
|
+
function exportAllDeclaration(source) {
|
|
908
|
+
const node = {
|
|
909
|
+
type: "ExportAllDeclaration",
|
|
910
|
+
source
|
|
911
|
+
};
|
|
912
|
+
const defs = NODE_FIELDS.ExportAllDeclaration;
|
|
913
|
+
validate(defs.source, node, "source", source, 1);
|
|
914
|
+
return node;
|
|
915
|
+
}
|
|
916
|
+
function exportDefaultDeclaration(declaration) {
|
|
917
|
+
const node = {
|
|
918
|
+
type: "ExportDefaultDeclaration",
|
|
919
|
+
declaration
|
|
920
|
+
};
|
|
921
|
+
const defs = NODE_FIELDS.ExportDefaultDeclaration;
|
|
922
|
+
validate(defs.declaration, node, "declaration", declaration, 1);
|
|
923
|
+
return node;
|
|
924
|
+
}
|
|
925
|
+
function exportNamedDeclaration(declaration = null, specifiers = [], source = null) {
|
|
926
|
+
const node = {
|
|
927
|
+
type: "ExportNamedDeclaration",
|
|
928
|
+
declaration,
|
|
929
|
+
specifiers,
|
|
930
|
+
source
|
|
931
|
+
};
|
|
932
|
+
const defs = NODE_FIELDS.ExportNamedDeclaration;
|
|
933
|
+
validate(defs.declaration, node, "declaration", declaration, 1);
|
|
934
|
+
validate(defs.specifiers, node, "specifiers", specifiers, 1);
|
|
935
|
+
validate(defs.source, node, "source", source, 1);
|
|
936
|
+
return node;
|
|
937
|
+
}
|
|
938
|
+
function exportSpecifier(local, exported) {
|
|
939
|
+
const node = {
|
|
940
|
+
type: "ExportSpecifier",
|
|
941
|
+
local,
|
|
942
|
+
exported
|
|
943
|
+
};
|
|
944
|
+
const defs = NODE_FIELDS.ExportSpecifier;
|
|
945
|
+
validate(defs.local, node, "local", local, 1);
|
|
946
|
+
validate(defs.exported, node, "exported", exported, 1);
|
|
947
|
+
return node;
|
|
948
|
+
}
|
|
949
|
+
function forOfStatement(left, right, body, _await = false) {
|
|
950
|
+
const node = {
|
|
951
|
+
type: "ForOfStatement",
|
|
952
|
+
left,
|
|
953
|
+
right,
|
|
954
|
+
body,
|
|
955
|
+
await: _await
|
|
956
|
+
};
|
|
957
|
+
const defs = NODE_FIELDS.ForOfStatement;
|
|
958
|
+
validate(defs.left, node, "left", left, 1);
|
|
959
|
+
validate(defs.right, node, "right", right, 1);
|
|
960
|
+
validate(defs.body, node, "body", body, 1);
|
|
961
|
+
validate(defs.await, node, "await", _await);
|
|
962
|
+
return node;
|
|
963
|
+
}
|
|
964
|
+
function importDeclaration(specifiers, source) {
|
|
965
|
+
const node = {
|
|
966
|
+
type: "ImportDeclaration",
|
|
967
|
+
specifiers,
|
|
968
|
+
source
|
|
969
|
+
};
|
|
970
|
+
const defs = NODE_FIELDS.ImportDeclaration;
|
|
971
|
+
validate(defs.specifiers, node, "specifiers", specifiers, 1);
|
|
972
|
+
validate(defs.source, node, "source", source, 1);
|
|
973
|
+
return node;
|
|
974
|
+
}
|
|
975
|
+
function importDefaultSpecifier(local) {
|
|
976
|
+
const node = {
|
|
977
|
+
type: "ImportDefaultSpecifier",
|
|
978
|
+
local
|
|
979
|
+
};
|
|
980
|
+
const defs = NODE_FIELDS.ImportDefaultSpecifier;
|
|
981
|
+
validate(defs.local, node, "local", local, 1);
|
|
982
|
+
return node;
|
|
983
|
+
}
|
|
984
|
+
function importNamespaceSpecifier(local) {
|
|
985
|
+
const node = {
|
|
986
|
+
type: "ImportNamespaceSpecifier",
|
|
987
|
+
local
|
|
988
|
+
};
|
|
989
|
+
const defs = NODE_FIELDS.ImportNamespaceSpecifier;
|
|
990
|
+
validate(defs.local, node, "local", local, 1);
|
|
991
|
+
return node;
|
|
992
|
+
}
|
|
993
|
+
function importSpecifier(local, imported) {
|
|
994
|
+
const node = {
|
|
995
|
+
type: "ImportSpecifier",
|
|
996
|
+
local,
|
|
997
|
+
imported
|
|
998
|
+
};
|
|
999
|
+
const defs = NODE_FIELDS.ImportSpecifier;
|
|
1000
|
+
validate(defs.local, node, "local", local, 1);
|
|
1001
|
+
validate(defs.imported, node, "imported", imported, 1);
|
|
1002
|
+
return node;
|
|
1003
|
+
}
|
|
1004
|
+
function importExpression(source, options = null) {
|
|
1005
|
+
const node = {
|
|
1006
|
+
type: "ImportExpression",
|
|
1007
|
+
source,
|
|
1008
|
+
options
|
|
1009
|
+
};
|
|
1010
|
+
const defs = NODE_FIELDS.ImportExpression;
|
|
1011
|
+
validate(defs.source, node, "source", source, 1);
|
|
1012
|
+
validate(defs.options, node, "options", options, 1);
|
|
1013
|
+
return node;
|
|
1014
|
+
}
|
|
1015
|
+
function metaProperty(meta, property) {
|
|
1016
|
+
const node = {
|
|
1017
|
+
type: "MetaProperty",
|
|
1018
|
+
meta,
|
|
1019
|
+
property
|
|
1020
|
+
};
|
|
1021
|
+
const defs = NODE_FIELDS.MetaProperty;
|
|
1022
|
+
validate(defs.meta, node, "meta", meta, 1);
|
|
1023
|
+
validate(defs.property, node, "property", property, 1);
|
|
1024
|
+
return node;
|
|
1025
|
+
}
|
|
1026
|
+
function classMethod(kind = "method", key, params, body, computed = false, _static = false, generator = false, async = false) {
|
|
1027
|
+
const node = {
|
|
1028
|
+
type: "ClassMethod",
|
|
1029
|
+
kind,
|
|
1030
|
+
key,
|
|
1031
|
+
params,
|
|
1032
|
+
body,
|
|
1033
|
+
computed,
|
|
1034
|
+
static: _static,
|
|
1035
|
+
generator,
|
|
1036
|
+
async
|
|
1037
|
+
};
|
|
1038
|
+
const defs = NODE_FIELDS.ClassMethod;
|
|
1039
|
+
validate(defs.kind, node, "kind", kind);
|
|
1040
|
+
validate(defs.key, node, "key", key, 1);
|
|
1041
|
+
validate(defs.params, node, "params", params, 1);
|
|
1042
|
+
validate(defs.body, node, "body", body, 1);
|
|
1043
|
+
validate(defs.computed, node, "computed", computed);
|
|
1044
|
+
validate(defs.static, node, "static", _static);
|
|
1045
|
+
validate(defs.generator, node, "generator", generator);
|
|
1046
|
+
validate(defs.async, node, "async", async);
|
|
1047
|
+
return node;
|
|
1048
|
+
}
|
|
1049
|
+
function objectPattern(properties) {
|
|
1050
|
+
const node = {
|
|
1051
|
+
type: "ObjectPattern",
|
|
1052
|
+
properties
|
|
1053
|
+
};
|
|
1054
|
+
const defs = NODE_FIELDS.ObjectPattern;
|
|
1055
|
+
validate(defs.properties, node, "properties", properties, 1);
|
|
1056
|
+
return node;
|
|
1057
|
+
}
|
|
1058
|
+
function spreadElement(argument) {
|
|
1059
|
+
const node = {
|
|
1060
|
+
type: "SpreadElement",
|
|
1061
|
+
argument
|
|
1062
|
+
};
|
|
1063
|
+
const defs = NODE_FIELDS.SpreadElement;
|
|
1064
|
+
validate(defs.argument, node, "argument", argument, 1);
|
|
1065
|
+
return node;
|
|
1066
|
+
}
|
|
1067
|
+
function _super() {
|
|
1068
|
+
return {
|
|
1069
|
+
type: "Super"
|
|
1070
|
+
};
|
|
1071
|
+
}
|
|
1072
|
+
function taggedTemplateExpression(tag, quasi) {
|
|
1073
|
+
const node = {
|
|
1074
|
+
type: "TaggedTemplateExpression",
|
|
1075
|
+
tag,
|
|
1076
|
+
quasi
|
|
1077
|
+
};
|
|
1078
|
+
const defs = NODE_FIELDS.TaggedTemplateExpression;
|
|
1079
|
+
validate(defs.tag, node, "tag", tag, 1);
|
|
1080
|
+
validate(defs.quasi, node, "quasi", quasi, 1);
|
|
1081
|
+
return node;
|
|
1082
|
+
}
|
|
1083
|
+
function templateElement(value, tail = false) {
|
|
1084
|
+
const node = {
|
|
1085
|
+
type: "TemplateElement",
|
|
1086
|
+
value,
|
|
1087
|
+
tail
|
|
1088
|
+
};
|
|
1089
|
+
const defs = NODE_FIELDS.TemplateElement;
|
|
1090
|
+
validate(defs.value, node, "value", value);
|
|
1091
|
+
validate(defs.tail, node, "tail", tail);
|
|
1092
|
+
return node;
|
|
1093
|
+
}
|
|
1094
|
+
function templateLiteral(quasis, expressions) {
|
|
1095
|
+
const node = {
|
|
1096
|
+
type: "TemplateLiteral",
|
|
1097
|
+
quasis,
|
|
1098
|
+
expressions
|
|
1099
|
+
};
|
|
1100
|
+
const defs = NODE_FIELDS.TemplateLiteral;
|
|
1101
|
+
validate(defs.quasis, node, "quasis", quasis, 1);
|
|
1102
|
+
validate(defs.expressions, node, "expressions", expressions, 1);
|
|
1103
|
+
return node;
|
|
1104
|
+
}
|
|
1105
|
+
function yieldExpression(argument = null, delegate = false) {
|
|
1106
|
+
const node = {
|
|
1107
|
+
type: "YieldExpression",
|
|
1108
|
+
argument,
|
|
1109
|
+
delegate
|
|
1110
|
+
};
|
|
1111
|
+
const defs = NODE_FIELDS.YieldExpression;
|
|
1112
|
+
validate(defs.argument, node, "argument", argument, 1);
|
|
1113
|
+
validate(defs.delegate, node, "delegate", delegate);
|
|
1114
|
+
return node;
|
|
1115
|
+
}
|
|
1116
|
+
function awaitExpression(argument) {
|
|
1117
|
+
const node = {
|
|
1118
|
+
type: "AwaitExpression",
|
|
1119
|
+
argument
|
|
1120
|
+
};
|
|
1121
|
+
const defs = NODE_FIELDS.AwaitExpression;
|
|
1122
|
+
validate(defs.argument, node, "argument", argument, 1);
|
|
1123
|
+
return node;
|
|
1124
|
+
}
|
|
1125
|
+
function _import() {
|
|
1126
|
+
return {
|
|
1127
|
+
type: "Import"
|
|
1128
|
+
};
|
|
1129
|
+
}
|
|
1130
|
+
function bigIntLiteral(value) {
|
|
1131
|
+
const node = {
|
|
1132
|
+
type: "BigIntLiteral",
|
|
1133
|
+
value
|
|
1134
|
+
};
|
|
1135
|
+
const defs = NODE_FIELDS.BigIntLiteral;
|
|
1136
|
+
validate(defs.value, node, "value", value);
|
|
1137
|
+
return node;
|
|
1138
|
+
}
|
|
1139
|
+
function exportNamespaceSpecifier(exported) {
|
|
1140
|
+
const node = {
|
|
1141
|
+
type: "ExportNamespaceSpecifier",
|
|
1142
|
+
exported
|
|
1143
|
+
};
|
|
1144
|
+
const defs = NODE_FIELDS.ExportNamespaceSpecifier;
|
|
1145
|
+
validate(defs.exported, node, "exported", exported, 1);
|
|
1146
|
+
return node;
|
|
1147
|
+
}
|
|
1148
|
+
function optionalMemberExpression(object, property, computed = false, optional) {
|
|
1149
|
+
const node = {
|
|
1150
|
+
type: "OptionalMemberExpression",
|
|
1151
|
+
object,
|
|
1152
|
+
property,
|
|
1153
|
+
computed,
|
|
1154
|
+
optional
|
|
1155
|
+
};
|
|
1156
|
+
const defs = NODE_FIELDS.OptionalMemberExpression;
|
|
1157
|
+
validate(defs.object, node, "object", object, 1);
|
|
1158
|
+
validate(defs.property, node, "property", property, 1);
|
|
1159
|
+
validate(defs.computed, node, "computed", computed);
|
|
1160
|
+
validate(defs.optional, node, "optional", optional);
|
|
1161
|
+
return node;
|
|
1162
|
+
}
|
|
1163
|
+
function optionalCallExpression(callee, _arguments, optional) {
|
|
1164
|
+
const node = {
|
|
1165
|
+
type: "OptionalCallExpression",
|
|
1166
|
+
callee,
|
|
1167
|
+
arguments: _arguments,
|
|
1168
|
+
optional
|
|
1169
|
+
};
|
|
1170
|
+
const defs = NODE_FIELDS.OptionalCallExpression;
|
|
1171
|
+
validate(defs.callee, node, "callee", callee, 1);
|
|
1172
|
+
validate(defs.arguments, node, "arguments", _arguments, 1);
|
|
1173
|
+
validate(defs.optional, node, "optional", optional);
|
|
1174
|
+
return node;
|
|
1175
|
+
}
|
|
1176
|
+
function classProperty(key, value = null, typeAnnotation = null, decorators = null, computed = false, _static = false) {
|
|
1177
|
+
const node = {
|
|
1178
|
+
type: "ClassProperty",
|
|
1179
|
+
key,
|
|
1180
|
+
value,
|
|
1181
|
+
typeAnnotation,
|
|
1182
|
+
decorators,
|
|
1183
|
+
computed,
|
|
1184
|
+
static: _static
|
|
1185
|
+
};
|
|
1186
|
+
const defs = NODE_FIELDS.ClassProperty;
|
|
1187
|
+
validate(defs.key, node, "key", key, 1);
|
|
1188
|
+
validate(defs.value, node, "value", value, 1);
|
|
1189
|
+
validate(defs.typeAnnotation, node, "typeAnnotation", typeAnnotation, 1);
|
|
1190
|
+
validate(defs.decorators, node, "decorators", decorators, 1);
|
|
1191
|
+
validate(defs.computed, node, "computed", computed);
|
|
1192
|
+
validate(defs.static, node, "static", _static);
|
|
1193
|
+
return node;
|
|
1194
|
+
}
|
|
1195
|
+
function classAccessorProperty(key, value = null, typeAnnotation = null, decorators = null, computed = false, _static = false) {
|
|
1196
|
+
const node = {
|
|
1197
|
+
type: "ClassAccessorProperty",
|
|
1198
|
+
key,
|
|
1199
|
+
value,
|
|
1200
|
+
typeAnnotation,
|
|
1201
|
+
decorators,
|
|
1202
|
+
computed,
|
|
1203
|
+
static: _static
|
|
1204
|
+
};
|
|
1205
|
+
const defs = NODE_FIELDS.ClassAccessorProperty;
|
|
1206
|
+
validate(defs.key, node, "key", key, 1);
|
|
1207
|
+
validate(defs.value, node, "value", value, 1);
|
|
1208
|
+
validate(defs.typeAnnotation, node, "typeAnnotation", typeAnnotation, 1);
|
|
1209
|
+
validate(defs.decorators, node, "decorators", decorators, 1);
|
|
1210
|
+
validate(defs.computed, node, "computed", computed);
|
|
1211
|
+
validate(defs.static, node, "static", _static);
|
|
1212
|
+
return node;
|
|
1213
|
+
}
|
|
1214
|
+
function classPrivateProperty(key, value = null, decorators = null, _static = false) {
|
|
1215
|
+
const node = {
|
|
1216
|
+
type: "ClassPrivateProperty",
|
|
1217
|
+
key,
|
|
1218
|
+
value,
|
|
1219
|
+
decorators,
|
|
1220
|
+
static: _static
|
|
1221
|
+
};
|
|
1222
|
+
const defs = NODE_FIELDS.ClassPrivateProperty;
|
|
1223
|
+
validate(defs.key, node, "key", key, 1);
|
|
1224
|
+
validate(defs.value, node, "value", value, 1);
|
|
1225
|
+
validate(defs.decorators, node, "decorators", decorators, 1);
|
|
1226
|
+
validate(defs.static, node, "static", _static);
|
|
1227
|
+
return node;
|
|
1228
|
+
}
|
|
1229
|
+
function classPrivateMethod(kind = "method", key, params, body, _static = false) {
|
|
1230
|
+
const node = {
|
|
1231
|
+
type: "ClassPrivateMethod",
|
|
1232
|
+
kind,
|
|
1233
|
+
key,
|
|
1234
|
+
params,
|
|
1235
|
+
body,
|
|
1236
|
+
static: _static
|
|
1237
|
+
};
|
|
1238
|
+
const defs = NODE_FIELDS.ClassPrivateMethod;
|
|
1239
|
+
validate(defs.kind, node, "kind", kind);
|
|
1240
|
+
validate(defs.key, node, "key", key, 1);
|
|
1241
|
+
validate(defs.params, node, "params", params, 1);
|
|
1242
|
+
validate(defs.body, node, "body", body, 1);
|
|
1243
|
+
validate(defs.static, node, "static", _static);
|
|
1244
|
+
return node;
|
|
1245
|
+
}
|
|
1246
|
+
function privateName(id) {
|
|
1247
|
+
const node = {
|
|
1248
|
+
type: "PrivateName",
|
|
1249
|
+
id
|
|
1250
|
+
};
|
|
1251
|
+
const defs = NODE_FIELDS.PrivateName;
|
|
1252
|
+
validate(defs.id, node, "id", id, 1);
|
|
1253
|
+
return node;
|
|
1254
|
+
}
|
|
1255
|
+
function staticBlock(body) {
|
|
1256
|
+
const node = {
|
|
1257
|
+
type: "StaticBlock",
|
|
1258
|
+
body
|
|
1259
|
+
};
|
|
1260
|
+
const defs = NODE_FIELDS.StaticBlock;
|
|
1261
|
+
validate(defs.body, node, "body", body, 1);
|
|
1262
|
+
return node;
|
|
1263
|
+
}
|
|
1264
|
+
function importAttribute(key, value) {
|
|
1265
|
+
const node = {
|
|
1266
|
+
type: "ImportAttribute",
|
|
1267
|
+
key,
|
|
1268
|
+
value
|
|
1269
|
+
};
|
|
1270
|
+
const defs = NODE_FIELDS.ImportAttribute;
|
|
1271
|
+
validate(defs.key, node, "key", key, 1);
|
|
1272
|
+
validate(defs.value, node, "value", value, 1);
|
|
1273
|
+
return node;
|
|
1274
|
+
}
|
|
1275
|
+
function anyTypeAnnotation() {
|
|
1276
|
+
return {
|
|
1277
|
+
type: "AnyTypeAnnotation"
|
|
1278
|
+
};
|
|
1279
|
+
}
|
|
1280
|
+
function arrayTypeAnnotation(elementType) {
|
|
1281
|
+
const node = {
|
|
1282
|
+
type: "ArrayTypeAnnotation",
|
|
1283
|
+
elementType
|
|
1284
|
+
};
|
|
1285
|
+
const defs = NODE_FIELDS.ArrayTypeAnnotation;
|
|
1286
|
+
validate(defs.elementType, node, "elementType", elementType, 1);
|
|
1287
|
+
return node;
|
|
1288
|
+
}
|
|
1289
|
+
function booleanTypeAnnotation() {
|
|
1290
|
+
return {
|
|
1291
|
+
type: "BooleanTypeAnnotation"
|
|
1292
|
+
};
|
|
1293
|
+
}
|
|
1294
|
+
function booleanLiteralTypeAnnotation(value) {
|
|
1295
|
+
const node = {
|
|
1296
|
+
type: "BooleanLiteralTypeAnnotation",
|
|
1297
|
+
value
|
|
1298
|
+
};
|
|
1299
|
+
const defs = NODE_FIELDS.BooleanLiteralTypeAnnotation;
|
|
1300
|
+
validate(defs.value, node, "value", value);
|
|
1301
|
+
return node;
|
|
1302
|
+
}
|
|
1303
|
+
function nullLiteralTypeAnnotation() {
|
|
1304
|
+
return {
|
|
1305
|
+
type: "NullLiteralTypeAnnotation"
|
|
1306
|
+
};
|
|
1307
|
+
}
|
|
1308
|
+
function classImplements(id, typeParameters = null) {
|
|
1309
|
+
const node = {
|
|
1310
|
+
type: "ClassImplements",
|
|
1311
|
+
id,
|
|
1312
|
+
typeParameters
|
|
1313
|
+
};
|
|
1314
|
+
const defs = NODE_FIELDS.ClassImplements;
|
|
1315
|
+
validate(defs.id, node, "id", id, 1);
|
|
1316
|
+
validate(defs.typeParameters, node, "typeParameters", typeParameters, 1);
|
|
1317
|
+
return node;
|
|
1318
|
+
}
|
|
1319
|
+
function declareClass(id, typeParameters = null, _extends = null, body) {
|
|
1320
|
+
const node = {
|
|
1321
|
+
type: "DeclareClass",
|
|
1322
|
+
id,
|
|
1323
|
+
typeParameters,
|
|
1324
|
+
extends: _extends,
|
|
1325
|
+
body
|
|
1326
|
+
};
|
|
1327
|
+
const defs = NODE_FIELDS.DeclareClass;
|
|
1328
|
+
validate(defs.id, node, "id", id, 1);
|
|
1329
|
+
validate(defs.typeParameters, node, "typeParameters", typeParameters, 1);
|
|
1330
|
+
validate(defs.extends, node, "extends", _extends, 1);
|
|
1331
|
+
validate(defs.body, node, "body", body, 1);
|
|
1332
|
+
return node;
|
|
1333
|
+
}
|
|
1334
|
+
function declareFunction(id) {
|
|
1335
|
+
const node = {
|
|
1336
|
+
type: "DeclareFunction",
|
|
1337
|
+
id
|
|
1338
|
+
};
|
|
1339
|
+
const defs = NODE_FIELDS.DeclareFunction;
|
|
1340
|
+
validate(defs.id, node, "id", id, 1);
|
|
1341
|
+
return node;
|
|
1342
|
+
}
|
|
1343
|
+
function declareInterface(id, typeParameters = null, _extends = null, body) {
|
|
1344
|
+
const node = {
|
|
1345
|
+
type: "DeclareInterface",
|
|
1346
|
+
id,
|
|
1347
|
+
typeParameters,
|
|
1348
|
+
extends: _extends,
|
|
1349
|
+
body
|
|
1350
|
+
};
|
|
1351
|
+
const defs = NODE_FIELDS.DeclareInterface;
|
|
1352
|
+
validate(defs.id, node, "id", id, 1);
|
|
1353
|
+
validate(defs.typeParameters, node, "typeParameters", typeParameters, 1);
|
|
1354
|
+
validate(defs.extends, node, "extends", _extends, 1);
|
|
1355
|
+
validate(defs.body, node, "body", body, 1);
|
|
1356
|
+
return node;
|
|
1357
|
+
}
|
|
1358
|
+
function declareModule(id, body, kind = null) {
|
|
1359
|
+
const node = {
|
|
1360
|
+
type: "DeclareModule",
|
|
1361
|
+
id,
|
|
1362
|
+
body,
|
|
1363
|
+
kind
|
|
1364
|
+
};
|
|
1365
|
+
const defs = NODE_FIELDS.DeclareModule;
|
|
1366
|
+
validate(defs.id, node, "id", id, 1);
|
|
1367
|
+
validate(defs.body, node, "body", body, 1);
|
|
1368
|
+
validate(defs.kind, node, "kind", kind);
|
|
1369
|
+
return node;
|
|
1370
|
+
}
|
|
1371
|
+
function declareModuleExports(typeAnnotation) {
|
|
1372
|
+
const node = {
|
|
1373
|
+
type: "DeclareModuleExports",
|
|
1374
|
+
typeAnnotation
|
|
1375
|
+
};
|
|
1376
|
+
const defs = NODE_FIELDS.DeclareModuleExports;
|
|
1377
|
+
validate(defs.typeAnnotation, node, "typeAnnotation", typeAnnotation, 1);
|
|
1378
|
+
return node;
|
|
1379
|
+
}
|
|
1380
|
+
function declareTypeAlias(id, typeParameters = null, right) {
|
|
1381
|
+
const node = {
|
|
1382
|
+
type: "DeclareTypeAlias",
|
|
1383
|
+
id,
|
|
1384
|
+
typeParameters,
|
|
1385
|
+
right
|
|
1386
|
+
};
|
|
1387
|
+
const defs = NODE_FIELDS.DeclareTypeAlias;
|
|
1388
|
+
validate(defs.id, node, "id", id, 1);
|
|
1389
|
+
validate(defs.typeParameters, node, "typeParameters", typeParameters, 1);
|
|
1390
|
+
validate(defs.right, node, "right", right, 1);
|
|
1391
|
+
return node;
|
|
1392
|
+
}
|
|
1393
|
+
function declareOpaqueType(id, typeParameters = null, supertype = null) {
|
|
1394
|
+
const node = {
|
|
1395
|
+
type: "DeclareOpaqueType",
|
|
1396
|
+
id,
|
|
1397
|
+
typeParameters,
|
|
1398
|
+
supertype
|
|
1399
|
+
};
|
|
1400
|
+
const defs = NODE_FIELDS.DeclareOpaqueType;
|
|
1401
|
+
validate(defs.id, node, "id", id, 1);
|
|
1402
|
+
validate(defs.typeParameters, node, "typeParameters", typeParameters, 1);
|
|
1403
|
+
validate(defs.supertype, node, "supertype", supertype, 1);
|
|
1404
|
+
return node;
|
|
1405
|
+
}
|
|
1406
|
+
function declareVariable(id) {
|
|
1407
|
+
const node = {
|
|
1408
|
+
type: "DeclareVariable",
|
|
1409
|
+
id
|
|
1410
|
+
};
|
|
1411
|
+
const defs = NODE_FIELDS.DeclareVariable;
|
|
1412
|
+
validate(defs.id, node, "id", id, 1);
|
|
1413
|
+
return node;
|
|
1414
|
+
}
|
|
1415
|
+
function declareExportDeclaration(declaration = null, specifiers = null, source = null, attributes = null) {
|
|
1416
|
+
const node = {
|
|
1417
|
+
type: "DeclareExportDeclaration",
|
|
1418
|
+
declaration,
|
|
1419
|
+
specifiers,
|
|
1420
|
+
source,
|
|
1421
|
+
attributes
|
|
1422
|
+
};
|
|
1423
|
+
const defs = NODE_FIELDS.DeclareExportDeclaration;
|
|
1424
|
+
validate(defs.declaration, node, "declaration", declaration, 1);
|
|
1425
|
+
validate(defs.specifiers, node, "specifiers", specifiers, 1);
|
|
1426
|
+
validate(defs.source, node, "source", source, 1);
|
|
1427
|
+
validate(defs.attributes, node, "attributes", attributes, 1);
|
|
1428
|
+
return node;
|
|
1429
|
+
}
|
|
1430
|
+
function declareExportAllDeclaration(source, attributes = null) {
|
|
1431
|
+
const node = {
|
|
1432
|
+
type: "DeclareExportAllDeclaration",
|
|
1433
|
+
source,
|
|
1434
|
+
attributes
|
|
1435
|
+
};
|
|
1436
|
+
const defs = NODE_FIELDS.DeclareExportAllDeclaration;
|
|
1437
|
+
validate(defs.source, node, "source", source, 1);
|
|
1438
|
+
validate(defs.attributes, node, "attributes", attributes, 1);
|
|
1439
|
+
return node;
|
|
1440
|
+
}
|
|
1441
|
+
function declaredPredicate(value) {
|
|
1442
|
+
const node = {
|
|
1443
|
+
type: "DeclaredPredicate",
|
|
1444
|
+
value
|
|
1445
|
+
};
|
|
1446
|
+
const defs = NODE_FIELDS.DeclaredPredicate;
|
|
1447
|
+
validate(defs.value, node, "value", value, 1);
|
|
1448
|
+
return node;
|
|
1449
|
+
}
|
|
1450
|
+
function existsTypeAnnotation() {
|
|
1451
|
+
return {
|
|
1452
|
+
type: "ExistsTypeAnnotation"
|
|
1453
|
+
};
|
|
1454
|
+
}
|
|
1455
|
+
function functionTypeAnnotation(typeParameters = null, params, rest = null, returnType) {
|
|
1456
|
+
const node = {
|
|
1457
|
+
type: "FunctionTypeAnnotation",
|
|
1458
|
+
typeParameters,
|
|
1459
|
+
params,
|
|
1460
|
+
rest,
|
|
1461
|
+
returnType
|
|
1462
|
+
};
|
|
1463
|
+
const defs = NODE_FIELDS.FunctionTypeAnnotation;
|
|
1464
|
+
validate(defs.typeParameters, node, "typeParameters", typeParameters, 1);
|
|
1465
|
+
validate(defs.params, node, "params", params, 1);
|
|
1466
|
+
validate(defs.rest, node, "rest", rest, 1);
|
|
1467
|
+
validate(defs.returnType, node, "returnType", returnType, 1);
|
|
1468
|
+
return node;
|
|
1469
|
+
}
|
|
1470
|
+
function functionTypeParam(name = null, typeAnnotation) {
|
|
1471
|
+
const node = {
|
|
1472
|
+
type: "FunctionTypeParam",
|
|
1473
|
+
name,
|
|
1474
|
+
typeAnnotation
|
|
1475
|
+
};
|
|
1476
|
+
const defs = NODE_FIELDS.FunctionTypeParam;
|
|
1477
|
+
validate(defs.name, node, "name", name, 1);
|
|
1478
|
+
validate(defs.typeAnnotation, node, "typeAnnotation", typeAnnotation, 1);
|
|
1479
|
+
return node;
|
|
1480
|
+
}
|
|
1481
|
+
function genericTypeAnnotation(id, typeParameters = null) {
|
|
1482
|
+
const node = {
|
|
1483
|
+
type: "GenericTypeAnnotation",
|
|
1484
|
+
id,
|
|
1485
|
+
typeParameters
|
|
1486
|
+
};
|
|
1487
|
+
const defs = NODE_FIELDS.GenericTypeAnnotation;
|
|
1488
|
+
validate(defs.id, node, "id", id, 1);
|
|
1489
|
+
validate(defs.typeParameters, node, "typeParameters", typeParameters, 1);
|
|
1490
|
+
return node;
|
|
1491
|
+
}
|
|
1492
|
+
function inferredPredicate() {
|
|
1493
|
+
return {
|
|
1494
|
+
type: "InferredPredicate"
|
|
1495
|
+
};
|
|
1496
|
+
}
|
|
1497
|
+
function interfaceExtends(id, typeParameters = null) {
|
|
1498
|
+
const node = {
|
|
1499
|
+
type: "InterfaceExtends",
|
|
1500
|
+
id,
|
|
1501
|
+
typeParameters
|
|
1502
|
+
};
|
|
1503
|
+
const defs = NODE_FIELDS.InterfaceExtends;
|
|
1504
|
+
validate(defs.id, node, "id", id, 1);
|
|
1505
|
+
validate(defs.typeParameters, node, "typeParameters", typeParameters, 1);
|
|
1506
|
+
return node;
|
|
1507
|
+
}
|
|
1508
|
+
function interfaceDeclaration(id, typeParameters = null, _extends = null, body) {
|
|
1509
|
+
const node = {
|
|
1510
|
+
type: "InterfaceDeclaration",
|
|
1511
|
+
id,
|
|
1512
|
+
typeParameters,
|
|
1513
|
+
extends: _extends,
|
|
1514
|
+
body
|
|
1515
|
+
};
|
|
1516
|
+
const defs = NODE_FIELDS.InterfaceDeclaration;
|
|
1517
|
+
validate(defs.id, node, "id", id, 1);
|
|
1518
|
+
validate(defs.typeParameters, node, "typeParameters", typeParameters, 1);
|
|
1519
|
+
validate(defs.extends, node, "extends", _extends, 1);
|
|
1520
|
+
validate(defs.body, node, "body", body, 1);
|
|
1521
|
+
return node;
|
|
1522
|
+
}
|
|
1523
|
+
function interfaceTypeAnnotation(_extends = null, body) {
|
|
1524
|
+
const node = {
|
|
1525
|
+
type: "InterfaceTypeAnnotation",
|
|
1526
|
+
extends: _extends,
|
|
1527
|
+
body
|
|
1528
|
+
};
|
|
1529
|
+
const defs = NODE_FIELDS.InterfaceTypeAnnotation;
|
|
1530
|
+
validate(defs.extends, node, "extends", _extends, 1);
|
|
1531
|
+
validate(defs.body, node, "body", body, 1);
|
|
1532
|
+
return node;
|
|
1533
|
+
}
|
|
1534
|
+
function intersectionTypeAnnotation(types) {
|
|
1535
|
+
const node = {
|
|
1536
|
+
type: "IntersectionTypeAnnotation",
|
|
1537
|
+
types
|
|
1538
|
+
};
|
|
1539
|
+
const defs = NODE_FIELDS.IntersectionTypeAnnotation;
|
|
1540
|
+
validate(defs.types, node, "types", types, 1);
|
|
1541
|
+
return node;
|
|
1542
|
+
}
|
|
1543
|
+
function mixedTypeAnnotation() {
|
|
1544
|
+
return {
|
|
1545
|
+
type: "MixedTypeAnnotation"
|
|
1546
|
+
};
|
|
1547
|
+
}
|
|
1548
|
+
function emptyTypeAnnotation() {
|
|
1549
|
+
return {
|
|
1550
|
+
type: "EmptyTypeAnnotation"
|
|
1551
|
+
};
|
|
1552
|
+
}
|
|
1553
|
+
function nullableTypeAnnotation(typeAnnotation) {
|
|
1554
|
+
const node = {
|
|
1555
|
+
type: "NullableTypeAnnotation",
|
|
1556
|
+
typeAnnotation
|
|
1557
|
+
};
|
|
1558
|
+
const defs = NODE_FIELDS.NullableTypeAnnotation;
|
|
1559
|
+
validate(defs.typeAnnotation, node, "typeAnnotation", typeAnnotation, 1);
|
|
1560
|
+
return node;
|
|
1561
|
+
}
|
|
1562
|
+
function numberLiteralTypeAnnotation(value) {
|
|
1563
|
+
const node = {
|
|
1564
|
+
type: "NumberLiteralTypeAnnotation",
|
|
1565
|
+
value
|
|
1566
|
+
};
|
|
1567
|
+
const defs = NODE_FIELDS.NumberLiteralTypeAnnotation;
|
|
1568
|
+
validate(defs.value, node, "value", value);
|
|
1569
|
+
return node;
|
|
1570
|
+
}
|
|
1571
|
+
function numberTypeAnnotation() {
|
|
1572
|
+
return {
|
|
1573
|
+
type: "NumberTypeAnnotation"
|
|
1574
|
+
};
|
|
1575
|
+
}
|
|
1576
|
+
function objectTypeAnnotation(properties, indexers = [], callProperties = [], internalSlots = [], exact = false) {
|
|
1577
|
+
const node = {
|
|
1578
|
+
type: "ObjectTypeAnnotation",
|
|
1579
|
+
properties,
|
|
1580
|
+
indexers,
|
|
1581
|
+
callProperties,
|
|
1582
|
+
internalSlots,
|
|
1583
|
+
exact
|
|
1584
|
+
};
|
|
1585
|
+
const defs = NODE_FIELDS.ObjectTypeAnnotation;
|
|
1586
|
+
validate(defs.properties, node, "properties", properties, 1);
|
|
1587
|
+
validate(defs.indexers, node, "indexers", indexers, 1);
|
|
1588
|
+
validate(defs.callProperties, node, "callProperties", callProperties, 1);
|
|
1589
|
+
validate(defs.internalSlots, node, "internalSlots", internalSlots, 1);
|
|
1590
|
+
validate(defs.exact, node, "exact", exact);
|
|
1591
|
+
return node;
|
|
1592
|
+
}
|
|
1593
|
+
function objectTypeInternalSlot(id, value, optional, _static, method) {
|
|
1594
|
+
const node = {
|
|
1595
|
+
type: "ObjectTypeInternalSlot",
|
|
1596
|
+
id,
|
|
1597
|
+
value,
|
|
1598
|
+
optional,
|
|
1599
|
+
static: _static,
|
|
1600
|
+
method
|
|
1601
|
+
};
|
|
1602
|
+
const defs = NODE_FIELDS.ObjectTypeInternalSlot;
|
|
1603
|
+
validate(defs.id, node, "id", id, 1);
|
|
1604
|
+
validate(defs.value, node, "value", value, 1);
|
|
1605
|
+
validate(defs.optional, node, "optional", optional);
|
|
1606
|
+
validate(defs.static, node, "static", _static);
|
|
1607
|
+
validate(defs.method, node, "method", method);
|
|
1608
|
+
return node;
|
|
1609
|
+
}
|
|
1610
|
+
function objectTypeCallProperty(value) {
|
|
1611
|
+
const node = {
|
|
1612
|
+
type: "ObjectTypeCallProperty",
|
|
1613
|
+
value,
|
|
1614
|
+
static: null
|
|
1615
|
+
};
|
|
1616
|
+
const defs = NODE_FIELDS.ObjectTypeCallProperty;
|
|
1617
|
+
validate(defs.value, node, "value", value, 1);
|
|
1618
|
+
return node;
|
|
1619
|
+
}
|
|
1620
|
+
function objectTypeIndexer(id = null, key, value, variance = null) {
|
|
1621
|
+
const node = {
|
|
1622
|
+
type: "ObjectTypeIndexer",
|
|
1623
|
+
id,
|
|
1624
|
+
key,
|
|
1625
|
+
value,
|
|
1626
|
+
variance,
|
|
1627
|
+
static: null
|
|
1628
|
+
};
|
|
1629
|
+
const defs = NODE_FIELDS.ObjectTypeIndexer;
|
|
1630
|
+
validate(defs.id, node, "id", id, 1);
|
|
1631
|
+
validate(defs.key, node, "key", key, 1);
|
|
1632
|
+
validate(defs.value, node, "value", value, 1);
|
|
1633
|
+
validate(defs.variance, node, "variance", variance, 1);
|
|
1634
|
+
return node;
|
|
1635
|
+
}
|
|
1636
|
+
function objectTypeProperty(key, value, variance = null) {
|
|
1637
|
+
const node = {
|
|
1638
|
+
type: "ObjectTypeProperty",
|
|
1639
|
+
key,
|
|
1640
|
+
value,
|
|
1641
|
+
variance,
|
|
1642
|
+
kind: null,
|
|
1643
|
+
method: null,
|
|
1644
|
+
optional: null,
|
|
1645
|
+
proto: null,
|
|
1646
|
+
static: null
|
|
1647
|
+
};
|
|
1648
|
+
const defs = NODE_FIELDS.ObjectTypeProperty;
|
|
1649
|
+
validate(defs.key, node, "key", key, 1);
|
|
1650
|
+
validate(defs.value, node, "value", value, 1);
|
|
1651
|
+
validate(defs.variance, node, "variance", variance, 1);
|
|
1652
|
+
return node;
|
|
1653
|
+
}
|
|
1654
|
+
function objectTypeSpreadProperty(argument) {
|
|
1655
|
+
const node = {
|
|
1656
|
+
type: "ObjectTypeSpreadProperty",
|
|
1657
|
+
argument
|
|
1658
|
+
};
|
|
1659
|
+
const defs = NODE_FIELDS.ObjectTypeSpreadProperty;
|
|
1660
|
+
validate(defs.argument, node, "argument", argument, 1);
|
|
1661
|
+
return node;
|
|
1662
|
+
}
|
|
1663
|
+
function opaqueType(id, typeParameters = null, supertype = null, impltype) {
|
|
1664
|
+
const node = {
|
|
1665
|
+
type: "OpaqueType",
|
|
1666
|
+
id,
|
|
1667
|
+
typeParameters,
|
|
1668
|
+
supertype,
|
|
1669
|
+
impltype
|
|
1670
|
+
};
|
|
1671
|
+
const defs = NODE_FIELDS.OpaqueType;
|
|
1672
|
+
validate(defs.id, node, "id", id, 1);
|
|
1673
|
+
validate(defs.typeParameters, node, "typeParameters", typeParameters, 1);
|
|
1674
|
+
validate(defs.supertype, node, "supertype", supertype, 1);
|
|
1675
|
+
validate(defs.impltype, node, "impltype", impltype, 1);
|
|
1676
|
+
return node;
|
|
1677
|
+
}
|
|
1678
|
+
function qualifiedTypeIdentifier(id, qualification) {
|
|
1679
|
+
const node = {
|
|
1680
|
+
type: "QualifiedTypeIdentifier",
|
|
1681
|
+
id,
|
|
1682
|
+
qualification
|
|
1683
|
+
};
|
|
1684
|
+
const defs = NODE_FIELDS.QualifiedTypeIdentifier;
|
|
1685
|
+
validate(defs.id, node, "id", id, 1);
|
|
1686
|
+
validate(defs.qualification, node, "qualification", qualification, 1);
|
|
1687
|
+
return node;
|
|
1688
|
+
}
|
|
1689
|
+
function stringLiteralTypeAnnotation(value) {
|
|
1690
|
+
const node = {
|
|
1691
|
+
type: "StringLiteralTypeAnnotation",
|
|
1692
|
+
value
|
|
1693
|
+
};
|
|
1694
|
+
const defs = NODE_FIELDS.StringLiteralTypeAnnotation;
|
|
1695
|
+
validate(defs.value, node, "value", value);
|
|
1696
|
+
return node;
|
|
1697
|
+
}
|
|
1698
|
+
function stringTypeAnnotation() {
|
|
1699
|
+
return {
|
|
1700
|
+
type: "StringTypeAnnotation"
|
|
1701
|
+
};
|
|
1702
|
+
}
|
|
1703
|
+
function symbolTypeAnnotation() {
|
|
1704
|
+
return {
|
|
1705
|
+
type: "SymbolTypeAnnotation"
|
|
1706
|
+
};
|
|
1707
|
+
}
|
|
1708
|
+
function thisTypeAnnotation() {
|
|
1709
|
+
return {
|
|
1710
|
+
type: "ThisTypeAnnotation"
|
|
1711
|
+
};
|
|
1712
|
+
}
|
|
1713
|
+
function tupleTypeAnnotation(types) {
|
|
1714
|
+
const node = {
|
|
1715
|
+
type: "TupleTypeAnnotation",
|
|
1716
|
+
types
|
|
1717
|
+
};
|
|
1718
|
+
const defs = NODE_FIELDS.TupleTypeAnnotation;
|
|
1719
|
+
validate(defs.types, node, "types", types, 1);
|
|
1720
|
+
return node;
|
|
1721
|
+
}
|
|
1722
|
+
function typeofTypeAnnotation(argument) {
|
|
1723
|
+
const node = {
|
|
1724
|
+
type: "TypeofTypeAnnotation",
|
|
1725
|
+
argument
|
|
1726
|
+
};
|
|
1727
|
+
const defs = NODE_FIELDS.TypeofTypeAnnotation;
|
|
1728
|
+
validate(defs.argument, node, "argument", argument, 1);
|
|
1729
|
+
return node;
|
|
1730
|
+
}
|
|
1731
|
+
function typeAlias(id, typeParameters = null, right) {
|
|
1732
|
+
const node = {
|
|
1733
|
+
type: "TypeAlias",
|
|
1734
|
+
id,
|
|
1735
|
+
typeParameters,
|
|
1736
|
+
right
|
|
1737
|
+
};
|
|
1738
|
+
const defs = NODE_FIELDS.TypeAlias;
|
|
1739
|
+
validate(defs.id, node, "id", id, 1);
|
|
1740
|
+
validate(defs.typeParameters, node, "typeParameters", typeParameters, 1);
|
|
1741
|
+
validate(defs.right, node, "right", right, 1);
|
|
1742
|
+
return node;
|
|
1743
|
+
}
|
|
1744
|
+
function typeAnnotation(typeAnnotation) {
|
|
1745
|
+
const node = {
|
|
1746
|
+
type: "TypeAnnotation",
|
|
1747
|
+
typeAnnotation
|
|
1748
|
+
};
|
|
1749
|
+
const defs = NODE_FIELDS.TypeAnnotation;
|
|
1750
|
+
validate(defs.typeAnnotation, node, "typeAnnotation", typeAnnotation, 1);
|
|
1751
|
+
return node;
|
|
1752
|
+
}
|
|
1753
|
+
function typeCastExpression(expression, typeAnnotation) {
|
|
1754
|
+
const node = {
|
|
1755
|
+
type: "TypeCastExpression",
|
|
1756
|
+
expression,
|
|
1757
|
+
typeAnnotation
|
|
1758
|
+
};
|
|
1759
|
+
const defs = NODE_FIELDS.TypeCastExpression;
|
|
1760
|
+
validate(defs.expression, node, "expression", expression, 1);
|
|
1761
|
+
validate(defs.typeAnnotation, node, "typeAnnotation", typeAnnotation, 1);
|
|
1762
|
+
return node;
|
|
1763
|
+
}
|
|
1764
|
+
function typeParameter(bound = null, _default = null, variance = null) {
|
|
1765
|
+
const node = {
|
|
1766
|
+
type: "TypeParameter",
|
|
1767
|
+
bound,
|
|
1768
|
+
default: _default,
|
|
1769
|
+
variance,
|
|
1770
|
+
name: null
|
|
1771
|
+
};
|
|
1772
|
+
const defs = NODE_FIELDS.TypeParameter;
|
|
1773
|
+
validate(defs.bound, node, "bound", bound, 1);
|
|
1774
|
+
validate(defs.default, node, "default", _default, 1);
|
|
1775
|
+
validate(defs.variance, node, "variance", variance, 1);
|
|
1776
|
+
return node;
|
|
1777
|
+
}
|
|
1778
|
+
function typeParameterDeclaration(params) {
|
|
1779
|
+
const node = {
|
|
1780
|
+
type: "TypeParameterDeclaration",
|
|
1781
|
+
params
|
|
1782
|
+
};
|
|
1783
|
+
const defs = NODE_FIELDS.TypeParameterDeclaration;
|
|
1784
|
+
validate(defs.params, node, "params", params, 1);
|
|
1785
|
+
return node;
|
|
1786
|
+
}
|
|
1787
|
+
function typeParameterInstantiation(params) {
|
|
1788
|
+
const node = {
|
|
1789
|
+
type: "TypeParameterInstantiation",
|
|
1790
|
+
params
|
|
1791
|
+
};
|
|
1792
|
+
const defs = NODE_FIELDS.TypeParameterInstantiation;
|
|
1793
|
+
validate(defs.params, node, "params", params, 1);
|
|
1794
|
+
return node;
|
|
1795
|
+
}
|
|
1796
|
+
function unionTypeAnnotation(types) {
|
|
1797
|
+
const node = {
|
|
1798
|
+
type: "UnionTypeAnnotation",
|
|
1799
|
+
types
|
|
1800
|
+
};
|
|
1801
|
+
const defs = NODE_FIELDS.UnionTypeAnnotation;
|
|
1802
|
+
validate(defs.types, node, "types", types, 1);
|
|
1803
|
+
return node;
|
|
1804
|
+
}
|
|
1805
|
+
function variance(kind) {
|
|
1806
|
+
const node = {
|
|
1807
|
+
type: "Variance",
|
|
1808
|
+
kind
|
|
1809
|
+
};
|
|
1810
|
+
const defs = NODE_FIELDS.Variance;
|
|
1811
|
+
validate(defs.kind, node, "kind", kind);
|
|
1812
|
+
return node;
|
|
1813
|
+
}
|
|
1814
|
+
function voidTypeAnnotation() {
|
|
1815
|
+
return {
|
|
1816
|
+
type: "VoidTypeAnnotation"
|
|
1817
|
+
};
|
|
1818
|
+
}
|
|
1819
|
+
function enumDeclaration(id, body) {
|
|
1820
|
+
const node = {
|
|
1821
|
+
type: "EnumDeclaration",
|
|
1822
|
+
id,
|
|
1823
|
+
body
|
|
1824
|
+
};
|
|
1825
|
+
const defs = NODE_FIELDS.EnumDeclaration;
|
|
1826
|
+
validate(defs.id, node, "id", id, 1);
|
|
1827
|
+
validate(defs.body, node, "body", body, 1);
|
|
1828
|
+
return node;
|
|
1829
|
+
}
|
|
1830
|
+
function enumBooleanBody(members) {
|
|
1831
|
+
const node = {
|
|
1832
|
+
type: "EnumBooleanBody",
|
|
1833
|
+
members,
|
|
1834
|
+
explicitType: null,
|
|
1835
|
+
hasUnknownMembers: null
|
|
1836
|
+
};
|
|
1837
|
+
const defs = NODE_FIELDS.EnumBooleanBody;
|
|
1838
|
+
validate(defs.members, node, "members", members, 1);
|
|
1839
|
+
return node;
|
|
1840
|
+
}
|
|
1841
|
+
function enumNumberBody(members) {
|
|
1842
|
+
const node = {
|
|
1843
|
+
type: "EnumNumberBody",
|
|
1844
|
+
members,
|
|
1845
|
+
explicitType: null,
|
|
1846
|
+
hasUnknownMembers: null
|
|
1847
|
+
};
|
|
1848
|
+
const defs = NODE_FIELDS.EnumNumberBody;
|
|
1849
|
+
validate(defs.members, node, "members", members, 1);
|
|
1850
|
+
return node;
|
|
1851
|
+
}
|
|
1852
|
+
function enumStringBody(members) {
|
|
1853
|
+
const node = {
|
|
1854
|
+
type: "EnumStringBody",
|
|
1855
|
+
members,
|
|
1856
|
+
explicitType: null,
|
|
1857
|
+
hasUnknownMembers: null
|
|
1858
|
+
};
|
|
1859
|
+
const defs = NODE_FIELDS.EnumStringBody;
|
|
1860
|
+
validate(defs.members, node, "members", members, 1);
|
|
1861
|
+
return node;
|
|
1862
|
+
}
|
|
1863
|
+
function enumSymbolBody(members) {
|
|
1864
|
+
const node = {
|
|
1865
|
+
type: "EnumSymbolBody",
|
|
1866
|
+
members,
|
|
1867
|
+
hasUnknownMembers: null
|
|
1868
|
+
};
|
|
1869
|
+
const defs = NODE_FIELDS.EnumSymbolBody;
|
|
1870
|
+
validate(defs.members, node, "members", members, 1);
|
|
1871
|
+
return node;
|
|
1872
|
+
}
|
|
1873
|
+
function enumBooleanMember(id) {
|
|
1874
|
+
const node = {
|
|
1875
|
+
type: "EnumBooleanMember",
|
|
1876
|
+
id,
|
|
1877
|
+
init: null
|
|
1878
|
+
};
|
|
1879
|
+
const defs = NODE_FIELDS.EnumBooleanMember;
|
|
1880
|
+
validate(defs.id, node, "id", id, 1);
|
|
1881
|
+
return node;
|
|
1882
|
+
}
|
|
1883
|
+
function enumNumberMember(id, init) {
|
|
1884
|
+
const node = {
|
|
1885
|
+
type: "EnumNumberMember",
|
|
1886
|
+
id,
|
|
1887
|
+
init
|
|
1888
|
+
};
|
|
1889
|
+
const defs = NODE_FIELDS.EnumNumberMember;
|
|
1890
|
+
validate(defs.id, node, "id", id, 1);
|
|
1891
|
+
validate(defs.init, node, "init", init, 1);
|
|
1892
|
+
return node;
|
|
1893
|
+
}
|
|
1894
|
+
function enumStringMember(id, init) {
|
|
1895
|
+
const node = {
|
|
1896
|
+
type: "EnumStringMember",
|
|
1897
|
+
id,
|
|
1898
|
+
init
|
|
1899
|
+
};
|
|
1900
|
+
const defs = NODE_FIELDS.EnumStringMember;
|
|
1901
|
+
validate(defs.id, node, "id", id, 1);
|
|
1902
|
+
validate(defs.init, node, "init", init, 1);
|
|
1903
|
+
return node;
|
|
1904
|
+
}
|
|
1905
|
+
function enumDefaultedMember(id) {
|
|
1906
|
+
const node = {
|
|
1907
|
+
type: "EnumDefaultedMember",
|
|
1908
|
+
id
|
|
1909
|
+
};
|
|
1910
|
+
const defs = NODE_FIELDS.EnumDefaultedMember;
|
|
1911
|
+
validate(defs.id, node, "id", id, 1);
|
|
1912
|
+
return node;
|
|
1913
|
+
}
|
|
1914
|
+
function indexedAccessType(objectType, indexType) {
|
|
1915
|
+
const node = {
|
|
1916
|
+
type: "IndexedAccessType",
|
|
1917
|
+
objectType,
|
|
1918
|
+
indexType
|
|
1919
|
+
};
|
|
1920
|
+
const defs = NODE_FIELDS.IndexedAccessType;
|
|
1921
|
+
validate(defs.objectType, node, "objectType", objectType, 1);
|
|
1922
|
+
validate(defs.indexType, node, "indexType", indexType, 1);
|
|
1923
|
+
return node;
|
|
1924
|
+
}
|
|
1925
|
+
function optionalIndexedAccessType(objectType, indexType) {
|
|
1926
|
+
const node = {
|
|
1927
|
+
type: "OptionalIndexedAccessType",
|
|
1928
|
+
objectType,
|
|
1929
|
+
indexType,
|
|
1930
|
+
optional: null
|
|
1931
|
+
};
|
|
1932
|
+
const defs = NODE_FIELDS.OptionalIndexedAccessType;
|
|
1933
|
+
validate(defs.objectType, node, "objectType", objectType, 1);
|
|
1934
|
+
validate(defs.indexType, node, "indexType", indexType, 1);
|
|
1935
|
+
return node;
|
|
1936
|
+
}
|
|
1937
|
+
function jsxAttribute(name, value = null) {
|
|
1938
|
+
const node = {
|
|
1939
|
+
type: "JSXAttribute",
|
|
1940
|
+
name,
|
|
1941
|
+
value
|
|
1942
|
+
};
|
|
1943
|
+
const defs = NODE_FIELDS.JSXAttribute;
|
|
1944
|
+
validate(defs.name, node, "name", name, 1);
|
|
1945
|
+
validate(defs.value, node, "value", value, 1);
|
|
1946
|
+
return node;
|
|
1947
|
+
}
|
|
1948
|
+
function jsxClosingElement(name) {
|
|
1949
|
+
const node = {
|
|
1950
|
+
type: "JSXClosingElement",
|
|
1951
|
+
name
|
|
1952
|
+
};
|
|
1953
|
+
const defs = NODE_FIELDS.JSXClosingElement;
|
|
1954
|
+
validate(defs.name, node, "name", name, 1);
|
|
1955
|
+
return node;
|
|
1956
|
+
}
|
|
1957
|
+
function jsxElement(openingElement, closingElement = null, children, selfClosing = null) {
|
|
1958
|
+
const node = {
|
|
1959
|
+
type: "JSXElement",
|
|
1960
|
+
openingElement,
|
|
1961
|
+
closingElement,
|
|
1962
|
+
children,
|
|
1963
|
+
selfClosing
|
|
1964
|
+
};
|
|
1965
|
+
const defs = NODE_FIELDS.JSXElement;
|
|
1966
|
+
validate(defs.openingElement, node, "openingElement", openingElement, 1);
|
|
1967
|
+
validate(defs.closingElement, node, "closingElement", closingElement, 1);
|
|
1968
|
+
validate(defs.children, node, "children", children, 1);
|
|
1969
|
+
validate(defs.selfClosing, node, "selfClosing", selfClosing);
|
|
1970
|
+
return node;
|
|
1971
|
+
}
|
|
1972
|
+
function jsxEmptyExpression() {
|
|
1973
|
+
return {
|
|
1974
|
+
type: "JSXEmptyExpression"
|
|
1975
|
+
};
|
|
1976
|
+
}
|
|
1977
|
+
function jsxExpressionContainer(expression) {
|
|
1978
|
+
const node = {
|
|
1979
|
+
type: "JSXExpressionContainer",
|
|
1980
|
+
expression
|
|
1981
|
+
};
|
|
1982
|
+
const defs = NODE_FIELDS.JSXExpressionContainer;
|
|
1983
|
+
validate(defs.expression, node, "expression", expression, 1);
|
|
1984
|
+
return node;
|
|
1985
|
+
}
|
|
1986
|
+
function jsxSpreadChild(expression) {
|
|
1987
|
+
const node = {
|
|
1988
|
+
type: "JSXSpreadChild",
|
|
1989
|
+
expression
|
|
1990
|
+
};
|
|
1991
|
+
const defs = NODE_FIELDS.JSXSpreadChild;
|
|
1992
|
+
validate(defs.expression, node, "expression", expression, 1);
|
|
1993
|
+
return node;
|
|
1994
|
+
}
|
|
1995
|
+
function jsxIdentifier(name) {
|
|
1996
|
+
const node = {
|
|
1997
|
+
type: "JSXIdentifier",
|
|
1998
|
+
name
|
|
1999
|
+
};
|
|
2000
|
+
const defs = NODE_FIELDS.JSXIdentifier;
|
|
2001
|
+
validate(defs.name, node, "name", name);
|
|
2002
|
+
return node;
|
|
2003
|
+
}
|
|
2004
|
+
function jsxMemberExpression(object, property) {
|
|
2005
|
+
const node = {
|
|
2006
|
+
type: "JSXMemberExpression",
|
|
2007
|
+
object,
|
|
2008
|
+
property
|
|
2009
|
+
};
|
|
2010
|
+
const defs = NODE_FIELDS.JSXMemberExpression;
|
|
2011
|
+
validate(defs.object, node, "object", object, 1);
|
|
2012
|
+
validate(defs.property, node, "property", property, 1);
|
|
2013
|
+
return node;
|
|
2014
|
+
}
|
|
2015
|
+
function jsxNamespacedName(namespace, name) {
|
|
2016
|
+
const node = {
|
|
2017
|
+
type: "JSXNamespacedName",
|
|
2018
|
+
namespace,
|
|
2019
|
+
name
|
|
2020
|
+
};
|
|
2021
|
+
const defs = NODE_FIELDS.JSXNamespacedName;
|
|
2022
|
+
validate(defs.namespace, node, "namespace", namespace, 1);
|
|
2023
|
+
validate(defs.name, node, "name", name, 1);
|
|
2024
|
+
return node;
|
|
2025
|
+
}
|
|
2026
|
+
function jsxOpeningElement(name, attributes, selfClosing = false) {
|
|
2027
|
+
const node = {
|
|
2028
|
+
type: "JSXOpeningElement",
|
|
2029
|
+
name,
|
|
2030
|
+
attributes,
|
|
2031
|
+
selfClosing
|
|
2032
|
+
};
|
|
2033
|
+
const defs = NODE_FIELDS.JSXOpeningElement;
|
|
2034
|
+
validate(defs.name, node, "name", name, 1);
|
|
2035
|
+
validate(defs.attributes, node, "attributes", attributes, 1);
|
|
2036
|
+
validate(defs.selfClosing, node, "selfClosing", selfClosing);
|
|
2037
|
+
return node;
|
|
2038
|
+
}
|
|
2039
|
+
function jsxSpreadAttribute(argument) {
|
|
2040
|
+
const node = {
|
|
2041
|
+
type: "JSXSpreadAttribute",
|
|
2042
|
+
argument
|
|
2043
|
+
};
|
|
2044
|
+
const defs = NODE_FIELDS.JSXSpreadAttribute;
|
|
2045
|
+
validate(defs.argument, node, "argument", argument, 1);
|
|
2046
|
+
return node;
|
|
2047
|
+
}
|
|
2048
|
+
function jsxText(value) {
|
|
2049
|
+
const node = {
|
|
2050
|
+
type: "JSXText",
|
|
2051
|
+
value
|
|
2052
|
+
};
|
|
2053
|
+
const defs = NODE_FIELDS.JSXText;
|
|
2054
|
+
validate(defs.value, node, "value", value);
|
|
2055
|
+
return node;
|
|
2056
|
+
}
|
|
2057
|
+
function jsxFragment(openingFragment, closingFragment, children) {
|
|
2058
|
+
const node = {
|
|
2059
|
+
type: "JSXFragment",
|
|
2060
|
+
openingFragment,
|
|
2061
|
+
closingFragment,
|
|
2062
|
+
children
|
|
2063
|
+
};
|
|
2064
|
+
const defs = NODE_FIELDS.JSXFragment;
|
|
2065
|
+
validate(defs.openingFragment, node, "openingFragment", openingFragment, 1);
|
|
2066
|
+
validate(defs.closingFragment, node, "closingFragment", closingFragment, 1);
|
|
2067
|
+
validate(defs.children, node, "children", children, 1);
|
|
2068
|
+
return node;
|
|
2069
|
+
}
|
|
2070
|
+
function jsxOpeningFragment() {
|
|
2071
|
+
return {
|
|
2072
|
+
type: "JSXOpeningFragment"
|
|
2073
|
+
};
|
|
2074
|
+
}
|
|
2075
|
+
function jsxClosingFragment() {
|
|
2076
|
+
return {
|
|
2077
|
+
type: "JSXClosingFragment"
|
|
2078
|
+
};
|
|
2079
|
+
}
|
|
2080
|
+
function noop() {
|
|
2081
|
+
return {
|
|
2082
|
+
type: "Noop"
|
|
2083
|
+
};
|
|
2084
|
+
}
|
|
2085
|
+
function placeholder(expectedNode, name) {
|
|
2086
|
+
const node = {
|
|
2087
|
+
type: "Placeholder",
|
|
2088
|
+
expectedNode,
|
|
2089
|
+
name
|
|
2090
|
+
};
|
|
2091
|
+
const defs = NODE_FIELDS.Placeholder;
|
|
2092
|
+
validate(defs.expectedNode, node, "expectedNode", expectedNode);
|
|
2093
|
+
validate(defs.name, node, "name", name, 1);
|
|
2094
|
+
return node;
|
|
2095
|
+
}
|
|
2096
|
+
function v8IntrinsicIdentifier(name) {
|
|
2097
|
+
const node = {
|
|
2098
|
+
type: "V8IntrinsicIdentifier",
|
|
2099
|
+
name
|
|
2100
|
+
};
|
|
2101
|
+
const defs = NODE_FIELDS.V8IntrinsicIdentifier;
|
|
2102
|
+
validate(defs.name, node, "name", name);
|
|
2103
|
+
return node;
|
|
2104
|
+
}
|
|
2105
|
+
function argumentPlaceholder() {
|
|
2106
|
+
return {
|
|
2107
|
+
type: "ArgumentPlaceholder"
|
|
2108
|
+
};
|
|
2109
|
+
}
|
|
2110
|
+
function bindExpression(object, callee) {
|
|
2111
|
+
const node = {
|
|
2112
|
+
type: "BindExpression",
|
|
2113
|
+
object,
|
|
2114
|
+
callee
|
|
2115
|
+
};
|
|
2116
|
+
const defs = NODE_FIELDS.BindExpression;
|
|
2117
|
+
validate(defs.object, node, "object", object, 1);
|
|
2118
|
+
validate(defs.callee, node, "callee", callee, 1);
|
|
2119
|
+
return node;
|
|
2120
|
+
}
|
|
2121
|
+
function decorator(expression) {
|
|
2122
|
+
const node = {
|
|
2123
|
+
type: "Decorator",
|
|
2124
|
+
expression
|
|
2125
|
+
};
|
|
2126
|
+
const defs = NODE_FIELDS.Decorator;
|
|
2127
|
+
validate(defs.expression, node, "expression", expression, 1);
|
|
2128
|
+
return node;
|
|
2129
|
+
}
|
|
2130
|
+
function doExpression(body, async = false) {
|
|
2131
|
+
const node = {
|
|
2132
|
+
type: "DoExpression",
|
|
2133
|
+
body,
|
|
2134
|
+
async
|
|
2135
|
+
};
|
|
2136
|
+
const defs = NODE_FIELDS.DoExpression;
|
|
2137
|
+
validate(defs.body, node, "body", body, 1);
|
|
2138
|
+
validate(defs.async, node, "async", async);
|
|
2139
|
+
return node;
|
|
2140
|
+
}
|
|
2141
|
+
function exportDefaultSpecifier(exported) {
|
|
2142
|
+
const node = {
|
|
2143
|
+
type: "ExportDefaultSpecifier",
|
|
2144
|
+
exported
|
|
2145
|
+
};
|
|
2146
|
+
const defs = NODE_FIELDS.ExportDefaultSpecifier;
|
|
2147
|
+
validate(defs.exported, node, "exported", exported, 1);
|
|
2148
|
+
return node;
|
|
2149
|
+
}
|
|
2150
|
+
function recordExpression(properties) {
|
|
2151
|
+
const node = {
|
|
2152
|
+
type: "RecordExpression",
|
|
2153
|
+
properties
|
|
2154
|
+
};
|
|
2155
|
+
const defs = NODE_FIELDS.RecordExpression;
|
|
2156
|
+
validate(defs.properties, node, "properties", properties, 1);
|
|
2157
|
+
return node;
|
|
2158
|
+
}
|
|
2159
|
+
function tupleExpression(elements = []) {
|
|
2160
|
+
const node = {
|
|
2161
|
+
type: "TupleExpression",
|
|
2162
|
+
elements
|
|
2163
|
+
};
|
|
2164
|
+
const defs = NODE_FIELDS.TupleExpression;
|
|
2165
|
+
validate(defs.elements, node, "elements", elements, 1);
|
|
2166
|
+
return node;
|
|
2167
|
+
}
|
|
2168
|
+
function decimalLiteral(value) {
|
|
2169
|
+
const node = {
|
|
2170
|
+
type: "DecimalLiteral",
|
|
2171
|
+
value
|
|
2172
|
+
};
|
|
2173
|
+
const defs = NODE_FIELDS.DecimalLiteral;
|
|
2174
|
+
validate(defs.value, node, "value", value);
|
|
2175
|
+
return node;
|
|
2176
|
+
}
|
|
2177
|
+
function moduleExpression(body) {
|
|
2178
|
+
const node = {
|
|
2179
|
+
type: "ModuleExpression",
|
|
2180
|
+
body
|
|
2181
|
+
};
|
|
2182
|
+
const defs = NODE_FIELDS.ModuleExpression;
|
|
2183
|
+
validate(defs.body, node, "body", body, 1);
|
|
2184
|
+
return node;
|
|
2185
|
+
}
|
|
2186
|
+
function topicReference() {
|
|
2187
|
+
return {
|
|
2188
|
+
type: "TopicReference"
|
|
2189
|
+
};
|
|
2190
|
+
}
|
|
2191
|
+
function pipelineTopicExpression(expression) {
|
|
2192
|
+
const node = {
|
|
2193
|
+
type: "PipelineTopicExpression",
|
|
2194
|
+
expression
|
|
2195
|
+
};
|
|
2196
|
+
const defs = NODE_FIELDS.PipelineTopicExpression;
|
|
2197
|
+
validate(defs.expression, node, "expression", expression, 1);
|
|
2198
|
+
return node;
|
|
2199
|
+
}
|
|
2200
|
+
function pipelineBareFunction(callee) {
|
|
2201
|
+
const node = {
|
|
2202
|
+
type: "PipelineBareFunction",
|
|
2203
|
+
callee
|
|
2204
|
+
};
|
|
2205
|
+
const defs = NODE_FIELDS.PipelineBareFunction;
|
|
2206
|
+
validate(defs.callee, node, "callee", callee, 1);
|
|
2207
|
+
return node;
|
|
2208
|
+
}
|
|
2209
|
+
function pipelinePrimaryTopicReference() {
|
|
2210
|
+
return {
|
|
2211
|
+
type: "PipelinePrimaryTopicReference"
|
|
2212
|
+
};
|
|
2213
|
+
}
|
|
2214
|
+
function tsParameterProperty(parameter) {
|
|
2215
|
+
const node = {
|
|
2216
|
+
type: "TSParameterProperty",
|
|
2217
|
+
parameter
|
|
2218
|
+
};
|
|
2219
|
+
const defs = NODE_FIELDS.TSParameterProperty;
|
|
2220
|
+
validate(defs.parameter, node, "parameter", parameter, 1);
|
|
2221
|
+
return node;
|
|
2222
|
+
}
|
|
2223
|
+
function tsDeclareFunction(id = null, typeParameters = null, params, returnType = null) {
|
|
2224
|
+
const node = {
|
|
2225
|
+
type: "TSDeclareFunction",
|
|
2226
|
+
id,
|
|
2227
|
+
typeParameters,
|
|
2228
|
+
params,
|
|
2229
|
+
returnType
|
|
2230
|
+
};
|
|
2231
|
+
const defs = NODE_FIELDS.TSDeclareFunction;
|
|
2232
|
+
validate(defs.id, node, "id", id, 1);
|
|
2233
|
+
validate(defs.typeParameters, node, "typeParameters", typeParameters, 1);
|
|
2234
|
+
validate(defs.params, node, "params", params, 1);
|
|
2235
|
+
validate(defs.returnType, node, "returnType", returnType, 1);
|
|
2236
|
+
return node;
|
|
2237
|
+
}
|
|
2238
|
+
function tsDeclareMethod(decorators = null, key, typeParameters = null, params, returnType = null) {
|
|
2239
|
+
const node = {
|
|
2240
|
+
type: "TSDeclareMethod",
|
|
2241
|
+
decorators,
|
|
2242
|
+
key,
|
|
2243
|
+
typeParameters,
|
|
2244
|
+
params,
|
|
2245
|
+
returnType
|
|
2246
|
+
};
|
|
2247
|
+
const defs = NODE_FIELDS.TSDeclareMethod;
|
|
2248
|
+
validate(defs.decorators, node, "decorators", decorators, 1);
|
|
2249
|
+
validate(defs.key, node, "key", key, 1);
|
|
2250
|
+
validate(defs.typeParameters, node, "typeParameters", typeParameters, 1);
|
|
2251
|
+
validate(defs.params, node, "params", params, 1);
|
|
2252
|
+
validate(defs.returnType, node, "returnType", returnType, 1);
|
|
2253
|
+
return node;
|
|
2254
|
+
}
|
|
2255
|
+
function tsQualifiedName(left, right) {
|
|
2256
|
+
const node = {
|
|
2257
|
+
type: "TSQualifiedName",
|
|
2258
|
+
left,
|
|
2259
|
+
right
|
|
2260
|
+
};
|
|
2261
|
+
const defs = NODE_FIELDS.TSQualifiedName;
|
|
2262
|
+
validate(defs.left, node, "left", left, 1);
|
|
2263
|
+
validate(defs.right, node, "right", right, 1);
|
|
2264
|
+
return node;
|
|
2265
|
+
}
|
|
2266
|
+
function tsCallSignatureDeclaration(typeParameters = null, parameters, typeAnnotation = null) {
|
|
2267
|
+
const node = {
|
|
2268
|
+
type: "TSCallSignatureDeclaration",
|
|
2269
|
+
typeParameters,
|
|
2270
|
+
parameters,
|
|
2271
|
+
typeAnnotation
|
|
2272
|
+
};
|
|
2273
|
+
const defs = NODE_FIELDS.TSCallSignatureDeclaration;
|
|
2274
|
+
validate(defs.typeParameters, node, "typeParameters", typeParameters, 1);
|
|
2275
|
+
validate(defs.parameters, node, "parameters", parameters, 1);
|
|
2276
|
+
validate(defs.typeAnnotation, node, "typeAnnotation", typeAnnotation, 1);
|
|
2277
|
+
return node;
|
|
2278
|
+
}
|
|
2279
|
+
function tsConstructSignatureDeclaration(typeParameters = null, parameters, typeAnnotation = null) {
|
|
2280
|
+
const node = {
|
|
2281
|
+
type: "TSConstructSignatureDeclaration",
|
|
2282
|
+
typeParameters,
|
|
2283
|
+
parameters,
|
|
2284
|
+
typeAnnotation
|
|
2285
|
+
};
|
|
2286
|
+
const defs = NODE_FIELDS.TSConstructSignatureDeclaration;
|
|
2287
|
+
validate(defs.typeParameters, node, "typeParameters", typeParameters, 1);
|
|
2288
|
+
validate(defs.parameters, node, "parameters", parameters, 1);
|
|
2289
|
+
validate(defs.typeAnnotation, node, "typeAnnotation", typeAnnotation, 1);
|
|
2290
|
+
return node;
|
|
2291
|
+
}
|
|
2292
|
+
function tsPropertySignature(key, typeAnnotation = null) {
|
|
2293
|
+
const node = {
|
|
2294
|
+
type: "TSPropertySignature",
|
|
2295
|
+
key,
|
|
2296
|
+
typeAnnotation
|
|
2297
|
+
};
|
|
2298
|
+
const defs = NODE_FIELDS.TSPropertySignature;
|
|
2299
|
+
validate(defs.key, node, "key", key, 1);
|
|
2300
|
+
validate(defs.typeAnnotation, node, "typeAnnotation", typeAnnotation, 1);
|
|
2301
|
+
return node;
|
|
2302
|
+
}
|
|
2303
|
+
function tsMethodSignature(key, typeParameters = null, parameters, typeAnnotation = null) {
|
|
2304
|
+
const node = {
|
|
2305
|
+
type: "TSMethodSignature",
|
|
2306
|
+
key,
|
|
2307
|
+
typeParameters,
|
|
2308
|
+
parameters,
|
|
2309
|
+
typeAnnotation,
|
|
2310
|
+
kind: null
|
|
2311
|
+
};
|
|
2312
|
+
const defs = NODE_FIELDS.TSMethodSignature;
|
|
2313
|
+
validate(defs.key, node, "key", key, 1);
|
|
2314
|
+
validate(defs.typeParameters, node, "typeParameters", typeParameters, 1);
|
|
2315
|
+
validate(defs.parameters, node, "parameters", parameters, 1);
|
|
2316
|
+
validate(defs.typeAnnotation, node, "typeAnnotation", typeAnnotation, 1);
|
|
2317
|
+
return node;
|
|
2318
|
+
}
|
|
2319
|
+
function tsIndexSignature(parameters, typeAnnotation = null) {
|
|
2320
|
+
const node = {
|
|
2321
|
+
type: "TSIndexSignature",
|
|
2322
|
+
parameters,
|
|
2323
|
+
typeAnnotation
|
|
2324
|
+
};
|
|
2325
|
+
const defs = NODE_FIELDS.TSIndexSignature;
|
|
2326
|
+
validate(defs.parameters, node, "parameters", parameters, 1);
|
|
2327
|
+
validate(defs.typeAnnotation, node, "typeAnnotation", typeAnnotation, 1);
|
|
2328
|
+
return node;
|
|
2329
|
+
}
|
|
2330
|
+
function tsAnyKeyword() {
|
|
2331
|
+
return {
|
|
2332
|
+
type: "TSAnyKeyword"
|
|
2333
|
+
};
|
|
2334
|
+
}
|
|
2335
|
+
function tsBooleanKeyword() {
|
|
2336
|
+
return {
|
|
2337
|
+
type: "TSBooleanKeyword"
|
|
2338
|
+
};
|
|
2339
|
+
}
|
|
2340
|
+
function tsBigIntKeyword() {
|
|
2341
|
+
return {
|
|
2342
|
+
type: "TSBigIntKeyword"
|
|
2343
|
+
};
|
|
2344
|
+
}
|
|
2345
|
+
function tsIntrinsicKeyword() {
|
|
2346
|
+
return {
|
|
2347
|
+
type: "TSIntrinsicKeyword"
|
|
2348
|
+
};
|
|
2349
|
+
}
|
|
2350
|
+
function tsNeverKeyword() {
|
|
2351
|
+
return {
|
|
2352
|
+
type: "TSNeverKeyword"
|
|
2353
|
+
};
|
|
2354
|
+
}
|
|
2355
|
+
function tsNullKeyword() {
|
|
2356
|
+
return {
|
|
2357
|
+
type: "TSNullKeyword"
|
|
2358
|
+
};
|
|
2359
|
+
}
|
|
2360
|
+
function tsNumberKeyword() {
|
|
2361
|
+
return {
|
|
2362
|
+
type: "TSNumberKeyword"
|
|
2363
|
+
};
|
|
2364
|
+
}
|
|
2365
|
+
function tsObjectKeyword() {
|
|
2366
|
+
return {
|
|
2367
|
+
type: "TSObjectKeyword"
|
|
2368
|
+
};
|
|
2369
|
+
}
|
|
2370
|
+
function tsStringKeyword() {
|
|
2371
|
+
return {
|
|
2372
|
+
type: "TSStringKeyword"
|
|
2373
|
+
};
|
|
2374
|
+
}
|
|
2375
|
+
function tsSymbolKeyword() {
|
|
2376
|
+
return {
|
|
2377
|
+
type: "TSSymbolKeyword"
|
|
2378
|
+
};
|
|
2379
|
+
}
|
|
2380
|
+
function tsUndefinedKeyword() {
|
|
2381
|
+
return {
|
|
2382
|
+
type: "TSUndefinedKeyword"
|
|
2383
|
+
};
|
|
2384
|
+
}
|
|
2385
|
+
function tsUnknownKeyword() {
|
|
2386
|
+
return {
|
|
2387
|
+
type: "TSUnknownKeyword"
|
|
2388
|
+
};
|
|
2389
|
+
}
|
|
2390
|
+
function tsVoidKeyword() {
|
|
2391
|
+
return {
|
|
2392
|
+
type: "TSVoidKeyword"
|
|
2393
|
+
};
|
|
2394
|
+
}
|
|
2395
|
+
function tsThisType() {
|
|
2396
|
+
return {
|
|
2397
|
+
type: "TSThisType"
|
|
2398
|
+
};
|
|
2399
|
+
}
|
|
2400
|
+
function tsFunctionType(typeParameters = null, parameters, typeAnnotation = null) {
|
|
2401
|
+
const node = {
|
|
2402
|
+
type: "TSFunctionType",
|
|
2403
|
+
typeParameters,
|
|
2404
|
+
parameters,
|
|
2405
|
+
typeAnnotation
|
|
2406
|
+
};
|
|
2407
|
+
const defs = NODE_FIELDS.TSFunctionType;
|
|
2408
|
+
validate(defs.typeParameters, node, "typeParameters", typeParameters, 1);
|
|
2409
|
+
validate(defs.parameters, node, "parameters", parameters, 1);
|
|
2410
|
+
validate(defs.typeAnnotation, node, "typeAnnotation", typeAnnotation, 1);
|
|
2411
|
+
return node;
|
|
2412
|
+
}
|
|
2413
|
+
function tsConstructorType(typeParameters = null, parameters, typeAnnotation = null) {
|
|
2414
|
+
const node = {
|
|
2415
|
+
type: "TSConstructorType",
|
|
2416
|
+
typeParameters,
|
|
2417
|
+
parameters,
|
|
2418
|
+
typeAnnotation
|
|
2419
|
+
};
|
|
2420
|
+
const defs = NODE_FIELDS.TSConstructorType;
|
|
2421
|
+
validate(defs.typeParameters, node, "typeParameters", typeParameters, 1);
|
|
2422
|
+
validate(defs.parameters, node, "parameters", parameters, 1);
|
|
2423
|
+
validate(defs.typeAnnotation, node, "typeAnnotation", typeAnnotation, 1);
|
|
2424
|
+
return node;
|
|
2425
|
+
}
|
|
2426
|
+
function tsTypeReference(typeName, typeParameters = null) {
|
|
2427
|
+
const node = {
|
|
2428
|
+
type: "TSTypeReference",
|
|
2429
|
+
typeName,
|
|
2430
|
+
typeParameters
|
|
2431
|
+
};
|
|
2432
|
+
const defs = NODE_FIELDS.TSTypeReference;
|
|
2433
|
+
validate(defs.typeName, node, "typeName", typeName, 1);
|
|
2434
|
+
validate(defs.typeParameters, node, "typeParameters", typeParameters, 1);
|
|
2435
|
+
return node;
|
|
2436
|
+
}
|
|
2437
|
+
function tsTypePredicate(parameterName, typeAnnotation = null, asserts = null) {
|
|
2438
|
+
const node = {
|
|
2439
|
+
type: "TSTypePredicate",
|
|
2440
|
+
parameterName,
|
|
2441
|
+
typeAnnotation,
|
|
2442
|
+
asserts
|
|
2443
|
+
};
|
|
2444
|
+
const defs = NODE_FIELDS.TSTypePredicate;
|
|
2445
|
+
validate(defs.parameterName, node, "parameterName", parameterName, 1);
|
|
2446
|
+
validate(defs.typeAnnotation, node, "typeAnnotation", typeAnnotation, 1);
|
|
2447
|
+
validate(defs.asserts, node, "asserts", asserts);
|
|
2448
|
+
return node;
|
|
2449
|
+
}
|
|
2450
|
+
function tsTypeQuery(exprName, typeParameters = null) {
|
|
2451
|
+
const node = {
|
|
2452
|
+
type: "TSTypeQuery",
|
|
2453
|
+
exprName,
|
|
2454
|
+
typeParameters
|
|
2455
|
+
};
|
|
2456
|
+
const defs = NODE_FIELDS.TSTypeQuery;
|
|
2457
|
+
validate(defs.exprName, node, "exprName", exprName, 1);
|
|
2458
|
+
validate(defs.typeParameters, node, "typeParameters", typeParameters, 1);
|
|
2459
|
+
return node;
|
|
2460
|
+
}
|
|
2461
|
+
function tsTypeLiteral(members) {
|
|
2462
|
+
const node = {
|
|
2463
|
+
type: "TSTypeLiteral",
|
|
2464
|
+
members
|
|
2465
|
+
};
|
|
2466
|
+
const defs = NODE_FIELDS.TSTypeLiteral;
|
|
2467
|
+
validate(defs.members, node, "members", members, 1);
|
|
2468
|
+
return node;
|
|
2469
|
+
}
|
|
2470
|
+
function tsArrayType(elementType) {
|
|
2471
|
+
const node = {
|
|
2472
|
+
type: "TSArrayType",
|
|
2473
|
+
elementType
|
|
2474
|
+
};
|
|
2475
|
+
const defs = NODE_FIELDS.TSArrayType;
|
|
2476
|
+
validate(defs.elementType, node, "elementType", elementType, 1);
|
|
2477
|
+
return node;
|
|
2478
|
+
}
|
|
2479
|
+
function tsTupleType(elementTypes) {
|
|
2480
|
+
const node = {
|
|
2481
|
+
type: "TSTupleType",
|
|
2482
|
+
elementTypes
|
|
2483
|
+
};
|
|
2484
|
+
const defs = NODE_FIELDS.TSTupleType;
|
|
2485
|
+
validate(defs.elementTypes, node, "elementTypes", elementTypes, 1);
|
|
2486
|
+
return node;
|
|
2487
|
+
}
|
|
2488
|
+
function tsOptionalType(typeAnnotation) {
|
|
2489
|
+
const node = {
|
|
2490
|
+
type: "TSOptionalType",
|
|
2491
|
+
typeAnnotation
|
|
2492
|
+
};
|
|
2493
|
+
const defs = NODE_FIELDS.TSOptionalType;
|
|
2494
|
+
validate(defs.typeAnnotation, node, "typeAnnotation", typeAnnotation, 1);
|
|
2495
|
+
return node;
|
|
2496
|
+
}
|
|
2497
|
+
function tsRestType(typeAnnotation) {
|
|
2498
|
+
const node = {
|
|
2499
|
+
type: "TSRestType",
|
|
2500
|
+
typeAnnotation
|
|
2501
|
+
};
|
|
2502
|
+
const defs = NODE_FIELDS.TSRestType;
|
|
2503
|
+
validate(defs.typeAnnotation, node, "typeAnnotation", typeAnnotation, 1);
|
|
2504
|
+
return node;
|
|
2505
|
+
}
|
|
2506
|
+
function tsNamedTupleMember(label, elementType, optional = false) {
|
|
2507
|
+
const node = {
|
|
2508
|
+
type: "TSNamedTupleMember",
|
|
2509
|
+
label,
|
|
2510
|
+
elementType,
|
|
2511
|
+
optional
|
|
2512
|
+
};
|
|
2513
|
+
const defs = NODE_FIELDS.TSNamedTupleMember;
|
|
2514
|
+
validate(defs.label, node, "label", label, 1);
|
|
2515
|
+
validate(defs.elementType, node, "elementType", elementType, 1);
|
|
2516
|
+
validate(defs.optional, node, "optional", optional);
|
|
2517
|
+
return node;
|
|
2518
|
+
}
|
|
2519
|
+
function tsUnionType(types) {
|
|
2520
|
+
const node = {
|
|
2521
|
+
type: "TSUnionType",
|
|
2522
|
+
types
|
|
2523
|
+
};
|
|
2524
|
+
const defs = NODE_FIELDS.TSUnionType;
|
|
2525
|
+
validate(defs.types, node, "types", types, 1);
|
|
2526
|
+
return node;
|
|
2527
|
+
}
|
|
2528
|
+
function tsIntersectionType(types) {
|
|
2529
|
+
const node = {
|
|
2530
|
+
type: "TSIntersectionType",
|
|
2531
|
+
types
|
|
2532
|
+
};
|
|
2533
|
+
const defs = NODE_FIELDS.TSIntersectionType;
|
|
2534
|
+
validate(defs.types, node, "types", types, 1);
|
|
2535
|
+
return node;
|
|
2536
|
+
}
|
|
2537
|
+
function tsConditionalType(checkType, extendsType, trueType, falseType) {
|
|
2538
|
+
const node = {
|
|
2539
|
+
type: "TSConditionalType",
|
|
2540
|
+
checkType,
|
|
2541
|
+
extendsType,
|
|
2542
|
+
trueType,
|
|
2543
|
+
falseType
|
|
2544
|
+
};
|
|
2545
|
+
const defs = NODE_FIELDS.TSConditionalType;
|
|
2546
|
+
validate(defs.checkType, node, "checkType", checkType, 1);
|
|
2547
|
+
validate(defs.extendsType, node, "extendsType", extendsType, 1);
|
|
2548
|
+
validate(defs.trueType, node, "trueType", trueType, 1);
|
|
2549
|
+
validate(defs.falseType, node, "falseType", falseType, 1);
|
|
2550
|
+
return node;
|
|
2551
|
+
}
|
|
2552
|
+
function tsInferType(typeParameter) {
|
|
2553
|
+
const node = {
|
|
2554
|
+
type: "TSInferType",
|
|
2555
|
+
typeParameter
|
|
2556
|
+
};
|
|
2557
|
+
const defs = NODE_FIELDS.TSInferType;
|
|
2558
|
+
validate(defs.typeParameter, node, "typeParameter", typeParameter, 1);
|
|
2559
|
+
return node;
|
|
2560
|
+
}
|
|
2561
|
+
function tsParenthesizedType(typeAnnotation) {
|
|
2562
|
+
const node = {
|
|
2563
|
+
type: "TSParenthesizedType",
|
|
2564
|
+
typeAnnotation
|
|
2565
|
+
};
|
|
2566
|
+
const defs = NODE_FIELDS.TSParenthesizedType;
|
|
2567
|
+
validate(defs.typeAnnotation, node, "typeAnnotation", typeAnnotation, 1);
|
|
2568
|
+
return node;
|
|
2569
|
+
}
|
|
2570
|
+
function tsTypeOperator(typeAnnotation) {
|
|
2571
|
+
const node = {
|
|
2572
|
+
type: "TSTypeOperator",
|
|
2573
|
+
typeAnnotation,
|
|
2574
|
+
operator: null
|
|
2575
|
+
};
|
|
2576
|
+
const defs = NODE_FIELDS.TSTypeOperator;
|
|
2577
|
+
validate(defs.typeAnnotation, node, "typeAnnotation", typeAnnotation, 1);
|
|
2578
|
+
return node;
|
|
2579
|
+
}
|
|
2580
|
+
function tsIndexedAccessType(objectType, indexType) {
|
|
2581
|
+
const node = {
|
|
2582
|
+
type: "TSIndexedAccessType",
|
|
2583
|
+
objectType,
|
|
2584
|
+
indexType
|
|
2585
|
+
};
|
|
2586
|
+
const defs = NODE_FIELDS.TSIndexedAccessType;
|
|
2587
|
+
validate(defs.objectType, node, "objectType", objectType, 1);
|
|
2588
|
+
validate(defs.indexType, node, "indexType", indexType, 1);
|
|
2589
|
+
return node;
|
|
2590
|
+
}
|
|
2591
|
+
function tsMappedType(typeParameter, typeAnnotation = null, nameType = null) {
|
|
2592
|
+
const node = {
|
|
2593
|
+
type: "TSMappedType",
|
|
2594
|
+
typeParameter,
|
|
2595
|
+
typeAnnotation,
|
|
2596
|
+
nameType
|
|
2597
|
+
};
|
|
2598
|
+
const defs = NODE_FIELDS.TSMappedType;
|
|
2599
|
+
validate(defs.typeParameter, node, "typeParameter", typeParameter, 1);
|
|
2600
|
+
validate(defs.typeAnnotation, node, "typeAnnotation", typeAnnotation, 1);
|
|
2601
|
+
validate(defs.nameType, node, "nameType", nameType, 1);
|
|
2602
|
+
return node;
|
|
2603
|
+
}
|
|
2604
|
+
function tsTemplateLiteralType(quasis, types) {
|
|
2605
|
+
const node = {
|
|
2606
|
+
type: "TSTemplateLiteralType",
|
|
2607
|
+
quasis,
|
|
2608
|
+
types
|
|
2609
|
+
};
|
|
2610
|
+
const defs = NODE_FIELDS.TSTemplateLiteralType;
|
|
2611
|
+
validate(defs.quasis, node, "quasis", quasis, 1);
|
|
2612
|
+
validate(defs.types, node, "types", types, 1);
|
|
2613
|
+
return node;
|
|
2614
|
+
}
|
|
2615
|
+
function tsLiteralType(literal) {
|
|
2616
|
+
const node = {
|
|
2617
|
+
type: "TSLiteralType",
|
|
2618
|
+
literal
|
|
2619
|
+
};
|
|
2620
|
+
const defs = NODE_FIELDS.TSLiteralType;
|
|
2621
|
+
validate(defs.literal, node, "literal", literal, 1);
|
|
2622
|
+
return node;
|
|
2623
|
+
}
|
|
2624
|
+
function tsExpressionWithTypeArguments(expression, typeParameters = null) {
|
|
2625
|
+
const node = {
|
|
2626
|
+
type: "TSExpressionWithTypeArguments",
|
|
2627
|
+
expression,
|
|
2628
|
+
typeParameters
|
|
2629
|
+
};
|
|
2630
|
+
const defs = NODE_FIELDS.TSExpressionWithTypeArguments;
|
|
2631
|
+
validate(defs.expression, node, "expression", expression, 1);
|
|
2632
|
+
validate(defs.typeParameters, node, "typeParameters", typeParameters, 1);
|
|
2633
|
+
return node;
|
|
2634
|
+
}
|
|
2635
|
+
function tsInterfaceDeclaration(id, typeParameters = null, _extends = null, body) {
|
|
2636
|
+
const node = {
|
|
2637
|
+
type: "TSInterfaceDeclaration",
|
|
2638
|
+
id,
|
|
2639
|
+
typeParameters,
|
|
2640
|
+
extends: _extends,
|
|
2641
|
+
body
|
|
2642
|
+
};
|
|
2643
|
+
const defs = NODE_FIELDS.TSInterfaceDeclaration;
|
|
2644
|
+
validate(defs.id, node, "id", id, 1);
|
|
2645
|
+
validate(defs.typeParameters, node, "typeParameters", typeParameters, 1);
|
|
2646
|
+
validate(defs.extends, node, "extends", _extends, 1);
|
|
2647
|
+
validate(defs.body, node, "body", body, 1);
|
|
2648
|
+
return node;
|
|
2649
|
+
}
|
|
2650
|
+
function tsInterfaceBody(body) {
|
|
2651
|
+
const node = {
|
|
2652
|
+
type: "TSInterfaceBody",
|
|
2653
|
+
body
|
|
2654
|
+
};
|
|
2655
|
+
const defs = NODE_FIELDS.TSInterfaceBody;
|
|
2656
|
+
validate(defs.body, node, "body", body, 1);
|
|
2657
|
+
return node;
|
|
2658
|
+
}
|
|
2659
|
+
function tsTypeAliasDeclaration(id, typeParameters = null, typeAnnotation) {
|
|
2660
|
+
const node = {
|
|
2661
|
+
type: "TSTypeAliasDeclaration",
|
|
2662
|
+
id,
|
|
2663
|
+
typeParameters,
|
|
2664
|
+
typeAnnotation
|
|
2665
|
+
};
|
|
2666
|
+
const defs = NODE_FIELDS.TSTypeAliasDeclaration;
|
|
2667
|
+
validate(defs.id, node, "id", id, 1);
|
|
2668
|
+
validate(defs.typeParameters, node, "typeParameters", typeParameters, 1);
|
|
2669
|
+
validate(defs.typeAnnotation, node, "typeAnnotation", typeAnnotation, 1);
|
|
2670
|
+
return node;
|
|
2671
|
+
}
|
|
2672
|
+
function tsInstantiationExpression(expression, typeParameters = null) {
|
|
2673
|
+
const node = {
|
|
2674
|
+
type: "TSInstantiationExpression",
|
|
2675
|
+
expression,
|
|
2676
|
+
typeParameters
|
|
2677
|
+
};
|
|
2678
|
+
const defs = NODE_FIELDS.TSInstantiationExpression;
|
|
2679
|
+
validate(defs.expression, node, "expression", expression, 1);
|
|
2680
|
+
validate(defs.typeParameters, node, "typeParameters", typeParameters, 1);
|
|
2681
|
+
return node;
|
|
2682
|
+
}
|
|
2683
|
+
function tsAsExpression(expression, typeAnnotation) {
|
|
2684
|
+
const node = {
|
|
2685
|
+
type: "TSAsExpression",
|
|
2686
|
+
expression,
|
|
2687
|
+
typeAnnotation
|
|
2688
|
+
};
|
|
2689
|
+
const defs = NODE_FIELDS.TSAsExpression;
|
|
2690
|
+
validate(defs.expression, node, "expression", expression, 1);
|
|
2691
|
+
validate(defs.typeAnnotation, node, "typeAnnotation", typeAnnotation, 1);
|
|
2692
|
+
return node;
|
|
2693
|
+
}
|
|
2694
|
+
function tsSatisfiesExpression(expression, typeAnnotation) {
|
|
2695
|
+
const node = {
|
|
2696
|
+
type: "TSSatisfiesExpression",
|
|
2697
|
+
expression,
|
|
2698
|
+
typeAnnotation
|
|
2699
|
+
};
|
|
2700
|
+
const defs = NODE_FIELDS.TSSatisfiesExpression;
|
|
2701
|
+
validate(defs.expression, node, "expression", expression, 1);
|
|
2702
|
+
validate(defs.typeAnnotation, node, "typeAnnotation", typeAnnotation, 1);
|
|
2703
|
+
return node;
|
|
2704
|
+
}
|
|
2705
|
+
function tsTypeAssertion(typeAnnotation, expression) {
|
|
2706
|
+
const node = {
|
|
2707
|
+
type: "TSTypeAssertion",
|
|
2708
|
+
typeAnnotation,
|
|
2709
|
+
expression
|
|
2710
|
+
};
|
|
2711
|
+
const defs = NODE_FIELDS.TSTypeAssertion;
|
|
2712
|
+
validate(defs.typeAnnotation, node, "typeAnnotation", typeAnnotation, 1);
|
|
2713
|
+
validate(defs.expression, node, "expression", expression, 1);
|
|
2714
|
+
return node;
|
|
2715
|
+
}
|
|
2716
|
+
function tsEnumBody(members) {
|
|
2717
|
+
const node = {
|
|
2718
|
+
type: "TSEnumBody",
|
|
2719
|
+
members
|
|
2720
|
+
};
|
|
2721
|
+
const defs = NODE_FIELDS.TSEnumBody;
|
|
2722
|
+
validate(defs.members, node, "members", members, 1);
|
|
2723
|
+
return node;
|
|
2724
|
+
}
|
|
2725
|
+
function tsEnumDeclaration(id, members) {
|
|
2726
|
+
const node = {
|
|
2727
|
+
type: "TSEnumDeclaration",
|
|
2728
|
+
id,
|
|
2729
|
+
members
|
|
2730
|
+
};
|
|
2731
|
+
const defs = NODE_FIELDS.TSEnumDeclaration;
|
|
2732
|
+
validate(defs.id, node, "id", id, 1);
|
|
2733
|
+
validate(defs.members, node, "members", members, 1);
|
|
2734
|
+
return node;
|
|
2735
|
+
}
|
|
2736
|
+
function tsEnumMember(id, initializer = null) {
|
|
2737
|
+
const node = {
|
|
2738
|
+
type: "TSEnumMember",
|
|
2739
|
+
id,
|
|
2740
|
+
initializer
|
|
2741
|
+
};
|
|
2742
|
+
const defs = NODE_FIELDS.TSEnumMember;
|
|
2743
|
+
validate(defs.id, node, "id", id, 1);
|
|
2744
|
+
validate(defs.initializer, node, "initializer", initializer, 1);
|
|
2745
|
+
return node;
|
|
2746
|
+
}
|
|
2747
|
+
function tsModuleDeclaration(id, body) {
|
|
2748
|
+
const node = {
|
|
2749
|
+
type: "TSModuleDeclaration",
|
|
2750
|
+
id,
|
|
2751
|
+
body,
|
|
2752
|
+
kind: null
|
|
2753
|
+
};
|
|
2754
|
+
const defs = NODE_FIELDS.TSModuleDeclaration;
|
|
2755
|
+
validate(defs.id, node, "id", id, 1);
|
|
2756
|
+
validate(defs.body, node, "body", body, 1);
|
|
2757
|
+
return node;
|
|
2758
|
+
}
|
|
2759
|
+
function tsModuleBlock(body) {
|
|
2760
|
+
const node = {
|
|
2761
|
+
type: "TSModuleBlock",
|
|
2762
|
+
body
|
|
2763
|
+
};
|
|
2764
|
+
const defs = NODE_FIELDS.TSModuleBlock;
|
|
2765
|
+
validate(defs.body, node, "body", body, 1);
|
|
2766
|
+
return node;
|
|
2767
|
+
}
|
|
2768
|
+
function tsImportType(argument, qualifier = null, typeParameters = null) {
|
|
2769
|
+
const node = {
|
|
2770
|
+
type: "TSImportType",
|
|
2771
|
+
argument,
|
|
2772
|
+
qualifier,
|
|
2773
|
+
typeParameters
|
|
2774
|
+
};
|
|
2775
|
+
const defs = NODE_FIELDS.TSImportType;
|
|
2776
|
+
validate(defs.argument, node, "argument", argument, 1);
|
|
2777
|
+
validate(defs.qualifier, node, "qualifier", qualifier, 1);
|
|
2778
|
+
validate(defs.typeParameters, node, "typeParameters", typeParameters, 1);
|
|
2779
|
+
return node;
|
|
2780
|
+
}
|
|
2781
|
+
function tsImportEqualsDeclaration(id, moduleReference) {
|
|
2782
|
+
const node = {
|
|
2783
|
+
type: "TSImportEqualsDeclaration",
|
|
2784
|
+
id,
|
|
2785
|
+
moduleReference,
|
|
2786
|
+
isExport: null
|
|
2787
|
+
};
|
|
2788
|
+
const defs = NODE_FIELDS.TSImportEqualsDeclaration;
|
|
2789
|
+
validate(defs.id, node, "id", id, 1);
|
|
2790
|
+
validate(defs.moduleReference, node, "moduleReference", moduleReference, 1);
|
|
2791
|
+
return node;
|
|
2792
|
+
}
|
|
2793
|
+
function tsExternalModuleReference(expression) {
|
|
2794
|
+
const node = {
|
|
2795
|
+
type: "TSExternalModuleReference",
|
|
2796
|
+
expression
|
|
2797
|
+
};
|
|
2798
|
+
const defs = NODE_FIELDS.TSExternalModuleReference;
|
|
2799
|
+
validate(defs.expression, node, "expression", expression, 1);
|
|
2800
|
+
return node;
|
|
2801
|
+
}
|
|
2802
|
+
function tsNonNullExpression(expression) {
|
|
2803
|
+
const node = {
|
|
2804
|
+
type: "TSNonNullExpression",
|
|
2805
|
+
expression
|
|
2806
|
+
};
|
|
2807
|
+
const defs = NODE_FIELDS.TSNonNullExpression;
|
|
2808
|
+
validate(defs.expression, node, "expression", expression, 1);
|
|
2809
|
+
return node;
|
|
2810
|
+
}
|
|
2811
|
+
function tsExportAssignment(expression) {
|
|
2812
|
+
const node = {
|
|
2813
|
+
type: "TSExportAssignment",
|
|
2814
|
+
expression
|
|
2815
|
+
};
|
|
2816
|
+
const defs = NODE_FIELDS.TSExportAssignment;
|
|
2817
|
+
validate(defs.expression, node, "expression", expression, 1);
|
|
2818
|
+
return node;
|
|
2819
|
+
}
|
|
2820
|
+
function tsNamespaceExportDeclaration(id) {
|
|
2821
|
+
const node = {
|
|
2822
|
+
type: "TSNamespaceExportDeclaration",
|
|
2823
|
+
id
|
|
2824
|
+
};
|
|
2825
|
+
const defs = NODE_FIELDS.TSNamespaceExportDeclaration;
|
|
2826
|
+
validate(defs.id, node, "id", id, 1);
|
|
2827
|
+
return node;
|
|
2828
|
+
}
|
|
2829
|
+
function tsTypeAnnotation(typeAnnotation) {
|
|
2830
|
+
const node = {
|
|
2831
|
+
type: "TSTypeAnnotation",
|
|
2832
|
+
typeAnnotation
|
|
2833
|
+
};
|
|
2834
|
+
const defs = NODE_FIELDS.TSTypeAnnotation;
|
|
2835
|
+
validate(defs.typeAnnotation, node, "typeAnnotation", typeAnnotation, 1);
|
|
2836
|
+
return node;
|
|
2837
|
+
}
|
|
2838
|
+
function tsTypeParameterInstantiation(params) {
|
|
2839
|
+
const node = {
|
|
2840
|
+
type: "TSTypeParameterInstantiation",
|
|
2841
|
+
params
|
|
2842
|
+
};
|
|
2843
|
+
const defs = NODE_FIELDS.TSTypeParameterInstantiation;
|
|
2844
|
+
validate(defs.params, node, "params", params, 1);
|
|
2845
|
+
return node;
|
|
2846
|
+
}
|
|
2847
|
+
function tsTypeParameterDeclaration(params) {
|
|
2848
|
+
const node = {
|
|
2849
|
+
type: "TSTypeParameterDeclaration",
|
|
2850
|
+
params
|
|
2851
|
+
};
|
|
2852
|
+
const defs = NODE_FIELDS.TSTypeParameterDeclaration;
|
|
2853
|
+
validate(defs.params, node, "params", params, 1);
|
|
2854
|
+
return node;
|
|
2855
|
+
}
|
|
2856
|
+
function tsTypeParameter(constraint = null, _default = null, name) {
|
|
2857
|
+
const node = {
|
|
2858
|
+
type: "TSTypeParameter",
|
|
2859
|
+
constraint,
|
|
2860
|
+
default: _default,
|
|
2861
|
+
name
|
|
2862
|
+
};
|
|
2863
|
+
const defs = NODE_FIELDS.TSTypeParameter;
|
|
2864
|
+
validate(defs.constraint, node, "constraint", constraint, 1);
|
|
2865
|
+
validate(defs.default, node, "default", _default, 1);
|
|
2866
|
+
validate(defs.name, node, "name", name);
|
|
2867
|
+
return node;
|
|
2868
|
+
}
|
|
2869
|
+
function NumberLiteral(value) {
|
|
2870
|
+
(0, _deprecationWarning.default)("NumberLiteral", "NumericLiteral", "The node type ");
|
|
2871
|
+
return numericLiteral(value);
|
|
2872
|
+
}
|
|
2873
|
+
function RegexLiteral(pattern, flags = "") {
|
|
2874
|
+
(0, _deprecationWarning.default)("RegexLiteral", "RegExpLiteral", "The node type ");
|
|
2875
|
+
return regExpLiteral(pattern, flags);
|
|
2876
|
+
}
|
|
2877
|
+
function RestProperty(argument) {
|
|
2878
|
+
(0, _deprecationWarning.default)("RestProperty", "RestElement", "The node type ");
|
|
2879
|
+
return restElement(argument);
|
|
2880
|
+
}
|
|
2881
|
+
function SpreadProperty(argument) {
|
|
2882
|
+
(0, _deprecationWarning.default)("SpreadProperty", "SpreadElement", "The node type ");
|
|
2883
|
+
return spreadElement(argument);
|
|
2884
|
+
}
|
|
2885
|
+
|
|
2886
|
+
//# sourceMappingURL=lowercase.js.map
|