node-datachannel 0.1.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/.github/workflows/build-linux.yml +109 -0
- package/.github/workflows/build-mac.yml +40 -0
- package/.github/workflows/build-win.yml +77 -0
- package/.github/workflows/npm-publish-manual.yml +23 -0
- package/CMakeLists.txt +73 -0
- package/LICENSE +504 -0
- package/README.md +180 -0
- package/cmake/toolchain/arm64.cmake +17 -0
- package/cmake/toolchain/armv7.cmake +17 -0
- package/examples/README.md +21 -0
- package/examples/client-server/client-benchmark.js +216 -0
- package/examples/client-server/client-periodic.js +176 -0
- package/examples/client-server/client.js +113 -0
- package/examples/client-server/package-lock.json +126 -0
- package/examples/client-server/package.json +16 -0
- package/examples/client-server/signaling-server.js +31 -0
- package/lib/index.d.ts +123 -0
- package/lib/index.js +2 -0
- package/node_modules/ansi-regex/index.js +4 -0
- package/node_modules/ansi-regex/license +21 -0
- package/node_modules/ansi-regex/package.json +111 -0
- package/node_modules/ansi-regex/readme.md +39 -0
- package/node_modules/aproba/LICENSE +14 -0
- package/node_modules/aproba/README.md +94 -0
- package/node_modules/aproba/index.js +105 -0
- package/node_modules/aproba/package.json +65 -0
- package/node_modules/base64-js/LICENSE +21 -0
- package/node_modules/base64-js/README.md +34 -0
- package/node_modules/base64-js/base64js.min.js +1 -0
- package/node_modules/base64-js/index.d.ts +3 -0
- package/node_modules/base64-js/index.js +150 -0
- package/node_modules/base64-js/package.json +78 -0
- package/node_modules/buffer/AUTHORS.md +70 -0
- package/node_modules/buffer/LICENSE +21 -0
- package/node_modules/buffer/README.md +410 -0
- package/node_modules/buffer/index.d.ts +186 -0
- package/node_modules/buffer/index.js +1817 -0
- package/node_modules/buffer/package.json +130 -0
- package/node_modules/chownr/LICENSE +15 -0
- package/node_modules/chownr/README.md +3 -0
- package/node_modules/chownr/chownr.js +167 -0
- package/node_modules/chownr/package.json +66 -0
- package/node_modules/code-point-at/index.js +32 -0
- package/node_modules/code-point-at/license +21 -0
- package/node_modules/code-point-at/package.json +73 -0
- package/node_modules/code-point-at/readme.md +32 -0
- package/node_modules/console-control-strings/LICENSE +13 -0
- package/node_modules/console-control-strings/README.md +145 -0
- package/node_modules/console-control-strings/README.md~ +140 -0
- package/node_modules/console-control-strings/index.js +125 -0
- package/node_modules/console-control-strings/package.json +64 -0
- package/node_modules/core-util-is/LICENSE +19 -0
- package/node_modules/core-util-is/README.md +3 -0
- package/node_modules/core-util-is/float.patch +604 -0
- package/node_modules/core-util-is/lib/util.js +107 -0
- package/node_modules/core-util-is/package.json +70 -0
- package/node_modules/core-util-is/test.js +68 -0
- package/node_modules/decompress-response/index.d.ts +29 -0
- package/node_modules/decompress-response/index.js +40 -0
- package/node_modules/decompress-response/license +9 -0
- package/node_modules/decompress-response/package.json +85 -0
- package/node_modules/decompress-response/readme.md +52 -0
- package/node_modules/deep-extend/CHANGELOG.md +46 -0
- package/node_modules/deep-extend/LICENSE +20 -0
- package/node_modules/deep-extend/README.md +91 -0
- package/node_modules/deep-extend/index.js +1 -0
- package/node_modules/deep-extend/lib/deep-extend.js +150 -0
- package/node_modules/deep-extend/package.json +95 -0
- package/node_modules/delegates/.npmignore +1 -0
- package/node_modules/delegates/History.md +22 -0
- package/node_modules/delegates/License +20 -0
- package/node_modules/delegates/Makefile +8 -0
- package/node_modules/delegates/Readme.md +94 -0
- package/node_modules/delegates/index.js +121 -0
- package/node_modules/delegates/package.json +54 -0
- package/node_modules/delegates/test/index.js +94 -0
- package/node_modules/detect-libc/.npmignore +7 -0
- package/node_modules/detect-libc/LICENSE +201 -0
- package/node_modules/detect-libc/README.md +78 -0
- package/node_modules/detect-libc/bin/detect-libc.js +18 -0
- package/node_modules/detect-libc/lib/detect-libc.js +92 -0
- package/node_modules/detect-libc/package.json +74 -0
- package/node_modules/end-of-stream/LICENSE +21 -0
- package/node_modules/end-of-stream/README.md +54 -0
- package/node_modules/end-of-stream/index.js +94 -0
- package/node_modules/end-of-stream/package.json +69 -0
- package/node_modules/expand-template/.travis.yml +6 -0
- package/node_modules/expand-template/LICENSE +21 -0
- package/node_modules/expand-template/README.md +43 -0
- package/node_modules/expand-template/index.js +26 -0
- package/node_modules/expand-template/package.json +63 -0
- package/node_modules/expand-template/test.js +67 -0
- package/node_modules/fs-constants/LICENSE +21 -0
- package/node_modules/fs-constants/README.md +26 -0
- package/node_modules/fs-constants/browser.js +1 -0
- package/node_modules/fs-constants/index.js +1 -0
- package/node_modules/fs-constants/package.json +50 -0
- package/node_modules/github-from-package/.travis.yml +4 -0
- package/node_modules/github-from-package/LICENSE +18 -0
- package/node_modules/github-from-package/example/package.json +8 -0
- package/node_modules/github-from-package/example/url.js +3 -0
- package/node_modules/github-from-package/index.js +17 -0
- package/node_modules/github-from-package/package.json +62 -0
- package/node_modules/github-from-package/readme.markdown +53 -0
- package/node_modules/github-from-package/test/a.json +8 -0
- package/node_modules/github-from-package/test/b.json +5 -0
- package/node_modules/github-from-package/test/c.json +5 -0
- package/node_modules/github-from-package/test/d.json +7 -0
- package/node_modules/github-from-package/test/e.json +5 -0
- package/node_modules/github-from-package/test/url.js +19 -0
- package/node_modules/has-unicode/LICENSE +14 -0
- package/node_modules/has-unicode/README.md +43 -0
- package/node_modules/has-unicode/index.js +16 -0
- package/node_modules/has-unicode/package.json +63 -0
- package/node_modules/ieee754/LICENSE +11 -0
- package/node_modules/ieee754/README.md +51 -0
- package/node_modules/ieee754/index.d.ts +10 -0
- package/node_modules/ieee754/index.js +85 -0
- package/node_modules/ieee754/package.json +87 -0
- package/node_modules/inherits/LICENSE +16 -0
- package/node_modules/inherits/README.md +42 -0
- package/node_modules/inherits/inherits.js +9 -0
- package/node_modules/inherits/inherits_browser.js +27 -0
- package/node_modules/inherits/package.json +78 -0
- package/node_modules/ini/LICENSE +15 -0
- package/node_modules/ini/README.md +102 -0
- package/node_modules/ini/ini.js +194 -0
- package/node_modules/ini/package.json +66 -0
- package/node_modules/is-fullwidth-code-point/index.js +46 -0
- package/node_modules/is-fullwidth-code-point/license +21 -0
- package/node_modules/is-fullwidth-code-point/package.json +80 -0
- package/node_modules/is-fullwidth-code-point/readme.md +39 -0
- package/node_modules/isarray/.npmignore +1 -0
- package/node_modules/isarray/.travis.yml +4 -0
- package/node_modules/isarray/Makefile +6 -0
- package/node_modules/isarray/README.md +60 -0
- package/node_modules/isarray/component.json +19 -0
- package/node_modules/isarray/index.js +5 -0
- package/node_modules/isarray/package.json +77 -0
- package/node_modules/isarray/test.js +20 -0
- package/node_modules/mimic-response/index.d.ts +17 -0
- package/node_modules/mimic-response/index.js +38 -0
- package/node_modules/mimic-response/license +9 -0
- package/node_modules/mimic-response/package.json +77 -0
- package/node_modules/mimic-response/readme.md +57 -0
- package/node_modules/minimist/.travis.yml +8 -0
- package/node_modules/minimist/LICENSE +18 -0
- package/node_modules/minimist/example/parse.js +2 -0
- package/node_modules/minimist/index.js +245 -0
- package/node_modules/minimist/package.json +80 -0
- package/node_modules/minimist/readme.markdown +95 -0
- package/node_modules/minimist/test/all_bool.js +32 -0
- package/node_modules/minimist/test/bool.js +178 -0
- package/node_modules/minimist/test/dash.js +31 -0
- package/node_modules/minimist/test/default_bool.js +35 -0
- package/node_modules/minimist/test/dotted.js +22 -0
- package/node_modules/minimist/test/kv_short.js +16 -0
- package/node_modules/minimist/test/long.js +31 -0
- package/node_modules/minimist/test/num.js +36 -0
- package/node_modules/minimist/test/parse.js +197 -0
- package/node_modules/minimist/test/parse_modified.js +9 -0
- package/node_modules/minimist/test/proto.js +44 -0
- package/node_modules/minimist/test/short.js +67 -0
- package/node_modules/minimist/test/stop_early.js +15 -0
- package/node_modules/minimist/test/unknown.js +102 -0
- package/node_modules/minimist/test/whitespace.js +8 -0
- package/node_modules/mkdirp-classic/LICENSE +21 -0
- package/node_modules/mkdirp-classic/README.md +18 -0
- package/node_modules/mkdirp-classic/index.js +98 -0
- package/node_modules/mkdirp-classic/package.json +50 -0
- package/node_modules/napi-build-utils/LICENSE +21 -0
- package/node_modules/napi-build-utils/README.md +48 -0
- package/node_modules/napi-build-utils/index.js +213 -0
- package/node_modules/napi-build-utils/index.md +81 -0
- package/node_modules/napi-build-utils/package.json +72 -0
- package/node_modules/node-abi/.github/workflows/update-abi.yml +41 -0
- package/node_modules/node-abi/.travis.yml +19 -0
- package/node_modules/node-abi/CODE_OF_CONDUCT.md +73 -0
- package/node_modules/node-abi/CONTRIBUTING.md +53 -0
- package/node_modules/node-abi/LICENSE +21 -0
- package/node_modules/node-abi/README.md +50 -0
- package/node_modules/node-abi/abi_registry.json +99 -0
- package/node_modules/node-abi/index.js +170 -0
- package/node_modules/node-abi/package.json +69 -0
- package/node_modules/node-abi/scripts/update-abi-registry.js +113 -0
- package/node_modules/node-abi/test/index.js +174 -0
- package/node_modules/noop-logger/.npmignore +1 -0
- package/node_modules/noop-logger/History.md +16 -0
- package/node_modules/noop-logger/Makefile +8 -0
- package/node_modules/noop-logger/Readme.md +27 -0
- package/node_modules/noop-logger/circle.yml +9 -0
- package/node_modules/noop-logger/lib/index.js +25 -0
- package/node_modules/noop-logger/package.json +51 -0
- package/node_modules/noop-logger/test/index.js +18 -0
- package/node_modules/npmlog/CHANGELOG.md +49 -0
- package/node_modules/npmlog/LICENSE +15 -0
- package/node_modules/npmlog/README.md +216 -0
- package/node_modules/npmlog/log.js +309 -0
- package/node_modules/npmlog/node_modules/are-we-there-yet/CHANGES.md +37 -0
- package/node_modules/npmlog/node_modules/are-we-there-yet/LICENSE +5 -0
- package/node_modules/npmlog/node_modules/are-we-there-yet/README.md +195 -0
- package/node_modules/npmlog/node_modules/are-we-there-yet/index.js +4 -0
- package/node_modules/npmlog/node_modules/are-we-there-yet/package.json +66 -0
- package/node_modules/npmlog/node_modules/are-we-there-yet/tracker-base.js +11 -0
- package/node_modules/npmlog/node_modules/are-we-there-yet/tracker-group.js +107 -0
- package/node_modules/npmlog/node_modules/are-we-there-yet/tracker-stream.js +36 -0
- package/node_modules/npmlog/node_modules/are-we-there-yet/tracker.js +30 -0
- package/node_modules/npmlog/node_modules/gauge/CHANGELOG.md +160 -0
- package/node_modules/npmlog/node_modules/gauge/LICENSE +13 -0
- package/node_modules/npmlog/node_modules/gauge/README.md +399 -0
- package/node_modules/npmlog/node_modules/gauge/base-theme.js +14 -0
- package/node_modules/npmlog/node_modules/gauge/error.js +24 -0
- package/node_modules/npmlog/node_modules/gauge/has-color.js +12 -0
- package/node_modules/npmlog/node_modules/gauge/index.js +233 -0
- package/node_modules/npmlog/node_modules/gauge/package.json +94 -0
- package/node_modules/npmlog/node_modules/gauge/plumbing.js +48 -0
- package/node_modules/npmlog/node_modules/gauge/process.js +3 -0
- package/node_modules/npmlog/node_modules/gauge/progress-bar.js +35 -0
- package/node_modules/npmlog/node_modules/gauge/render-template.js +181 -0
- package/node_modules/npmlog/node_modules/gauge/set-immediate.js +7 -0
- package/node_modules/npmlog/node_modules/gauge/set-interval.js +3 -0
- package/node_modules/npmlog/node_modules/gauge/spin.js +5 -0
- package/node_modules/npmlog/node_modules/gauge/template-item.js +73 -0
- package/node_modules/npmlog/node_modules/gauge/theme-set.js +115 -0
- package/node_modules/npmlog/node_modules/gauge/themes.js +54 -0
- package/node_modules/npmlog/node_modules/gauge/wide-truncate.js +25 -0
- package/node_modules/npmlog/package.json +78 -0
- package/node_modules/number-is-nan/index.js +4 -0
- package/node_modules/number-is-nan/license +21 -0
- package/node_modules/number-is-nan/package.json +70 -0
- package/node_modules/number-is-nan/readme.md +28 -0
- package/node_modules/object-assign/index.js +90 -0
- package/node_modules/object-assign/license +21 -0
- package/node_modules/object-assign/package.json +77 -0
- package/node_modules/object-assign/readme.md +61 -0
- package/node_modules/once/LICENSE +15 -0
- package/node_modules/once/README.md +79 -0
- package/node_modules/once/once.js +42 -0
- package/node_modules/once/package.json +74 -0
- package/node_modules/prebuild-install/.travis.yml +12 -0
- package/node_modules/prebuild-install/CHANGELOG.md +7 -0
- package/node_modules/prebuild-install/CONTRIBUTING.md +6 -0
- package/node_modules/prebuild-install/LICENSE +21 -0
- package/node_modules/prebuild-install/README.md +108 -0
- package/node_modules/prebuild-install/appveyor.yml +40 -0
- package/node_modules/prebuild-install/asset.js +48 -0
- package/node_modules/prebuild-install/bin.js +85 -0
- package/node_modules/prebuild-install/download.js +130 -0
- package/node_modules/prebuild-install/error.js +14 -0
- package/node_modules/prebuild-install/help.txt +14 -0
- package/node_modules/prebuild-install/index.js +1 -0
- package/node_modules/prebuild-install/log.js +13 -0
- package/node_modules/prebuild-install/package.json +131 -0
- package/node_modules/prebuild-install/proxy.js +38 -0
- package/node_modules/prebuild-install/rc.js +81 -0
- package/node_modules/prebuild-install/util.js +97 -0
- package/node_modules/process-nextick-args/index.js +45 -0
- package/node_modules/process-nextick-args/license.md +19 -0
- package/node_modules/process-nextick-args/package.json +53 -0
- package/node_modules/process-nextick-args/readme.md +18 -0
- package/node_modules/pump/.travis.yml +5 -0
- package/node_modules/pump/LICENSE +21 -0
- package/node_modules/pump/README.md +65 -0
- package/node_modules/pump/index.js +82 -0
- package/node_modules/pump/package.json +63 -0
- package/node_modules/pump/test-browser.js +66 -0
- package/node_modules/pump/test-node.js +53 -0
- package/node_modules/rc/LICENSE.APACHE2 +15 -0
- package/node_modules/rc/LICENSE.BSD +26 -0
- package/node_modules/rc/LICENSE.MIT +24 -0
- package/node_modules/rc/README.md +227 -0
- package/node_modules/rc/browser.js +7 -0
- package/node_modules/rc/cli.js +4 -0
- package/node_modules/rc/index.js +53 -0
- package/node_modules/rc/lib/utils.js +104 -0
- package/node_modules/rc/package.json +70 -0
- package/node_modules/rc/test/ini.js +16 -0
- package/node_modules/rc/test/nested-env-vars.js +50 -0
- package/node_modules/rc/test/test.js +59 -0
- package/node_modules/readable-stream/.travis.yml +34 -0
- package/node_modules/readable-stream/CONTRIBUTING.md +38 -0
- package/node_modules/readable-stream/GOVERNANCE.md +136 -0
- package/node_modules/readable-stream/LICENSE +47 -0
- package/node_modules/readable-stream/README.md +58 -0
- package/node_modules/readable-stream/doc/wg-meetings/2015-01-30.md +60 -0
- package/node_modules/readable-stream/duplex-browser.js +1 -0
- package/node_modules/readable-stream/duplex.js +1 -0
- package/node_modules/readable-stream/lib/_stream_duplex.js +131 -0
- package/node_modules/readable-stream/lib/_stream_passthrough.js +47 -0
- package/node_modules/readable-stream/lib/_stream_readable.js +1019 -0
- package/node_modules/readable-stream/lib/_stream_transform.js +214 -0
- package/node_modules/readable-stream/lib/_stream_writable.js +687 -0
- package/node_modules/readable-stream/lib/internal/streams/BufferList.js +79 -0
- package/node_modules/readable-stream/lib/internal/streams/destroy.js +74 -0
- package/node_modules/readable-stream/lib/internal/streams/stream-browser.js +1 -0
- package/node_modules/readable-stream/lib/internal/streams/stream.js +1 -0
- package/node_modules/readable-stream/package.json +88 -0
- package/node_modules/readable-stream/passthrough.js +1 -0
- package/node_modules/readable-stream/readable-browser.js +7 -0
- package/node_modules/readable-stream/readable.js +19 -0
- package/node_modules/readable-stream/transform.js +1 -0
- package/node_modules/readable-stream/writable-browser.js +1 -0
- package/node_modules/readable-stream/writable.js +8 -0
- package/node_modules/safe-buffer/LICENSE +21 -0
- package/node_modules/safe-buffer/README.md +584 -0
- package/node_modules/safe-buffer/index.d.ts +187 -0
- package/node_modules/safe-buffer/index.js +62 -0
- package/node_modules/safe-buffer/package.json +71 -0
- package/node_modules/semver/CHANGELOG.md +39 -0
- package/node_modules/semver/LICENSE +15 -0
- package/node_modules/semver/README.md +412 -0
- package/node_modules/semver/bin/semver +160 -0
- package/node_modules/semver/package.json +67 -0
- package/node_modules/semver/range.bnf +16 -0
- package/node_modules/semver/semver.js +1483 -0
- package/node_modules/set-blocking/CHANGELOG.md +26 -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 +73 -0
- package/node_modules/signal-exit/CHANGELOG.md +35 -0
- package/node_modules/signal-exit/LICENSE.txt +16 -0
- package/node_modules/signal-exit/README.md +39 -0
- package/node_modules/signal-exit/index.js +163 -0
- package/node_modules/signal-exit/package.json +71 -0
- package/node_modules/signal-exit/signals.js +53 -0
- package/node_modules/simple-concat/.travis.yml +3 -0
- package/node_modules/simple-concat/LICENSE +20 -0
- package/node_modules/simple-concat/README.md +44 -0
- package/node_modules/simple-concat/index.js +15 -0
- package/node_modules/simple-concat/package.json +75 -0
- package/node_modules/simple-concat/test/basic.js +41 -0
- package/node_modules/simple-get/LICENSE +20 -0
- package/node_modules/simple-get/README.md +319 -0
- package/node_modules/simple-get/index.js +99 -0
- package/node_modules/simple-get/package.json +81 -0
- package/node_modules/string-width/index.js +37 -0
- package/node_modules/string-width/license +21 -0
- package/node_modules/string-width/package.json +96 -0
- package/node_modules/string-width/readme.md +42 -0
- package/node_modules/string_decoder/.travis.yml +50 -0
- package/node_modules/string_decoder/LICENSE +48 -0
- package/node_modules/string_decoder/README.md +47 -0
- package/node_modules/string_decoder/lib/string_decoder.js +296 -0
- package/node_modules/string_decoder/package.json +64 -0
- package/node_modules/strip-ansi/index.js +6 -0
- package/node_modules/strip-ansi/license +21 -0
- package/node_modules/strip-ansi/package.json +107 -0
- package/node_modules/strip-ansi/readme.md +33 -0
- package/node_modules/strip-json-comments/index.js +70 -0
- package/node_modules/strip-json-comments/license +21 -0
- package/node_modules/strip-json-comments/package.json +77 -0
- package/node_modules/strip-json-comments/readme.md +64 -0
- package/node_modules/tar-fs/.travis.yml +6 -0
- package/node_modules/tar-fs/LICENSE +21 -0
- package/node_modules/tar-fs/README.md +165 -0
- package/node_modules/tar-fs/index.js +351 -0
- package/node_modules/tar-fs/package.json +71 -0
- package/node_modules/tar-fs/test/fixtures/a/hello.txt +1 -0
- package/node_modules/tar-fs/test/fixtures/b/a/test.txt +1 -0
- package/node_modules/tar-fs/test/fixtures/d/file1 +0 -0
- package/node_modules/tar-fs/test/fixtures/d/file2 +0 -0
- package/node_modules/tar-fs/test/fixtures/d/sub-dir/file5 +0 -0
- package/node_modules/tar-fs/test/fixtures/d/sub-files/file3 +0 -0
- package/node_modules/tar-fs/test/fixtures/d/sub-files/file4 +0 -0
- package/node_modules/tar-fs/test/fixtures/e/directory/.ignore +0 -0
- package/node_modules/tar-fs/test/fixtures/e/file +0 -0
- package/node_modules/tar-fs/test/fixtures/invalid.tar +0 -0
- package/node_modules/tar-fs/test/index.js +346 -0
- package/node_modules/tar-stream/LICENSE +21 -0
- package/node_modules/tar-stream/README.md +168 -0
- package/node_modules/tar-stream/extract.js +257 -0
- package/node_modules/tar-stream/headers.js +293 -0
- package/node_modules/tar-stream/index.js +2 -0
- package/node_modules/tar-stream/node_modules/bl/.travis.yml +16 -0
- package/node_modules/tar-stream/node_modules/bl/BufferList.js +396 -0
- package/node_modules/tar-stream/node_modules/bl/LICENSE.md +13 -0
- package/node_modules/tar-stream/node_modules/bl/README.md +247 -0
- package/node_modules/tar-stream/node_modules/bl/bl.js +84 -0
- package/node_modules/tar-stream/node_modules/bl/package.json +68 -0
- package/node_modules/tar-stream/node_modules/bl/test/convert.js +21 -0
- package/node_modules/tar-stream/node_modules/bl/test/indexOf.js +492 -0
- package/node_modules/tar-stream/node_modules/bl/test/isBufferList.js +32 -0
- package/node_modules/tar-stream/node_modules/bl/test/test.js +851 -0
- package/node_modules/tar-stream/node_modules/readable-stream/CONTRIBUTING.md +38 -0
- package/node_modules/tar-stream/node_modules/readable-stream/GOVERNANCE.md +136 -0
- package/node_modules/tar-stream/node_modules/readable-stream/LICENSE +47 -0
- package/node_modules/tar-stream/node_modules/readable-stream/README.md +106 -0
- package/node_modules/tar-stream/node_modules/readable-stream/errors-browser.js +127 -0
- package/node_modules/tar-stream/node_modules/readable-stream/errors.js +116 -0
- package/node_modules/tar-stream/node_modules/readable-stream/experimentalWarning.js +17 -0
- package/node_modules/tar-stream/node_modules/readable-stream/lib/_stream_duplex.js +139 -0
- package/node_modules/tar-stream/node_modules/readable-stream/lib/_stream_passthrough.js +39 -0
- package/node_modules/tar-stream/node_modules/readable-stream/lib/_stream_readable.js +1124 -0
- package/node_modules/tar-stream/node_modules/readable-stream/lib/_stream_transform.js +201 -0
- package/node_modules/tar-stream/node_modules/readable-stream/lib/_stream_writable.js +697 -0
- package/node_modules/tar-stream/node_modules/readable-stream/lib/internal/streams/async_iterator.js +207 -0
- package/node_modules/tar-stream/node_modules/readable-stream/lib/internal/streams/buffer_list.js +210 -0
- package/node_modules/tar-stream/node_modules/readable-stream/lib/internal/streams/destroy.js +105 -0
- package/node_modules/tar-stream/node_modules/readable-stream/lib/internal/streams/end-of-stream.js +104 -0
- package/node_modules/tar-stream/node_modules/readable-stream/lib/internal/streams/from-browser.js +3 -0
- package/node_modules/tar-stream/node_modules/readable-stream/lib/internal/streams/from.js +64 -0
- package/node_modules/tar-stream/node_modules/readable-stream/lib/internal/streams/pipeline.js +97 -0
- package/node_modules/tar-stream/node_modules/readable-stream/lib/internal/streams/state.js +27 -0
- package/node_modules/tar-stream/node_modules/readable-stream/lib/internal/streams/stream-browser.js +1 -0
- package/node_modules/tar-stream/node_modules/readable-stream/lib/internal/streams/stream.js +1 -0
- package/node_modules/tar-stream/node_modules/readable-stream/package.json +101 -0
- package/node_modules/tar-stream/node_modules/readable-stream/readable-browser.js +9 -0
- package/node_modules/tar-stream/node_modules/readable-stream/readable.js +16 -0
- package/node_modules/tar-stream/pack.js +255 -0
- package/node_modules/tar-stream/package.json +95 -0
- package/node_modules/tar-stream/sandbox.js +11 -0
- package/node_modules/tunnel-agent/LICENSE +55 -0
- package/node_modules/tunnel-agent/README.md +4 -0
- package/node_modules/tunnel-agent/index.js +244 -0
- package/node_modules/tunnel-agent/package.json +59 -0
- package/node_modules/util-deprecate/History.md +16 -0
- package/node_modules/util-deprecate/LICENSE +24 -0
- package/node_modules/util-deprecate/README.md +53 -0
- package/node_modules/util-deprecate/browser.js +67 -0
- package/node_modules/util-deprecate/node.js +6 -0
- package/node_modules/util-deprecate/package.json +62 -0
- package/node_modules/which-pm-runs/LICENSE +21 -0
- package/node_modules/which-pm-runs/README.md +29 -0
- package/node_modules/which-pm-runs/index.js +17 -0
- package/node_modules/which-pm-runs/package.json +64 -0
- package/node_modules/wide-align/LICENSE +14 -0
- package/node_modules/wide-align/README.md +47 -0
- package/node_modules/wide-align/align.js +65 -0
- package/node_modules/wide-align/package.json +69 -0
- package/node_modules/wrappy/LICENSE +15 -0
- package/node_modules/wrappy/README.md +36 -0
- package/node_modules/wrappy/package.json +62 -0
- package/node_modules/wrappy/wrappy.js +33 -0
- package/package.json +48 -0
- package/src/data-channel-wrapper.cpp +401 -0
- package/src/data-channel-wrapper.h +52 -0
- package/src/main.cpp +14 -0
- package/src/peer-connection-wrapper.cpp +720 -0
- package/src/peer-connection-wrapper.h +55 -0
- package/src/rtc-wrapper.cpp +110 -0
- package/src/rtc-wrapper.h +19 -0
- package/test/connectivity.js +100 -0
- package/test/test.js +149 -0
|
@@ -0,0 +1,187 @@
|
|
|
1
|
+
declare module "safe-buffer" {
|
|
2
|
+
export class Buffer {
|
|
3
|
+
length: number
|
|
4
|
+
write(string: string, offset?: number, length?: number, encoding?: string): number;
|
|
5
|
+
toString(encoding?: string, start?: number, end?: number): string;
|
|
6
|
+
toJSON(): { type: 'Buffer', data: any[] };
|
|
7
|
+
equals(otherBuffer: Buffer): boolean;
|
|
8
|
+
compare(otherBuffer: Buffer, targetStart?: number, targetEnd?: number, sourceStart?: number, sourceEnd?: number): number;
|
|
9
|
+
copy(targetBuffer: Buffer, targetStart?: number, sourceStart?: number, sourceEnd?: number): number;
|
|
10
|
+
slice(start?: number, end?: number): Buffer;
|
|
11
|
+
writeUIntLE(value: number, offset: number, byteLength: number, noAssert?: boolean): number;
|
|
12
|
+
writeUIntBE(value: number, offset: number, byteLength: number, noAssert?: boolean): number;
|
|
13
|
+
writeIntLE(value: number, offset: number, byteLength: number, noAssert?: boolean): number;
|
|
14
|
+
writeIntBE(value: number, offset: number, byteLength: number, noAssert?: boolean): number;
|
|
15
|
+
readUIntLE(offset: number, byteLength: number, noAssert?: boolean): number;
|
|
16
|
+
readUIntBE(offset: number, byteLength: number, noAssert?: boolean): number;
|
|
17
|
+
readIntLE(offset: number, byteLength: number, noAssert?: boolean): number;
|
|
18
|
+
readIntBE(offset: number, byteLength: number, noAssert?: boolean): number;
|
|
19
|
+
readUInt8(offset: number, noAssert?: boolean): number;
|
|
20
|
+
readUInt16LE(offset: number, noAssert?: boolean): number;
|
|
21
|
+
readUInt16BE(offset: number, noAssert?: boolean): number;
|
|
22
|
+
readUInt32LE(offset: number, noAssert?: boolean): number;
|
|
23
|
+
readUInt32BE(offset: number, noAssert?: boolean): number;
|
|
24
|
+
readInt8(offset: number, noAssert?: boolean): number;
|
|
25
|
+
readInt16LE(offset: number, noAssert?: boolean): number;
|
|
26
|
+
readInt16BE(offset: number, noAssert?: boolean): number;
|
|
27
|
+
readInt32LE(offset: number, noAssert?: boolean): number;
|
|
28
|
+
readInt32BE(offset: number, noAssert?: boolean): number;
|
|
29
|
+
readFloatLE(offset: number, noAssert?: boolean): number;
|
|
30
|
+
readFloatBE(offset: number, noAssert?: boolean): number;
|
|
31
|
+
readDoubleLE(offset: number, noAssert?: boolean): number;
|
|
32
|
+
readDoubleBE(offset: number, noAssert?: boolean): number;
|
|
33
|
+
swap16(): Buffer;
|
|
34
|
+
swap32(): Buffer;
|
|
35
|
+
swap64(): Buffer;
|
|
36
|
+
writeUInt8(value: number, offset: number, noAssert?: boolean): number;
|
|
37
|
+
writeUInt16LE(value: number, offset: number, noAssert?: boolean): number;
|
|
38
|
+
writeUInt16BE(value: number, offset: number, noAssert?: boolean): number;
|
|
39
|
+
writeUInt32LE(value: number, offset: number, noAssert?: boolean): number;
|
|
40
|
+
writeUInt32BE(value: number, offset: number, noAssert?: boolean): number;
|
|
41
|
+
writeInt8(value: number, offset: number, noAssert?: boolean): number;
|
|
42
|
+
writeInt16LE(value: number, offset: number, noAssert?: boolean): number;
|
|
43
|
+
writeInt16BE(value: number, offset: number, noAssert?: boolean): number;
|
|
44
|
+
writeInt32LE(value: number, offset: number, noAssert?: boolean): number;
|
|
45
|
+
writeInt32BE(value: number, offset: number, noAssert?: boolean): number;
|
|
46
|
+
writeFloatLE(value: number, offset: number, noAssert?: boolean): number;
|
|
47
|
+
writeFloatBE(value: number, offset: number, noAssert?: boolean): number;
|
|
48
|
+
writeDoubleLE(value: number, offset: number, noAssert?: boolean): number;
|
|
49
|
+
writeDoubleBE(value: number, offset: number, noAssert?: boolean): number;
|
|
50
|
+
fill(value: any, offset?: number, end?: number): this;
|
|
51
|
+
indexOf(value: string | number | Buffer, byteOffset?: number, encoding?: string): number;
|
|
52
|
+
lastIndexOf(value: string | number | Buffer, byteOffset?: number, encoding?: string): number;
|
|
53
|
+
includes(value: string | number | Buffer, byteOffset?: number, encoding?: string): boolean;
|
|
54
|
+
|
|
55
|
+
/**
|
|
56
|
+
* Allocates a new buffer containing the given {str}.
|
|
57
|
+
*
|
|
58
|
+
* @param str String to store in buffer.
|
|
59
|
+
* @param encoding encoding to use, optional. Default is 'utf8'
|
|
60
|
+
*/
|
|
61
|
+
constructor (str: string, encoding?: string);
|
|
62
|
+
/**
|
|
63
|
+
* Allocates a new buffer of {size} octets.
|
|
64
|
+
*
|
|
65
|
+
* @param size count of octets to allocate.
|
|
66
|
+
*/
|
|
67
|
+
constructor (size: number);
|
|
68
|
+
/**
|
|
69
|
+
* Allocates a new buffer containing the given {array} of octets.
|
|
70
|
+
*
|
|
71
|
+
* @param array The octets to store.
|
|
72
|
+
*/
|
|
73
|
+
constructor (array: Uint8Array);
|
|
74
|
+
/**
|
|
75
|
+
* Produces a Buffer backed by the same allocated memory as
|
|
76
|
+
* the given {ArrayBuffer}.
|
|
77
|
+
*
|
|
78
|
+
*
|
|
79
|
+
* @param arrayBuffer The ArrayBuffer with which to share memory.
|
|
80
|
+
*/
|
|
81
|
+
constructor (arrayBuffer: ArrayBuffer);
|
|
82
|
+
/**
|
|
83
|
+
* Allocates a new buffer containing the given {array} of octets.
|
|
84
|
+
*
|
|
85
|
+
* @param array The octets to store.
|
|
86
|
+
*/
|
|
87
|
+
constructor (array: any[]);
|
|
88
|
+
/**
|
|
89
|
+
* Copies the passed {buffer} data onto a new {Buffer} instance.
|
|
90
|
+
*
|
|
91
|
+
* @param buffer The buffer to copy.
|
|
92
|
+
*/
|
|
93
|
+
constructor (buffer: Buffer);
|
|
94
|
+
prototype: Buffer;
|
|
95
|
+
/**
|
|
96
|
+
* Allocates a new Buffer using an {array} of octets.
|
|
97
|
+
*
|
|
98
|
+
* @param array
|
|
99
|
+
*/
|
|
100
|
+
static from(array: any[]): Buffer;
|
|
101
|
+
/**
|
|
102
|
+
* When passed a reference to the .buffer property of a TypedArray instance,
|
|
103
|
+
* the newly created Buffer will share the same allocated memory as the TypedArray.
|
|
104
|
+
* The optional {byteOffset} and {length} arguments specify a memory range
|
|
105
|
+
* within the {arrayBuffer} that will be shared by the Buffer.
|
|
106
|
+
*
|
|
107
|
+
* @param arrayBuffer The .buffer property of a TypedArray or a new ArrayBuffer()
|
|
108
|
+
* @param byteOffset
|
|
109
|
+
* @param length
|
|
110
|
+
*/
|
|
111
|
+
static from(arrayBuffer: ArrayBuffer, byteOffset?: number, length?: number): Buffer;
|
|
112
|
+
/**
|
|
113
|
+
* Copies the passed {buffer} data onto a new Buffer instance.
|
|
114
|
+
*
|
|
115
|
+
* @param buffer
|
|
116
|
+
*/
|
|
117
|
+
static from(buffer: Buffer): Buffer;
|
|
118
|
+
/**
|
|
119
|
+
* Creates a new Buffer containing the given JavaScript string {str}.
|
|
120
|
+
* If provided, the {encoding} parameter identifies the character encoding.
|
|
121
|
+
* If not provided, {encoding} defaults to 'utf8'.
|
|
122
|
+
*
|
|
123
|
+
* @param str
|
|
124
|
+
*/
|
|
125
|
+
static from(str: string, encoding?: string): Buffer;
|
|
126
|
+
/**
|
|
127
|
+
* Returns true if {obj} is a Buffer
|
|
128
|
+
*
|
|
129
|
+
* @param obj object to test.
|
|
130
|
+
*/
|
|
131
|
+
static isBuffer(obj: any): obj is Buffer;
|
|
132
|
+
/**
|
|
133
|
+
* Returns true if {encoding} is a valid encoding argument.
|
|
134
|
+
* Valid string encodings in Node 0.12: 'ascii'|'utf8'|'utf16le'|'ucs2'(alias of 'utf16le')|'base64'|'binary'(deprecated)|'hex'
|
|
135
|
+
*
|
|
136
|
+
* @param encoding string to test.
|
|
137
|
+
*/
|
|
138
|
+
static isEncoding(encoding: string): boolean;
|
|
139
|
+
/**
|
|
140
|
+
* Gives the actual byte length of a string. encoding defaults to 'utf8'.
|
|
141
|
+
* This is not the same as String.prototype.length since that returns the number of characters in a string.
|
|
142
|
+
*
|
|
143
|
+
* @param string string to test.
|
|
144
|
+
* @param encoding encoding used to evaluate (defaults to 'utf8')
|
|
145
|
+
*/
|
|
146
|
+
static byteLength(string: string, encoding?: string): number;
|
|
147
|
+
/**
|
|
148
|
+
* Returns a buffer which is the result of concatenating all the buffers in the list together.
|
|
149
|
+
*
|
|
150
|
+
* If the list has no items, or if the totalLength is 0, then it returns a zero-length buffer.
|
|
151
|
+
* If the list has exactly one item, then the first item of the list is returned.
|
|
152
|
+
* If the list has more than one item, then a new Buffer is created.
|
|
153
|
+
*
|
|
154
|
+
* @param list An array of Buffer objects to concatenate
|
|
155
|
+
* @param totalLength Total length of the buffers when concatenated.
|
|
156
|
+
* If totalLength is not provided, it is read from the buffers in the list. However, this adds an additional loop to the function, so it is faster to provide the length explicitly.
|
|
157
|
+
*/
|
|
158
|
+
static concat(list: Buffer[], totalLength?: number): Buffer;
|
|
159
|
+
/**
|
|
160
|
+
* The same as buf1.compare(buf2).
|
|
161
|
+
*/
|
|
162
|
+
static compare(buf1: Buffer, buf2: Buffer): number;
|
|
163
|
+
/**
|
|
164
|
+
* Allocates a new buffer of {size} octets.
|
|
165
|
+
*
|
|
166
|
+
* @param size count of octets to allocate.
|
|
167
|
+
* @param fill if specified, buffer will be initialized by calling buf.fill(fill).
|
|
168
|
+
* If parameter is omitted, buffer will be filled with zeros.
|
|
169
|
+
* @param encoding encoding used for call to buf.fill while initalizing
|
|
170
|
+
*/
|
|
171
|
+
static alloc(size: number, fill?: string | Buffer | number, encoding?: string): Buffer;
|
|
172
|
+
/**
|
|
173
|
+
* Allocates a new buffer of {size} octets, leaving memory not initialized, so the contents
|
|
174
|
+
* of the newly created Buffer are unknown and may contain sensitive data.
|
|
175
|
+
*
|
|
176
|
+
* @param size count of octets to allocate
|
|
177
|
+
*/
|
|
178
|
+
static allocUnsafe(size: number): Buffer;
|
|
179
|
+
/**
|
|
180
|
+
* Allocates a new non-pooled buffer of {size} octets, leaving memory not initialized, so the contents
|
|
181
|
+
* of the newly created Buffer are unknown and may contain sensitive data.
|
|
182
|
+
*
|
|
183
|
+
* @param size count of octets to allocate
|
|
184
|
+
*/
|
|
185
|
+
static allocUnsafeSlow(size: number): Buffer;
|
|
186
|
+
}
|
|
187
|
+
}
|
|
@@ -0,0 +1,62 @@
|
|
|
1
|
+
/* eslint-disable node/no-deprecated-api */
|
|
2
|
+
var buffer = require('buffer')
|
|
3
|
+
var Buffer = buffer.Buffer
|
|
4
|
+
|
|
5
|
+
// alternative to using Object.keys for old browsers
|
|
6
|
+
function copyProps (src, dst) {
|
|
7
|
+
for (var key in src) {
|
|
8
|
+
dst[key] = src[key]
|
|
9
|
+
}
|
|
10
|
+
}
|
|
11
|
+
if (Buffer.from && Buffer.alloc && Buffer.allocUnsafe && Buffer.allocUnsafeSlow) {
|
|
12
|
+
module.exports = buffer
|
|
13
|
+
} else {
|
|
14
|
+
// Copy properties from require('buffer')
|
|
15
|
+
copyProps(buffer, exports)
|
|
16
|
+
exports.Buffer = SafeBuffer
|
|
17
|
+
}
|
|
18
|
+
|
|
19
|
+
function SafeBuffer (arg, encodingOrOffset, length) {
|
|
20
|
+
return Buffer(arg, encodingOrOffset, length)
|
|
21
|
+
}
|
|
22
|
+
|
|
23
|
+
// Copy static methods from Buffer
|
|
24
|
+
copyProps(Buffer, SafeBuffer)
|
|
25
|
+
|
|
26
|
+
SafeBuffer.from = function (arg, encodingOrOffset, length) {
|
|
27
|
+
if (typeof arg === 'number') {
|
|
28
|
+
throw new TypeError('Argument must not be a number')
|
|
29
|
+
}
|
|
30
|
+
return Buffer(arg, encodingOrOffset, length)
|
|
31
|
+
}
|
|
32
|
+
|
|
33
|
+
SafeBuffer.alloc = function (size, fill, encoding) {
|
|
34
|
+
if (typeof size !== 'number') {
|
|
35
|
+
throw new TypeError('Argument must be a number')
|
|
36
|
+
}
|
|
37
|
+
var buf = Buffer(size)
|
|
38
|
+
if (fill !== undefined) {
|
|
39
|
+
if (typeof encoding === 'string') {
|
|
40
|
+
buf.fill(fill, encoding)
|
|
41
|
+
} else {
|
|
42
|
+
buf.fill(fill)
|
|
43
|
+
}
|
|
44
|
+
} else {
|
|
45
|
+
buf.fill(0)
|
|
46
|
+
}
|
|
47
|
+
return buf
|
|
48
|
+
}
|
|
49
|
+
|
|
50
|
+
SafeBuffer.allocUnsafe = function (size) {
|
|
51
|
+
if (typeof size !== 'number') {
|
|
52
|
+
throw new TypeError('Argument must be a number')
|
|
53
|
+
}
|
|
54
|
+
return Buffer(size)
|
|
55
|
+
}
|
|
56
|
+
|
|
57
|
+
SafeBuffer.allocUnsafeSlow = function (size) {
|
|
58
|
+
if (typeof size !== 'number') {
|
|
59
|
+
throw new TypeError('Argument must be a number')
|
|
60
|
+
}
|
|
61
|
+
return buffer.SlowBuffer(size)
|
|
62
|
+
}
|
|
@@ -0,0 +1,71 @@
|
|
|
1
|
+
{
|
|
2
|
+
"_args": [
|
|
3
|
+
[
|
|
4
|
+
"safe-buffer@5.1.2",
|
|
5
|
+
"/home/runner/work/node-datachannel/node-datachannel"
|
|
6
|
+
]
|
|
7
|
+
],
|
|
8
|
+
"_from": "safe-buffer@5.1.2",
|
|
9
|
+
"_id": "safe-buffer@5.1.2",
|
|
10
|
+
"_inBundle": false,
|
|
11
|
+
"_integrity": "sha512-Gd2UZBJDkXlY7GbJxfsE8/nvKkUEU1G38c1siN6QP6a9PT9MmHB8GnpscSmMJSoF8LOIrt8ud/wPtojys4G6+g==",
|
|
12
|
+
"_location": "/safe-buffer",
|
|
13
|
+
"_phantomChildren": {},
|
|
14
|
+
"_requested": {
|
|
15
|
+
"type": "version",
|
|
16
|
+
"registry": true,
|
|
17
|
+
"raw": "safe-buffer@5.1.2",
|
|
18
|
+
"name": "safe-buffer",
|
|
19
|
+
"escapedName": "safe-buffer",
|
|
20
|
+
"rawSpec": "5.1.2",
|
|
21
|
+
"saveSpec": null,
|
|
22
|
+
"fetchSpec": "5.1.2"
|
|
23
|
+
},
|
|
24
|
+
"_requiredBy": [
|
|
25
|
+
"/convert-source-map",
|
|
26
|
+
"/minipass",
|
|
27
|
+
"/readable-stream",
|
|
28
|
+
"/request",
|
|
29
|
+
"/string_decoder",
|
|
30
|
+
"/tar",
|
|
31
|
+
"/tunnel-agent"
|
|
32
|
+
],
|
|
33
|
+
"_resolved": "https://registry.npmjs.org/safe-buffer/-/safe-buffer-5.1.2.tgz",
|
|
34
|
+
"_spec": "5.1.2",
|
|
35
|
+
"_where": "/home/runner/work/node-datachannel/node-datachannel",
|
|
36
|
+
"author": {
|
|
37
|
+
"name": "Feross Aboukhadijeh",
|
|
38
|
+
"email": "feross@feross.org",
|
|
39
|
+
"url": "http://feross.org"
|
|
40
|
+
},
|
|
41
|
+
"bugs": {
|
|
42
|
+
"url": "https://github.com/feross/safe-buffer/issues"
|
|
43
|
+
},
|
|
44
|
+
"description": "Safer Node.js Buffer API",
|
|
45
|
+
"devDependencies": {
|
|
46
|
+
"standard": "*",
|
|
47
|
+
"tape": "^4.0.0"
|
|
48
|
+
},
|
|
49
|
+
"homepage": "https://github.com/feross/safe-buffer",
|
|
50
|
+
"keywords": [
|
|
51
|
+
"buffer",
|
|
52
|
+
"buffer allocate",
|
|
53
|
+
"node security",
|
|
54
|
+
"safe",
|
|
55
|
+
"safe-buffer",
|
|
56
|
+
"security",
|
|
57
|
+
"uninitialized"
|
|
58
|
+
],
|
|
59
|
+
"license": "MIT",
|
|
60
|
+
"main": "index.js",
|
|
61
|
+
"name": "safe-buffer",
|
|
62
|
+
"repository": {
|
|
63
|
+
"type": "git",
|
|
64
|
+
"url": "git://github.com/feross/safe-buffer.git"
|
|
65
|
+
},
|
|
66
|
+
"scripts": {
|
|
67
|
+
"test": "standard && tape test/*.js"
|
|
68
|
+
},
|
|
69
|
+
"types": "index.d.ts",
|
|
70
|
+
"version": "5.1.2"
|
|
71
|
+
}
|
|
@@ -0,0 +1,39 @@
|
|
|
1
|
+
# changes log
|
|
2
|
+
|
|
3
|
+
## 5.7
|
|
4
|
+
|
|
5
|
+
* Add `minVersion` method
|
|
6
|
+
|
|
7
|
+
## 5.6
|
|
8
|
+
|
|
9
|
+
* Move boolean `loose` param to an options object, with
|
|
10
|
+
backwards-compatibility protection.
|
|
11
|
+
* Add ability to opt out of special prerelease version handling with
|
|
12
|
+
the `includePrerelease` option flag.
|
|
13
|
+
|
|
14
|
+
## 5.5
|
|
15
|
+
|
|
16
|
+
* Add version coercion capabilities
|
|
17
|
+
|
|
18
|
+
## 5.4
|
|
19
|
+
|
|
20
|
+
* Add intersection checking
|
|
21
|
+
|
|
22
|
+
## 5.3
|
|
23
|
+
|
|
24
|
+
* Add `minSatisfying` method
|
|
25
|
+
|
|
26
|
+
## 5.2
|
|
27
|
+
|
|
28
|
+
* Add `prerelease(v)` that returns prerelease components
|
|
29
|
+
|
|
30
|
+
## 5.1
|
|
31
|
+
|
|
32
|
+
* Add Backus-Naur for ranges
|
|
33
|
+
* Remove excessively cute inspection methods
|
|
34
|
+
|
|
35
|
+
## 5.0
|
|
36
|
+
|
|
37
|
+
* Remove AMD/Browserified build artifacts
|
|
38
|
+
* Fix ltr and gtr when using the `*` range
|
|
39
|
+
* Fix for range `*` with a prerelease identifier
|
|
@@ -0,0 +1,15 @@
|
|
|
1
|
+
The ISC License
|
|
2
|
+
|
|
3
|
+
Copyright (c) Isaac Z. Schlueter and Contributors
|
|
4
|
+
|
|
5
|
+
Permission to use, copy, modify, and/or distribute this software for any
|
|
6
|
+
purpose with or without fee is hereby granted, provided that the above
|
|
7
|
+
copyright notice and this permission notice appear in all copies.
|
|
8
|
+
|
|
9
|
+
THE SOFTWARE IS PROVIDED "AS IS" AND THE AUTHOR DISCLAIMS ALL WARRANTIES
|
|
10
|
+
WITH REGARD TO THIS SOFTWARE INCLUDING ALL IMPLIED WARRANTIES OF
|
|
11
|
+
MERCHANTABILITY AND FITNESS. IN NO EVENT SHALL THE AUTHOR BE LIABLE FOR
|
|
12
|
+
ANY SPECIAL, DIRECT, INDIRECT, OR CONSEQUENTIAL DAMAGES OR ANY DAMAGES
|
|
13
|
+
WHATSOEVER RESULTING FROM LOSS OF USE, DATA OR PROFITS, WHETHER IN AN
|
|
14
|
+
ACTION OF CONTRACT, NEGLIGENCE OR OTHER TORTIOUS ACTION, ARISING OUT OF OR
|
|
15
|
+
IN CONNECTION WITH THE USE OR PERFORMANCE OF THIS SOFTWARE.
|
|
@@ -0,0 +1,412 @@
|
|
|
1
|
+
semver(1) -- The semantic versioner for npm
|
|
2
|
+
===========================================
|
|
3
|
+
|
|
4
|
+
## Install
|
|
5
|
+
|
|
6
|
+
```bash
|
|
7
|
+
npm install --save semver
|
|
8
|
+
````
|
|
9
|
+
|
|
10
|
+
## Usage
|
|
11
|
+
|
|
12
|
+
As a node module:
|
|
13
|
+
|
|
14
|
+
```js
|
|
15
|
+
const semver = require('semver')
|
|
16
|
+
|
|
17
|
+
semver.valid('1.2.3') // '1.2.3'
|
|
18
|
+
semver.valid('a.b.c') // null
|
|
19
|
+
semver.clean(' =v1.2.3 ') // '1.2.3'
|
|
20
|
+
semver.satisfies('1.2.3', '1.x || >=2.5.0 || 5.0.0 - 7.2.3') // true
|
|
21
|
+
semver.gt('1.2.3', '9.8.7') // false
|
|
22
|
+
semver.lt('1.2.3', '9.8.7') // true
|
|
23
|
+
semver.minVersion('>=1.0.0') // '1.0.0'
|
|
24
|
+
semver.valid(semver.coerce('v2')) // '2.0.0'
|
|
25
|
+
semver.valid(semver.coerce('42.6.7.9.3-alpha')) // '42.6.7'
|
|
26
|
+
```
|
|
27
|
+
|
|
28
|
+
As a command-line utility:
|
|
29
|
+
|
|
30
|
+
```
|
|
31
|
+
$ semver -h
|
|
32
|
+
|
|
33
|
+
A JavaScript implementation of the https://semver.org/ specification
|
|
34
|
+
Copyright Isaac Z. Schlueter
|
|
35
|
+
|
|
36
|
+
Usage: semver [options] <version> [<version> [...]]
|
|
37
|
+
Prints valid versions sorted by SemVer precedence
|
|
38
|
+
|
|
39
|
+
Options:
|
|
40
|
+
-r --range <range>
|
|
41
|
+
Print versions that match the specified range.
|
|
42
|
+
|
|
43
|
+
-i --increment [<level>]
|
|
44
|
+
Increment a version by the specified level. Level can
|
|
45
|
+
be one of: major, minor, patch, premajor, preminor,
|
|
46
|
+
prepatch, or prerelease. Default level is 'patch'.
|
|
47
|
+
Only one version may be specified.
|
|
48
|
+
|
|
49
|
+
--preid <identifier>
|
|
50
|
+
Identifier to be used to prefix premajor, preminor,
|
|
51
|
+
prepatch or prerelease version increments.
|
|
52
|
+
|
|
53
|
+
-l --loose
|
|
54
|
+
Interpret versions and ranges loosely
|
|
55
|
+
|
|
56
|
+
-p --include-prerelease
|
|
57
|
+
Always include prerelease versions in range matching
|
|
58
|
+
|
|
59
|
+
-c --coerce
|
|
60
|
+
Coerce a string into SemVer if possible
|
|
61
|
+
(does not imply --loose)
|
|
62
|
+
|
|
63
|
+
Program exits successfully if any valid version satisfies
|
|
64
|
+
all supplied ranges, and prints all satisfying versions.
|
|
65
|
+
|
|
66
|
+
If no satisfying versions are found, then exits failure.
|
|
67
|
+
|
|
68
|
+
Versions are printed in ascending order, so supplying
|
|
69
|
+
multiple versions to the utility will just sort them.
|
|
70
|
+
```
|
|
71
|
+
|
|
72
|
+
## Versions
|
|
73
|
+
|
|
74
|
+
A "version" is described by the `v2.0.0` specification found at
|
|
75
|
+
<https://semver.org/>.
|
|
76
|
+
|
|
77
|
+
A leading `"="` or `"v"` character is stripped off and ignored.
|
|
78
|
+
|
|
79
|
+
## Ranges
|
|
80
|
+
|
|
81
|
+
A `version range` is a set of `comparators` which specify versions
|
|
82
|
+
that satisfy the range.
|
|
83
|
+
|
|
84
|
+
A `comparator` is composed of an `operator` and a `version`. The set
|
|
85
|
+
of primitive `operators` is:
|
|
86
|
+
|
|
87
|
+
* `<` Less than
|
|
88
|
+
* `<=` Less than or equal to
|
|
89
|
+
* `>` Greater than
|
|
90
|
+
* `>=` Greater than or equal to
|
|
91
|
+
* `=` Equal. If no operator is specified, then equality is assumed,
|
|
92
|
+
so this operator is optional, but MAY be included.
|
|
93
|
+
|
|
94
|
+
For example, the comparator `>=1.2.7` would match the versions
|
|
95
|
+
`1.2.7`, `1.2.8`, `2.5.3`, and `1.3.9`, but not the versions `1.2.6`
|
|
96
|
+
or `1.1.0`.
|
|
97
|
+
|
|
98
|
+
Comparators can be joined by whitespace to form a `comparator set`,
|
|
99
|
+
which is satisfied by the **intersection** of all of the comparators
|
|
100
|
+
it includes.
|
|
101
|
+
|
|
102
|
+
A range is composed of one or more comparator sets, joined by `||`. A
|
|
103
|
+
version matches a range if and only if every comparator in at least
|
|
104
|
+
one of the `||`-separated comparator sets is satisfied by the version.
|
|
105
|
+
|
|
106
|
+
For example, the range `>=1.2.7 <1.3.0` would match the versions
|
|
107
|
+
`1.2.7`, `1.2.8`, and `1.2.99`, but not the versions `1.2.6`, `1.3.0`,
|
|
108
|
+
or `1.1.0`.
|
|
109
|
+
|
|
110
|
+
The range `1.2.7 || >=1.2.9 <2.0.0` would match the versions `1.2.7`,
|
|
111
|
+
`1.2.9`, and `1.4.6`, but not the versions `1.2.8` or `2.0.0`.
|
|
112
|
+
|
|
113
|
+
### Prerelease Tags
|
|
114
|
+
|
|
115
|
+
If a version has a prerelease tag (for example, `1.2.3-alpha.3`) then
|
|
116
|
+
it will only be allowed to satisfy comparator sets if at least one
|
|
117
|
+
comparator with the same `[major, minor, patch]` tuple also has a
|
|
118
|
+
prerelease tag.
|
|
119
|
+
|
|
120
|
+
For example, the range `>1.2.3-alpha.3` would be allowed to match the
|
|
121
|
+
version `1.2.3-alpha.7`, but it would *not* be satisfied by
|
|
122
|
+
`3.4.5-alpha.9`, even though `3.4.5-alpha.9` is technically "greater
|
|
123
|
+
than" `1.2.3-alpha.3` according to the SemVer sort rules. The version
|
|
124
|
+
range only accepts prerelease tags on the `1.2.3` version. The
|
|
125
|
+
version `3.4.5` *would* satisfy the range, because it does not have a
|
|
126
|
+
prerelease flag, and `3.4.5` is greater than `1.2.3-alpha.7`.
|
|
127
|
+
|
|
128
|
+
The purpose for this behavior is twofold. First, prerelease versions
|
|
129
|
+
frequently are updated very quickly, and contain many breaking changes
|
|
130
|
+
that are (by the author's design) not yet fit for public consumption.
|
|
131
|
+
Therefore, by default, they are excluded from range matching
|
|
132
|
+
semantics.
|
|
133
|
+
|
|
134
|
+
Second, a user who has opted into using a prerelease version has
|
|
135
|
+
clearly indicated the intent to use *that specific* set of
|
|
136
|
+
alpha/beta/rc versions. By including a prerelease tag in the range,
|
|
137
|
+
the user is indicating that they are aware of the risk. However, it
|
|
138
|
+
is still not appropriate to assume that they have opted into taking a
|
|
139
|
+
similar risk on the *next* set of prerelease versions.
|
|
140
|
+
|
|
141
|
+
Note that this behavior can be suppressed (treating all prerelease
|
|
142
|
+
versions as if they were normal versions, for the purpose of range
|
|
143
|
+
matching) by setting the `includePrerelease` flag on the options
|
|
144
|
+
object to any
|
|
145
|
+
[functions](https://github.com/npm/node-semver#functions) that do
|
|
146
|
+
range matching.
|
|
147
|
+
|
|
148
|
+
#### Prerelease Identifiers
|
|
149
|
+
|
|
150
|
+
The method `.inc` takes an additional `identifier` string argument that
|
|
151
|
+
will append the value of the string as a prerelease identifier:
|
|
152
|
+
|
|
153
|
+
```javascript
|
|
154
|
+
semver.inc('1.2.3', 'prerelease', 'beta')
|
|
155
|
+
// '1.2.4-beta.0'
|
|
156
|
+
```
|
|
157
|
+
|
|
158
|
+
command-line example:
|
|
159
|
+
|
|
160
|
+
```bash
|
|
161
|
+
$ semver 1.2.3 -i prerelease --preid beta
|
|
162
|
+
1.2.4-beta.0
|
|
163
|
+
```
|
|
164
|
+
|
|
165
|
+
Which then can be used to increment further:
|
|
166
|
+
|
|
167
|
+
```bash
|
|
168
|
+
$ semver 1.2.4-beta.0 -i prerelease
|
|
169
|
+
1.2.4-beta.1
|
|
170
|
+
```
|
|
171
|
+
|
|
172
|
+
### Advanced Range Syntax
|
|
173
|
+
|
|
174
|
+
Advanced range syntax desugars to primitive comparators in
|
|
175
|
+
deterministic ways.
|
|
176
|
+
|
|
177
|
+
Advanced ranges may be combined in the same way as primitive
|
|
178
|
+
comparators using white space or `||`.
|
|
179
|
+
|
|
180
|
+
#### Hyphen Ranges `X.Y.Z - A.B.C`
|
|
181
|
+
|
|
182
|
+
Specifies an inclusive set.
|
|
183
|
+
|
|
184
|
+
* `1.2.3 - 2.3.4` := `>=1.2.3 <=2.3.4`
|
|
185
|
+
|
|
186
|
+
If a partial version is provided as the first version in the inclusive
|
|
187
|
+
range, then the missing pieces are replaced with zeroes.
|
|
188
|
+
|
|
189
|
+
* `1.2 - 2.3.4` := `>=1.2.0 <=2.3.4`
|
|
190
|
+
|
|
191
|
+
If a partial version is provided as the second version in the
|
|
192
|
+
inclusive range, then all versions that start with the supplied parts
|
|
193
|
+
of the tuple are accepted, but nothing that would be greater than the
|
|
194
|
+
provided tuple parts.
|
|
195
|
+
|
|
196
|
+
* `1.2.3 - 2.3` := `>=1.2.3 <2.4.0`
|
|
197
|
+
* `1.2.3 - 2` := `>=1.2.3 <3.0.0`
|
|
198
|
+
|
|
199
|
+
#### X-Ranges `1.2.x` `1.X` `1.2.*` `*`
|
|
200
|
+
|
|
201
|
+
Any of `X`, `x`, or `*` may be used to "stand in" for one of the
|
|
202
|
+
numeric values in the `[major, minor, patch]` tuple.
|
|
203
|
+
|
|
204
|
+
* `*` := `>=0.0.0` (Any version satisfies)
|
|
205
|
+
* `1.x` := `>=1.0.0 <2.0.0` (Matching major version)
|
|
206
|
+
* `1.2.x` := `>=1.2.0 <1.3.0` (Matching major and minor versions)
|
|
207
|
+
|
|
208
|
+
A partial version range is treated as an X-Range, so the special
|
|
209
|
+
character is in fact optional.
|
|
210
|
+
|
|
211
|
+
* `""` (empty string) := `*` := `>=0.0.0`
|
|
212
|
+
* `1` := `1.x.x` := `>=1.0.0 <2.0.0`
|
|
213
|
+
* `1.2` := `1.2.x` := `>=1.2.0 <1.3.0`
|
|
214
|
+
|
|
215
|
+
#### Tilde Ranges `~1.2.3` `~1.2` `~1`
|
|
216
|
+
|
|
217
|
+
Allows patch-level changes if a minor version is specified on the
|
|
218
|
+
comparator. Allows minor-level changes if not.
|
|
219
|
+
|
|
220
|
+
* `~1.2.3` := `>=1.2.3 <1.(2+1).0` := `>=1.2.3 <1.3.0`
|
|
221
|
+
* `~1.2` := `>=1.2.0 <1.(2+1).0` := `>=1.2.0 <1.3.0` (Same as `1.2.x`)
|
|
222
|
+
* `~1` := `>=1.0.0 <(1+1).0.0` := `>=1.0.0 <2.0.0` (Same as `1.x`)
|
|
223
|
+
* `~0.2.3` := `>=0.2.3 <0.(2+1).0` := `>=0.2.3 <0.3.0`
|
|
224
|
+
* `~0.2` := `>=0.2.0 <0.(2+1).0` := `>=0.2.0 <0.3.0` (Same as `0.2.x`)
|
|
225
|
+
* `~0` := `>=0.0.0 <(0+1).0.0` := `>=0.0.0 <1.0.0` (Same as `0.x`)
|
|
226
|
+
* `~1.2.3-beta.2` := `>=1.2.3-beta.2 <1.3.0` Note that prereleases in
|
|
227
|
+
the `1.2.3` version will be allowed, if they are greater than or
|
|
228
|
+
equal to `beta.2`. So, `1.2.3-beta.4` would be allowed, but
|
|
229
|
+
`1.2.4-beta.2` would not, because it is a prerelease of a
|
|
230
|
+
different `[major, minor, patch]` tuple.
|
|
231
|
+
|
|
232
|
+
#### Caret Ranges `^1.2.3` `^0.2.5` `^0.0.4`
|
|
233
|
+
|
|
234
|
+
Allows changes that do not modify the left-most non-zero digit in the
|
|
235
|
+
`[major, minor, patch]` tuple. In other words, this allows patch and
|
|
236
|
+
minor updates for versions `1.0.0` and above, patch updates for
|
|
237
|
+
versions `0.X >=0.1.0`, and *no* updates for versions `0.0.X`.
|
|
238
|
+
|
|
239
|
+
Many authors treat a `0.x` version as if the `x` were the major
|
|
240
|
+
"breaking-change" indicator.
|
|
241
|
+
|
|
242
|
+
Caret ranges are ideal when an author may make breaking changes
|
|
243
|
+
between `0.2.4` and `0.3.0` releases, which is a common practice.
|
|
244
|
+
However, it presumes that there will *not* be breaking changes between
|
|
245
|
+
`0.2.4` and `0.2.5`. It allows for changes that are presumed to be
|
|
246
|
+
additive (but non-breaking), according to commonly observed practices.
|
|
247
|
+
|
|
248
|
+
* `^1.2.3` := `>=1.2.3 <2.0.0`
|
|
249
|
+
* `^0.2.3` := `>=0.2.3 <0.3.0`
|
|
250
|
+
* `^0.0.3` := `>=0.0.3 <0.0.4`
|
|
251
|
+
* `^1.2.3-beta.2` := `>=1.2.3-beta.2 <2.0.0` Note that prereleases in
|
|
252
|
+
the `1.2.3` version will be allowed, if they are greater than or
|
|
253
|
+
equal to `beta.2`. So, `1.2.3-beta.4` would be allowed, but
|
|
254
|
+
`1.2.4-beta.2` would not, because it is a prerelease of a
|
|
255
|
+
different `[major, minor, patch]` tuple.
|
|
256
|
+
* `^0.0.3-beta` := `>=0.0.3-beta <0.0.4` Note that prereleases in the
|
|
257
|
+
`0.0.3` version *only* will be allowed, if they are greater than or
|
|
258
|
+
equal to `beta`. So, `0.0.3-pr.2` would be allowed.
|
|
259
|
+
|
|
260
|
+
When parsing caret ranges, a missing `patch` value desugars to the
|
|
261
|
+
number `0`, but will allow flexibility within that value, even if the
|
|
262
|
+
major and minor versions are both `0`.
|
|
263
|
+
|
|
264
|
+
* `^1.2.x` := `>=1.2.0 <2.0.0`
|
|
265
|
+
* `^0.0.x` := `>=0.0.0 <0.1.0`
|
|
266
|
+
* `^0.0` := `>=0.0.0 <0.1.0`
|
|
267
|
+
|
|
268
|
+
A missing `minor` and `patch` values will desugar to zero, but also
|
|
269
|
+
allow flexibility within those values, even if the major version is
|
|
270
|
+
zero.
|
|
271
|
+
|
|
272
|
+
* `^1.x` := `>=1.0.0 <2.0.0`
|
|
273
|
+
* `^0.x` := `>=0.0.0 <1.0.0`
|
|
274
|
+
|
|
275
|
+
### Range Grammar
|
|
276
|
+
|
|
277
|
+
Putting all this together, here is a Backus-Naur grammar for ranges,
|
|
278
|
+
for the benefit of parser authors:
|
|
279
|
+
|
|
280
|
+
```bnf
|
|
281
|
+
range-set ::= range ( logical-or range ) *
|
|
282
|
+
logical-or ::= ( ' ' ) * '||' ( ' ' ) *
|
|
283
|
+
range ::= hyphen | simple ( ' ' simple ) * | ''
|
|
284
|
+
hyphen ::= partial ' - ' partial
|
|
285
|
+
simple ::= primitive | partial | tilde | caret
|
|
286
|
+
primitive ::= ( '<' | '>' | '>=' | '<=' | '=' ) partial
|
|
287
|
+
partial ::= xr ( '.' xr ( '.' xr qualifier ? )? )?
|
|
288
|
+
xr ::= 'x' | 'X' | '*' | nr
|
|
289
|
+
nr ::= '0' | ['1'-'9'] ( ['0'-'9'] ) *
|
|
290
|
+
tilde ::= '~' partial
|
|
291
|
+
caret ::= '^' partial
|
|
292
|
+
qualifier ::= ( '-' pre )? ( '+' build )?
|
|
293
|
+
pre ::= parts
|
|
294
|
+
build ::= parts
|
|
295
|
+
parts ::= part ( '.' part ) *
|
|
296
|
+
part ::= nr | [-0-9A-Za-z]+
|
|
297
|
+
```
|
|
298
|
+
|
|
299
|
+
## Functions
|
|
300
|
+
|
|
301
|
+
All methods and classes take a final `options` object argument. All
|
|
302
|
+
options in this object are `false` by default. The options supported
|
|
303
|
+
are:
|
|
304
|
+
|
|
305
|
+
- `loose` Be more forgiving about not-quite-valid semver strings.
|
|
306
|
+
(Any resulting output will always be 100% strict compliant, of
|
|
307
|
+
course.) For backwards compatibility reasons, if the `options`
|
|
308
|
+
argument is a boolean value instead of an object, it is interpreted
|
|
309
|
+
to be the `loose` param.
|
|
310
|
+
- `includePrerelease` Set to suppress the [default
|
|
311
|
+
behavior](https://github.com/npm/node-semver#prerelease-tags) of
|
|
312
|
+
excluding prerelease tagged versions from ranges unless they are
|
|
313
|
+
explicitly opted into.
|
|
314
|
+
|
|
315
|
+
Strict-mode Comparators and Ranges will be strict about the SemVer
|
|
316
|
+
strings that they parse.
|
|
317
|
+
|
|
318
|
+
* `valid(v)`: Return the parsed version, or null if it's not valid.
|
|
319
|
+
* `inc(v, release)`: Return the version incremented by the release
|
|
320
|
+
type (`major`, `premajor`, `minor`, `preminor`, `patch`,
|
|
321
|
+
`prepatch`, or `prerelease`), or null if it's not valid
|
|
322
|
+
* `premajor` in one call will bump the version up to the next major
|
|
323
|
+
version and down to a prerelease of that major version.
|
|
324
|
+
`preminor`, and `prepatch` work the same way.
|
|
325
|
+
* If called from a non-prerelease version, the `prerelease` will work the
|
|
326
|
+
same as `prepatch`. It increments the patch version, then makes a
|
|
327
|
+
prerelease. If the input version is already a prerelease it simply
|
|
328
|
+
increments it.
|
|
329
|
+
* `prerelease(v)`: Returns an array of prerelease components, or null
|
|
330
|
+
if none exist. Example: `prerelease('1.2.3-alpha.1') -> ['alpha', 1]`
|
|
331
|
+
* `major(v)`: Return the major version number.
|
|
332
|
+
* `minor(v)`: Return the minor version number.
|
|
333
|
+
* `patch(v)`: Return the patch version number.
|
|
334
|
+
* `intersects(r1, r2, loose)`: Return true if the two supplied ranges
|
|
335
|
+
or comparators intersect.
|
|
336
|
+
* `parse(v)`: Attempt to parse a string as a semantic version, returning either
|
|
337
|
+
a `SemVer` object or `null`.
|
|
338
|
+
|
|
339
|
+
### Comparison
|
|
340
|
+
|
|
341
|
+
* `gt(v1, v2)`: `v1 > v2`
|
|
342
|
+
* `gte(v1, v2)`: `v1 >= v2`
|
|
343
|
+
* `lt(v1, v2)`: `v1 < v2`
|
|
344
|
+
* `lte(v1, v2)`: `v1 <= v2`
|
|
345
|
+
* `eq(v1, v2)`: `v1 == v2` This is true if they're logically equivalent,
|
|
346
|
+
even if they're not the exact same string. You already know how to
|
|
347
|
+
compare strings.
|
|
348
|
+
* `neq(v1, v2)`: `v1 != v2` The opposite of `eq`.
|
|
349
|
+
* `cmp(v1, comparator, v2)`: Pass in a comparison string, and it'll call
|
|
350
|
+
the corresponding function above. `"==="` and `"!=="` do simple
|
|
351
|
+
string comparison, but are included for completeness. Throws if an
|
|
352
|
+
invalid comparison string is provided.
|
|
353
|
+
* `compare(v1, v2)`: Return `0` if `v1 == v2`, or `1` if `v1` is greater, or `-1` if
|
|
354
|
+
`v2` is greater. Sorts in ascending order if passed to `Array.sort()`.
|
|
355
|
+
* `rcompare(v1, v2)`: The reverse of compare. Sorts an array of versions
|
|
356
|
+
in descending order when passed to `Array.sort()`.
|
|
357
|
+
* `diff(v1, v2)`: Returns difference between two versions by the release type
|
|
358
|
+
(`major`, `premajor`, `minor`, `preminor`, `patch`, `prepatch`, or `prerelease`),
|
|
359
|
+
or null if the versions are the same.
|
|
360
|
+
|
|
361
|
+
### Comparators
|
|
362
|
+
|
|
363
|
+
* `intersects(comparator)`: Return true if the comparators intersect
|
|
364
|
+
|
|
365
|
+
### Ranges
|
|
366
|
+
|
|
367
|
+
* `validRange(range)`: Return the valid range or null if it's not valid
|
|
368
|
+
* `satisfies(version, range)`: Return true if the version satisfies the
|
|
369
|
+
range.
|
|
370
|
+
* `maxSatisfying(versions, range)`: Return the highest version in the list
|
|
371
|
+
that satisfies the range, or `null` if none of them do.
|
|
372
|
+
* `minSatisfying(versions, range)`: Return the lowest version in the list
|
|
373
|
+
that satisfies the range, or `null` if none of them do.
|
|
374
|
+
* `minVersion(range)`: Return the lowest version that can possibly match
|
|
375
|
+
the given range.
|
|
376
|
+
* `gtr(version, range)`: Return `true` if version is greater than all the
|
|
377
|
+
versions possible in the range.
|
|
378
|
+
* `ltr(version, range)`: Return `true` if version is less than all the
|
|
379
|
+
versions possible in the range.
|
|
380
|
+
* `outside(version, range, hilo)`: Return true if the version is outside
|
|
381
|
+
the bounds of the range in either the high or low direction. The
|
|
382
|
+
`hilo` argument must be either the string `'>'` or `'<'`. (This is
|
|
383
|
+
the function called by `gtr` and `ltr`.)
|
|
384
|
+
* `intersects(range)`: Return true if any of the ranges comparators intersect
|
|
385
|
+
|
|
386
|
+
Note that, since ranges may be non-contiguous, a version might not be
|
|
387
|
+
greater than a range, less than a range, *or* satisfy a range! For
|
|
388
|
+
example, the range `1.2 <1.2.9 || >2.0.0` would have a hole from `1.2.9`
|
|
389
|
+
until `2.0.0`, so the version `1.2.10` would not be greater than the
|
|
390
|
+
range (because `2.0.1` satisfies, which is higher), nor less than the
|
|
391
|
+
range (since `1.2.8` satisfies, which is lower), and it also does not
|
|
392
|
+
satisfy the range.
|
|
393
|
+
|
|
394
|
+
If you want to know if a version satisfies or does not satisfy a
|
|
395
|
+
range, use the `satisfies(version, range)` function.
|
|
396
|
+
|
|
397
|
+
### Coercion
|
|
398
|
+
|
|
399
|
+
* `coerce(version)`: Coerces a string to semver if possible
|
|
400
|
+
|
|
401
|
+
This aims to provide a very forgiving translation of a non-semver string to
|
|
402
|
+
semver. It looks for the first digit in a string, and consumes all
|
|
403
|
+
remaining characters which satisfy at least a partial semver (e.g., `1`,
|
|
404
|
+
`1.2`, `1.2.3`) up to the max permitted length (256 characters). Longer
|
|
405
|
+
versions are simply truncated (`4.6.3.9.2-alpha2` becomes `4.6.3`). All
|
|
406
|
+
surrounding text is simply ignored (`v3.4 replaces v3.3.1` becomes
|
|
407
|
+
`3.4.0`). Only text which lacks digits will fail coercion (`version one`
|
|
408
|
+
is not valid). The maximum length for any semver component considered for
|
|
409
|
+
coercion is 16 characters; longer components will be ignored
|
|
410
|
+
(`10000000000000000.4.7.4` becomes `4.7.4`). The maximum value for any
|
|
411
|
+
semver component is `Number.MAX_SAFE_INTEGER || (2**53 - 1)`; higher value
|
|
412
|
+
components are invalid (`9999999999999999.4.7.4` is likely invalid).
|