@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,63 @@
|
|
|
1
|
+
'use strict'
|
|
2
|
+
|
|
3
|
+
const SemVer = require('../classes/semver')
|
|
4
|
+
const Range = require('../classes/range')
|
|
5
|
+
const gt = require('../functions/gt')
|
|
6
|
+
|
|
7
|
+
const minVersion = (range, loose) => {
|
|
8
|
+
range = new Range(range, loose)
|
|
9
|
+
|
|
10
|
+
let minver = new SemVer('0.0.0')
|
|
11
|
+
if (range.test(minver)) {
|
|
12
|
+
return minver
|
|
13
|
+
}
|
|
14
|
+
|
|
15
|
+
minver = new SemVer('0.0.0-0')
|
|
16
|
+
if (range.test(minver)) {
|
|
17
|
+
return minver
|
|
18
|
+
}
|
|
19
|
+
|
|
20
|
+
minver = null
|
|
21
|
+
for (let i = 0; i < range.set.length; ++i) {
|
|
22
|
+
const comparators = range.set[i]
|
|
23
|
+
|
|
24
|
+
let setMin = null
|
|
25
|
+
comparators.forEach((comparator) => {
|
|
26
|
+
// Clone to avoid manipulating the comparator's semver object.
|
|
27
|
+
const compver = new SemVer(comparator.semver.version)
|
|
28
|
+
switch (comparator.operator) {
|
|
29
|
+
case '>':
|
|
30
|
+
if (compver.prerelease.length === 0) {
|
|
31
|
+
compver.patch++
|
|
32
|
+
} else {
|
|
33
|
+
compver.prerelease.push(0)
|
|
34
|
+
}
|
|
35
|
+
compver.raw = compver.format()
|
|
36
|
+
/* fallthrough */
|
|
37
|
+
case '':
|
|
38
|
+
case '>=':
|
|
39
|
+
if (!setMin || gt(compver, setMin)) {
|
|
40
|
+
setMin = compver
|
|
41
|
+
}
|
|
42
|
+
break
|
|
43
|
+
case '<':
|
|
44
|
+
case '<=':
|
|
45
|
+
/* Ignore maximum versions */
|
|
46
|
+
break
|
|
47
|
+
/* istanbul ignore next */
|
|
48
|
+
default:
|
|
49
|
+
throw new Error(`Unexpected operation: ${comparator.operator}`)
|
|
50
|
+
}
|
|
51
|
+
})
|
|
52
|
+
if (setMin && (!minver || gt(minver, setMin))) {
|
|
53
|
+
minver = setMin
|
|
54
|
+
}
|
|
55
|
+
}
|
|
56
|
+
|
|
57
|
+
if (minver && range.test(minver)) {
|
|
58
|
+
return minver
|
|
59
|
+
}
|
|
60
|
+
|
|
61
|
+
return null
|
|
62
|
+
}
|
|
63
|
+
module.exports = minVersion
|
|
@@ -0,0 +1,82 @@
|
|
|
1
|
+
'use strict'
|
|
2
|
+
|
|
3
|
+
const SemVer = require('../classes/semver')
|
|
4
|
+
const Comparator = require('../classes/comparator')
|
|
5
|
+
const { ANY } = Comparator
|
|
6
|
+
const Range = require('../classes/range')
|
|
7
|
+
const satisfies = require('../functions/satisfies')
|
|
8
|
+
const gt = require('../functions/gt')
|
|
9
|
+
const lt = require('../functions/lt')
|
|
10
|
+
const lte = require('../functions/lte')
|
|
11
|
+
const gte = require('../functions/gte')
|
|
12
|
+
|
|
13
|
+
const outside = (version, range, hilo, options) => {
|
|
14
|
+
version = new SemVer(version, options)
|
|
15
|
+
range = new Range(range, options)
|
|
16
|
+
|
|
17
|
+
let gtfn, ltefn, ltfn, comp, ecomp
|
|
18
|
+
switch (hilo) {
|
|
19
|
+
case '>':
|
|
20
|
+
gtfn = gt
|
|
21
|
+
ltefn = lte
|
|
22
|
+
ltfn = lt
|
|
23
|
+
comp = '>'
|
|
24
|
+
ecomp = '>='
|
|
25
|
+
break
|
|
26
|
+
case '<':
|
|
27
|
+
gtfn = lt
|
|
28
|
+
ltefn = gte
|
|
29
|
+
ltfn = gt
|
|
30
|
+
comp = '<'
|
|
31
|
+
ecomp = '<='
|
|
32
|
+
break
|
|
33
|
+
default:
|
|
34
|
+
throw new TypeError('Must provide a hilo val of "<" or ">"')
|
|
35
|
+
}
|
|
36
|
+
|
|
37
|
+
// If it satisfies the range it is not outside
|
|
38
|
+
if (satisfies(version, range, options)) {
|
|
39
|
+
return false
|
|
40
|
+
}
|
|
41
|
+
|
|
42
|
+
// From now on, variable terms are as if we're in "gtr" mode.
|
|
43
|
+
// but note that everything is flipped for the "ltr" function.
|
|
44
|
+
|
|
45
|
+
for (let i = 0; i < range.set.length; ++i) {
|
|
46
|
+
const comparators = range.set[i]
|
|
47
|
+
|
|
48
|
+
let high = null
|
|
49
|
+
let low = null
|
|
50
|
+
|
|
51
|
+
comparators.forEach((comparator) => {
|
|
52
|
+
if (comparator.semver === ANY) {
|
|
53
|
+
comparator = new Comparator('>=0.0.0')
|
|
54
|
+
}
|
|
55
|
+
high = high || comparator
|
|
56
|
+
low = low || comparator
|
|
57
|
+
if (gtfn(comparator.semver, high.semver, options)) {
|
|
58
|
+
high = comparator
|
|
59
|
+
} else if (ltfn(comparator.semver, low.semver, options)) {
|
|
60
|
+
low = comparator
|
|
61
|
+
}
|
|
62
|
+
})
|
|
63
|
+
|
|
64
|
+
// If the edge version comparator has a operator then our version
|
|
65
|
+
// isn't outside it
|
|
66
|
+
if (high.operator === comp || high.operator === ecomp) {
|
|
67
|
+
return false
|
|
68
|
+
}
|
|
69
|
+
|
|
70
|
+
// If the lowest version comparator has an operator and our version
|
|
71
|
+
// is less than it then it isn't higher than the range
|
|
72
|
+
if ((!low.operator || low.operator === comp) &&
|
|
73
|
+
ltefn(version, low.semver)) {
|
|
74
|
+
return false
|
|
75
|
+
} else if (low.operator === ecomp && ltfn(version, low.semver)) {
|
|
76
|
+
return false
|
|
77
|
+
}
|
|
78
|
+
}
|
|
79
|
+
return true
|
|
80
|
+
}
|
|
81
|
+
|
|
82
|
+
module.exports = outside
|
|
@@ -0,0 +1,49 @@
|
|
|
1
|
+
'use strict'
|
|
2
|
+
|
|
3
|
+
// given a set of versions and a range, create a "simplified" range
|
|
4
|
+
// that includes the same versions that the original range does
|
|
5
|
+
// If the original range is shorter than the simplified one, return that.
|
|
6
|
+
const satisfies = require('../functions/satisfies.js')
|
|
7
|
+
const compare = require('../functions/compare.js')
|
|
8
|
+
module.exports = (versions, range, options) => {
|
|
9
|
+
const set = []
|
|
10
|
+
let first = null
|
|
11
|
+
let prev = null
|
|
12
|
+
const v = versions.sort((a, b) => compare(a, b, options))
|
|
13
|
+
for (const version of v) {
|
|
14
|
+
const included = satisfies(version, range, options)
|
|
15
|
+
if (included) {
|
|
16
|
+
prev = version
|
|
17
|
+
if (!first) {
|
|
18
|
+
first = version
|
|
19
|
+
}
|
|
20
|
+
} else {
|
|
21
|
+
if (prev) {
|
|
22
|
+
set.push([first, prev])
|
|
23
|
+
}
|
|
24
|
+
prev = null
|
|
25
|
+
first = null
|
|
26
|
+
}
|
|
27
|
+
}
|
|
28
|
+
if (first) {
|
|
29
|
+
set.push([first, null])
|
|
30
|
+
}
|
|
31
|
+
|
|
32
|
+
const ranges = []
|
|
33
|
+
for (const [min, max] of set) {
|
|
34
|
+
if (min === max) {
|
|
35
|
+
ranges.push(min)
|
|
36
|
+
} else if (!max && min === v[0]) {
|
|
37
|
+
ranges.push('*')
|
|
38
|
+
} else if (!max) {
|
|
39
|
+
ranges.push(`>=${min}`)
|
|
40
|
+
} else if (min === v[0]) {
|
|
41
|
+
ranges.push(`<=${max}`)
|
|
42
|
+
} else {
|
|
43
|
+
ranges.push(`${min} - ${max}`)
|
|
44
|
+
}
|
|
45
|
+
}
|
|
46
|
+
const simplified = ranges.join(' || ')
|
|
47
|
+
const original = typeof range.raw === 'string' ? range.raw : String(range)
|
|
48
|
+
return simplified.length < original.length ? simplified : range
|
|
49
|
+
}
|
|
@@ -0,0 +1,249 @@
|
|
|
1
|
+
'use strict'
|
|
2
|
+
|
|
3
|
+
const Range = require('../classes/range.js')
|
|
4
|
+
const Comparator = require('../classes/comparator.js')
|
|
5
|
+
const { ANY } = Comparator
|
|
6
|
+
const satisfies = require('../functions/satisfies.js')
|
|
7
|
+
const compare = require('../functions/compare.js')
|
|
8
|
+
|
|
9
|
+
// Complex range `r1 || r2 || ...` is a subset of `R1 || R2 || ...` iff:
|
|
10
|
+
// - Every simple range `r1, r2, ...` is a null set, OR
|
|
11
|
+
// - Every simple range `r1, r2, ...` which is not a null set is a subset of
|
|
12
|
+
// some `R1, R2, ...`
|
|
13
|
+
//
|
|
14
|
+
// Simple range `c1 c2 ...` is a subset of simple range `C1 C2 ...` iff:
|
|
15
|
+
// - If c is only the ANY comparator
|
|
16
|
+
// - If C is only the ANY comparator, return true
|
|
17
|
+
// - Else if in prerelease mode, return false
|
|
18
|
+
// - else replace c with `[>=0.0.0]`
|
|
19
|
+
// - If C is only the ANY comparator
|
|
20
|
+
// - if in prerelease mode, return true
|
|
21
|
+
// - else replace C with `[>=0.0.0]`
|
|
22
|
+
// - Let EQ be the set of = comparators in c
|
|
23
|
+
// - If EQ is more than one, return true (null set)
|
|
24
|
+
// - Let GT be the highest > or >= comparator in c
|
|
25
|
+
// - Let LT be the lowest < or <= comparator in c
|
|
26
|
+
// - If GT and LT, and GT.semver > LT.semver, return true (null set)
|
|
27
|
+
// - If any C is a = range, and GT or LT are set, return false
|
|
28
|
+
// - If EQ
|
|
29
|
+
// - If GT, and EQ does not satisfy GT, return true (null set)
|
|
30
|
+
// - If LT, and EQ does not satisfy LT, return true (null set)
|
|
31
|
+
// - If EQ satisfies every C, return true
|
|
32
|
+
// - Else return false
|
|
33
|
+
// - If GT
|
|
34
|
+
// - If GT.semver is lower than any > or >= comp in C, return false
|
|
35
|
+
// - If GT is >=, and GT.semver does not satisfy every C, return false
|
|
36
|
+
// - If GT.semver has a prerelease, and not in prerelease mode
|
|
37
|
+
// - If no C has a prerelease and the GT.semver tuple, return false
|
|
38
|
+
// - If LT
|
|
39
|
+
// - If LT.semver is greater than any < or <= comp in C, return false
|
|
40
|
+
// - If LT is <=, and LT.semver does not satisfy every C, return false
|
|
41
|
+
// - If GT.semver has a prerelease, and not in prerelease mode
|
|
42
|
+
// - If no C has a prerelease and the LT.semver tuple, return false
|
|
43
|
+
// - Else return true
|
|
44
|
+
|
|
45
|
+
const subset = (sub, dom, options = {}) => {
|
|
46
|
+
if (sub === dom) {
|
|
47
|
+
return true
|
|
48
|
+
}
|
|
49
|
+
|
|
50
|
+
sub = new Range(sub, options)
|
|
51
|
+
dom = new Range(dom, options)
|
|
52
|
+
let sawNonNull = false
|
|
53
|
+
|
|
54
|
+
OUTER: for (const simpleSub of sub.set) {
|
|
55
|
+
for (const simpleDom of dom.set) {
|
|
56
|
+
const isSub = simpleSubset(simpleSub, simpleDom, options)
|
|
57
|
+
sawNonNull = sawNonNull || isSub !== null
|
|
58
|
+
if (isSub) {
|
|
59
|
+
continue OUTER
|
|
60
|
+
}
|
|
61
|
+
}
|
|
62
|
+
// the null set is a subset of everything, but null simple ranges in
|
|
63
|
+
// a complex range should be ignored. so if we saw a non-null range,
|
|
64
|
+
// then we know this isn't a subset, but if EVERY simple range was null,
|
|
65
|
+
// then it is a subset.
|
|
66
|
+
if (sawNonNull) {
|
|
67
|
+
return false
|
|
68
|
+
}
|
|
69
|
+
}
|
|
70
|
+
return true
|
|
71
|
+
}
|
|
72
|
+
|
|
73
|
+
const minimumVersionWithPreRelease = [new Comparator('>=0.0.0-0')]
|
|
74
|
+
const minimumVersion = [new Comparator('>=0.0.0')]
|
|
75
|
+
|
|
76
|
+
const simpleSubset = (sub, dom, options) => {
|
|
77
|
+
if (sub === dom) {
|
|
78
|
+
return true
|
|
79
|
+
}
|
|
80
|
+
|
|
81
|
+
if (sub.length === 1 && sub[0].semver === ANY) {
|
|
82
|
+
if (dom.length === 1 && dom[0].semver === ANY) {
|
|
83
|
+
return true
|
|
84
|
+
} else if (options.includePrerelease) {
|
|
85
|
+
sub = minimumVersionWithPreRelease
|
|
86
|
+
} else {
|
|
87
|
+
sub = minimumVersion
|
|
88
|
+
}
|
|
89
|
+
}
|
|
90
|
+
|
|
91
|
+
if (dom.length === 1 && dom[0].semver === ANY) {
|
|
92
|
+
if (options.includePrerelease) {
|
|
93
|
+
return true
|
|
94
|
+
} else {
|
|
95
|
+
dom = minimumVersion
|
|
96
|
+
}
|
|
97
|
+
}
|
|
98
|
+
|
|
99
|
+
const eqSet = new Set()
|
|
100
|
+
let gt, lt
|
|
101
|
+
for (const c of sub) {
|
|
102
|
+
if (c.operator === '>' || c.operator === '>=') {
|
|
103
|
+
gt = higherGT(gt, c, options)
|
|
104
|
+
} else if (c.operator === '<' || c.operator === '<=') {
|
|
105
|
+
lt = lowerLT(lt, c, options)
|
|
106
|
+
} else {
|
|
107
|
+
eqSet.add(c.semver)
|
|
108
|
+
}
|
|
109
|
+
}
|
|
110
|
+
|
|
111
|
+
if (eqSet.size > 1) {
|
|
112
|
+
return null
|
|
113
|
+
}
|
|
114
|
+
|
|
115
|
+
let gtltComp
|
|
116
|
+
if (gt && lt) {
|
|
117
|
+
gtltComp = compare(gt.semver, lt.semver, options)
|
|
118
|
+
if (gtltComp > 0) {
|
|
119
|
+
return null
|
|
120
|
+
} else if (gtltComp === 0 && (gt.operator !== '>=' || lt.operator !== '<=')) {
|
|
121
|
+
return null
|
|
122
|
+
}
|
|
123
|
+
}
|
|
124
|
+
|
|
125
|
+
// will iterate one or zero times
|
|
126
|
+
for (const eq of eqSet) {
|
|
127
|
+
if (gt && !satisfies(eq, String(gt), options)) {
|
|
128
|
+
return null
|
|
129
|
+
}
|
|
130
|
+
|
|
131
|
+
if (lt && !satisfies(eq, String(lt), options)) {
|
|
132
|
+
return null
|
|
133
|
+
}
|
|
134
|
+
|
|
135
|
+
for (const c of dom) {
|
|
136
|
+
if (!satisfies(eq, String(c), options)) {
|
|
137
|
+
return false
|
|
138
|
+
}
|
|
139
|
+
}
|
|
140
|
+
|
|
141
|
+
return true
|
|
142
|
+
}
|
|
143
|
+
|
|
144
|
+
let higher, lower
|
|
145
|
+
let hasDomLT, hasDomGT
|
|
146
|
+
// if the subset has a prerelease, we need a comparator in the superset
|
|
147
|
+
// with the same tuple and a prerelease, or it's not a subset
|
|
148
|
+
let needDomLTPre = lt &&
|
|
149
|
+
!options.includePrerelease &&
|
|
150
|
+
lt.semver.prerelease.length ? lt.semver : false
|
|
151
|
+
let needDomGTPre = gt &&
|
|
152
|
+
!options.includePrerelease &&
|
|
153
|
+
gt.semver.prerelease.length ? gt.semver : false
|
|
154
|
+
// exception: <1.2.3-0 is the same as <1.2.3
|
|
155
|
+
if (needDomLTPre && needDomLTPre.prerelease.length === 1 &&
|
|
156
|
+
lt.operator === '<' && needDomLTPre.prerelease[0] === 0) {
|
|
157
|
+
needDomLTPre = false
|
|
158
|
+
}
|
|
159
|
+
|
|
160
|
+
for (const c of dom) {
|
|
161
|
+
hasDomGT = hasDomGT || c.operator === '>' || c.operator === '>='
|
|
162
|
+
hasDomLT = hasDomLT || c.operator === '<' || c.operator === '<='
|
|
163
|
+
if (gt) {
|
|
164
|
+
if (needDomGTPre) {
|
|
165
|
+
if (c.semver.prerelease && c.semver.prerelease.length &&
|
|
166
|
+
c.semver.major === needDomGTPre.major &&
|
|
167
|
+
c.semver.minor === needDomGTPre.minor &&
|
|
168
|
+
c.semver.patch === needDomGTPre.patch) {
|
|
169
|
+
needDomGTPre = false
|
|
170
|
+
}
|
|
171
|
+
}
|
|
172
|
+
if (c.operator === '>' || c.operator === '>=') {
|
|
173
|
+
higher = higherGT(gt, c, options)
|
|
174
|
+
if (higher === c && higher !== gt) {
|
|
175
|
+
return false
|
|
176
|
+
}
|
|
177
|
+
} else if (gt.operator === '>=' && !satisfies(gt.semver, String(c), options)) {
|
|
178
|
+
return false
|
|
179
|
+
}
|
|
180
|
+
}
|
|
181
|
+
if (lt) {
|
|
182
|
+
if (needDomLTPre) {
|
|
183
|
+
if (c.semver.prerelease && c.semver.prerelease.length &&
|
|
184
|
+
c.semver.major === needDomLTPre.major &&
|
|
185
|
+
c.semver.minor === needDomLTPre.minor &&
|
|
186
|
+
c.semver.patch === needDomLTPre.patch) {
|
|
187
|
+
needDomLTPre = false
|
|
188
|
+
}
|
|
189
|
+
}
|
|
190
|
+
if (c.operator === '<' || c.operator === '<=') {
|
|
191
|
+
lower = lowerLT(lt, c, options)
|
|
192
|
+
if (lower === c && lower !== lt) {
|
|
193
|
+
return false
|
|
194
|
+
}
|
|
195
|
+
} else if (lt.operator === '<=' && !satisfies(lt.semver, String(c), options)) {
|
|
196
|
+
return false
|
|
197
|
+
}
|
|
198
|
+
}
|
|
199
|
+
if (!c.operator && (lt || gt) && gtltComp !== 0) {
|
|
200
|
+
return false
|
|
201
|
+
}
|
|
202
|
+
}
|
|
203
|
+
|
|
204
|
+
// if there was a < or >, and nothing in the dom, then must be false
|
|
205
|
+
// UNLESS it was limited by another range in the other direction.
|
|
206
|
+
// Eg, >1.0.0 <1.0.1 is still a subset of <2.0.0
|
|
207
|
+
if (gt && hasDomLT && !lt && gtltComp !== 0) {
|
|
208
|
+
return false
|
|
209
|
+
}
|
|
210
|
+
|
|
211
|
+
if (lt && hasDomGT && !gt && gtltComp !== 0) {
|
|
212
|
+
return false
|
|
213
|
+
}
|
|
214
|
+
|
|
215
|
+
// we needed a prerelease range in a specific tuple, but didn't get one
|
|
216
|
+
// then this isn't a subset. eg >=1.2.3-pre is not a subset of >=1.0.0,
|
|
217
|
+
// because it includes prereleases in the 1.2.3 tuple
|
|
218
|
+
if (needDomGTPre || needDomLTPre) {
|
|
219
|
+
return false
|
|
220
|
+
}
|
|
221
|
+
|
|
222
|
+
return true
|
|
223
|
+
}
|
|
224
|
+
|
|
225
|
+
// >=1.2.3 is lower than >1.2.3
|
|
226
|
+
const higherGT = (a, b, options) => {
|
|
227
|
+
if (!a) {
|
|
228
|
+
return b
|
|
229
|
+
}
|
|
230
|
+
const comp = compare(a.semver, b.semver, options)
|
|
231
|
+
return comp > 0 ? a
|
|
232
|
+
: comp < 0 ? b
|
|
233
|
+
: b.operator === '>' && a.operator === '>=' ? b
|
|
234
|
+
: a
|
|
235
|
+
}
|
|
236
|
+
|
|
237
|
+
// <=1.2.3 is higher than <1.2.3
|
|
238
|
+
const lowerLT = (a, b, options) => {
|
|
239
|
+
if (!a) {
|
|
240
|
+
return b
|
|
241
|
+
}
|
|
242
|
+
const comp = compare(a.semver, b.semver, options)
|
|
243
|
+
return comp < 0 ? a
|
|
244
|
+
: comp > 0 ? b
|
|
245
|
+
: b.operator === '<' && a.operator === '<=' ? b
|
|
246
|
+
: a
|
|
247
|
+
}
|
|
248
|
+
|
|
249
|
+
module.exports = subset
|
|
@@ -0,0 +1,10 @@
|
|
|
1
|
+
'use strict'
|
|
2
|
+
|
|
3
|
+
const Range = require('../classes/range')
|
|
4
|
+
|
|
5
|
+
// Mostly just for testing and legacy API reasons
|
|
6
|
+
const toComparators = (range, options) =>
|
|
7
|
+
new Range(range, options).set
|
|
8
|
+
.map(comp => comp.map(c => c.value).join(' ').trim().split(' '))
|
|
9
|
+
|
|
10
|
+
module.exports = toComparators
|
|
@@ -0,0 +1,13 @@
|
|
|
1
|
+
'use strict'
|
|
2
|
+
|
|
3
|
+
const Range = require('../classes/range')
|
|
4
|
+
const validRange = (range, options) => {
|
|
5
|
+
try {
|
|
6
|
+
// Return '*' instead of '' so that truthiness works.
|
|
7
|
+
// This will throw if it's invalid anyway
|
|
8
|
+
return new Range(range, options).range || '*'
|
|
9
|
+
} catch (er) {
|
|
10
|
+
return null
|
|
11
|
+
}
|
|
12
|
+
}
|
|
13
|
+
module.exports = validRange
|
|
@@ -0,0 +1,21 @@
|
|
|
1
|
+
MIT License
|
|
2
|
+
|
|
3
|
+
Copyright (c) 2020 Nahiyan Kamal
|
|
4
|
+
|
|
5
|
+
Permission is hereby granted, free of charge, to any person obtaining a copy
|
|
6
|
+
of this software and associated documentation files (the "Software"), to deal
|
|
7
|
+
in the Software without restriction, including without limitation the rights
|
|
8
|
+
to use, copy, modify, merge, publish, distribute, sublicense, and/or sell
|
|
9
|
+
copies of the Software, and to permit persons to whom the Software is
|
|
10
|
+
furnished to do so, subject to the following conditions:
|
|
11
|
+
|
|
12
|
+
The above copyright notice and this permission notice shall be included in all
|
|
13
|
+
copies or substantial portions of the Software.
|
|
14
|
+
|
|
15
|
+
THE SOFTWARE IS PROVIDED "AS IS", WITHOUT WARRANTY OF ANY KIND, EXPRESS OR
|
|
16
|
+
IMPLIED, INCLUDING BUT NOT LIMITED TO THE WARRANTIES OF MERCHANTABILITY,
|
|
17
|
+
FITNESS FOR A PARTICULAR PURPOSE AND NONINFRINGEMENT. IN NO EVENT SHALL THE
|
|
18
|
+
AUTHORS OR COPYRIGHT HOLDERS BE LIABLE FOR ANY CLAIM, DAMAGES OR OTHER
|
|
19
|
+
LIABILITY, WHETHER IN AN ACTION OF CONTRACT, TORT OR OTHERWISE, ARISING FROM,
|
|
20
|
+
OUT OF OR IN CONNECTION WITH THE SOFTWARE OR THE USE OR OTHER DEALINGS IN THE
|
|
21
|
+
SOFTWARE.
|
|
@@ -0,0 +1,89 @@
|
|
|
1
|
+
<h1 align="center">simple-wcswidth</h1>
|
|
2
|
+
<h3 align="center"> 🖥️ 💬 Simplified JS/TS implementation of wcwidth/wcswidth written by Markus Kuhn in C</h3>
|
|
3
|
+
|
|
4
|
+
[](https://codecov.io/gh/console-table-printer/simple-wcswidth)
|
|
5
|
+
[](https://badge.fury.io/js/simple-wcswidth)
|
|
6
|
+
[](https://packagephobia.now.sh/result?p=simple-wcswidth)
|
|
7
|
+
[](https://github.com/semantic-release/semantic-release)
|
|
8
|
+
|
|
9
|
+
|
|
10
|
+
# Why another wcswidth?
|
|
11
|
+
|
|
12
|
+
1. 💙 Types included
|
|
13
|
+
2. 🤏 Installation Size kept as min possible
|
|
14
|
+
3. 🐒 No Unnecessary dependency added
|
|
15
|
+
4. 🤖 Tested Automatically and Regularly on different versions of node, including current LTS and stable
|
|
16
|
+
|
|
17
|
+
# Example Usage
|
|
18
|
+
|
|
19
|
+
```js
|
|
20
|
+
const { wcswidth, wcwidth } = require('simple-wcswidth');
|
|
21
|
+
|
|
22
|
+
console.log(wcswidth('Yes 重要')); // 8
|
|
23
|
+
console.log(wcswidth('请你')); // 4
|
|
24
|
+
console.log(wcswidth('Hi')); // 2
|
|
25
|
+
|
|
26
|
+
console.log(wcwidth('请'.charCodeAt(0))); // 2
|
|
27
|
+
```
|
|
28
|
+
|
|
29
|
+
# What is simplified here?
|
|
30
|
+
|
|
31
|
+
In the original [C code](https://www.cl.cam.ac.uk/~mgk25/ucs/wcwidth.c) there were 2 versions of `wcswidth()` I have included here only for first one, which is applicable for general use.
|
|
32
|
+
|
|
33
|
+
About the second one(WHICH I DIDNT INCLUDE HERE), useful for users of CJK legacy encodings who want to migrate to UCS without changing the traditional terminal character-width behaviour. It is not otherwise recommended for general use.
|
|
34
|
+
|
|
35
|
+
# Info Taken from Markus Kuhn's [C code](https://www.cl.cam.ac.uk/~mgk25/ucs/wcwidth.c)
|
|
36
|
+
|
|
37
|
+
This is an implementation of [wcwidth()](http://www.opengroup.org/onlinepubs/007904975/functions/wcwidth.html) and [wcswidth()](http://www.opengroup.org/onlinepubs/007904975/functions/wcswidth.html) (defined in
|
|
38
|
+
IEEE Std 1002.1-2001) for Unicode.
|
|
39
|
+
|
|
40
|
+
In fixed-width output devices, Latin characters all occupy a single
|
|
41
|
+
"cell" position of equal width, whereas ideographic CJK characters
|
|
42
|
+
occupy two such cells. Interoperability between terminal-line
|
|
43
|
+
applications and (teletype-style) character terminals using the
|
|
44
|
+
UTF-8 encoding requires agreement on which character should advance
|
|
45
|
+
the cursor by how many cell positions. No established formal
|
|
46
|
+
standards exist at present on which Unicode character shall occupy
|
|
47
|
+
how many cell positions on character terminals. These routines are
|
|
48
|
+
a first attempt of defining such behavior based on simple rules
|
|
49
|
+
applied to data provided by the Unicode Consortium.
|
|
50
|
+
|
|
51
|
+
For some graphical characters, the Unicode standard explicitly
|
|
52
|
+
defines a character-cell width via the definition of the East Asian
|
|
53
|
+
FullWidth (F), Wide (W), Half-width (H), and Narrow (Na) classes.
|
|
54
|
+
In all these cases, there is no ambiguity about which width a
|
|
55
|
+
terminal shall use. For characters in the East Asian Ambiguous (A)
|
|
56
|
+
class, the width choice depends purely on a preference of backward
|
|
57
|
+
compatibility with either historic CJK or Western practice.
|
|
58
|
+
Choosing single-width for these characters is easy to justify as
|
|
59
|
+
the appropriate long-term solution, as the CJK practice of
|
|
60
|
+
displaying these characters as double-width comes from historic
|
|
61
|
+
implementation simplicity (8-bit encoded characters were displayed
|
|
62
|
+
single-width and 16-bit ones double-width, even for Greek,
|
|
63
|
+
Cyrillic, etc.) and not any typographic considerations.
|
|
64
|
+
|
|
65
|
+
Much less clear is the choice of width for the Not East Asian
|
|
66
|
+
(Neutral) class. Existing practice does not dictate a width for any
|
|
67
|
+
of these characters. It would nevertheless make sense
|
|
68
|
+
typographically to allocate two character cells to characters such
|
|
69
|
+
as for instance EM SPACE or VOLUME INTEGRAL, which cannot be
|
|
70
|
+
represented adequately with a single-width glyph. The following
|
|
71
|
+
routines at present merely assign a single-cell width to all
|
|
72
|
+
neutral characters, in the interest of simplicity. This is not
|
|
73
|
+
entirely satisfactory and should be reconsidered before
|
|
74
|
+
establishing a formal standard in this area. At the moment, the
|
|
75
|
+
decision which Not East Asian (Neutral) characters should be
|
|
76
|
+
represented by double-width glyphs cannot yet be answered by
|
|
77
|
+
applying a simple rule from the Unicode database content. Setting
|
|
78
|
+
up a proper standard for the behavior of UTF-8 character terminals
|
|
79
|
+
will require a careful analysis not only of each Unicode character,
|
|
80
|
+
but also of each presentation form, something the author of these
|
|
81
|
+
routines has avoided to do so far.
|
|
82
|
+
|
|
83
|
+
http://www.unicode.org/unicode/reports/tr11/
|
|
84
|
+
|
|
85
|
+
# LICENSE
|
|
86
|
+
|
|
87
|
+
MIT
|
|
88
|
+
|
|
89
|
+
The original Code written in C was very permissive. You can find it here [Code](http://www.cl.cam.ac.uk/~mgk25/ucs/wcwidth.c)
|
|
@@ -0,0 +1,10 @@
|
|
|
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
|
+
exports.wcswidth = exports.wcwidth = void 0;
|
|
7
|
+
const wcswidth_1 = __importDefault(require("./src/wcswidth"));
|
|
8
|
+
exports.wcswidth = wcswidth_1.default;
|
|
9
|
+
const wcwidth_1 = __importDefault(require("./src/wcwidth"));
|
|
10
|
+
exports.wcwidth = wcwidth_1.default;
|
|
@@ -0,0 +1,24 @@
|
|
|
1
|
+
"use strict";
|
|
2
|
+
Object.defineProperty(exports, "__esModule", { value: true });
|
|
3
|
+
/* auxiliary function for binary search in interval table */
|
|
4
|
+
const bisearch = (ucs, table, tableSize) => {
|
|
5
|
+
let min = 0;
|
|
6
|
+
let mid;
|
|
7
|
+
let max = tableSize;
|
|
8
|
+
if (ucs < table[0].first || ucs > table[max].last)
|
|
9
|
+
return 0;
|
|
10
|
+
while (max >= min) {
|
|
11
|
+
mid = Math.floor((min + max) / 2);
|
|
12
|
+
if (ucs > table[mid].last) {
|
|
13
|
+
min = mid + 1;
|
|
14
|
+
}
|
|
15
|
+
else if (ucs < table[mid].first) {
|
|
16
|
+
max = mid - 1;
|
|
17
|
+
}
|
|
18
|
+
else {
|
|
19
|
+
return 1;
|
|
20
|
+
}
|
|
21
|
+
}
|
|
22
|
+
return 0;
|
|
23
|
+
};
|
|
24
|
+
exports.default = bisearch;
|