@banumeow/n8n-nodes-oracle-cloud 1.3.7 → 1.3.8
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/dist/package.json +1 -1
- package/dist/tsconfig.tsbuildinfo +1 -1
- package/node_modules/@langchain/core/node_modules/@types/retry/LICENSE +21 -0
- package/node_modules/@langchain/core/node_modules/@types/retry/README.md +16 -0
- package/node_modules/@langchain/core/node_modules/@types/retry/index.d.ts +151 -0
- package/node_modules/@langchain/core/node_modules/@types/retry/package.json +28 -0
- package/node_modules/@langchain/core/node_modules/@types/uuid/LICENSE +21 -0
- package/node_modules/@langchain/core/node_modules/@types/uuid/README.md +15 -0
- package/node_modules/@langchain/core/node_modules/@types/uuid/index.d.mts +19 -0
- package/node_modules/@langchain/core/node_modules/@types/uuid/index.d.ts +113 -0
- package/node_modules/@langchain/core/node_modules/@types/uuid/package.json +54 -0
- package/node_modules/@langchain/core/node_modules/base64-js/LICENSE +21 -0
- package/node_modules/@langchain/core/node_modules/base64-js/README.md +34 -0
- package/node_modules/@langchain/core/node_modules/base64-js/base64js.min.js +1 -0
- package/node_modules/@langchain/core/node_modules/base64-js/index.d.ts +3 -0
- package/node_modules/@langchain/core/node_modules/base64-js/index.js +150 -0
- package/node_modules/@langchain/core/node_modules/base64-js/package.json +47 -0
- package/node_modules/@langchain/core/node_modules/chalk/index.d.ts +415 -0
- package/node_modules/@langchain/core/node_modules/chalk/license +9 -0
- package/node_modules/@langchain/core/node_modules/chalk/node_modules/ansi-styles/index.d.ts +345 -0
- package/node_modules/@langchain/core/node_modules/chalk/node_modules/ansi-styles/index.js +163 -0
- package/node_modules/@langchain/core/node_modules/chalk/node_modules/ansi-styles/license +9 -0
- package/node_modules/@langchain/core/node_modules/chalk/node_modules/ansi-styles/package.json +56 -0
- package/node_modules/@langchain/core/node_modules/chalk/node_modules/ansi-styles/readme.md +152 -0
- package/node_modules/@langchain/core/node_modules/chalk/node_modules/supports-color/browser.js +5 -0
- package/node_modules/@langchain/core/node_modules/chalk/node_modules/supports-color/index.js +135 -0
- package/node_modules/@langchain/core/node_modules/chalk/node_modules/supports-color/license +9 -0
- package/node_modules/@langchain/core/node_modules/chalk/node_modules/supports-color/package.json +53 -0
- package/node_modules/@langchain/core/node_modules/chalk/node_modules/supports-color/readme.md +76 -0
- package/node_modules/@langchain/core/node_modules/chalk/package.json +68 -0
- package/node_modules/@langchain/core/node_modules/chalk/readme.md +341 -0
- package/node_modules/@langchain/core/node_modules/chalk/source/index.js +229 -0
- package/node_modules/@langchain/core/node_modules/chalk/source/templates.js +134 -0
- package/node_modules/@langchain/core/node_modules/chalk/source/util.js +39 -0
- package/node_modules/@langchain/core/node_modules/console-table-printer/LICENSE +21 -0
- package/node_modules/@langchain/core/node_modules/console-table-printer/README.md +192 -0
- package/node_modules/@langchain/core/node_modules/console-table-printer/dist/index.d.ts +4 -0
- package/node_modules/@langchain/core/node_modules/console-table-printer/dist/index.js +11 -0
- package/node_modules/@langchain/core/node_modules/console-table-printer/dist/src/console-table-printer.d.ts +14 -0
- package/node_modules/@langchain/core/node_modules/console-table-printer/dist/src/console-table-printer.js +36 -0
- package/node_modules/@langchain/core/node_modules/console-table-printer/dist/src/internalTable/input-converter.d.ts +6 -0
- package/node_modules/@langchain/core/node_modules/console-table-printer/dist/src/internalTable/input-converter.js +20 -0
- package/node_modules/@langchain/core/node_modules/console-table-printer/dist/src/internalTable/internal-table-printer.d.ts +6 -0
- package/node_modules/@langchain/core/node_modules/console-table-printer/dist/src/internalTable/internal-table-printer.js +142 -0
- package/node_modules/@langchain/core/node_modules/console-table-printer/dist/src/internalTable/internal-table.d.ts +31 -0
- package/node_modules/@langchain/core/node_modules/console-table-printer/dist/src/internalTable/internal-table.js +100 -0
- package/node_modules/@langchain/core/node_modules/console-table-printer/dist/src/internalTable/table-pre-processors.d.ts +3 -0
- package/node_modules/@langchain/core/node_modules/console-table-printer/dist/src/internalTable/table-pre-processors.js +50 -0
- package/node_modules/@langchain/core/node_modules/console-table-printer/dist/src/models/common.d.ts +14 -0
- package/node_modules/@langchain/core/node_modules/console-table-printer/dist/src/models/common.js +2 -0
- package/node_modules/@langchain/core/node_modules/console-table-printer/dist/src/models/external-table.d.ts +99 -0
- package/node_modules/@langchain/core/node_modules/console-table-printer/dist/src/models/external-table.js +2 -0
- package/node_modules/@langchain/core/node_modules/console-table-printer/dist/src/models/internal-table.d.ts +24 -0
- package/node_modules/@langchain/core/node_modules/console-table-printer/dist/src/models/internal-table.js +2 -0
- package/node_modules/@langchain/core/node_modules/console-table-printer/dist/src/utils/colored-console-line.d.ts +12 -0
- package/node_modules/@langchain/core/node_modules/console-table-printer/dist/src/utils/colored-console-line.js +31 -0
- package/node_modules/@langchain/core/node_modules/console-table-printer/dist/src/utils/console-utils.d.ts +3 -0
- package/node_modules/@langchain/core/node_modules/console-table-printer/dist/src/utils/console-utils.js +23 -0
- package/node_modules/@langchain/core/node_modules/console-table-printer/dist/src/utils/string-utils.d.ts +4 -0
- package/node_modules/@langchain/core/node_modules/console-table-printer/dist/src/utils/string-utils.js +68 -0
- package/node_modules/@langchain/core/node_modules/console-table-printer/dist/src/utils/table-constants.d.ts +11 -0
- package/node_modules/@langchain/core/node_modules/console-table-printer/dist/src/utils/table-constants.js +55 -0
- package/node_modules/@langchain/core/node_modules/console-table-printer/dist/src/utils/table-helpers.d.ts +29 -0
- package/node_modules/@langchain/core/node_modules/console-table-printer/dist/src/utils/table-helpers.js +101 -0
- package/node_modules/@langchain/core/node_modules/console-table-printer/package.json +50 -0
- package/node_modules/@langchain/core/node_modules/eventemitter3/LICENSE +21 -0
- package/node_modules/@langchain/core/node_modules/eventemitter3/README.md +94 -0
- package/node_modules/@langchain/core/node_modules/eventemitter3/index.d.ts +134 -0
- package/node_modules/@langchain/core/node_modules/eventemitter3/index.js +336 -0
- package/node_modules/@langchain/core/node_modules/eventemitter3/package.json +56 -0
- package/node_modules/@langchain/core/node_modules/eventemitter3/umd/eventemitter3.js +340 -0
- package/node_modules/@langchain/core/node_modules/eventemitter3/umd/eventemitter3.min.js +1 -0
- package/node_modules/@langchain/core/node_modules/eventemitter3/umd/eventemitter3.min.js.map +1 -0
- package/node_modules/@langchain/core/node_modules/has-flag/index.d.ts +39 -0
- package/node_modules/@langchain/core/node_modules/has-flag/index.js +8 -0
- package/node_modules/@langchain/core/node_modules/has-flag/license +9 -0
- package/node_modules/@langchain/core/node_modules/has-flag/package.json +46 -0
- package/node_modules/@langchain/core/node_modules/has-flag/readme.md +89 -0
- package/node_modules/@langchain/core/node_modules/p-finally/index.js +15 -0
- package/node_modules/@langchain/core/node_modules/p-finally/license +21 -0
- package/node_modules/@langchain/core/node_modules/p-finally/package.json +42 -0
- package/node_modules/@langchain/core/node_modules/p-finally/readme.md +47 -0
- package/node_modules/@langchain/core/node_modules/p-timeout/index.d.ts +72 -0
- package/node_modules/@langchain/core/node_modules/p-timeout/index.js +57 -0
- package/node_modules/@langchain/core/node_modules/p-timeout/license +9 -0
- package/node_modules/@langchain/core/node_modules/p-timeout/package.json +45 -0
- package/node_modules/@langchain/core/node_modules/p-timeout/readme.md +87 -0
- package/node_modules/@langchain/core/node_modules/retry/License +21 -0
- package/node_modules/@langchain/core/node_modules/retry/README.md +227 -0
- package/node_modules/@langchain/core/node_modules/retry/example/dns.js +31 -0
- package/node_modules/@langchain/core/node_modules/retry/example/stop.js +40 -0
- package/node_modules/@langchain/core/node_modules/retry/index.js +1 -0
- package/node_modules/@langchain/core/node_modules/retry/lib/retry.js +100 -0
- package/node_modules/@langchain/core/node_modules/retry/lib/retry_operation.js +162 -0
- package/node_modules/@langchain/core/node_modules/retry/package.json +36 -0
- package/node_modules/@langchain/core/node_modules/semver/LICENSE +15 -0
- package/node_modules/@langchain/core/node_modules/semver/README.md +664 -0
- package/node_modules/@langchain/core/node_modules/semver/bin/semver.js +191 -0
- package/node_modules/@langchain/core/node_modules/semver/classes/comparator.js +143 -0
- package/node_modules/@langchain/core/node_modules/semver/classes/index.js +7 -0
- package/node_modules/@langchain/core/node_modules/semver/classes/range.js +557 -0
- package/node_modules/@langchain/core/node_modules/semver/classes/semver.js +333 -0
- package/node_modules/@langchain/core/node_modules/semver/functions/clean.js +8 -0
- package/node_modules/@langchain/core/node_modules/semver/functions/cmp.js +54 -0
- package/node_modules/@langchain/core/node_modules/semver/functions/coerce.js +62 -0
- package/node_modules/@langchain/core/node_modules/semver/functions/compare-build.js +9 -0
- package/node_modules/@langchain/core/node_modules/semver/functions/compare-loose.js +5 -0
- package/node_modules/@langchain/core/node_modules/semver/functions/compare.js +7 -0
- package/node_modules/@langchain/core/node_modules/semver/functions/diff.js +60 -0
- package/node_modules/@langchain/core/node_modules/semver/functions/eq.js +5 -0
- package/node_modules/@langchain/core/node_modules/semver/functions/gt.js +5 -0
- package/node_modules/@langchain/core/node_modules/semver/functions/gte.js +5 -0
- package/node_modules/@langchain/core/node_modules/semver/functions/inc.js +21 -0
- package/node_modules/@langchain/core/node_modules/semver/functions/lt.js +5 -0
- package/node_modules/@langchain/core/node_modules/semver/functions/lte.js +5 -0
- package/node_modules/@langchain/core/node_modules/semver/functions/major.js +5 -0
- package/node_modules/@langchain/core/node_modules/semver/functions/minor.js +5 -0
- package/node_modules/@langchain/core/node_modules/semver/functions/neq.js +5 -0
- package/node_modules/@langchain/core/node_modules/semver/functions/parse.js +18 -0
- package/node_modules/@langchain/core/node_modules/semver/functions/patch.js +5 -0
- package/node_modules/@langchain/core/node_modules/semver/functions/prerelease.js +8 -0
- package/node_modules/@langchain/core/node_modules/semver/functions/rcompare.js +5 -0
- package/node_modules/@langchain/core/node_modules/semver/functions/rsort.js +5 -0
- package/node_modules/@langchain/core/node_modules/semver/functions/satisfies.js +12 -0
- package/node_modules/@langchain/core/node_modules/semver/functions/sort.js +5 -0
- package/node_modules/@langchain/core/node_modules/semver/functions/valid.js +8 -0
- package/node_modules/@langchain/core/node_modules/semver/index.js +91 -0
- package/node_modules/@langchain/core/node_modules/semver/internal/constants.js +37 -0
- package/node_modules/@langchain/core/node_modules/semver/internal/debug.js +11 -0
- package/node_modules/@langchain/core/node_modules/semver/internal/identifiers.js +29 -0
- package/node_modules/@langchain/core/node_modules/semver/internal/lrucache.js +42 -0
- package/node_modules/@langchain/core/node_modules/semver/internal/parse-options.js +17 -0
- package/node_modules/@langchain/core/node_modules/semver/internal/re.js +223 -0
- package/node_modules/@langchain/core/node_modules/semver/package.json +78 -0
- package/node_modules/@langchain/core/node_modules/semver/preload.js +4 -0
- package/node_modules/@langchain/core/node_modules/semver/range.bnf +16 -0
- package/node_modules/@langchain/core/node_modules/semver/ranges/gtr.js +6 -0
- package/node_modules/@langchain/core/node_modules/semver/ranges/intersects.js +9 -0
- package/node_modules/@langchain/core/node_modules/semver/ranges/ltr.js +6 -0
- package/node_modules/@langchain/core/node_modules/semver/ranges/max-satisfying.js +27 -0
- package/node_modules/@langchain/core/node_modules/semver/ranges/min-satisfying.js +26 -0
- package/node_modules/@langchain/core/node_modules/semver/ranges/min-version.js +63 -0
- package/node_modules/@langchain/core/node_modules/semver/ranges/outside.js +82 -0
- package/node_modules/@langchain/core/node_modules/semver/ranges/simplify.js +49 -0
- package/node_modules/@langchain/core/node_modules/semver/ranges/subset.js +249 -0
- package/node_modules/@langchain/core/node_modules/semver/ranges/to-comparators.js +10 -0
- package/node_modules/@langchain/core/node_modules/semver/ranges/valid.js +13 -0
- package/node_modules/@langchain/core/node_modules/simple-wcswidth/LICENSE +21 -0
- package/node_modules/@langchain/core/node_modules/simple-wcswidth/README.md +89 -0
- package/node_modules/@langchain/core/node_modules/simple-wcswidth/dist/index.js +10 -0
- package/node_modules/@langchain/core/node_modules/simple-wcswidth/dist/src/binary-search.js +24 -0
- package/node_modules/@langchain/core/node_modules/simple-wcswidth/dist/src/models.js +2 -0
- package/node_modules/@langchain/core/node_modules/simple-wcswidth/dist/src/non-spacing-chars.js +149 -0
- package/node_modules/@langchain/core/node_modules/simple-wcswidth/dist/src/wcswidth.js +20 -0
- package/node_modules/@langchain/core/node_modules/simple-wcswidth/dist/src/wcwidth.js +67 -0
- package/node_modules/@langchain/core/node_modules/simple-wcswidth/index.d.ts +20 -0
- package/node_modules/@langchain/core/node_modules/simple-wcswidth/package.json +43 -0
- package/node_modules/@langchain/textsplitters/node_modules/@langchain/core/node_modules/@types/retry/LICENSE +21 -0
- package/node_modules/@langchain/textsplitters/node_modules/@langchain/core/node_modules/@types/retry/README.md +16 -0
- package/node_modules/@langchain/textsplitters/node_modules/@langchain/core/node_modules/@types/retry/index.d.ts +151 -0
- package/node_modules/@langchain/textsplitters/node_modules/@langchain/core/node_modules/@types/retry/package.json +28 -0
- package/node_modules/@langchain/textsplitters/node_modules/@langchain/core/node_modules/@types/uuid/LICENSE +21 -0
- package/node_modules/@langchain/textsplitters/node_modules/@langchain/core/node_modules/@types/uuid/README.md +15 -0
- package/node_modules/@langchain/textsplitters/node_modules/@langchain/core/node_modules/@types/uuid/index.d.mts +19 -0
- package/node_modules/@langchain/textsplitters/node_modules/@langchain/core/node_modules/@types/uuid/index.d.ts +113 -0
- package/node_modules/@langchain/textsplitters/node_modules/@langchain/core/node_modules/@types/uuid/package.json +54 -0
- package/node_modules/@langchain/textsplitters/node_modules/@langchain/core/node_modules/base64-js/LICENSE +21 -0
- package/node_modules/@langchain/textsplitters/node_modules/@langchain/core/node_modules/base64-js/README.md +34 -0
- package/node_modules/@langchain/textsplitters/node_modules/@langchain/core/node_modules/base64-js/base64js.min.js +1 -0
- package/node_modules/@langchain/textsplitters/node_modules/@langchain/core/node_modules/base64-js/index.d.ts +3 -0
- package/node_modules/@langchain/textsplitters/node_modules/@langchain/core/node_modules/base64-js/index.js +150 -0
- package/node_modules/@langchain/textsplitters/node_modules/@langchain/core/node_modules/base64-js/package.json +47 -0
- package/node_modules/@langchain/textsplitters/node_modules/@langchain/core/node_modules/chalk/index.d.ts +415 -0
- package/node_modules/@langchain/textsplitters/node_modules/@langchain/core/node_modules/chalk/license +9 -0
- package/node_modules/@langchain/textsplitters/node_modules/@langchain/core/node_modules/chalk/node_modules/ansi-styles/index.d.ts +345 -0
- package/node_modules/@langchain/textsplitters/node_modules/@langchain/core/node_modules/chalk/node_modules/ansi-styles/index.js +163 -0
- package/node_modules/@langchain/textsplitters/node_modules/@langchain/core/node_modules/chalk/node_modules/ansi-styles/license +9 -0
- package/node_modules/@langchain/textsplitters/node_modules/@langchain/core/node_modules/chalk/node_modules/ansi-styles/package.json +56 -0
- package/node_modules/@langchain/textsplitters/node_modules/@langchain/core/node_modules/chalk/node_modules/ansi-styles/readme.md +152 -0
- package/node_modules/@langchain/textsplitters/node_modules/@langchain/core/node_modules/chalk/node_modules/supports-color/browser.js +5 -0
- package/node_modules/@langchain/textsplitters/node_modules/@langchain/core/node_modules/chalk/node_modules/supports-color/index.js +135 -0
- package/node_modules/@langchain/textsplitters/node_modules/@langchain/core/node_modules/chalk/node_modules/supports-color/license +9 -0
- package/node_modules/@langchain/textsplitters/node_modules/@langchain/core/node_modules/chalk/node_modules/supports-color/package.json +53 -0
- package/node_modules/@langchain/textsplitters/node_modules/@langchain/core/node_modules/chalk/node_modules/supports-color/readme.md +76 -0
- package/node_modules/@langchain/textsplitters/node_modules/@langchain/core/node_modules/chalk/package.json +68 -0
- package/node_modules/@langchain/textsplitters/node_modules/@langchain/core/node_modules/chalk/readme.md +341 -0
- package/node_modules/@langchain/textsplitters/node_modules/@langchain/core/node_modules/chalk/source/index.js +229 -0
- package/node_modules/@langchain/textsplitters/node_modules/@langchain/core/node_modules/chalk/source/templates.js +134 -0
- package/node_modules/@langchain/textsplitters/node_modules/@langchain/core/node_modules/chalk/source/util.js +39 -0
- package/node_modules/@langchain/textsplitters/node_modules/@langchain/core/node_modules/console-table-printer/LICENSE +21 -0
- package/node_modules/@langchain/textsplitters/node_modules/@langchain/core/node_modules/console-table-printer/README.md +192 -0
- package/node_modules/@langchain/textsplitters/node_modules/@langchain/core/node_modules/console-table-printer/dist/index.d.ts +4 -0
- package/node_modules/@langchain/textsplitters/node_modules/@langchain/core/node_modules/console-table-printer/dist/index.js +11 -0
- package/node_modules/@langchain/textsplitters/node_modules/@langchain/core/node_modules/console-table-printer/dist/src/console-table-printer.d.ts +14 -0
- package/node_modules/@langchain/textsplitters/node_modules/@langchain/core/node_modules/console-table-printer/dist/src/console-table-printer.js +36 -0
- package/node_modules/@langchain/textsplitters/node_modules/@langchain/core/node_modules/console-table-printer/dist/src/internalTable/input-converter.d.ts +6 -0
- package/node_modules/@langchain/textsplitters/node_modules/@langchain/core/node_modules/console-table-printer/dist/src/internalTable/input-converter.js +20 -0
- package/node_modules/@langchain/textsplitters/node_modules/@langchain/core/node_modules/console-table-printer/dist/src/internalTable/internal-table-printer.d.ts +6 -0
- package/node_modules/@langchain/textsplitters/node_modules/@langchain/core/node_modules/console-table-printer/dist/src/internalTable/internal-table-printer.js +142 -0
- package/node_modules/@langchain/textsplitters/node_modules/@langchain/core/node_modules/console-table-printer/dist/src/internalTable/internal-table.d.ts +31 -0
- package/node_modules/@langchain/textsplitters/node_modules/@langchain/core/node_modules/console-table-printer/dist/src/internalTable/internal-table.js +100 -0
- package/node_modules/@langchain/textsplitters/node_modules/@langchain/core/node_modules/console-table-printer/dist/src/internalTable/table-pre-processors.d.ts +3 -0
- package/node_modules/@langchain/textsplitters/node_modules/@langchain/core/node_modules/console-table-printer/dist/src/internalTable/table-pre-processors.js +50 -0
- package/node_modules/@langchain/textsplitters/node_modules/@langchain/core/node_modules/console-table-printer/dist/src/models/common.d.ts +14 -0
- package/node_modules/@langchain/textsplitters/node_modules/@langchain/core/node_modules/console-table-printer/dist/src/models/common.js +2 -0
- package/node_modules/@langchain/textsplitters/node_modules/@langchain/core/node_modules/console-table-printer/dist/src/models/external-table.d.ts +99 -0
- package/node_modules/@langchain/textsplitters/node_modules/@langchain/core/node_modules/console-table-printer/dist/src/models/external-table.js +2 -0
- package/node_modules/@langchain/textsplitters/node_modules/@langchain/core/node_modules/console-table-printer/dist/src/models/internal-table.d.ts +24 -0
- package/node_modules/@langchain/textsplitters/node_modules/@langchain/core/node_modules/console-table-printer/dist/src/models/internal-table.js +2 -0
- package/node_modules/@langchain/textsplitters/node_modules/@langchain/core/node_modules/console-table-printer/dist/src/utils/colored-console-line.d.ts +12 -0
- package/node_modules/@langchain/textsplitters/node_modules/@langchain/core/node_modules/console-table-printer/dist/src/utils/colored-console-line.js +31 -0
- package/node_modules/@langchain/textsplitters/node_modules/@langchain/core/node_modules/console-table-printer/dist/src/utils/console-utils.d.ts +3 -0
- package/node_modules/@langchain/textsplitters/node_modules/@langchain/core/node_modules/console-table-printer/dist/src/utils/console-utils.js +23 -0
- package/node_modules/@langchain/textsplitters/node_modules/@langchain/core/node_modules/console-table-printer/dist/src/utils/string-utils.d.ts +4 -0
- package/node_modules/@langchain/textsplitters/node_modules/@langchain/core/node_modules/console-table-printer/dist/src/utils/string-utils.js +68 -0
- package/node_modules/@langchain/textsplitters/node_modules/@langchain/core/node_modules/console-table-printer/dist/src/utils/table-constants.d.ts +11 -0
- package/node_modules/@langchain/textsplitters/node_modules/@langchain/core/node_modules/console-table-printer/dist/src/utils/table-constants.js +55 -0
- package/node_modules/@langchain/textsplitters/node_modules/@langchain/core/node_modules/console-table-printer/dist/src/utils/table-helpers.d.ts +29 -0
- package/node_modules/@langchain/textsplitters/node_modules/@langchain/core/node_modules/console-table-printer/dist/src/utils/table-helpers.js +101 -0
- package/node_modules/@langchain/textsplitters/node_modules/@langchain/core/node_modules/console-table-printer/package.json +50 -0
- package/node_modules/@langchain/textsplitters/node_modules/@langchain/core/node_modules/eventemitter3/LICENSE +21 -0
- package/node_modules/@langchain/textsplitters/node_modules/@langchain/core/node_modules/eventemitter3/README.md +94 -0
- package/node_modules/@langchain/textsplitters/node_modules/@langchain/core/node_modules/eventemitter3/index.d.ts +134 -0
- package/node_modules/@langchain/textsplitters/node_modules/@langchain/core/node_modules/eventemitter3/index.js +336 -0
- package/node_modules/@langchain/textsplitters/node_modules/@langchain/core/node_modules/eventemitter3/package.json +56 -0
- package/node_modules/@langchain/textsplitters/node_modules/@langchain/core/node_modules/eventemitter3/umd/eventemitter3.js +340 -0
- package/node_modules/@langchain/textsplitters/node_modules/@langchain/core/node_modules/eventemitter3/umd/eventemitter3.min.js +1 -0
- package/node_modules/@langchain/textsplitters/node_modules/@langchain/core/node_modules/eventemitter3/umd/eventemitter3.min.js.map +1 -0
- package/node_modules/@langchain/textsplitters/node_modules/@langchain/core/node_modules/has-flag/index.d.ts +39 -0
- package/node_modules/@langchain/textsplitters/node_modules/@langchain/core/node_modules/has-flag/index.js +8 -0
- package/node_modules/@langchain/textsplitters/node_modules/@langchain/core/node_modules/has-flag/license +9 -0
- package/node_modules/@langchain/textsplitters/node_modules/@langchain/core/node_modules/has-flag/package.json +46 -0
- package/node_modules/@langchain/textsplitters/node_modules/@langchain/core/node_modules/has-flag/readme.md +89 -0
- package/node_modules/@langchain/textsplitters/node_modules/@langchain/core/node_modules/p-finally/index.js +15 -0
- package/node_modules/@langchain/textsplitters/node_modules/@langchain/core/node_modules/p-finally/license +21 -0
- package/node_modules/@langchain/textsplitters/node_modules/@langchain/core/node_modules/p-finally/package.json +42 -0
- package/node_modules/@langchain/textsplitters/node_modules/@langchain/core/node_modules/p-finally/readme.md +47 -0
- package/node_modules/@langchain/textsplitters/node_modules/@langchain/core/node_modules/p-timeout/index.d.ts +72 -0
- package/node_modules/@langchain/textsplitters/node_modules/@langchain/core/node_modules/p-timeout/index.js +57 -0
- package/node_modules/@langchain/textsplitters/node_modules/@langchain/core/node_modules/p-timeout/license +9 -0
- package/node_modules/@langchain/textsplitters/node_modules/@langchain/core/node_modules/p-timeout/package.json +45 -0
- package/node_modules/@langchain/textsplitters/node_modules/@langchain/core/node_modules/p-timeout/readme.md +87 -0
- package/node_modules/@langchain/textsplitters/node_modules/@langchain/core/node_modules/retry/License +21 -0
- package/node_modules/@langchain/textsplitters/node_modules/@langchain/core/node_modules/retry/README.md +227 -0
- package/node_modules/@langchain/textsplitters/node_modules/@langchain/core/node_modules/retry/example/dns.js +31 -0
- package/node_modules/@langchain/textsplitters/node_modules/@langchain/core/node_modules/retry/example/stop.js +40 -0
- package/node_modules/@langchain/textsplitters/node_modules/@langchain/core/node_modules/retry/index.js +1 -0
- package/node_modules/@langchain/textsplitters/node_modules/@langchain/core/node_modules/retry/lib/retry.js +100 -0
- package/node_modules/@langchain/textsplitters/node_modules/@langchain/core/node_modules/retry/lib/retry_operation.js +162 -0
- package/node_modules/@langchain/textsplitters/node_modules/@langchain/core/node_modules/retry/package.json +36 -0
- package/node_modules/@langchain/textsplitters/node_modules/@langchain/core/node_modules/semver/LICENSE +15 -0
- package/node_modules/@langchain/textsplitters/node_modules/@langchain/core/node_modules/semver/README.md +664 -0
- package/node_modules/@langchain/textsplitters/node_modules/@langchain/core/node_modules/semver/bin/semver.js +191 -0
- package/node_modules/@langchain/textsplitters/node_modules/@langchain/core/node_modules/semver/classes/comparator.js +143 -0
- package/node_modules/@langchain/textsplitters/node_modules/@langchain/core/node_modules/semver/classes/index.js +7 -0
- package/node_modules/@langchain/textsplitters/node_modules/@langchain/core/node_modules/semver/classes/range.js +557 -0
- package/node_modules/@langchain/textsplitters/node_modules/@langchain/core/node_modules/semver/classes/semver.js +333 -0
- package/node_modules/@langchain/textsplitters/node_modules/@langchain/core/node_modules/semver/functions/clean.js +8 -0
- package/node_modules/@langchain/textsplitters/node_modules/@langchain/core/node_modules/semver/functions/cmp.js +54 -0
- package/node_modules/@langchain/textsplitters/node_modules/@langchain/core/node_modules/semver/functions/coerce.js +62 -0
- package/node_modules/@langchain/textsplitters/node_modules/@langchain/core/node_modules/semver/functions/compare-build.js +9 -0
- package/node_modules/@langchain/textsplitters/node_modules/@langchain/core/node_modules/semver/functions/compare-loose.js +5 -0
- package/node_modules/@langchain/textsplitters/node_modules/@langchain/core/node_modules/semver/functions/compare.js +7 -0
- package/node_modules/@langchain/textsplitters/node_modules/@langchain/core/node_modules/semver/functions/diff.js +60 -0
- package/node_modules/@langchain/textsplitters/node_modules/@langchain/core/node_modules/semver/functions/eq.js +5 -0
- package/node_modules/@langchain/textsplitters/node_modules/@langchain/core/node_modules/semver/functions/gt.js +5 -0
- package/node_modules/@langchain/textsplitters/node_modules/@langchain/core/node_modules/semver/functions/gte.js +5 -0
- package/node_modules/@langchain/textsplitters/node_modules/@langchain/core/node_modules/semver/functions/inc.js +21 -0
- package/node_modules/@langchain/textsplitters/node_modules/@langchain/core/node_modules/semver/functions/lt.js +5 -0
- package/node_modules/@langchain/textsplitters/node_modules/@langchain/core/node_modules/semver/functions/lte.js +5 -0
- package/node_modules/@langchain/textsplitters/node_modules/@langchain/core/node_modules/semver/functions/major.js +5 -0
- package/node_modules/@langchain/textsplitters/node_modules/@langchain/core/node_modules/semver/functions/minor.js +5 -0
- package/node_modules/@langchain/textsplitters/node_modules/@langchain/core/node_modules/semver/functions/neq.js +5 -0
- package/node_modules/@langchain/textsplitters/node_modules/@langchain/core/node_modules/semver/functions/parse.js +18 -0
- package/node_modules/@langchain/textsplitters/node_modules/@langchain/core/node_modules/semver/functions/patch.js +5 -0
- package/node_modules/@langchain/textsplitters/node_modules/@langchain/core/node_modules/semver/functions/prerelease.js +8 -0
- package/node_modules/@langchain/textsplitters/node_modules/@langchain/core/node_modules/semver/functions/rcompare.js +5 -0
- package/node_modules/@langchain/textsplitters/node_modules/@langchain/core/node_modules/semver/functions/rsort.js +5 -0
- package/node_modules/@langchain/textsplitters/node_modules/@langchain/core/node_modules/semver/functions/satisfies.js +12 -0
- package/node_modules/@langchain/textsplitters/node_modules/@langchain/core/node_modules/semver/functions/sort.js +5 -0
- package/node_modules/@langchain/textsplitters/node_modules/@langchain/core/node_modules/semver/functions/valid.js +8 -0
- package/node_modules/@langchain/textsplitters/node_modules/@langchain/core/node_modules/semver/index.js +91 -0
- package/node_modules/@langchain/textsplitters/node_modules/@langchain/core/node_modules/semver/internal/constants.js +37 -0
- package/node_modules/@langchain/textsplitters/node_modules/@langchain/core/node_modules/semver/internal/debug.js +11 -0
- package/node_modules/@langchain/textsplitters/node_modules/@langchain/core/node_modules/semver/internal/identifiers.js +29 -0
- package/node_modules/@langchain/textsplitters/node_modules/@langchain/core/node_modules/semver/internal/lrucache.js +42 -0
- package/node_modules/@langchain/textsplitters/node_modules/@langchain/core/node_modules/semver/internal/parse-options.js +17 -0
- package/node_modules/@langchain/textsplitters/node_modules/@langchain/core/node_modules/semver/internal/re.js +223 -0
- package/node_modules/@langchain/textsplitters/node_modules/@langchain/core/node_modules/semver/package.json +78 -0
- package/node_modules/@langchain/textsplitters/node_modules/@langchain/core/node_modules/semver/preload.js +4 -0
- package/node_modules/@langchain/textsplitters/node_modules/@langchain/core/node_modules/semver/range.bnf +16 -0
- package/node_modules/@langchain/textsplitters/node_modules/@langchain/core/node_modules/semver/ranges/gtr.js +6 -0
- package/node_modules/@langchain/textsplitters/node_modules/@langchain/core/node_modules/semver/ranges/intersects.js +9 -0
- package/node_modules/@langchain/textsplitters/node_modules/@langchain/core/node_modules/semver/ranges/ltr.js +6 -0
- package/node_modules/@langchain/textsplitters/node_modules/@langchain/core/node_modules/semver/ranges/max-satisfying.js +27 -0
- package/node_modules/@langchain/textsplitters/node_modules/@langchain/core/node_modules/semver/ranges/min-satisfying.js +26 -0
- package/node_modules/@langchain/textsplitters/node_modules/@langchain/core/node_modules/semver/ranges/min-version.js +63 -0
- package/node_modules/@langchain/textsplitters/node_modules/@langchain/core/node_modules/semver/ranges/outside.js +82 -0
- package/node_modules/@langchain/textsplitters/node_modules/@langchain/core/node_modules/semver/ranges/simplify.js +49 -0
- package/node_modules/@langchain/textsplitters/node_modules/@langchain/core/node_modules/semver/ranges/subset.js +249 -0
- package/node_modules/@langchain/textsplitters/node_modules/@langchain/core/node_modules/semver/ranges/to-comparators.js +10 -0
- package/node_modules/@langchain/textsplitters/node_modules/@langchain/core/node_modules/semver/ranges/valid.js +13 -0
- package/node_modules/@langchain/textsplitters/node_modules/@langchain/core/node_modules/simple-wcswidth/LICENSE +21 -0
- package/node_modules/@langchain/textsplitters/node_modules/@langchain/core/node_modules/simple-wcswidth/README.md +89 -0
- package/node_modules/@langchain/textsplitters/node_modules/@langchain/core/node_modules/simple-wcswidth/dist/index.js +10 -0
- package/node_modules/@langchain/textsplitters/node_modules/@langchain/core/node_modules/simple-wcswidth/dist/src/binary-search.js +24 -0
- package/node_modules/@langchain/textsplitters/node_modules/@langchain/core/node_modules/simple-wcswidth/dist/src/models.js +2 -0
- package/node_modules/@langchain/textsplitters/node_modules/@langchain/core/node_modules/simple-wcswidth/dist/src/non-spacing-chars.js +149 -0
- package/node_modules/@langchain/textsplitters/node_modules/@langchain/core/node_modules/simple-wcswidth/dist/src/wcswidth.js +20 -0
- package/node_modules/@langchain/textsplitters/node_modules/@langchain/core/node_modules/simple-wcswidth/dist/src/wcwidth.js +67 -0
- package/node_modules/@langchain/textsplitters/node_modules/@langchain/core/node_modules/simple-wcswidth/index.d.ts +20 -0
- package/node_modules/@langchain/textsplitters/node_modules/@langchain/core/node_modules/simple-wcswidth/package.json +43 -0
- package/package.json +1 -1
- /package/node_modules/{@cfworker → @langchain/core/node_modules/@cfworker}/json-schema/README.md +0 -0
- /package/node_modules/{@cfworker → @langchain/core/node_modules/@cfworker}/json-schema/dist/commonjs/deep-compare-strict.d.ts +0 -0
- /package/node_modules/{@cfworker → @langchain/core/node_modules/@cfworker}/json-schema/dist/commonjs/deep-compare-strict.js +0 -0
- /package/node_modules/{@cfworker → @langchain/core/node_modules/@cfworker}/json-schema/dist/commonjs/dereference.d.ts +0 -0
- /package/node_modules/{@cfworker → @langchain/core/node_modules/@cfworker}/json-schema/dist/commonjs/dereference.js +0 -0
- /package/node_modules/{@cfworker → @langchain/core/node_modules/@cfworker}/json-schema/dist/commonjs/format.d.ts +0 -0
- /package/node_modules/{@cfworker → @langchain/core/node_modules/@cfworker}/json-schema/dist/commonjs/format.js +0 -0
- /package/node_modules/{@cfworker → @langchain/core/node_modules/@cfworker}/json-schema/dist/commonjs/index.d.ts +0 -0
- /package/node_modules/{@cfworker → @langchain/core/node_modules/@cfworker}/json-schema/dist/commonjs/index.js +0 -0
- /package/node_modules/{@cfworker → @langchain/core/node_modules/@cfworker}/json-schema/dist/commonjs/package.json +0 -0
- /package/node_modules/{@cfworker → @langchain/core/node_modules/@cfworker}/json-schema/dist/commonjs/pointer.d.ts +0 -0
- /package/node_modules/{@cfworker → @langchain/core/node_modules/@cfworker}/json-schema/dist/commonjs/pointer.js +0 -0
- /package/node_modules/{@cfworker → @langchain/core/node_modules/@cfworker}/json-schema/dist/commonjs/types.d.ts +0 -0
- /package/node_modules/{@cfworker → @langchain/core/node_modules/@cfworker}/json-schema/dist/commonjs/types.js +0 -0
- /package/node_modules/{@cfworker → @langchain/core/node_modules/@cfworker}/json-schema/dist/commonjs/ucs2-length.d.ts +0 -0
- /package/node_modules/{@cfworker → @langchain/core/node_modules/@cfworker}/json-schema/dist/commonjs/ucs2-length.js +0 -0
- /package/node_modules/{@cfworker → @langchain/core/node_modules/@cfworker}/json-schema/dist/commonjs/validate.d.ts +0 -0
- /package/node_modules/{@cfworker → @langchain/core/node_modules/@cfworker}/json-schema/dist/commonjs/validate.js +0 -0
- /package/node_modules/{@cfworker → @langchain/core/node_modules/@cfworker}/json-schema/dist/commonjs/validator.d.ts +0 -0
- /package/node_modules/{@cfworker → @langchain/core/node_modules/@cfworker}/json-schema/dist/commonjs/validator.js +0 -0
- /package/node_modules/{@cfworker → @langchain/core/node_modules/@cfworker}/json-schema/dist/esm/deep-compare-strict.d.ts +0 -0
- /package/node_modules/{@cfworker → @langchain/core/node_modules/@cfworker}/json-schema/dist/esm/deep-compare-strict.js +0 -0
- /package/node_modules/{@cfworker → @langchain/core/node_modules/@cfworker}/json-schema/dist/esm/dereference.d.ts +0 -0
- /package/node_modules/{@cfworker → @langchain/core/node_modules/@cfworker}/json-schema/dist/esm/dereference.js +0 -0
- /package/node_modules/{@cfworker → @langchain/core/node_modules/@cfworker}/json-schema/dist/esm/format.d.ts +0 -0
- /package/node_modules/{@cfworker → @langchain/core/node_modules/@cfworker}/json-schema/dist/esm/format.js +0 -0
- /package/node_modules/{@cfworker → @langchain/core/node_modules/@cfworker}/json-schema/dist/esm/index.d.ts +0 -0
- /package/node_modules/{@cfworker → @langchain/core/node_modules/@cfworker}/json-schema/dist/esm/index.js +0 -0
- /package/node_modules/{@cfworker → @langchain/core/node_modules/@cfworker}/json-schema/dist/esm/package.json +0 -0
- /package/node_modules/{@cfworker → @langchain/core/node_modules/@cfworker}/json-schema/dist/esm/pointer.d.ts +0 -0
- /package/node_modules/{@cfworker → @langchain/core/node_modules/@cfworker}/json-schema/dist/esm/pointer.js +0 -0
- /package/node_modules/{@cfworker → @langchain/core/node_modules/@cfworker}/json-schema/dist/esm/types.d.ts +0 -0
- /package/node_modules/{@cfworker → @langchain/core/node_modules/@cfworker}/json-schema/dist/esm/types.js +0 -0
- /package/node_modules/{@cfworker → @langchain/core/node_modules/@cfworker}/json-schema/dist/esm/ucs2-length.d.ts +0 -0
- /package/node_modules/{@cfworker → @langchain/core/node_modules/@cfworker}/json-schema/dist/esm/ucs2-length.js +0 -0
- /package/node_modules/{@cfworker → @langchain/core/node_modules/@cfworker}/json-schema/dist/esm/validate.d.ts +0 -0
- /package/node_modules/{@cfworker → @langchain/core/node_modules/@cfworker}/json-schema/dist/esm/validate.js +0 -0
- /package/node_modules/{@cfworker → @langchain/core/node_modules/@cfworker}/json-schema/dist/esm/validator.d.ts +0 -0
- /package/node_modules/{@cfworker → @langchain/core/node_modules/@cfworker}/json-schema/dist/esm/validator.js +0 -0
- /package/node_modules/{@cfworker → @langchain/core/node_modules/@cfworker}/json-schema/package.json +0 -0
- /package/node_modules/{@cfworker → @langchain/core/node_modules/@cfworker}/json-schema/src/deep-compare-strict.d.ts +0 -0
- /package/node_modules/{@cfworker → @langchain/core/node_modules/@cfworker}/json-schema/src/deep-compare-strict.ts +0 -0
- /package/node_modules/{@cfworker → @langchain/core/node_modules/@cfworker}/json-schema/src/dereference.d.ts +0 -0
- /package/node_modules/{@cfworker → @langchain/core/node_modules/@cfworker}/json-schema/src/dereference.ts +0 -0
- /package/node_modules/{@cfworker → @langchain/core/node_modules/@cfworker}/json-schema/src/format.d.ts +0 -0
- /package/node_modules/{@cfworker → @langchain/core/node_modules/@cfworker}/json-schema/src/format.ts +0 -0
- /package/node_modules/{@cfworker → @langchain/core/node_modules/@cfworker}/json-schema/src/index.d.ts +0 -0
- /package/node_modules/{@cfworker → @langchain/core/node_modules/@cfworker}/json-schema/src/index.ts +0 -0
- /package/node_modules/{@cfworker → @langchain/core/node_modules/@cfworker}/json-schema/src/pointer.d.ts +0 -0
- /package/node_modules/{@cfworker → @langchain/core/node_modules/@cfworker}/json-schema/src/pointer.ts +0 -0
- /package/node_modules/{@cfworker → @langchain/core/node_modules/@cfworker}/json-schema/src/types.d.ts +0 -0
- /package/node_modules/{@cfworker → @langchain/core/node_modules/@cfworker}/json-schema/src/types.ts +0 -0
- /package/node_modules/{@cfworker → @langchain/core/node_modules/@cfworker}/json-schema/src/ucs2-length.d.ts +0 -0
- /package/node_modules/{@cfworker → @langchain/core/node_modules/@cfworker}/json-schema/src/ucs2-length.ts +0 -0
- /package/node_modules/{@cfworker → @langchain/core/node_modules/@cfworker}/json-schema/src/validate.d.ts +0 -0
- /package/node_modules/{@cfworker → @langchain/core/node_modules/@cfworker}/json-schema/src/validate.ts +0 -0
- /package/node_modules/{@cfworker → @langchain/core/node_modules/@cfworker}/json-schema/src/validator.d.ts +0 -0
- /package/node_modules/{@cfworker → @langchain/core/node_modules/@cfworker}/json-schema/src/validator.ts +0 -0
|
@@ -0,0 +1,149 @@
|
|
|
1
|
+
"use strict";
|
|
2
|
+
Object.defineProperty(exports, "__esModule", { value: true });
|
|
3
|
+
/* sorted list of non-overlapping intervals of non-spacing characters */
|
|
4
|
+
/* generated by "uniset +cat=Me +cat=Mn +cat=Cf -00AD +1160-11FF +200B c" */
|
|
5
|
+
const combining = [
|
|
6
|
+
{ first: 0x0300, last: 0x036f },
|
|
7
|
+
{ first: 0x0483, last: 0x0486 },
|
|
8
|
+
{ first: 0x0488, last: 0x0489 },
|
|
9
|
+
{ first: 0x0591, last: 0x05bd },
|
|
10
|
+
{ first: 0x05bf, last: 0x05bf },
|
|
11
|
+
{ first: 0x05c1, last: 0x05c2 },
|
|
12
|
+
{ first: 0x05c4, last: 0x05c5 },
|
|
13
|
+
{ first: 0x05c7, last: 0x05c7 },
|
|
14
|
+
{ first: 0x0600, last: 0x0603 },
|
|
15
|
+
{ first: 0x0610, last: 0x0615 },
|
|
16
|
+
{ first: 0x064b, last: 0x065e },
|
|
17
|
+
{ first: 0x0670, last: 0x0670 },
|
|
18
|
+
{ first: 0x06d6, last: 0x06e4 },
|
|
19
|
+
{ first: 0x06e7, last: 0x06e8 },
|
|
20
|
+
{ first: 0x06ea, last: 0x06ed },
|
|
21
|
+
{ first: 0x070f, last: 0x070f },
|
|
22
|
+
{ first: 0x0711, last: 0x0711 },
|
|
23
|
+
{ first: 0x0730, last: 0x074a },
|
|
24
|
+
{ first: 0x07a6, last: 0x07b0 },
|
|
25
|
+
{ first: 0x07eb, last: 0x07f3 },
|
|
26
|
+
{ first: 0x0901, last: 0x0902 },
|
|
27
|
+
{ first: 0x093c, last: 0x093c },
|
|
28
|
+
{ first: 0x0941, last: 0x0948 },
|
|
29
|
+
{ first: 0x094d, last: 0x094d },
|
|
30
|
+
{ first: 0x0951, last: 0x0954 },
|
|
31
|
+
{ first: 0x0962, last: 0x0963 },
|
|
32
|
+
{ first: 0x0981, last: 0x0981 },
|
|
33
|
+
{ first: 0x09bc, last: 0x09bc },
|
|
34
|
+
{ first: 0x09c1, last: 0x09c4 },
|
|
35
|
+
{ first: 0x09cd, last: 0x09cd },
|
|
36
|
+
{ first: 0x09e2, last: 0x09e3 },
|
|
37
|
+
{ first: 0x0a01, last: 0x0a02 },
|
|
38
|
+
{ first: 0x0a3c, last: 0x0a3c },
|
|
39
|
+
{ first: 0x0a41, last: 0x0a42 },
|
|
40
|
+
{ first: 0x0a47, last: 0x0a48 },
|
|
41
|
+
{ first: 0x0a4b, last: 0x0a4d },
|
|
42
|
+
{ first: 0x0a70, last: 0x0a71 },
|
|
43
|
+
{ first: 0x0a81, last: 0x0a82 },
|
|
44
|
+
{ first: 0x0abc, last: 0x0abc },
|
|
45
|
+
{ first: 0x0ac1, last: 0x0ac5 },
|
|
46
|
+
{ first: 0x0ac7, last: 0x0ac8 },
|
|
47
|
+
{ first: 0x0acd, last: 0x0acd },
|
|
48
|
+
{ first: 0x0ae2, last: 0x0ae3 },
|
|
49
|
+
{ first: 0x0b01, last: 0x0b01 },
|
|
50
|
+
{ first: 0x0b3c, last: 0x0b3c },
|
|
51
|
+
{ first: 0x0b3f, last: 0x0b3f },
|
|
52
|
+
{ first: 0x0b41, last: 0x0b43 },
|
|
53
|
+
{ first: 0x0b4d, last: 0x0b4d },
|
|
54
|
+
{ first: 0x0b56, last: 0x0b56 },
|
|
55
|
+
{ first: 0x0b82, last: 0x0b82 },
|
|
56
|
+
{ first: 0x0bc0, last: 0x0bc0 },
|
|
57
|
+
{ first: 0x0bcd, last: 0x0bcd },
|
|
58
|
+
{ first: 0x0c3e, last: 0x0c40 },
|
|
59
|
+
{ first: 0x0c46, last: 0x0c48 },
|
|
60
|
+
{ first: 0x0c4a, last: 0x0c4d },
|
|
61
|
+
{ first: 0x0c55, last: 0x0c56 },
|
|
62
|
+
{ first: 0x0cbc, last: 0x0cbc },
|
|
63
|
+
{ first: 0x0cbf, last: 0x0cbf },
|
|
64
|
+
{ first: 0x0cc6, last: 0x0cc6 },
|
|
65
|
+
{ first: 0x0ccc, last: 0x0ccd },
|
|
66
|
+
{ first: 0x0ce2, last: 0x0ce3 },
|
|
67
|
+
{ first: 0x0d41, last: 0x0d43 },
|
|
68
|
+
{ first: 0x0d4d, last: 0x0d4d },
|
|
69
|
+
{ first: 0x0dca, last: 0x0dca },
|
|
70
|
+
{ first: 0x0dd2, last: 0x0dd4 },
|
|
71
|
+
{ first: 0x0dd6, last: 0x0dd6 },
|
|
72
|
+
{ first: 0x0e31, last: 0x0e31 },
|
|
73
|
+
{ first: 0x0e34, last: 0x0e3a },
|
|
74
|
+
{ first: 0x0e47, last: 0x0e4e },
|
|
75
|
+
{ first: 0x0eb1, last: 0x0eb1 },
|
|
76
|
+
{ first: 0x0eb4, last: 0x0eb9 },
|
|
77
|
+
{ first: 0x0ebb, last: 0x0ebc },
|
|
78
|
+
{ first: 0x0ec8, last: 0x0ecd },
|
|
79
|
+
{ first: 0x0f18, last: 0x0f19 },
|
|
80
|
+
{ first: 0x0f35, last: 0x0f35 },
|
|
81
|
+
{ first: 0x0f37, last: 0x0f37 },
|
|
82
|
+
{ first: 0x0f39, last: 0x0f39 },
|
|
83
|
+
{ first: 0x0f71, last: 0x0f7e },
|
|
84
|
+
{ first: 0x0f80, last: 0x0f84 },
|
|
85
|
+
{ first: 0x0f86, last: 0x0f87 },
|
|
86
|
+
{ first: 0x0f90, last: 0x0f97 },
|
|
87
|
+
{ first: 0x0f99, last: 0x0fbc },
|
|
88
|
+
{ first: 0x0fc6, last: 0x0fc6 },
|
|
89
|
+
{ first: 0x102d, last: 0x1030 },
|
|
90
|
+
{ first: 0x1032, last: 0x1032 },
|
|
91
|
+
{ first: 0x1036, last: 0x1037 },
|
|
92
|
+
{ first: 0x1039, last: 0x1039 },
|
|
93
|
+
{ first: 0x1058, last: 0x1059 },
|
|
94
|
+
{ first: 0x1160, last: 0x11ff },
|
|
95
|
+
{ first: 0x135f, last: 0x135f },
|
|
96
|
+
{ first: 0x1712, last: 0x1714 },
|
|
97
|
+
{ first: 0x1732, last: 0x1734 },
|
|
98
|
+
{ first: 0x1752, last: 0x1753 },
|
|
99
|
+
{ first: 0x1772, last: 0x1773 },
|
|
100
|
+
{ first: 0x17b4, last: 0x17b5 },
|
|
101
|
+
{ first: 0x17b7, last: 0x17bd },
|
|
102
|
+
{ first: 0x17c6, last: 0x17c6 },
|
|
103
|
+
{ first: 0x17c9, last: 0x17d3 },
|
|
104
|
+
{ first: 0x17dd, last: 0x17dd },
|
|
105
|
+
{ first: 0x180b, last: 0x180d },
|
|
106
|
+
{ first: 0x18a9, last: 0x18a9 },
|
|
107
|
+
{ first: 0x1920, last: 0x1922 },
|
|
108
|
+
{ first: 0x1927, last: 0x1928 },
|
|
109
|
+
{ first: 0x1932, last: 0x1932 },
|
|
110
|
+
{ first: 0x1939, last: 0x193b },
|
|
111
|
+
{ first: 0x1a17, last: 0x1a18 },
|
|
112
|
+
{ first: 0x1b00, last: 0x1b03 },
|
|
113
|
+
{ first: 0x1b34, last: 0x1b34 },
|
|
114
|
+
{ first: 0x1b36, last: 0x1b3a },
|
|
115
|
+
{ first: 0x1b3c, last: 0x1b3c },
|
|
116
|
+
{ first: 0x1b42, last: 0x1b42 },
|
|
117
|
+
{ first: 0x1b6b, last: 0x1b73 },
|
|
118
|
+
{ first: 0x1dc0, last: 0x1dca },
|
|
119
|
+
{ first: 0x1dfe, last: 0x1dff },
|
|
120
|
+
{ first: 0x200b, last: 0x200f },
|
|
121
|
+
{ first: 0x202a, last: 0x202e },
|
|
122
|
+
{ first: 0x2060, last: 0x2063 },
|
|
123
|
+
{ first: 0x206a, last: 0x206f },
|
|
124
|
+
{ first: 0x20d0, last: 0x20ef },
|
|
125
|
+
{ first: 0x302a, last: 0x302f },
|
|
126
|
+
{ first: 0x3099, last: 0x309a },
|
|
127
|
+
{ first: 0xa806, last: 0xa806 },
|
|
128
|
+
{ first: 0xa80b, last: 0xa80b },
|
|
129
|
+
{ first: 0xa825, last: 0xa826 },
|
|
130
|
+
{ first: 0xfb1e, last: 0xfb1e },
|
|
131
|
+
{ first: 0xfe00, last: 0xfe0f },
|
|
132
|
+
{ first: 0xfe20, last: 0xfe23 },
|
|
133
|
+
{ first: 0xfeff, last: 0xfeff },
|
|
134
|
+
{ first: 0xfff9, last: 0xfffb },
|
|
135
|
+
{ first: 0x10a01, last: 0x10a03 },
|
|
136
|
+
{ first: 0x10a05, last: 0x10a06 },
|
|
137
|
+
{ first: 0x10a0c, last: 0x10a0f },
|
|
138
|
+
{ first: 0x10a38, last: 0x10a3a },
|
|
139
|
+
{ first: 0x10a3f, last: 0x10a3f },
|
|
140
|
+
{ first: 0x1d167, last: 0x1d169 },
|
|
141
|
+
{ first: 0x1d173, last: 0x1d182 },
|
|
142
|
+
{ first: 0x1d185, last: 0x1d18b },
|
|
143
|
+
{ first: 0x1d1aa, last: 0x1d1ad },
|
|
144
|
+
{ first: 0x1d242, last: 0x1d244 },
|
|
145
|
+
{ first: 0xe0001, last: 0xe0001 },
|
|
146
|
+
{ first: 0xe0020, last: 0xe007f },
|
|
147
|
+
{ first: 0xe0100, last: 0xe01ef },
|
|
148
|
+
];
|
|
149
|
+
exports.default = combining;
|
|
@@ -0,0 +1,20 @@
|
|
|
1
|
+
"use strict";
|
|
2
|
+
var __importDefault = (this && this.__importDefault) || function (mod) {
|
|
3
|
+
return (mod && mod.__esModule) ? mod : { "default": mod };
|
|
4
|
+
};
|
|
5
|
+
Object.defineProperty(exports, "__esModule", { value: true });
|
|
6
|
+
const wcwidth_1 = __importDefault(require("./wcwidth"));
|
|
7
|
+
const mk_wcswidth = (pwcs) => {
|
|
8
|
+
let width = 0;
|
|
9
|
+
// eslint-disable-next-line no-plusplus
|
|
10
|
+
for (let i = 0; i < pwcs.length; i++) {
|
|
11
|
+
const charCode = pwcs.charCodeAt(i);
|
|
12
|
+
const w = (0, wcwidth_1.default)(charCode);
|
|
13
|
+
if (w < 0) {
|
|
14
|
+
return -1;
|
|
15
|
+
}
|
|
16
|
+
width += w;
|
|
17
|
+
}
|
|
18
|
+
return width;
|
|
19
|
+
};
|
|
20
|
+
exports.default = mk_wcswidth;
|
|
@@ -0,0 +1,67 @@
|
|
|
1
|
+
"use strict";
|
|
2
|
+
var __importDefault = (this && this.__importDefault) || function (mod) {
|
|
3
|
+
return (mod && mod.__esModule) ? mod : { "default": mod };
|
|
4
|
+
};
|
|
5
|
+
Object.defineProperty(exports, "__esModule", { value: true });
|
|
6
|
+
const non_spacing_chars_1 = __importDefault(require("./non-spacing-chars"));
|
|
7
|
+
const binary_search_1 = __importDefault(require("./binary-search"));
|
|
8
|
+
/* The following two functions define the column width of an ISO 10646
|
|
9
|
+
* character as follows:
|
|
10
|
+
*
|
|
11
|
+
* - The null character (U+0000) has a column width of 0.
|
|
12
|
+
*
|
|
13
|
+
* - Other C0/C1 control characters and DEL will lead to a return
|
|
14
|
+
* value of -1.
|
|
15
|
+
*
|
|
16
|
+
* - Non-spacing and enclosing combining characters (general
|
|
17
|
+
* category code Mn or Me in the Unicode database) have a
|
|
18
|
+
* column width of 0.
|
|
19
|
+
*
|
|
20
|
+
* - SOFT HYPHEN (U+00AD) has a column width of 1.
|
|
21
|
+
*
|
|
22
|
+
* - Other format characters (general category code Cf in the Unicode
|
|
23
|
+
* database) and ZERO WIDTH SPACE (U+200B) have a column width of 0.
|
|
24
|
+
*
|
|
25
|
+
* - Hangul Jamo medial vowels and final consonants (U+1160-U+11FF)
|
|
26
|
+
* have a column width of 0.
|
|
27
|
+
*
|
|
28
|
+
* - Spacing characters in the East Asian Wide (W) or East Asian
|
|
29
|
+
* Full-width (F) category as defined in Unicode Technical
|
|
30
|
+
* Report #11 have a column width of 2.
|
|
31
|
+
*
|
|
32
|
+
* - All remaining characters (including all printable
|
|
33
|
+
* ISO 8859-1 and WGL4 characters, Unicode control characters,
|
|
34
|
+
* etc.) have a column width of 1.
|
|
35
|
+
*
|
|
36
|
+
* This implementation assumes that wchar_t characters are encoded
|
|
37
|
+
* in ISO 10646.
|
|
38
|
+
*/
|
|
39
|
+
const mk_wcwidth = (ucs) => {
|
|
40
|
+
/* test for 8-bit control characters */
|
|
41
|
+
if (ucs === 0) {
|
|
42
|
+
return 0;
|
|
43
|
+
}
|
|
44
|
+
if (ucs < 32 || (ucs >= 0x7f && ucs < 0xa0)) {
|
|
45
|
+
return -1;
|
|
46
|
+
}
|
|
47
|
+
/* binary search in table of non-spacing characters */
|
|
48
|
+
if ((0, binary_search_1.default)(ucs, non_spacing_chars_1.default, non_spacing_chars_1.default.length - 1)) {
|
|
49
|
+
return 0;
|
|
50
|
+
}
|
|
51
|
+
/* if we arrive here, ucs is not a combining or C0/C1 control character */
|
|
52
|
+
return (1 +
|
|
53
|
+
Number(ucs >= 0x1100 &&
|
|
54
|
+
(ucs <= 0x115f /* Hangul Jamo init. consonants */ ||
|
|
55
|
+
ucs === 0x2329 ||
|
|
56
|
+
ucs === 0x232a ||
|
|
57
|
+
(ucs >= 0x2e80 && ucs <= 0xa4cf && ucs !== 0x303f) /* CJK ... Yi */ ||
|
|
58
|
+
(ucs >= 0xac00 && ucs <= 0xd7a3) /* Hangul Syllables */ ||
|
|
59
|
+
(ucs >= 0xf900 && ucs <= 0xfaff) /* CJK Compatibility Ideographs */ ||
|
|
60
|
+
(ucs >= 0xfe10 && ucs <= 0xfe19) /* Vertical forms */ ||
|
|
61
|
+
(ucs >= 0xfe30 && ucs <= 0xfe6f) /* CJK Compatibility Forms */ ||
|
|
62
|
+
(ucs >= 0xff00 && ucs <= 0xff60) /* Fullwidth Forms */ ||
|
|
63
|
+
(ucs >= 0xffe0 && ucs <= 0xffe6) ||
|
|
64
|
+
(ucs >= 0x20000 && ucs <= 0x2fffd) ||
|
|
65
|
+
(ucs >= 0x30000 && ucs <= 0x3fffd))));
|
|
66
|
+
};
|
|
67
|
+
exports.default = mk_wcwidth;
|
|
@@ -0,0 +1,20 @@
|
|
|
1
|
+
/**
|
|
2
|
+
* Returns the width of a single character in terminal columns.
|
|
3
|
+
* @param ucs - The Unicode code point of the character
|
|
4
|
+
* @returns The width of the character in terminal columns:
|
|
5
|
+
* - 0 for null character
|
|
6
|
+
* - -1 for control characters
|
|
7
|
+
* - 0 for non-spacing characters
|
|
8
|
+
* - 1 for normal characters
|
|
9
|
+
* - 2 for wide characters (East Asian)
|
|
10
|
+
*/
|
|
11
|
+
declare function wcwidth(ucs: number): number;
|
|
12
|
+
|
|
13
|
+
/**
|
|
14
|
+
* Returns the width of a string in terminal columns.
|
|
15
|
+
* @param pwcs - The string to measure
|
|
16
|
+
* @returns The width of the string in terminal columns, or -1 if the string contains control characters
|
|
17
|
+
*/
|
|
18
|
+
declare function wcswidth(pwcs: string): number;
|
|
19
|
+
|
|
20
|
+
export { wcwidth, wcswidth };
|
|
@@ -0,0 +1,43 @@
|
|
|
1
|
+
{
|
|
2
|
+
"name": "simple-wcswidth",
|
|
3
|
+
"version": "1.1.2",
|
|
4
|
+
"description": "Simplified JS/TS implementation of wcswidth() written by Markus Kuhn in C",
|
|
5
|
+
"main": "dist/index.js",
|
|
6
|
+
"types": "index.d.ts",
|
|
7
|
+
"repository": "git@github.com:console-table-printer/simple-wcswidth.git",
|
|
8
|
+
"author": "Nahiyan Kamal <noyanayihan@gmail.com>",
|
|
9
|
+
"license": "MIT",
|
|
10
|
+
"scripts": {
|
|
11
|
+
"setup": "yarn",
|
|
12
|
+
"build": "tsc",
|
|
13
|
+
"format": "prettier --write \"**/*.{json,ts,tsx,yml,js,jsx}\"",
|
|
14
|
+
"test": "jest --config jestconfig.json",
|
|
15
|
+
"lint": "eslint ."
|
|
16
|
+
},
|
|
17
|
+
"keywords": [
|
|
18
|
+
"wcwidth",
|
|
19
|
+
"wcswidth",
|
|
20
|
+
"console-width"
|
|
21
|
+
],
|
|
22
|
+
"files": [
|
|
23
|
+
"dist",
|
|
24
|
+
"index.d.ts"
|
|
25
|
+
],
|
|
26
|
+
"devDependencies": {
|
|
27
|
+
"@eslint/js": "^9.29.0",
|
|
28
|
+
"@semantic-release/changelog": "^6.0.3",
|
|
29
|
+
"@semantic-release/git": "^10.0.1",
|
|
30
|
+
"@types/jest": "^30.0.0",
|
|
31
|
+
"eslint": "^9.29.0",
|
|
32
|
+
"eslint-config-prettier": "^10.1.5",
|
|
33
|
+
"eslint-plugin-prettier": "^5.5.1",
|
|
34
|
+
"husky": "^9.1.7",
|
|
35
|
+
"jest": "^30.0.3",
|
|
36
|
+
"prettier": "^3.6.1",
|
|
37
|
+
"pretty-quick": "^4.2.2",
|
|
38
|
+
"semantic-release": "^24.2.5",
|
|
39
|
+
"ts-jest": "^29.4.0",
|
|
40
|
+
"typescript": "^5.8.3",
|
|
41
|
+
"typescript-eslint": "^8.35.0"
|
|
42
|
+
}
|
|
43
|
+
}
|
package/package.json
CHANGED
/package/node_modules/{@cfworker → @langchain/core/node_modules/@cfworker}/json-schema/README.md
RENAMED
|
File without changes
|
|
File without changes
|
|
File without changes
|
|
File without changes
|
|
File without changes
|
|
File without changes
|
|
File without changes
|
|
File without changes
|
|
File without changes
|
|
File without changes
|
|
File without changes
|
|
File without changes
|
|
File without changes
|
|
File without changes
|
|
File without changes
|
|
File without changes
|
|
File without changes
|
|
File without changes
|
|
File without changes
|
|
File without changes
|
|
File without changes
|
|
File without changes
|
|
File without changes
|
|
File without changes
|
|
File without changes
|
|
File without changes
|
|
File without changes
|
|
File without changes
|
|
File without changes
|
|
File without changes
|
|
File without changes
|
|
File without changes
|
|
File without changes
|
|
File without changes
|
|
File without changes
|
|
File without changes
|
|
File without changes
|
|
File without changes
|
|
File without changes
|
/package/node_modules/{@cfworker → @langchain/core/node_modules/@cfworker}/json-schema/package.json
RENAMED
|
File without changes
|
|
File without changes
|
|
File without changes
|
|
File without changes
|
|
File without changes
|
|
File without changes
|
/package/node_modules/{@cfworker → @langchain/core/node_modules/@cfworker}/json-schema/src/format.ts
RENAMED
|
File without changes
|
|
File without changes
|
/package/node_modules/{@cfworker → @langchain/core/node_modules/@cfworker}/json-schema/src/index.ts
RENAMED
|
File without changes
|
|
File without changes
|
|
File without changes
|
|
File without changes
|
/package/node_modules/{@cfworker → @langchain/core/node_modules/@cfworker}/json-schema/src/types.ts
RENAMED
|
File without changes
|
|
File without changes
|
|
File without changes
|
|
File without changes
|
|
File without changes
|
|
File without changes
|
|
File without changes
|