@prismer/sdk 2.0.8 → 2.2.55
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/README.md +13 -7
- package/dist/chunk-R7POPVJR.mjs +35 -0
- package/dist/cli.js +59653 -8452
- package/dist/index.d.mts +716 -229
- package/dist/index.d.ts +716 -229
- package/dist/index.js +307 -23
- package/dist/index.mjs +306 -23
- package/dist/katex-OIP2Q473.mjs +14515 -0
- package/dist/pkf-schema.json +35 -0
- package/dist/pkf.d.mts +1 -0
- package/dist/pkf.d.ts +1 -0
- package/dist/pkf.js +48370 -0
- package/dist/pkf.mjs +33683 -0
- package/node_modules/@clack/core/CHANGELOG.md +249 -0
- package/node_modules/@clack/core/LICENSE +9 -0
- package/node_modules/@clack/core/README.md +22 -0
- package/node_modules/@clack/core/dist/index.cjs +15 -0
- package/node_modules/@clack/core/dist/index.cjs.map +1 -0
- package/node_modules/@clack/core/dist/index.d.cts +209 -0
- package/node_modules/@clack/core/dist/index.d.mts +209 -0
- package/node_modules/@clack/core/dist/index.d.ts +209 -0
- package/node_modules/@clack/core/dist/index.mjs +15 -0
- package/node_modules/@clack/core/dist/index.mjs.map +1 -0
- package/node_modules/@clack/core/package.json +62 -0
- package/node_modules/@clack/prompts/CHANGELOG.md +374 -0
- package/node_modules/@clack/prompts/LICENSE +9 -0
- package/node_modules/@clack/prompts/README.md +191 -0
- package/node_modules/@clack/prompts/dist/index.cjs +80 -0
- package/node_modules/@clack/prompts/dist/index.cjs.map +1 -0
- package/node_modules/@clack/prompts/dist/index.d.cts +151 -0
- package/node_modules/@clack/prompts/dist/index.d.mts +151 -0
- package/node_modules/@clack/prompts/dist/index.d.ts +151 -0
- package/node_modules/@clack/prompts/dist/index.mjs +80 -0
- package/node_modules/@clack/prompts/dist/index.mjs.map +1 -0
- package/node_modules/@clack/prompts/package.json +61 -0
- package/node_modules/@iarna/toml/LICENSE +14 -0
- package/node_modules/@iarna/toml/README.md +301 -0
- package/node_modules/@iarna/toml/index.d.ts +57 -0
- package/node_modules/@iarna/toml/lib/create-date.js +23 -0
- package/node_modules/@iarna/toml/lib/create-datetime-float.js +24 -0
- package/node_modules/@iarna/toml/lib/create-datetime.js +10 -0
- package/node_modules/@iarna/toml/lib/create-time.js +22 -0
- package/node_modules/@iarna/toml/lib/format-num.js +6 -0
- package/node_modules/@iarna/toml/lib/parser-debug.js +60 -0
- package/node_modules/@iarna/toml/lib/parser.js +127 -0
- package/node_modules/@iarna/toml/lib/toml-parser.js +1379 -0
- package/node_modules/@iarna/toml/package.json +82 -0
- package/node_modules/@iarna/toml/parse-async.js +30 -0
- package/node_modules/@iarna/toml/parse-pretty-error.js +33 -0
- package/node_modules/@iarna/toml/parse-stream.js +80 -0
- package/node_modules/@iarna/toml/parse-string.js +18 -0
- package/node_modules/@iarna/toml/parse.js +5 -0
- package/node_modules/@iarna/toml/stringify.js +296 -0
- package/node_modules/@iarna/toml/toml.js +3 -0
- package/node_modules/@prismer/aip-sdk/README.md +36 -0
- package/node_modules/@prismer/aip-sdk/dist/cli/chunk-LIJDUCHB.js +104 -0
- package/node_modules/@prismer/aip-sdk/dist/cli/chunk-QUQXZ2LD.js +99 -0
- package/node_modules/@prismer/aip-sdk/dist/cli/credentials-5GGZEJFG.js +56 -0
- package/node_modules/@prismer/aip-sdk/dist/cli/delegation-3J35VGBZ.js +64 -0
- package/node_modules/@prismer/aip-sdk/dist/cli/identity-LXVWKSVB.js +7 -0
- package/node_modules/@prismer/aip-sdk/dist/cli/index.js +259 -0
- package/node_modules/@prismer/aip-sdk/dist/cli/resolver-TGOPKW52.js +26 -0
- package/node_modules/@prismer/aip-sdk/dist/index.cjs +368 -0
- package/node_modules/@prismer/aip-sdk/dist/index.d.cts +174 -0
- package/node_modules/@prismer/aip-sdk/dist/index.d.ts +174 -0
- package/node_modules/@prismer/aip-sdk/dist/index.js +322 -0
- package/node_modules/@prismer/aip-sdk/package.json +53 -0
- package/node_modules/ansi-regex/index.d.ts +37 -0
- package/node_modules/ansi-regex/index.js +10 -0
- package/node_modules/ansi-regex/license +9 -0
- package/node_modules/ansi-regex/package.json +55 -0
- package/node_modules/ansi-regex/readme.md +78 -0
- package/node_modules/camelcase/index.d.ts +63 -0
- package/node_modules/camelcase/index.js +76 -0
- package/node_modules/camelcase/license +9 -0
- package/node_modules/camelcase/package.json +43 -0
- package/node_modules/camelcase/readme.md +99 -0
- package/node_modules/cliui/LICENSE.txt +14 -0
- package/node_modules/cliui/README.md +115 -0
- package/node_modules/cliui/index.js +354 -0
- package/node_modules/cliui/package.json +65 -0
- package/node_modules/color-convert/LICENSE +21 -0
- package/node_modules/color-convert/README.md +68 -0
- package/node_modules/color-convert/conversions.js +839 -0
- package/node_modules/color-convert/index.js +81 -0
- package/node_modules/color-convert/package.json +48 -0
- package/node_modules/color-convert/route.js +97 -0
- package/node_modules/color-name/LICENSE +8 -0
- package/node_modules/color-name/README.md +11 -0
- package/node_modules/color-name/index.js +152 -0
- package/node_modules/color-name/package.json +28 -0
- package/node_modules/commander/LICENSE +22 -0
- package/node_modules/commander/Readme.md +1157 -0
- package/node_modules/commander/esm.mjs +16 -0
- package/node_modules/commander/index.js +24 -0
- package/node_modules/commander/lib/argument.js +149 -0
- package/node_modules/commander/lib/command.js +2509 -0
- package/node_modules/commander/lib/error.js +39 -0
- package/node_modules/commander/lib/help.js +520 -0
- package/node_modules/commander/lib/option.js +330 -0
- package/node_modules/commander/lib/suggestSimilar.js +101 -0
- package/node_modules/commander/package-support.json +16 -0
- package/node_modules/commander/package.json +84 -0
- package/node_modules/commander/typings/esm.d.mts +3 -0
- package/node_modules/commander/typings/index.d.ts +969 -0
- package/node_modules/decamelize/index.js +13 -0
- package/node_modules/decamelize/license +21 -0
- package/node_modules/decamelize/package.json +38 -0
- package/node_modules/decamelize/readme.md +48 -0
- package/node_modules/dijkstrajs/.travis.yml +4 -0
- package/node_modules/dijkstrajs/CONTRIBUTING.md +8 -0
- package/node_modules/dijkstrajs/LICENSE.md +19 -0
- package/node_modules/dijkstrajs/README.md +18 -0
- package/node_modules/dijkstrajs/dijkstra.js +165 -0
- package/node_modules/dijkstrajs/package.json +60 -0
- package/node_modules/dijkstrajs/test/dijkstra.test.js +96 -0
- package/node_modules/emoji-regex/LICENSE-MIT.txt +20 -0
- package/node_modules/emoji-regex/README.md +73 -0
- package/node_modules/emoji-regex/es2015/index.js +6 -0
- package/node_modules/emoji-regex/es2015/text.js +6 -0
- package/node_modules/emoji-regex/index.d.ts +23 -0
- package/node_modules/emoji-regex/index.js +6 -0
- package/node_modules/emoji-regex/package.json +50 -0
- package/node_modules/emoji-regex/text.js +6 -0
- package/node_modules/find-up/index.d.ts +137 -0
- package/node_modules/find-up/index.js +89 -0
- package/node_modules/find-up/license +9 -0
- package/node_modules/find-up/package.json +53 -0
- package/node_modules/find-up/readme.md +156 -0
- package/node_modules/get-caller-file/LICENSE.md +6 -0
- package/node_modules/get-caller-file/README.md +41 -0
- package/node_modules/get-caller-file/index.d.ts +2 -0
- package/node_modules/get-caller-file/index.js +22 -0
- package/node_modules/get-caller-file/index.js.map +1 -0
- package/node_modules/get-caller-file/package.json +42 -0
- package/node_modules/is-fullwidth-code-point/index.d.ts +17 -0
- package/node_modules/is-fullwidth-code-point/index.js +50 -0
- package/node_modules/is-fullwidth-code-point/license +9 -0
- package/node_modules/is-fullwidth-code-point/package.json +42 -0
- package/node_modules/is-fullwidth-code-point/readme.md +39 -0
- package/node_modules/locate-path/index.d.ts +83 -0
- package/node_modules/locate-path/index.js +65 -0
- package/node_modules/locate-path/license +9 -0
- package/node_modules/locate-path/package.json +45 -0
- package/node_modules/locate-path/readme.md +122 -0
- package/node_modules/p-locate/index.d.ts +64 -0
- package/node_modules/p-locate/index.js +52 -0
- package/node_modules/p-locate/license +9 -0
- package/node_modules/p-locate/node_modules/p-limit/index.d.ts +38 -0
- package/node_modules/p-locate/node_modules/p-limit/index.js +57 -0
- package/node_modules/p-locate/node_modules/p-limit/license +9 -0
- package/node_modules/p-locate/node_modules/p-limit/package.json +52 -0
- package/node_modules/p-locate/node_modules/p-limit/readme.md +101 -0
- package/node_modules/p-locate/package.json +53 -0
- package/node_modules/p-locate/readme.md +90 -0
- package/node_modules/p-try/index.d.ts +39 -0
- package/node_modules/p-try/index.js +9 -0
- package/node_modules/p-try/license +9 -0
- package/node_modules/p-try/package.json +42 -0
- package/node_modules/p-try/readme.md +58 -0
- package/node_modules/path-exists/index.d.ts +28 -0
- package/node_modules/path-exists/index.js +23 -0
- package/node_modules/path-exists/license +9 -0
- package/node_modules/path-exists/package.json +39 -0
- package/node_modules/path-exists/readme.md +52 -0
- package/node_modules/picocolors/LICENSE +15 -0
- package/node_modules/picocolors/README.md +21 -0
- package/node_modules/picocolors/package.json +25 -0
- package/node_modules/picocolors/picocolors.browser.js +4 -0
- package/node_modules/picocolors/picocolors.d.ts +5 -0
- package/node_modules/picocolors/picocolors.js +75 -0
- package/node_modules/picocolors/types.d.ts +51 -0
- package/node_modules/pngjs/.eslintignore +2 -0
- package/node_modules/pngjs/.eslintrc.json +19 -0
- package/node_modules/pngjs/.prettierignore +3 -0
- package/node_modules/pngjs/LICENSE +20 -0
- package/node_modules/pngjs/README.md +429 -0
- package/node_modules/pngjs/browser.js +16096 -0
- package/node_modules/pngjs/coverage/lcov-report/base.css +354 -0
- package/node_modules/pngjs/coverage/lcov-report/bitmapper.js.html +881 -0
- package/node_modules/pngjs/coverage/lcov-report/bitpacker.js.html +554 -0
- package/node_modules/pngjs/coverage/lcov-report/block-navigation.js +77 -0
- package/node_modules/pngjs/coverage/lcov-report/chunkstream.js.html +647 -0
- package/node_modules/pngjs/coverage/lcov-report/constants.js.html +176 -0
- package/node_modules/pngjs/coverage/lcov-report/crc.js.html +200 -0
- package/node_modules/pngjs/coverage/lcov-report/favicon.png +0 -0
- package/node_modules/pngjs/coverage/lcov-report/filter-pack.js.html +593 -0
- package/node_modules/pngjs/coverage/lcov-report/filter-parse-async.js.html +152 -0
- package/node_modules/pngjs/coverage/lcov-report/filter-parse-sync.js.html +143 -0
- package/node_modules/pngjs/coverage/lcov-report/filter-parse.js.html +611 -0
- package/node_modules/pngjs/coverage/lcov-report/format-normaliser.js.html +359 -0
- package/node_modules/pngjs/coverage/lcov-report/index.html +426 -0
- package/node_modules/pngjs/coverage/lcov-report/interlace.js.html +365 -0
- package/node_modules/pngjs/coverage/lcov-report/packer-async.js.html +230 -0
- package/node_modules/pngjs/coverage/lcov-report/packer-sync.js.html +248 -0
- package/node_modules/pngjs/coverage/lcov-report/packer.js.html +467 -0
- package/node_modules/pngjs/coverage/lcov-report/paeth-predictor.js.html +128 -0
- package/node_modules/pngjs/coverage/lcov-report/parser-async.js.html +575 -0
- package/node_modules/pngjs/coverage/lcov-report/parser-sync.js.html +404 -0
- package/node_modules/pngjs/coverage/lcov-report/parser.js.html +950 -0
- package/node_modules/pngjs/coverage/lcov-report/png-sync.js.html +116 -0
- package/node_modules/pngjs/coverage/lcov-report/png.js.html +662 -0
- package/node_modules/pngjs/coverage/lcov-report/prettify.css +101 -0
- package/node_modules/pngjs/coverage/lcov-report/prettify.js +1007 -0
- package/node_modules/pngjs/coverage/lcov-report/sort-arrow-sprite.png +0 -0
- package/node_modules/pngjs/coverage/lcov-report/sorter.js +169 -0
- package/node_modules/pngjs/coverage/lcov-report/sync-inflate.js.html +584 -0
- package/node_modules/pngjs/coverage/lcov-report/sync-reader.js.html +215 -0
- package/node_modules/pngjs/coverage/lcov.info +2177 -0
- package/node_modules/pngjs/lib/bitmapper.js +267 -0
- package/node_modules/pngjs/lib/bitpacker.js +158 -0
- package/node_modules/pngjs/lib/chunkstream.js +189 -0
- package/node_modules/pngjs/lib/constants.js +32 -0
- package/node_modules/pngjs/lib/crc.js +40 -0
- package/node_modules/pngjs/lib/filter-pack.js +171 -0
- package/node_modules/pngjs/lib/filter-parse-async.js +24 -0
- package/node_modules/pngjs/lib/filter-parse-sync.js +21 -0
- package/node_modules/pngjs/lib/filter-parse.js +177 -0
- package/node_modules/pngjs/lib/format-normaliser.js +93 -0
- package/node_modules/pngjs/lib/interlace.js +95 -0
- package/node_modules/pngjs/lib/packer-async.js +50 -0
- package/node_modules/pngjs/lib/packer-sync.js +56 -0
- package/node_modules/pngjs/lib/packer.js +129 -0
- package/node_modules/pngjs/lib/paeth-predictor.js +16 -0
- package/node_modules/pngjs/lib/parser-async.js +165 -0
- package/node_modules/pngjs/lib/parser-sync.js +108 -0
- package/node_modules/pngjs/lib/parser.js +290 -0
- package/node_modules/pngjs/lib/png-sync.js +12 -0
- package/node_modules/pngjs/lib/png.js +194 -0
- package/node_modules/pngjs/lib/sync-inflate.js +168 -0
- package/node_modules/pngjs/lib/sync-reader.js +45 -0
- package/node_modules/pngjs/package.json +73 -0
- package/node_modules/qrcode/README.md +770 -0
- package/node_modules/qrcode/bin/qrcode +159 -0
- package/node_modules/qrcode/helper/to-sjis-browser.js +2 -0
- package/node_modules/qrcode/helper/to-sjis.js +105 -0
- package/node_modules/qrcode/lib/browser.js +76 -0
- package/node_modules/qrcode/lib/can-promise.js +7 -0
- package/node_modules/qrcode/lib/core/alignment-pattern.js +83 -0
- package/node_modules/qrcode/lib/core/alphanumeric-data.js +59 -0
- package/node_modules/qrcode/lib/core/bit-buffer.js +37 -0
- package/node_modules/qrcode/lib/core/bit-matrix.js +65 -0
- package/node_modules/qrcode/lib/core/byte-data.js +30 -0
- package/node_modules/qrcode/lib/core/error-correction-code.js +135 -0
- package/node_modules/qrcode/lib/core/error-correction-level.js +50 -0
- package/node_modules/qrcode/lib/core/finder-pattern.js +22 -0
- package/node_modules/qrcode/lib/core/format-info.js +29 -0
- package/node_modules/qrcode/lib/core/galois-field.js +69 -0
- package/node_modules/qrcode/lib/core/kanji-data.js +54 -0
- package/node_modules/qrcode/lib/core/mask-pattern.js +234 -0
- package/node_modules/qrcode/lib/core/mode.js +167 -0
- package/node_modules/qrcode/lib/core/numeric-data.js +43 -0
- package/node_modules/qrcode/lib/core/polynomial.js +62 -0
- package/node_modules/qrcode/lib/core/qrcode.js +495 -0
- package/node_modules/qrcode/lib/core/reed-solomon-encoder.js +56 -0
- package/node_modules/qrcode/lib/core/regex.js +31 -0
- package/node_modules/qrcode/lib/core/segments.js +330 -0
- package/node_modules/qrcode/lib/core/utils.js +63 -0
- package/node_modules/qrcode/lib/core/version-check.js +9 -0
- package/node_modules/qrcode/lib/core/version.js +163 -0
- package/node_modules/qrcode/lib/index.js +12 -0
- package/node_modules/qrcode/lib/renderer/canvas.js +63 -0
- package/node_modules/qrcode/lib/renderer/png.js +78 -0
- package/node_modules/qrcode/lib/renderer/svg-tag.js +81 -0
- package/node_modules/qrcode/lib/renderer/svg.js +19 -0
- package/node_modules/qrcode/lib/renderer/terminal/terminal-small.js +85 -0
- package/node_modules/qrcode/lib/renderer/terminal/terminal.js +49 -0
- package/node_modules/qrcode/lib/renderer/terminal.js +9 -0
- package/node_modules/qrcode/lib/renderer/utf8.js +71 -0
- package/node_modules/qrcode/lib/renderer/utils.js +99 -0
- package/node_modules/qrcode/lib/server.js +138 -0
- package/node_modules/qrcode/license +10 -0
- package/node_modules/qrcode/package.json +77 -0
- package/node_modules/require-directory/.jshintrc +67 -0
- package/node_modules/require-directory/.npmignore +1 -0
- package/node_modules/require-directory/.travis.yml +3 -0
- package/node_modules/require-directory/LICENSE +22 -0
- package/node_modules/require-directory/README.markdown +184 -0
- package/node_modules/require-directory/index.js +86 -0
- package/node_modules/require-directory/package.json +40 -0
- package/node_modules/require-main-filename/LICENSE.txt +14 -0
- package/node_modules/require-main-filename/README.md +26 -0
- package/node_modules/require-main-filename/index.js +18 -0
- package/node_modules/require-main-filename/package.json +35 -0
- package/node_modules/set-blocking/LICENSE.txt +14 -0
- package/node_modules/set-blocking/README.md +31 -0
- package/node_modules/set-blocking/index.js +7 -0
- package/node_modules/set-blocking/package.json +42 -0
- package/node_modules/sisteransi/license +21 -0
- package/node_modules/sisteransi/package.json +34 -0
- package/node_modules/sisteransi/readme.md +113 -0
- package/node_modules/sisteransi/src/index.js +58 -0
- package/node_modules/sisteransi/src/sisteransi.d.ts +35 -0
- package/node_modules/string-width/index.d.ts +29 -0
- package/node_modules/string-width/index.js +47 -0
- package/node_modules/string-width/license +9 -0
- package/node_modules/string-width/package.json +56 -0
- package/node_modules/string-width/readme.md +50 -0
- package/node_modules/strip-ansi/index.d.ts +17 -0
- package/node_modules/strip-ansi/index.js +4 -0
- package/node_modules/strip-ansi/license +9 -0
- package/node_modules/strip-ansi/package.json +54 -0
- package/node_modules/strip-ansi/readme.md +46 -0
- package/node_modules/which-module/LICENSE +13 -0
- package/node_modules/which-module/README.md +58 -0
- package/node_modules/which-module/index.js +9 -0
- package/node_modules/which-module/package.json +41 -0
- package/node_modules/wrap-ansi/index.js +186 -0
- package/node_modules/wrap-ansi/license +9 -0
- package/node_modules/wrap-ansi/node_modules/ansi-styles/index.d.ts +345 -0
- package/node_modules/wrap-ansi/node_modules/ansi-styles/index.js +163 -0
- package/node_modules/wrap-ansi/node_modules/ansi-styles/license +9 -0
- package/node_modules/wrap-ansi/node_modules/ansi-styles/package.json +56 -0
- package/node_modules/wrap-ansi/node_modules/ansi-styles/readme.md +152 -0
- package/node_modules/wrap-ansi/package.json +61 -0
- package/node_modules/wrap-ansi/readme.md +97 -0
- package/node_modules/y18n/LICENSE +13 -0
- package/node_modules/y18n/README.md +109 -0
- package/node_modules/y18n/index.js +188 -0
- package/node_modules/y18n/package.json +39 -0
- package/node_modules/yargs/LICENSE +21 -0
- package/node_modules/yargs/README.md +140 -0
- package/node_modules/yargs/build/lib/apply-extends.d.ts +2 -0
- package/node_modules/yargs/build/lib/apply-extends.js +65 -0
- package/node_modules/yargs/build/lib/argsert.d.ts +2 -0
- package/node_modules/yargs/build/lib/argsert.js +65 -0
- package/node_modules/yargs/build/lib/command.d.ts +64 -0
- package/node_modules/yargs/build/lib/command.js +416 -0
- package/node_modules/yargs/build/lib/common-types.d.ts +36 -0
- package/node_modules/yargs/build/lib/common-types.js +25 -0
- package/node_modules/yargs/build/lib/completion-templates.d.ts +2 -0
- package/node_modules/yargs/build/lib/completion-templates.js +50 -0
- package/node_modules/yargs/build/lib/completion.d.ts +21 -0
- package/node_modules/yargs/build/lib/completion.js +135 -0
- package/node_modules/yargs/build/lib/is-promise.d.ts +1 -0
- package/node_modules/yargs/build/lib/is-promise.js +9 -0
- package/node_modules/yargs/build/lib/levenshtein.d.ts +1 -0
- package/node_modules/yargs/build/lib/levenshtein.js +58 -0
- package/node_modules/yargs/build/lib/middleware.d.ts +10 -0
- package/node_modules/yargs/build/lib/middleware.js +57 -0
- package/node_modules/yargs/build/lib/obj-filter.d.ts +1 -0
- package/node_modules/yargs/build/lib/obj-filter.js +14 -0
- package/node_modules/yargs/build/lib/parse-command.d.ts +11 -0
- package/node_modules/yargs/build/lib/parse-command.js +36 -0
- package/node_modules/yargs/build/lib/process-argv.d.ts +2 -0
- package/node_modules/yargs/build/lib/process-argv.js +31 -0
- package/node_modules/yargs/build/lib/usage.d.ts +49 -0
- package/node_modules/yargs/build/lib/usage.js +540 -0
- package/node_modules/yargs/build/lib/validation.d.ts +34 -0
- package/node_modules/yargs/build/lib/validation.js +330 -0
- package/node_modules/yargs/build/lib/yargs.d.ts +274 -0
- package/node_modules/yargs/build/lib/yargs.js +1190 -0
- package/node_modules/yargs/build/lib/yerror.d.ts +4 -0
- package/node_modules/yargs/build/lib/yerror.js +11 -0
- package/node_modules/yargs/index.js +40 -0
- package/node_modules/yargs/locales/be.json +46 -0
- package/node_modules/yargs/locales/de.json +46 -0
- package/node_modules/yargs/locales/en.json +51 -0
- package/node_modules/yargs/locales/es.json +46 -0
- package/node_modules/yargs/locales/fi.json +49 -0
- package/node_modules/yargs/locales/fr.json +53 -0
- package/node_modules/yargs/locales/hi.json +49 -0
- package/node_modules/yargs/locales/hu.json +46 -0
- package/node_modules/yargs/locales/id.json +50 -0
- package/node_modules/yargs/locales/it.json +46 -0
- package/node_modules/yargs/locales/ja.json +51 -0
- package/node_modules/yargs/locales/ko.json +49 -0
- package/node_modules/yargs/locales/nb.json +44 -0
- package/node_modules/yargs/locales/nl.json +49 -0
- package/node_modules/yargs/locales/nn.json +44 -0
- package/node_modules/yargs/locales/pirate.json +13 -0
- package/node_modules/yargs/locales/pl.json +49 -0
- package/node_modules/yargs/locales/pt.json +45 -0
- package/node_modules/yargs/locales/pt_BR.json +48 -0
- package/node_modules/yargs/locales/ru.json +46 -0
- package/node_modules/yargs/locales/th.json +46 -0
- package/node_modules/yargs/locales/tr.json +48 -0
- package/node_modules/yargs/locales/zh_CN.json +48 -0
- package/node_modules/yargs/locales/zh_TW.json +47 -0
- package/node_modules/yargs/package.json +92 -0
- package/node_modules/yargs/yargs.js +14 -0
- package/node_modules/yargs-parser/LICENSE.txt +14 -0
- package/node_modules/yargs-parser/README.md +449 -0
- package/node_modules/yargs-parser/index.js +1032 -0
- package/node_modules/yargs-parser/lib/tokenize-arg-string.js +40 -0
- package/node_modules/yargs-parser/package.json +46 -0
- package/package.json +28 -5
|
@@ -0,0 +1,354 @@
|
|
|
1
|
+
'use strict'
|
|
2
|
+
|
|
3
|
+
const stringWidth = require('string-width')
|
|
4
|
+
const stripAnsi = require('strip-ansi')
|
|
5
|
+
const wrap = require('wrap-ansi')
|
|
6
|
+
|
|
7
|
+
const align = {
|
|
8
|
+
right: alignRight,
|
|
9
|
+
center: alignCenter
|
|
10
|
+
}
|
|
11
|
+
const top = 0
|
|
12
|
+
const right = 1
|
|
13
|
+
const bottom = 2
|
|
14
|
+
const left = 3
|
|
15
|
+
|
|
16
|
+
class UI {
|
|
17
|
+
constructor (opts) {
|
|
18
|
+
this.width = opts.width
|
|
19
|
+
this.wrap = opts.wrap
|
|
20
|
+
this.rows = []
|
|
21
|
+
}
|
|
22
|
+
|
|
23
|
+
span (...args) {
|
|
24
|
+
const cols = this.div(...args)
|
|
25
|
+
cols.span = true
|
|
26
|
+
}
|
|
27
|
+
|
|
28
|
+
resetOutput () {
|
|
29
|
+
this.rows = []
|
|
30
|
+
}
|
|
31
|
+
|
|
32
|
+
div (...args) {
|
|
33
|
+
if (args.length === 0) {
|
|
34
|
+
this.div('')
|
|
35
|
+
}
|
|
36
|
+
|
|
37
|
+
if (this.wrap && this._shouldApplyLayoutDSL(...args)) {
|
|
38
|
+
return this._applyLayoutDSL(args[0])
|
|
39
|
+
}
|
|
40
|
+
|
|
41
|
+
const cols = args.map(arg => {
|
|
42
|
+
if (typeof arg === 'string') {
|
|
43
|
+
return this._colFromString(arg)
|
|
44
|
+
}
|
|
45
|
+
|
|
46
|
+
return arg
|
|
47
|
+
})
|
|
48
|
+
|
|
49
|
+
this.rows.push(cols)
|
|
50
|
+
return cols
|
|
51
|
+
}
|
|
52
|
+
|
|
53
|
+
_shouldApplyLayoutDSL (...args) {
|
|
54
|
+
return args.length === 1 && typeof args[0] === 'string' &&
|
|
55
|
+
/[\t\n]/.test(args[0])
|
|
56
|
+
}
|
|
57
|
+
|
|
58
|
+
_applyLayoutDSL (str) {
|
|
59
|
+
const rows = str.split('\n').map(row => row.split('\t'))
|
|
60
|
+
let leftColumnWidth = 0
|
|
61
|
+
|
|
62
|
+
// simple heuristic for layout, make sure the
|
|
63
|
+
// second column lines up along the left-hand.
|
|
64
|
+
// don't allow the first column to take up more
|
|
65
|
+
// than 50% of the screen.
|
|
66
|
+
rows.forEach(columns => {
|
|
67
|
+
if (columns.length > 1 && stringWidth(columns[0]) > leftColumnWidth) {
|
|
68
|
+
leftColumnWidth = Math.min(
|
|
69
|
+
Math.floor(this.width * 0.5),
|
|
70
|
+
stringWidth(columns[0])
|
|
71
|
+
)
|
|
72
|
+
}
|
|
73
|
+
})
|
|
74
|
+
|
|
75
|
+
// generate a table:
|
|
76
|
+
// replacing ' ' with padding calculations.
|
|
77
|
+
// using the algorithmically generated width.
|
|
78
|
+
rows.forEach(columns => {
|
|
79
|
+
this.div(...columns.map((r, i) => {
|
|
80
|
+
return {
|
|
81
|
+
text: r.trim(),
|
|
82
|
+
padding: this._measurePadding(r),
|
|
83
|
+
width: (i === 0 && columns.length > 1) ? leftColumnWidth : undefined
|
|
84
|
+
}
|
|
85
|
+
}))
|
|
86
|
+
})
|
|
87
|
+
|
|
88
|
+
return this.rows[this.rows.length - 1]
|
|
89
|
+
}
|
|
90
|
+
|
|
91
|
+
_colFromString (text) {
|
|
92
|
+
return {
|
|
93
|
+
text,
|
|
94
|
+
padding: this._measurePadding(text)
|
|
95
|
+
}
|
|
96
|
+
}
|
|
97
|
+
|
|
98
|
+
_measurePadding (str) {
|
|
99
|
+
// measure padding without ansi escape codes
|
|
100
|
+
const noAnsi = stripAnsi(str)
|
|
101
|
+
return [0, noAnsi.match(/\s*$/)[0].length, 0, noAnsi.match(/^\s*/)[0].length]
|
|
102
|
+
}
|
|
103
|
+
|
|
104
|
+
toString () {
|
|
105
|
+
const lines = []
|
|
106
|
+
|
|
107
|
+
this.rows.forEach(row => {
|
|
108
|
+
this.rowToString(row, lines)
|
|
109
|
+
})
|
|
110
|
+
|
|
111
|
+
// don't display any lines with the
|
|
112
|
+
// hidden flag set.
|
|
113
|
+
return lines
|
|
114
|
+
.filter(line => !line.hidden)
|
|
115
|
+
.map(line => line.text)
|
|
116
|
+
.join('\n')
|
|
117
|
+
}
|
|
118
|
+
|
|
119
|
+
rowToString (row, lines) {
|
|
120
|
+
this._rasterize(row).forEach((rrow, r) => {
|
|
121
|
+
let str = ''
|
|
122
|
+
rrow.forEach((col, c) => {
|
|
123
|
+
const { width } = row[c] // the width with padding.
|
|
124
|
+
const wrapWidth = this._negatePadding(row[c]) // the width without padding.
|
|
125
|
+
|
|
126
|
+
let ts = col // temporary string used during alignment/padding.
|
|
127
|
+
|
|
128
|
+
if (wrapWidth > stringWidth(col)) {
|
|
129
|
+
ts += ' '.repeat(wrapWidth - stringWidth(col))
|
|
130
|
+
}
|
|
131
|
+
|
|
132
|
+
// align the string within its column.
|
|
133
|
+
if (row[c].align && row[c].align !== 'left' && this.wrap) {
|
|
134
|
+
ts = align[row[c].align](ts, wrapWidth)
|
|
135
|
+
if (stringWidth(ts) < wrapWidth) {
|
|
136
|
+
ts += ' '.repeat(width - stringWidth(ts) - 1)
|
|
137
|
+
}
|
|
138
|
+
}
|
|
139
|
+
|
|
140
|
+
// apply border and padding to string.
|
|
141
|
+
const padding = row[c].padding || [0, 0, 0, 0]
|
|
142
|
+
if (padding[left]) {
|
|
143
|
+
str += ' '.repeat(padding[left])
|
|
144
|
+
}
|
|
145
|
+
|
|
146
|
+
str += addBorder(row[c], ts, '| ')
|
|
147
|
+
str += ts
|
|
148
|
+
str += addBorder(row[c], ts, ' |')
|
|
149
|
+
if (padding[right]) {
|
|
150
|
+
str += ' '.repeat(padding[right])
|
|
151
|
+
}
|
|
152
|
+
|
|
153
|
+
// if prior row is span, try to render the
|
|
154
|
+
// current row on the prior line.
|
|
155
|
+
if (r === 0 && lines.length > 0) {
|
|
156
|
+
str = this._renderInline(str, lines[lines.length - 1])
|
|
157
|
+
}
|
|
158
|
+
})
|
|
159
|
+
|
|
160
|
+
// remove trailing whitespace.
|
|
161
|
+
lines.push({
|
|
162
|
+
text: str.replace(/ +$/, ''),
|
|
163
|
+
span: row.span
|
|
164
|
+
})
|
|
165
|
+
})
|
|
166
|
+
|
|
167
|
+
return lines
|
|
168
|
+
}
|
|
169
|
+
|
|
170
|
+
// if the full 'source' can render in
|
|
171
|
+
// the target line, do so.
|
|
172
|
+
_renderInline (source, previousLine) {
|
|
173
|
+
const leadingWhitespace = source.match(/^ */)[0].length
|
|
174
|
+
const target = previousLine.text
|
|
175
|
+
const targetTextWidth = stringWidth(target.trimRight())
|
|
176
|
+
|
|
177
|
+
if (!previousLine.span) {
|
|
178
|
+
return source
|
|
179
|
+
}
|
|
180
|
+
|
|
181
|
+
// if we're not applying wrapping logic,
|
|
182
|
+
// just always append to the span.
|
|
183
|
+
if (!this.wrap) {
|
|
184
|
+
previousLine.hidden = true
|
|
185
|
+
return target + source
|
|
186
|
+
}
|
|
187
|
+
|
|
188
|
+
if (leadingWhitespace < targetTextWidth) {
|
|
189
|
+
return source
|
|
190
|
+
}
|
|
191
|
+
|
|
192
|
+
previousLine.hidden = true
|
|
193
|
+
|
|
194
|
+
return target.trimRight() + ' '.repeat(leadingWhitespace - targetTextWidth) + source.trimLeft()
|
|
195
|
+
}
|
|
196
|
+
|
|
197
|
+
_rasterize (row) {
|
|
198
|
+
const rrows = []
|
|
199
|
+
const widths = this._columnWidths(row)
|
|
200
|
+
let wrapped
|
|
201
|
+
|
|
202
|
+
// word wrap all columns, and create
|
|
203
|
+
// a data-structure that is easy to rasterize.
|
|
204
|
+
row.forEach((col, c) => {
|
|
205
|
+
// leave room for left and right padding.
|
|
206
|
+
col.width = widths[c]
|
|
207
|
+
if (this.wrap) {
|
|
208
|
+
wrapped = wrap(col.text, this._negatePadding(col), { hard: true }).split('\n')
|
|
209
|
+
} else {
|
|
210
|
+
wrapped = col.text.split('\n')
|
|
211
|
+
}
|
|
212
|
+
|
|
213
|
+
if (col.border) {
|
|
214
|
+
wrapped.unshift('.' + '-'.repeat(this._negatePadding(col) + 2) + '.')
|
|
215
|
+
wrapped.push("'" + '-'.repeat(this._negatePadding(col) + 2) + "'")
|
|
216
|
+
}
|
|
217
|
+
|
|
218
|
+
// add top and bottom padding.
|
|
219
|
+
if (col.padding) {
|
|
220
|
+
wrapped.unshift(...new Array(col.padding[top] || 0).fill(''))
|
|
221
|
+
wrapped.push(...new Array(col.padding[bottom] || 0).fill(''))
|
|
222
|
+
}
|
|
223
|
+
|
|
224
|
+
wrapped.forEach((str, r) => {
|
|
225
|
+
if (!rrows[r]) {
|
|
226
|
+
rrows.push([])
|
|
227
|
+
}
|
|
228
|
+
|
|
229
|
+
const rrow = rrows[r]
|
|
230
|
+
|
|
231
|
+
for (let i = 0; i < c; i++) {
|
|
232
|
+
if (rrow[i] === undefined) {
|
|
233
|
+
rrow.push('')
|
|
234
|
+
}
|
|
235
|
+
}
|
|
236
|
+
|
|
237
|
+
rrow.push(str)
|
|
238
|
+
})
|
|
239
|
+
})
|
|
240
|
+
|
|
241
|
+
return rrows
|
|
242
|
+
}
|
|
243
|
+
|
|
244
|
+
_negatePadding (col) {
|
|
245
|
+
let wrapWidth = col.width
|
|
246
|
+
if (col.padding) {
|
|
247
|
+
wrapWidth -= (col.padding[left] || 0) + (col.padding[right] || 0)
|
|
248
|
+
}
|
|
249
|
+
|
|
250
|
+
if (col.border) {
|
|
251
|
+
wrapWidth -= 4
|
|
252
|
+
}
|
|
253
|
+
|
|
254
|
+
return wrapWidth
|
|
255
|
+
}
|
|
256
|
+
|
|
257
|
+
_columnWidths (row) {
|
|
258
|
+
if (!this.wrap) {
|
|
259
|
+
return row.map(col => {
|
|
260
|
+
return col.width || stringWidth(col.text)
|
|
261
|
+
})
|
|
262
|
+
}
|
|
263
|
+
|
|
264
|
+
let unset = row.length
|
|
265
|
+
let remainingWidth = this.width
|
|
266
|
+
|
|
267
|
+
// column widths can be set in config.
|
|
268
|
+
const widths = row.map(col => {
|
|
269
|
+
if (col.width) {
|
|
270
|
+
unset--
|
|
271
|
+
remainingWidth -= col.width
|
|
272
|
+
return col.width
|
|
273
|
+
}
|
|
274
|
+
|
|
275
|
+
return undefined
|
|
276
|
+
})
|
|
277
|
+
|
|
278
|
+
// any unset widths should be calculated.
|
|
279
|
+
const unsetWidth = unset ? Math.floor(remainingWidth / unset) : 0
|
|
280
|
+
|
|
281
|
+
return widths.map((w, i) => {
|
|
282
|
+
if (w === undefined) {
|
|
283
|
+
return Math.max(unsetWidth, _minWidth(row[i]))
|
|
284
|
+
}
|
|
285
|
+
|
|
286
|
+
return w
|
|
287
|
+
})
|
|
288
|
+
}
|
|
289
|
+
}
|
|
290
|
+
|
|
291
|
+
function addBorder (col, ts, style) {
|
|
292
|
+
if (col.border) {
|
|
293
|
+
if (/[.']-+[.']/.test(ts)) {
|
|
294
|
+
return ''
|
|
295
|
+
}
|
|
296
|
+
|
|
297
|
+
if (ts.trim().length !== 0) {
|
|
298
|
+
return style
|
|
299
|
+
}
|
|
300
|
+
|
|
301
|
+
return ' '
|
|
302
|
+
}
|
|
303
|
+
|
|
304
|
+
return ''
|
|
305
|
+
}
|
|
306
|
+
|
|
307
|
+
// calculates the minimum width of
|
|
308
|
+
// a column, based on padding preferences.
|
|
309
|
+
function _minWidth (col) {
|
|
310
|
+
const padding = col.padding || []
|
|
311
|
+
const minWidth = 1 + (padding[left] || 0) + (padding[right] || 0)
|
|
312
|
+
if (col.border) {
|
|
313
|
+
return minWidth + 4
|
|
314
|
+
}
|
|
315
|
+
|
|
316
|
+
return minWidth
|
|
317
|
+
}
|
|
318
|
+
|
|
319
|
+
function getWindowWidth () {
|
|
320
|
+
/* istanbul ignore next: depends on terminal */
|
|
321
|
+
if (typeof process === 'object' && process.stdout && process.stdout.columns) {
|
|
322
|
+
return process.stdout.columns
|
|
323
|
+
}
|
|
324
|
+
}
|
|
325
|
+
|
|
326
|
+
function alignRight (str, width) {
|
|
327
|
+
str = str.trim()
|
|
328
|
+
const strWidth = stringWidth(str)
|
|
329
|
+
|
|
330
|
+
if (strWidth < width) {
|
|
331
|
+
return ' '.repeat(width - strWidth) + str
|
|
332
|
+
}
|
|
333
|
+
|
|
334
|
+
return str
|
|
335
|
+
}
|
|
336
|
+
|
|
337
|
+
function alignCenter (str, width) {
|
|
338
|
+
str = str.trim()
|
|
339
|
+
const strWidth = stringWidth(str)
|
|
340
|
+
|
|
341
|
+
/* istanbul ignore next */
|
|
342
|
+
if (strWidth >= width) {
|
|
343
|
+
return str
|
|
344
|
+
}
|
|
345
|
+
|
|
346
|
+
return ' '.repeat((width - strWidth) >> 1) + str
|
|
347
|
+
}
|
|
348
|
+
|
|
349
|
+
module.exports = function (opts = {}) {
|
|
350
|
+
return new UI({
|
|
351
|
+
width: opts.width || getWindowWidth() || /* istanbul ignore next */ 80,
|
|
352
|
+
wrap: opts.wrap !== false
|
|
353
|
+
})
|
|
354
|
+
}
|
|
@@ -0,0 +1,65 @@
|
|
|
1
|
+
{
|
|
2
|
+
"name": "cliui",
|
|
3
|
+
"version": "6.0.0",
|
|
4
|
+
"description": "easily create complex multi-column command-line-interfaces",
|
|
5
|
+
"main": "index.js",
|
|
6
|
+
"scripts": {
|
|
7
|
+
"pretest": "standard",
|
|
8
|
+
"test": "nyc mocha",
|
|
9
|
+
"coverage": "nyc --reporter=text-lcov mocha | coveralls"
|
|
10
|
+
},
|
|
11
|
+
"repository": {
|
|
12
|
+
"type": "git",
|
|
13
|
+
"url": "http://github.com/yargs/cliui.git"
|
|
14
|
+
},
|
|
15
|
+
"config": {
|
|
16
|
+
"blanket": {
|
|
17
|
+
"pattern": [
|
|
18
|
+
"index.js"
|
|
19
|
+
],
|
|
20
|
+
"data-cover-never": [
|
|
21
|
+
"node_modules",
|
|
22
|
+
"test"
|
|
23
|
+
],
|
|
24
|
+
"output-reporter": "spec"
|
|
25
|
+
}
|
|
26
|
+
},
|
|
27
|
+
"standard": {
|
|
28
|
+
"ignore": [
|
|
29
|
+
"**/example/**"
|
|
30
|
+
],
|
|
31
|
+
"globals": [
|
|
32
|
+
"it"
|
|
33
|
+
]
|
|
34
|
+
},
|
|
35
|
+
"keywords": [
|
|
36
|
+
"cli",
|
|
37
|
+
"command-line",
|
|
38
|
+
"layout",
|
|
39
|
+
"design",
|
|
40
|
+
"console",
|
|
41
|
+
"wrap",
|
|
42
|
+
"table"
|
|
43
|
+
],
|
|
44
|
+
"author": "Ben Coe <ben@npmjs.com>",
|
|
45
|
+
"license": "ISC",
|
|
46
|
+
"dependencies": {
|
|
47
|
+
"string-width": "^4.2.0",
|
|
48
|
+
"strip-ansi": "^6.0.0",
|
|
49
|
+
"wrap-ansi": "^6.2.0"
|
|
50
|
+
},
|
|
51
|
+
"devDependencies": {
|
|
52
|
+
"chai": "^4.2.0",
|
|
53
|
+
"chalk": "^3.0.0",
|
|
54
|
+
"coveralls": "^3.0.3",
|
|
55
|
+
"mocha": "^6.2.2",
|
|
56
|
+
"nyc": "^14.1.1",
|
|
57
|
+
"standard": "^12.0.1"
|
|
58
|
+
},
|
|
59
|
+
"files": [
|
|
60
|
+
"index.js"
|
|
61
|
+
],
|
|
62
|
+
"engine": {
|
|
63
|
+
"node": ">=8"
|
|
64
|
+
}
|
|
65
|
+
}
|
|
@@ -0,0 +1,21 @@
|
|
|
1
|
+
Copyright (c) 2011-2016 Heather Arthur <fayearthur@gmail.com>
|
|
2
|
+
|
|
3
|
+
Permission is hereby granted, free of charge, to any person obtaining
|
|
4
|
+
a copy of this software and associated documentation files (the
|
|
5
|
+
"Software"), to deal in the Software without restriction, including
|
|
6
|
+
without limitation the rights to use, copy, modify, merge, publish,
|
|
7
|
+
distribute, sublicense, and/or sell copies of the Software, and to
|
|
8
|
+
permit persons to whom the Software is furnished to do so, subject to
|
|
9
|
+
the following conditions:
|
|
10
|
+
|
|
11
|
+
The above copyright notice and this permission notice shall be
|
|
12
|
+
included in all copies or substantial portions of the Software.
|
|
13
|
+
|
|
14
|
+
THE SOFTWARE IS PROVIDED "AS IS", WITHOUT WARRANTY OF ANY KIND,
|
|
15
|
+
EXPRESS OR IMPLIED, INCLUDING BUT NOT LIMITED TO THE WARRANTIES OF
|
|
16
|
+
MERCHANTABILITY, FITNESS FOR A PARTICULAR PURPOSE AND
|
|
17
|
+
NONINFRINGEMENT. IN NO EVENT SHALL THE AUTHORS OR COPYRIGHT HOLDERS BE
|
|
18
|
+
LIABLE FOR ANY CLAIM, DAMAGES OR OTHER LIABILITY, WHETHER IN AN ACTION
|
|
19
|
+
OF CONTRACT, TORT OR OTHERWISE, ARISING FROM, OUT OF OR IN CONNECTION
|
|
20
|
+
WITH THE SOFTWARE OR THE USE OR OTHER DEALINGS IN THE SOFTWARE.
|
|
21
|
+
|
|
@@ -0,0 +1,68 @@
|
|
|
1
|
+
# color-convert
|
|
2
|
+
|
|
3
|
+
[](https://travis-ci.org/Qix-/color-convert)
|
|
4
|
+
|
|
5
|
+
Color-convert is a color conversion library for JavaScript and node.
|
|
6
|
+
It converts all ways between `rgb`, `hsl`, `hsv`, `hwb`, `cmyk`, `ansi`, `ansi16`, `hex` strings, and CSS `keyword`s (will round to closest):
|
|
7
|
+
|
|
8
|
+
```js
|
|
9
|
+
var convert = require('color-convert');
|
|
10
|
+
|
|
11
|
+
convert.rgb.hsl(140, 200, 100); // [96, 48, 59]
|
|
12
|
+
convert.keyword.rgb('blue'); // [0, 0, 255]
|
|
13
|
+
|
|
14
|
+
var rgbChannels = convert.rgb.channels; // 3
|
|
15
|
+
var cmykChannels = convert.cmyk.channels; // 4
|
|
16
|
+
var ansiChannels = convert.ansi16.channels; // 1
|
|
17
|
+
```
|
|
18
|
+
|
|
19
|
+
# Install
|
|
20
|
+
|
|
21
|
+
```console
|
|
22
|
+
$ npm install color-convert
|
|
23
|
+
```
|
|
24
|
+
|
|
25
|
+
# API
|
|
26
|
+
|
|
27
|
+
Simply get the property of the _from_ and _to_ conversion that you're looking for.
|
|
28
|
+
|
|
29
|
+
All functions have a rounded and unrounded variant. By default, return values are rounded. To get the unrounded (raw) results, simply tack on `.raw` to the function.
|
|
30
|
+
|
|
31
|
+
All 'from' functions have a hidden property called `.channels` that indicates the number of channels the function expects (not including alpha).
|
|
32
|
+
|
|
33
|
+
```js
|
|
34
|
+
var convert = require('color-convert');
|
|
35
|
+
|
|
36
|
+
// Hex to LAB
|
|
37
|
+
convert.hex.lab('DEADBF'); // [ 76, 21, -2 ]
|
|
38
|
+
convert.hex.lab.raw('DEADBF'); // [ 75.56213190997677, 20.653827952644754, -2.290532499330533 ]
|
|
39
|
+
|
|
40
|
+
// RGB to CMYK
|
|
41
|
+
convert.rgb.cmyk(167, 255, 4); // [ 35, 0, 98, 0 ]
|
|
42
|
+
convert.rgb.cmyk.raw(167, 255, 4); // [ 34.509803921568626, 0, 98.43137254901961, 0 ]
|
|
43
|
+
```
|
|
44
|
+
|
|
45
|
+
### Arrays
|
|
46
|
+
All functions that accept multiple arguments also support passing an array.
|
|
47
|
+
|
|
48
|
+
Note that this does **not** apply to functions that convert from a color that only requires one value (e.g. `keyword`, `ansi256`, `hex`, etc.)
|
|
49
|
+
|
|
50
|
+
```js
|
|
51
|
+
var convert = require('color-convert');
|
|
52
|
+
|
|
53
|
+
convert.rgb.hex(123, 45, 67); // '7B2D43'
|
|
54
|
+
convert.rgb.hex([123, 45, 67]); // '7B2D43'
|
|
55
|
+
```
|
|
56
|
+
|
|
57
|
+
## Routing
|
|
58
|
+
|
|
59
|
+
Conversions that don't have an _explicitly_ defined conversion (in [conversions.js](conversions.js)), but can be converted by means of sub-conversions (e.g. XYZ -> **RGB** -> CMYK), are automatically routed together. This allows just about any color model supported by `color-convert` to be converted to any other model, so long as a sub-conversion path exists. This is also true for conversions requiring more than one step in between (e.g. LCH -> **LAB** -> **XYZ** -> **RGB** -> Hex).
|
|
60
|
+
|
|
61
|
+
Keep in mind that extensive conversions _may_ result in a loss of precision, and exist only to be complete. For a list of "direct" (single-step) conversions, see [conversions.js](conversions.js).
|
|
62
|
+
|
|
63
|
+
# Contribute
|
|
64
|
+
|
|
65
|
+
If there is a new model you would like to support, or want to add a direct conversion between two existing models, please send us a pull request.
|
|
66
|
+
|
|
67
|
+
# License
|
|
68
|
+
Copyright © 2011-2016, Heather Arthur and Josh Junon. Licensed under the [MIT License](LICENSE).
|