UrgentcareCLI 0.1.0 → 0.1.1
Sign up to get free protection for your applications and to get access to all the features.
- checksums.yaml +4 -4
- data/Gemfile +3 -0
- data/Gemfile.lock +60 -25
- data/Notes +1 -1
- data/README.md +5 -5
- data/Rakefile +2 -0
- data/UrgentCare.gemspec +3 -3
- data/background.jpg +0 -0
- data/lib/UrgentCare.rb +3 -0
- data/lib/UrgentCare/CLI.rb +6 -2
- data/lib/UrgentCare/version.rb +1 -1
- data/lib/Urgentcare/Scraper.rb +65 -23
- data/node_modules/.bin/rimraf +1 -0
- data/node_modules/.package-lock.json +250 -0
- data/node_modules/balanced-match/.github/FUNDING.yml +2 -0
- data/node_modules/balanced-match/LICENSE.md +21 -0
- data/node_modules/balanced-match/README.md +97 -0
- data/node_modules/balanced-match/index.js +62 -0
- data/node_modules/balanced-match/package.json +48 -0
- data/node_modules/brace-expansion/LICENSE +21 -0
- data/node_modules/brace-expansion/README.md +129 -0
- data/node_modules/brace-expansion/index.js +201 -0
- data/node_modules/brace-expansion/package.json +47 -0
- data/node_modules/concat-map/.travis.yml +4 -0
- data/node_modules/concat-map/LICENSE +18 -0
- data/node_modules/concat-map/README.markdown +62 -0
- data/node_modules/concat-map/example/map.js +6 -0
- data/node_modules/concat-map/index.js +13 -0
- data/node_modules/concat-map/package.json +43 -0
- data/node_modules/concat-map/test/map.js +39 -0
- data/node_modules/core-util-is/LICENSE +19 -0
- data/node_modules/core-util-is/README.md +3 -0
- data/node_modules/core-util-is/float.patch +604 -0
- data/node_modules/core-util-is/lib/util.js +107 -0
- data/node_modules/core-util-is/package.json +32 -0
- data/node_modules/core-util-is/test.js +68 -0
- data/node_modules/fs.realpath/LICENSE +43 -0
- data/node_modules/fs.realpath/README.md +33 -0
- data/node_modules/fs.realpath/index.js +66 -0
- data/node_modules/fs.realpath/old.js +303 -0
- data/node_modules/fs.realpath/package.json +26 -0
- data/node_modules/glob/LICENSE +21 -0
- data/node_modules/glob/README.md +375 -0
- data/node_modules/glob/changelog.md +67 -0
- data/node_modules/glob/common.js +234 -0
- data/node_modules/glob/glob.js +788 -0
- data/node_modules/glob/package.json +51 -0
- data/node_modules/glob/sync.js +484 -0
- data/node_modules/immediate/LICENSE.txt +20 -0
- data/node_modules/immediate/README.md +93 -0
- data/node_modules/immediate/dist/immediate.js +75 -0
- data/node_modules/immediate/dist/immediate.min.js +1 -0
- data/node_modules/immediate/lib/browser.js +69 -0
- data/node_modules/immediate/lib/index.js +73 -0
- data/node_modules/immediate/package.json +42 -0
- data/node_modules/inflight/LICENSE +15 -0
- data/node_modules/inflight/README.md +37 -0
- data/node_modules/inflight/inflight.js +54 -0
- data/node_modules/inflight/package.json +29 -0
- data/node_modules/inherits/LICENSE +16 -0
- data/node_modules/inherits/README.md +42 -0
- data/node_modules/inherits/inherits.js +9 -0
- data/node_modules/inherits/inherits_browser.js +27 -0
- data/node_modules/inherits/package.json +29 -0
- data/node_modules/isarray/.npmignore +1 -0
- data/node_modules/isarray/.travis.yml +4 -0
- data/node_modules/isarray/Makefile +6 -0
- data/node_modules/isarray/README.md +60 -0
- data/node_modules/isarray/component.json +19 -0
- data/node_modules/isarray/index.js +5 -0
- data/node_modules/isarray/package.json +45 -0
- data/node_modules/isarray/test.js +20 -0
- data/node_modules/jszip/.codeclimate.yml +16 -0
- data/node_modules/jszip/.editorconfig +8 -0
- data/node_modules/jszip/.jshintignore +1 -0
- data/node_modules/jszip/.jshintrc +21 -0
- data/node_modules/jszip/.travis.yml +17 -0
- data/node_modules/jszip/CHANGES.md +163 -0
- data/node_modules/jszip/LICENSE.markdown +651 -0
- data/node_modules/jszip/README.markdown +35 -0
- data/node_modules/jszip/dist/jszip.js +30 -0
- data/node_modules/jszip/dist/jszip.min.js +13 -0
- data/node_modules/jszip/index.d.ts +270 -0
- data/node_modules/jszip/lib/base64.js +106 -0
- data/node_modules/jszip/lib/compressedObject.js +74 -0
- data/node_modules/jszip/lib/compressions.js +14 -0
- data/node_modules/jszip/lib/crc32.js +77 -0
- data/node_modules/jszip/lib/defaults.js +11 -0
- data/node_modules/jszip/lib/external.js +19 -0
- data/node_modules/jszip/lib/flate.js +85 -0
- data/node_modules/jszip/lib/generate/ZipFileWorker.js +540 -0
- data/node_modules/jszip/lib/generate/index.js +57 -0
- data/node_modules/jszip/lib/index.js +52 -0
- data/node_modules/jszip/lib/license_header.js +11 -0
- data/node_modules/jszip/lib/load.js +81 -0
- data/node_modules/jszip/lib/nodejs/NodejsStreamInputAdapter.js +74 -0
- data/node_modules/jszip/lib/nodejs/NodejsStreamOutputAdapter.js +42 -0
- data/node_modules/jszip/lib/nodejsUtils.js +57 -0
- data/node_modules/jszip/lib/object.js +389 -0
- data/node_modules/jszip/lib/readable-stream-browser.js +9 -0
- data/node_modules/jszip/lib/reader/ArrayReader.js +57 -0
- data/node_modules/jszip/lib/reader/DataReader.js +116 -0
- data/node_modules/jszip/lib/reader/NodeBufferReader.js +19 -0
- data/node_modules/jszip/lib/reader/StringReader.js +38 -0
- data/node_modules/jszip/lib/reader/Uint8ArrayReader.js +22 -0
- data/node_modules/jszip/lib/reader/readerFor.js +28 -0
- data/node_modules/jszip/lib/signature.js +7 -0
- data/node_modules/jszip/lib/stream/ConvertWorker.js +26 -0
- data/node_modules/jszip/lib/stream/Crc32Probe.js +24 -0
- data/node_modules/jszip/lib/stream/DataLengthProbe.js +29 -0
- data/node_modules/jszip/lib/stream/DataWorker.js +116 -0
- data/node_modules/jszip/lib/stream/GenericWorker.js +263 -0
- data/node_modules/jszip/lib/stream/StreamHelper.js +212 -0
- data/node_modules/jszip/lib/support.js +38 -0
- data/node_modules/jszip/lib/utf8.js +275 -0
- data/node_modules/jszip/lib/utils.js +476 -0
- data/node_modules/jszip/lib/zipEntries.js +262 -0
- data/node_modules/jszip/lib/zipEntry.js +294 -0
- data/node_modules/jszip/lib/zipObject.js +133 -0
- data/node_modules/jszip/package.json +63 -0
- data/node_modules/jszip/vendor/FileSaver.js +247 -0
- data/node_modules/lie/README.md +62 -0
- data/node_modules/lie/dist/lie.js +350 -0
- data/node_modules/lie/dist/lie.min.js +1 -0
- data/node_modules/lie/dist/lie.polyfill.js +358 -0
- data/node_modules/lie/dist/lie.polyfill.min.js +1 -0
- data/node_modules/lie/lib/browser.js +273 -0
- data/node_modules/lie/lib/index.js +298 -0
- data/node_modules/lie/license.md +7 -0
- data/node_modules/lie/lie.d.ts +244 -0
- data/node_modules/lie/package.json +69 -0
- data/node_modules/lie/polyfill.js +4 -0
- data/node_modules/minimatch/LICENSE +15 -0
- data/node_modules/minimatch/README.md +209 -0
- data/node_modules/minimatch/minimatch.js +923 -0
- data/node_modules/minimatch/package.json +30 -0
- data/node_modules/once/LICENSE +15 -0
- data/node_modules/once/README.md +79 -0
- data/node_modules/once/once.js +42 -0
- data/node_modules/once/package.json +33 -0
- data/node_modules/pako/CHANGELOG.md +164 -0
- data/node_modules/pako/LICENSE +21 -0
- data/node_modules/pako/README.md +191 -0
- data/node_modules/pako/dist/pako.js +6818 -0
- data/node_modules/pako/dist/pako.min.js +1 -0
- data/node_modules/pako/dist/pako_deflate.js +3997 -0
- data/node_modules/pako/dist/pako_deflate.min.js +1 -0
- data/node_modules/pako/dist/pako_inflate.js +3300 -0
- data/node_modules/pako/dist/pako_inflate.min.js +1 -0
- data/node_modules/pako/index.js +14 -0
- data/node_modules/pako/lib/deflate.js +400 -0
- data/node_modules/pako/lib/inflate.js +423 -0
- data/node_modules/pako/lib/utils/common.js +105 -0
- data/node_modules/pako/lib/utils/strings.js +187 -0
- data/node_modules/pako/lib/zlib/README +59 -0
- data/node_modules/pako/lib/zlib/adler32.js +51 -0
- data/node_modules/pako/lib/zlib/constants.js +68 -0
- data/node_modules/pako/lib/zlib/crc32.js +59 -0
- data/node_modules/pako/lib/zlib/deflate.js +1874 -0
- data/node_modules/pako/lib/zlib/gzheader.js +58 -0
- data/node_modules/pako/lib/zlib/inffast.js +345 -0
- data/node_modules/pako/lib/zlib/inflate.js +1556 -0
- data/node_modules/pako/lib/zlib/inftrees.js +343 -0
- data/node_modules/pako/lib/zlib/messages.js +32 -0
- data/node_modules/pako/lib/zlib/trees.js +1222 -0
- data/node_modules/pako/lib/zlib/zstream.js +47 -0
- data/node_modules/pako/package.json +44 -0
- data/node_modules/path-is-absolute/index.js +20 -0
- data/node_modules/path-is-absolute/license +21 -0
- data/node_modules/path-is-absolute/package.json +43 -0
- data/node_modules/path-is-absolute/readme.md +59 -0
- data/node_modules/process-nextick-args/index.js +45 -0
- data/node_modules/process-nextick-args/license.md +19 -0
- data/node_modules/process-nextick-args/package.json +25 -0
- data/node_modules/process-nextick-args/readme.md +18 -0
- data/node_modules/readable-stream/.travis.yml +34 -0
- data/node_modules/readable-stream/CONTRIBUTING.md +38 -0
- data/node_modules/readable-stream/GOVERNANCE.md +136 -0
- data/node_modules/readable-stream/LICENSE +47 -0
- data/node_modules/readable-stream/README.md +58 -0
- data/node_modules/readable-stream/doc/wg-meetings/2015-01-30.md +60 -0
- data/node_modules/readable-stream/duplex-browser.js +1 -0
- data/node_modules/readable-stream/duplex.js +1 -0
- data/node_modules/readable-stream/lib/_stream_duplex.js +131 -0
- data/node_modules/readable-stream/lib/_stream_passthrough.js +47 -0
- data/node_modules/readable-stream/lib/_stream_readable.js +1019 -0
- data/node_modules/readable-stream/lib/_stream_transform.js +214 -0
- data/node_modules/readable-stream/lib/_stream_writable.js +687 -0
- data/node_modules/readable-stream/lib/internal/streams/BufferList.js +79 -0
- data/node_modules/readable-stream/lib/internal/streams/destroy.js +74 -0
- data/node_modules/readable-stream/lib/internal/streams/stream-browser.js +1 -0
- data/node_modules/readable-stream/lib/internal/streams/stream.js +1 -0
- data/node_modules/readable-stream/package.json +52 -0
- data/node_modules/readable-stream/passthrough.js +1 -0
- data/node_modules/readable-stream/readable-browser.js +7 -0
- data/node_modules/readable-stream/readable.js +19 -0
- data/node_modules/readable-stream/transform.js +1 -0
- data/node_modules/readable-stream/writable-browser.js +1 -0
- data/node_modules/readable-stream/writable.js +8 -0
- data/node_modules/rimraf/LICENSE +15 -0
- data/node_modules/rimraf/README.md +101 -0
- data/node_modules/rimraf/bin.js +50 -0
- data/node_modules/rimraf/package.json +29 -0
- data/node_modules/rimraf/rimraf.js +372 -0
- data/node_modules/safe-buffer/LICENSE +21 -0
- data/node_modules/safe-buffer/README.md +584 -0
- data/node_modules/safe-buffer/index.d.ts +187 -0
- data/node_modules/safe-buffer/index.js +62 -0
- data/node_modules/safe-buffer/package.json +37 -0
- data/node_modules/selenium-webdriver/CHANGES.md +1114 -0
- data/node_modules/selenium-webdriver/LICENSE +202 -0
- data/node_modules/selenium-webdriver/NOTICE +2 -0
- data/node_modules/selenium-webdriver/README.md +229 -0
- data/node_modules/selenium-webdriver/chrome.js +295 -0
- data/node_modules/selenium-webdriver/chromium.js +829 -0
- data/node_modules/selenium-webdriver/devtools/CDPConnection.js +35 -0
- data/node_modules/selenium-webdriver/edge.js +224 -0
- data/node_modules/selenium-webdriver/example/chrome_android.js +45 -0
- data/node_modules/selenium-webdriver/example/chrome_mobile_emulation.js +46 -0
- data/node_modules/selenium-webdriver/example/firefox_channels.js +84 -0
- data/node_modules/selenium-webdriver/example/google_search.js +50 -0
- data/node_modules/selenium-webdriver/example/google_search_test.js +70 -0
- data/node_modules/selenium-webdriver/example/headless.js +63 -0
- data/node_modules/selenium-webdriver/example/logging.js +64 -0
- data/node_modules/selenium-webdriver/firefox.js +789 -0
- data/node_modules/selenium-webdriver/http/index.js +324 -0
- data/node_modules/selenium-webdriver/http/util.js +172 -0
- data/node_modules/selenium-webdriver/ie.js +503 -0
- data/node_modules/selenium-webdriver/index.js +825 -0
- data/node_modules/selenium-webdriver/io/exec.js +162 -0
- data/node_modules/selenium-webdriver/io/index.js +348 -0
- data/node_modules/selenium-webdriver/io/zip.js +223 -0
- data/node_modules/selenium-webdriver/lib/atoms/find-elements.js +123 -0
- data/node_modules/selenium-webdriver/lib/atoms/get-attribute.js +101 -0
- data/node_modules/selenium-webdriver/lib/atoms/is-displayed.js +101 -0
- data/node_modules/selenium-webdriver/lib/atoms/mutation-listener.js +55 -0
- data/node_modules/selenium-webdriver/lib/by.js +415 -0
- data/node_modules/selenium-webdriver/lib/capabilities.js +553 -0
- data/node_modules/selenium-webdriver/lib/command.js +206 -0
- data/node_modules/selenium-webdriver/lib/error.js +605 -0
- data/node_modules/selenium-webdriver/lib/http.js +704 -0
- data/node_modules/selenium-webdriver/lib/input.js +946 -0
- data/node_modules/selenium-webdriver/lib/logging.js +661 -0
- data/node_modules/selenium-webdriver/lib/promise.js +285 -0
- data/node_modules/selenium-webdriver/lib/proxy.js +212 -0
- data/node_modules/selenium-webdriver/lib/session.js +77 -0
- data/node_modules/selenium-webdriver/lib/symbols.js +37 -0
- data/node_modules/selenium-webdriver/lib/until.js +429 -0
- data/node_modules/selenium-webdriver/lib/webdriver.js +2919 -0
- data/node_modules/selenium-webdriver/net/index.js +107 -0
- data/node_modules/selenium-webdriver/net/portprober.js +75 -0
- data/node_modules/selenium-webdriver/opera.js +406 -0
- data/node_modules/selenium-webdriver/package.json +54 -0
- data/node_modules/selenium-webdriver/proxy.js +32 -0
- data/node_modules/selenium-webdriver/remote/index.js +624 -0
- data/node_modules/selenium-webdriver/safari.js +168 -0
- data/node_modules/selenium-webdriver/testing/index.js +504 -0
- data/node_modules/set-immediate-shim/index.js +7 -0
- data/node_modules/set-immediate-shim/package.json +34 -0
- data/node_modules/set-immediate-shim/readme.md +31 -0
- data/node_modules/string_decoder/.travis.yml +50 -0
- data/node_modules/string_decoder/LICENSE +48 -0
- data/node_modules/string_decoder/README.md +47 -0
- data/node_modules/string_decoder/lib/string_decoder.js +296 -0
- data/node_modules/string_decoder/package.json +31 -0
- data/node_modules/tmp/CHANGELOG.md +288 -0
- data/node_modules/tmp/LICENSE +21 -0
- data/node_modules/tmp/README.md +365 -0
- data/node_modules/tmp/lib/tmp.js +780 -0
- data/node_modules/tmp/node_modules/.bin/rimraf +1 -0
- data/node_modules/tmp/node_modules/rimraf/CHANGELOG.md +65 -0
- data/node_modules/tmp/node_modules/rimraf/LICENSE +15 -0
- data/node_modules/tmp/node_modules/rimraf/README.md +101 -0
- data/node_modules/tmp/node_modules/rimraf/bin.js +68 -0
- data/node_modules/tmp/node_modules/rimraf/package.json +32 -0
- data/node_modules/tmp/node_modules/rimraf/rimraf.js +360 -0
- data/node_modules/tmp/package.json +58 -0
- data/node_modules/util-deprecate/History.md +16 -0
- data/node_modules/util-deprecate/LICENSE +24 -0
- data/node_modules/util-deprecate/README.md +53 -0
- data/node_modules/util-deprecate/browser.js +67 -0
- data/node_modules/util-deprecate/node.js +6 -0
- data/node_modules/util-deprecate/package.json +27 -0
- data/node_modules/wrappy/LICENSE +15 -0
- data/node_modules/wrappy/README.md +36 -0
- data/node_modules/wrappy/package.json +29 -0
- data/node_modules/wrappy/wrappy.js +33 -0
- data/node_modules/ws/LICENSE +21 -0
- data/node_modules/ws/README.md +496 -0
- data/node_modules/ws/browser.js +8 -0
- data/node_modules/ws/index.js +10 -0
- data/node_modules/ws/lib/buffer-util.js +129 -0
- data/node_modules/ws/lib/constants.js +10 -0
- data/node_modules/ws/lib/event-target.js +184 -0
- data/node_modules/ws/lib/extension.js +223 -0
- data/node_modules/ws/lib/limiter.js +55 -0
- data/node_modules/ws/lib/permessage-deflate.js +517 -0
- data/node_modules/ws/lib/receiver.js +507 -0
- data/node_modules/ws/lib/sender.js +405 -0
- data/node_modules/ws/lib/stream.js +165 -0
- data/node_modules/ws/lib/validation.js +104 -0
- data/node_modules/ws/lib/websocket-server.js +418 -0
- data/node_modules/ws/lib/websocket.js +942 -0
- data/node_modules/ws/package.json +56 -0
- data/package-lock.json +458 -0
- data/package.json +5 -0
- data/selenium.log +1 -0
- metadata +314 -19
@@ -0,0 +1,34 @@
|
|
1
|
+
{
|
2
|
+
"name": "set-immediate-shim",
|
3
|
+
"version": "1.0.1",
|
4
|
+
"description": "Simple setImmediate shim",
|
5
|
+
"license": "MIT",
|
6
|
+
"repository": "sindresorhus/set-immediate-shim",
|
7
|
+
"author": {
|
8
|
+
"name": "Sindre Sorhus",
|
9
|
+
"email": "sindresorhus@gmail.com",
|
10
|
+
"url": "sindresorhus.com"
|
11
|
+
},
|
12
|
+
"engines": {
|
13
|
+
"node": ">=0.10.0"
|
14
|
+
},
|
15
|
+
"scripts": {
|
16
|
+
"test": "node test.js"
|
17
|
+
},
|
18
|
+
"files": [
|
19
|
+
"index.js"
|
20
|
+
],
|
21
|
+
"keywords": [
|
22
|
+
"setImmediate",
|
23
|
+
"immediate",
|
24
|
+
"setTimeout",
|
25
|
+
"timeout",
|
26
|
+
"shim",
|
27
|
+
"polyfill",
|
28
|
+
"ponyfill"
|
29
|
+
],
|
30
|
+
"devDependencies": {
|
31
|
+
"ava": "0.0.4",
|
32
|
+
"require-uncached": "^1.0.2"
|
33
|
+
}
|
34
|
+
}
|
@@ -0,0 +1,31 @@
|
|
1
|
+
# set-immediate-shim [![Build Status](https://travis-ci.org/sindresorhus/set-immediate-shim.svg?branch=master)](https://travis-ci.org/sindresorhus/set-immediate-shim)
|
2
|
+
|
3
|
+
> Simple [`setImmediate`](https://developer.mozilla.org/en-US/docs/Web/API/Window.setImmediate) shim
|
4
|
+
|
5
|
+
|
6
|
+
## Install
|
7
|
+
|
8
|
+
```
|
9
|
+
$ npm install --save set-immediate-shim
|
10
|
+
```
|
11
|
+
|
12
|
+
|
13
|
+
## Usage
|
14
|
+
|
15
|
+
```js
|
16
|
+
var setImmediateShim = require('set-immediate-shim');
|
17
|
+
|
18
|
+
setImmediateShim(function () {
|
19
|
+
console.log('2');
|
20
|
+
});
|
21
|
+
|
22
|
+
console.log('1');
|
23
|
+
|
24
|
+
//=> 1
|
25
|
+
//=> 2
|
26
|
+
```
|
27
|
+
|
28
|
+
|
29
|
+
## License
|
30
|
+
|
31
|
+
MIT © [Sindre Sorhus](http://sindresorhus.com)
|
@@ -0,0 +1,50 @@
|
|
1
|
+
sudo: false
|
2
|
+
language: node_js
|
3
|
+
before_install:
|
4
|
+
- npm install -g npm@2
|
5
|
+
- test $NPM_LEGACY && npm install -g npm@latest-3 || npm install npm -g
|
6
|
+
notifications:
|
7
|
+
email: false
|
8
|
+
matrix:
|
9
|
+
fast_finish: true
|
10
|
+
include:
|
11
|
+
- node_js: '0.8'
|
12
|
+
env:
|
13
|
+
- TASK=test
|
14
|
+
- NPM_LEGACY=true
|
15
|
+
- node_js: '0.10'
|
16
|
+
env:
|
17
|
+
- TASK=test
|
18
|
+
- NPM_LEGACY=true
|
19
|
+
- node_js: '0.11'
|
20
|
+
env:
|
21
|
+
- TASK=test
|
22
|
+
- NPM_LEGACY=true
|
23
|
+
- node_js: '0.12'
|
24
|
+
env:
|
25
|
+
- TASK=test
|
26
|
+
- NPM_LEGACY=true
|
27
|
+
- node_js: 1
|
28
|
+
env:
|
29
|
+
- TASK=test
|
30
|
+
- NPM_LEGACY=true
|
31
|
+
- node_js: 2
|
32
|
+
env:
|
33
|
+
- TASK=test
|
34
|
+
- NPM_LEGACY=true
|
35
|
+
- node_js: 3
|
36
|
+
env:
|
37
|
+
- TASK=test
|
38
|
+
- NPM_LEGACY=true
|
39
|
+
- node_js: 4
|
40
|
+
env: TASK=test
|
41
|
+
- node_js: 5
|
42
|
+
env: TASK=test
|
43
|
+
- node_js: 6
|
44
|
+
env: TASK=test
|
45
|
+
- node_js: 7
|
46
|
+
env: TASK=test
|
47
|
+
- node_js: 8
|
48
|
+
env: TASK=test
|
49
|
+
- node_js: 9
|
50
|
+
env: TASK=test
|
@@ -0,0 +1,48 @@
|
|
1
|
+
Node.js is licensed for use as follows:
|
2
|
+
|
3
|
+
"""
|
4
|
+
Copyright Node.js contributors. All rights reserved.
|
5
|
+
|
6
|
+
Permission is hereby granted, free of charge, to any person obtaining a copy
|
7
|
+
of this software and associated documentation files (the "Software"), to
|
8
|
+
deal in the Software without restriction, including without limitation the
|
9
|
+
rights to use, copy, modify, merge, publish, distribute, sublicense, and/or
|
10
|
+
sell copies of the Software, and to permit persons to whom the Software is
|
11
|
+
furnished to do so, subject to the following conditions:
|
12
|
+
|
13
|
+
The above copyright notice and this permission notice shall be included in
|
14
|
+
all copies or substantial portions of the Software.
|
15
|
+
|
16
|
+
THE SOFTWARE IS PROVIDED "AS IS", WITHOUT WARRANTY OF ANY KIND, EXPRESS OR
|
17
|
+
IMPLIED, INCLUDING BUT NOT LIMITED TO THE WARRANTIES OF MERCHANTABILITY,
|
18
|
+
FITNESS FOR A PARTICULAR PURPOSE AND NONINFRINGEMENT. IN NO EVENT SHALL THE
|
19
|
+
AUTHORS OR COPYRIGHT HOLDERS BE LIABLE FOR ANY CLAIM, DAMAGES OR OTHER
|
20
|
+
LIABILITY, WHETHER IN AN ACTION OF CONTRACT, TORT OR OTHERWISE, ARISING
|
21
|
+
FROM, OUT OF OR IN CONNECTION WITH THE SOFTWARE OR THE USE OR OTHER DEALINGS
|
22
|
+
IN THE SOFTWARE.
|
23
|
+
"""
|
24
|
+
|
25
|
+
This license applies to parts of Node.js originating from the
|
26
|
+
https://github.com/joyent/node repository:
|
27
|
+
|
28
|
+
"""
|
29
|
+
Copyright Joyent, Inc. and other Node contributors. All rights reserved.
|
30
|
+
Permission is hereby granted, free of charge, to any person obtaining a copy
|
31
|
+
of this software and associated documentation files (the "Software"), to
|
32
|
+
deal in the Software without restriction, including without limitation the
|
33
|
+
rights to use, copy, modify, merge, publish, distribute, sublicense, and/or
|
34
|
+
sell copies of the Software, and to permit persons to whom the Software is
|
35
|
+
furnished to do so, subject to the following conditions:
|
36
|
+
|
37
|
+
The above copyright notice and this permission notice shall be included in
|
38
|
+
all copies or substantial portions of the Software.
|
39
|
+
|
40
|
+
THE SOFTWARE IS PROVIDED "AS IS", WITHOUT WARRANTY OF ANY KIND, EXPRESS OR
|
41
|
+
IMPLIED, INCLUDING BUT NOT LIMITED TO THE WARRANTIES OF MERCHANTABILITY,
|
42
|
+
FITNESS FOR A PARTICULAR PURPOSE AND NONINFRINGEMENT. IN NO EVENT SHALL THE
|
43
|
+
AUTHORS OR COPYRIGHT HOLDERS BE LIABLE FOR ANY CLAIM, DAMAGES OR OTHER
|
44
|
+
LIABILITY, WHETHER IN AN ACTION OF CONTRACT, TORT OR OTHERWISE, ARISING
|
45
|
+
FROM, OUT OF OR IN CONNECTION WITH THE SOFTWARE OR THE USE OR OTHER DEALINGS
|
46
|
+
IN THE SOFTWARE.
|
47
|
+
"""
|
48
|
+
|
@@ -0,0 +1,47 @@
|
|
1
|
+
# string_decoder
|
2
|
+
|
3
|
+
***Node-core v8.9.4 string_decoder for userland***
|
4
|
+
|
5
|
+
|
6
|
+
[![NPM](https://nodei.co/npm/string_decoder.png?downloads=true&downloadRank=true)](https://nodei.co/npm/string_decoder/)
|
7
|
+
[![NPM](https://nodei.co/npm-dl/string_decoder.png?&months=6&height=3)](https://nodei.co/npm/string_decoder/)
|
8
|
+
|
9
|
+
|
10
|
+
```bash
|
11
|
+
npm install --save string_decoder
|
12
|
+
```
|
13
|
+
|
14
|
+
***Node-core string_decoder for userland***
|
15
|
+
|
16
|
+
This package is a mirror of the string_decoder implementation in Node-core.
|
17
|
+
|
18
|
+
Full documentation may be found on the [Node.js website](https://nodejs.org/dist/v8.9.4/docs/api/).
|
19
|
+
|
20
|
+
As of version 1.0.0 **string_decoder** uses semantic versioning.
|
21
|
+
|
22
|
+
## Previous versions
|
23
|
+
|
24
|
+
Previous version numbers match the versions found in Node core, e.g. 0.10.24 matches Node 0.10.24, likewise 0.11.10 matches Node 0.11.10.
|
25
|
+
|
26
|
+
## Update
|
27
|
+
|
28
|
+
The *build/* directory contains a build script that will scrape the source from the [nodejs/node](https://github.com/nodejs/node) repo given a specific Node version.
|
29
|
+
|
30
|
+
## Streams Working Group
|
31
|
+
|
32
|
+
`string_decoder` is maintained by the Streams Working Group, which
|
33
|
+
oversees the development and maintenance of the Streams API within
|
34
|
+
Node.js. The responsibilities of the Streams Working Group include:
|
35
|
+
|
36
|
+
* Addressing stream issues on the Node.js issue tracker.
|
37
|
+
* Authoring and editing stream documentation within the Node.js project.
|
38
|
+
* Reviewing changes to stream subclasses within the Node.js project.
|
39
|
+
* Redirecting changes to streams from the Node.js project to this
|
40
|
+
project.
|
41
|
+
* Assisting in the implementation of stream providers within Node.js.
|
42
|
+
* Recommending versions of `readable-stream` to be included in Node.js.
|
43
|
+
* Messaging about the future of streams to give the community advance
|
44
|
+
notice of changes.
|
45
|
+
|
46
|
+
See [readable-stream](https://github.com/nodejs/readable-stream) for
|
47
|
+
more details.
|
@@ -0,0 +1,296 @@
|
|
1
|
+
// Copyright Joyent, Inc. and other Node contributors.
|
2
|
+
//
|
3
|
+
// Permission is hereby granted, free of charge, to any person obtaining a
|
4
|
+
// 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 permit
|
8
|
+
// persons to whom the Software is furnished to do so, subject to the
|
9
|
+
// following conditions:
|
10
|
+
//
|
11
|
+
// The above copyright notice and this permission notice shall be included
|
12
|
+
// in all copies or substantial portions of the Software.
|
13
|
+
//
|
14
|
+
// THE SOFTWARE IS PROVIDED "AS IS", WITHOUT WARRANTY OF ANY KIND, EXPRESS
|
15
|
+
// OR IMPLIED, INCLUDING BUT NOT LIMITED TO THE WARRANTIES OF
|
16
|
+
// MERCHANTABILITY, FITNESS FOR A PARTICULAR PURPOSE AND NONINFRINGEMENT. IN
|
17
|
+
// NO EVENT SHALL THE AUTHORS OR COPYRIGHT HOLDERS BE LIABLE FOR ANY CLAIM,
|
18
|
+
// DAMAGES OR OTHER LIABILITY, WHETHER IN AN ACTION OF CONTRACT, TORT OR
|
19
|
+
// OTHERWISE, ARISING FROM, OUT OF OR IN CONNECTION WITH THE SOFTWARE OR THE
|
20
|
+
// USE OR OTHER DEALINGS IN THE SOFTWARE.
|
21
|
+
|
22
|
+
'use strict';
|
23
|
+
|
24
|
+
/*<replacement>*/
|
25
|
+
|
26
|
+
var Buffer = require('safe-buffer').Buffer;
|
27
|
+
/*</replacement>*/
|
28
|
+
|
29
|
+
var isEncoding = Buffer.isEncoding || function (encoding) {
|
30
|
+
encoding = '' + encoding;
|
31
|
+
switch (encoding && encoding.toLowerCase()) {
|
32
|
+
case 'hex':case 'utf8':case 'utf-8':case 'ascii':case 'binary':case 'base64':case 'ucs2':case 'ucs-2':case 'utf16le':case 'utf-16le':case 'raw':
|
33
|
+
return true;
|
34
|
+
default:
|
35
|
+
return false;
|
36
|
+
}
|
37
|
+
};
|
38
|
+
|
39
|
+
function _normalizeEncoding(enc) {
|
40
|
+
if (!enc) return 'utf8';
|
41
|
+
var retried;
|
42
|
+
while (true) {
|
43
|
+
switch (enc) {
|
44
|
+
case 'utf8':
|
45
|
+
case 'utf-8':
|
46
|
+
return 'utf8';
|
47
|
+
case 'ucs2':
|
48
|
+
case 'ucs-2':
|
49
|
+
case 'utf16le':
|
50
|
+
case 'utf-16le':
|
51
|
+
return 'utf16le';
|
52
|
+
case 'latin1':
|
53
|
+
case 'binary':
|
54
|
+
return 'latin1';
|
55
|
+
case 'base64':
|
56
|
+
case 'ascii':
|
57
|
+
case 'hex':
|
58
|
+
return enc;
|
59
|
+
default:
|
60
|
+
if (retried) return; // undefined
|
61
|
+
enc = ('' + enc).toLowerCase();
|
62
|
+
retried = true;
|
63
|
+
}
|
64
|
+
}
|
65
|
+
};
|
66
|
+
|
67
|
+
// Do not cache `Buffer.isEncoding` when checking encoding names as some
|
68
|
+
// modules monkey-patch it to support additional encodings
|
69
|
+
function normalizeEncoding(enc) {
|
70
|
+
var nenc = _normalizeEncoding(enc);
|
71
|
+
if (typeof nenc !== 'string' && (Buffer.isEncoding === isEncoding || !isEncoding(enc))) throw new Error('Unknown encoding: ' + enc);
|
72
|
+
return nenc || enc;
|
73
|
+
}
|
74
|
+
|
75
|
+
// StringDecoder provides an interface for efficiently splitting a series of
|
76
|
+
// buffers into a series of JS strings without breaking apart multi-byte
|
77
|
+
// characters.
|
78
|
+
exports.StringDecoder = StringDecoder;
|
79
|
+
function StringDecoder(encoding) {
|
80
|
+
this.encoding = normalizeEncoding(encoding);
|
81
|
+
var nb;
|
82
|
+
switch (this.encoding) {
|
83
|
+
case 'utf16le':
|
84
|
+
this.text = utf16Text;
|
85
|
+
this.end = utf16End;
|
86
|
+
nb = 4;
|
87
|
+
break;
|
88
|
+
case 'utf8':
|
89
|
+
this.fillLast = utf8FillLast;
|
90
|
+
nb = 4;
|
91
|
+
break;
|
92
|
+
case 'base64':
|
93
|
+
this.text = base64Text;
|
94
|
+
this.end = base64End;
|
95
|
+
nb = 3;
|
96
|
+
break;
|
97
|
+
default:
|
98
|
+
this.write = simpleWrite;
|
99
|
+
this.end = simpleEnd;
|
100
|
+
return;
|
101
|
+
}
|
102
|
+
this.lastNeed = 0;
|
103
|
+
this.lastTotal = 0;
|
104
|
+
this.lastChar = Buffer.allocUnsafe(nb);
|
105
|
+
}
|
106
|
+
|
107
|
+
StringDecoder.prototype.write = function (buf) {
|
108
|
+
if (buf.length === 0) return '';
|
109
|
+
var r;
|
110
|
+
var i;
|
111
|
+
if (this.lastNeed) {
|
112
|
+
r = this.fillLast(buf);
|
113
|
+
if (r === undefined) return '';
|
114
|
+
i = this.lastNeed;
|
115
|
+
this.lastNeed = 0;
|
116
|
+
} else {
|
117
|
+
i = 0;
|
118
|
+
}
|
119
|
+
if (i < buf.length) return r ? r + this.text(buf, i) : this.text(buf, i);
|
120
|
+
return r || '';
|
121
|
+
};
|
122
|
+
|
123
|
+
StringDecoder.prototype.end = utf8End;
|
124
|
+
|
125
|
+
// Returns only complete characters in a Buffer
|
126
|
+
StringDecoder.prototype.text = utf8Text;
|
127
|
+
|
128
|
+
// Attempts to complete a partial non-UTF-8 character using bytes from a Buffer
|
129
|
+
StringDecoder.prototype.fillLast = function (buf) {
|
130
|
+
if (this.lastNeed <= buf.length) {
|
131
|
+
buf.copy(this.lastChar, this.lastTotal - this.lastNeed, 0, this.lastNeed);
|
132
|
+
return this.lastChar.toString(this.encoding, 0, this.lastTotal);
|
133
|
+
}
|
134
|
+
buf.copy(this.lastChar, this.lastTotal - this.lastNeed, 0, buf.length);
|
135
|
+
this.lastNeed -= buf.length;
|
136
|
+
};
|
137
|
+
|
138
|
+
// Checks the type of a UTF-8 byte, whether it's ASCII, a leading byte, or a
|
139
|
+
// continuation byte. If an invalid byte is detected, -2 is returned.
|
140
|
+
function utf8CheckByte(byte) {
|
141
|
+
if (byte <= 0x7F) return 0;else if (byte >> 5 === 0x06) return 2;else if (byte >> 4 === 0x0E) return 3;else if (byte >> 3 === 0x1E) return 4;
|
142
|
+
return byte >> 6 === 0x02 ? -1 : -2;
|
143
|
+
}
|
144
|
+
|
145
|
+
// Checks at most 3 bytes at the end of a Buffer in order to detect an
|
146
|
+
// incomplete multi-byte UTF-8 character. The total number of bytes (2, 3, or 4)
|
147
|
+
// needed to complete the UTF-8 character (if applicable) are returned.
|
148
|
+
function utf8CheckIncomplete(self, buf, i) {
|
149
|
+
var j = buf.length - 1;
|
150
|
+
if (j < i) return 0;
|
151
|
+
var nb = utf8CheckByte(buf[j]);
|
152
|
+
if (nb >= 0) {
|
153
|
+
if (nb > 0) self.lastNeed = nb - 1;
|
154
|
+
return nb;
|
155
|
+
}
|
156
|
+
if (--j < i || nb === -2) return 0;
|
157
|
+
nb = utf8CheckByte(buf[j]);
|
158
|
+
if (nb >= 0) {
|
159
|
+
if (nb > 0) self.lastNeed = nb - 2;
|
160
|
+
return nb;
|
161
|
+
}
|
162
|
+
if (--j < i || nb === -2) return 0;
|
163
|
+
nb = utf8CheckByte(buf[j]);
|
164
|
+
if (nb >= 0) {
|
165
|
+
if (nb > 0) {
|
166
|
+
if (nb === 2) nb = 0;else self.lastNeed = nb - 3;
|
167
|
+
}
|
168
|
+
return nb;
|
169
|
+
}
|
170
|
+
return 0;
|
171
|
+
}
|
172
|
+
|
173
|
+
// Validates as many continuation bytes for a multi-byte UTF-8 character as
|
174
|
+
// needed or are available. If we see a non-continuation byte where we expect
|
175
|
+
// one, we "replace" the validated continuation bytes we've seen so far with
|
176
|
+
// a single UTF-8 replacement character ('\ufffd'), to match v8's UTF-8 decoding
|
177
|
+
// behavior. The continuation byte check is included three times in the case
|
178
|
+
// where all of the continuation bytes for a character exist in the same buffer.
|
179
|
+
// It is also done this way as a slight performance increase instead of using a
|
180
|
+
// loop.
|
181
|
+
function utf8CheckExtraBytes(self, buf, p) {
|
182
|
+
if ((buf[0] & 0xC0) !== 0x80) {
|
183
|
+
self.lastNeed = 0;
|
184
|
+
return '\ufffd';
|
185
|
+
}
|
186
|
+
if (self.lastNeed > 1 && buf.length > 1) {
|
187
|
+
if ((buf[1] & 0xC0) !== 0x80) {
|
188
|
+
self.lastNeed = 1;
|
189
|
+
return '\ufffd';
|
190
|
+
}
|
191
|
+
if (self.lastNeed > 2 && buf.length > 2) {
|
192
|
+
if ((buf[2] & 0xC0) !== 0x80) {
|
193
|
+
self.lastNeed = 2;
|
194
|
+
return '\ufffd';
|
195
|
+
}
|
196
|
+
}
|
197
|
+
}
|
198
|
+
}
|
199
|
+
|
200
|
+
// Attempts to complete a multi-byte UTF-8 character using bytes from a Buffer.
|
201
|
+
function utf8FillLast(buf) {
|
202
|
+
var p = this.lastTotal - this.lastNeed;
|
203
|
+
var r = utf8CheckExtraBytes(this, buf, p);
|
204
|
+
if (r !== undefined) return r;
|
205
|
+
if (this.lastNeed <= buf.length) {
|
206
|
+
buf.copy(this.lastChar, p, 0, this.lastNeed);
|
207
|
+
return this.lastChar.toString(this.encoding, 0, this.lastTotal);
|
208
|
+
}
|
209
|
+
buf.copy(this.lastChar, p, 0, buf.length);
|
210
|
+
this.lastNeed -= buf.length;
|
211
|
+
}
|
212
|
+
|
213
|
+
// Returns all complete UTF-8 characters in a Buffer. If the Buffer ended on a
|
214
|
+
// partial character, the character's bytes are buffered until the required
|
215
|
+
// number of bytes are available.
|
216
|
+
function utf8Text(buf, i) {
|
217
|
+
var total = utf8CheckIncomplete(this, buf, i);
|
218
|
+
if (!this.lastNeed) return buf.toString('utf8', i);
|
219
|
+
this.lastTotal = total;
|
220
|
+
var end = buf.length - (total - this.lastNeed);
|
221
|
+
buf.copy(this.lastChar, 0, end);
|
222
|
+
return buf.toString('utf8', i, end);
|
223
|
+
}
|
224
|
+
|
225
|
+
// For UTF-8, a replacement character is added when ending on a partial
|
226
|
+
// character.
|
227
|
+
function utf8End(buf) {
|
228
|
+
var r = buf && buf.length ? this.write(buf) : '';
|
229
|
+
if (this.lastNeed) return r + '\ufffd';
|
230
|
+
return r;
|
231
|
+
}
|
232
|
+
|
233
|
+
// UTF-16LE typically needs two bytes per character, but even if we have an even
|
234
|
+
// number of bytes available, we need to check if we end on a leading/high
|
235
|
+
// surrogate. In that case, we need to wait for the next two bytes in order to
|
236
|
+
// decode the last character properly.
|
237
|
+
function utf16Text(buf, i) {
|
238
|
+
if ((buf.length - i) % 2 === 0) {
|
239
|
+
var r = buf.toString('utf16le', i);
|
240
|
+
if (r) {
|
241
|
+
var c = r.charCodeAt(r.length - 1);
|
242
|
+
if (c >= 0xD800 && c <= 0xDBFF) {
|
243
|
+
this.lastNeed = 2;
|
244
|
+
this.lastTotal = 4;
|
245
|
+
this.lastChar[0] = buf[buf.length - 2];
|
246
|
+
this.lastChar[1] = buf[buf.length - 1];
|
247
|
+
return r.slice(0, -1);
|
248
|
+
}
|
249
|
+
}
|
250
|
+
return r;
|
251
|
+
}
|
252
|
+
this.lastNeed = 1;
|
253
|
+
this.lastTotal = 2;
|
254
|
+
this.lastChar[0] = buf[buf.length - 1];
|
255
|
+
return buf.toString('utf16le', i, buf.length - 1);
|
256
|
+
}
|
257
|
+
|
258
|
+
// For UTF-16LE we do not explicitly append special replacement characters if we
|
259
|
+
// end on a partial character, we simply let v8 handle that.
|
260
|
+
function utf16End(buf) {
|
261
|
+
var r = buf && buf.length ? this.write(buf) : '';
|
262
|
+
if (this.lastNeed) {
|
263
|
+
var end = this.lastTotal - this.lastNeed;
|
264
|
+
return r + this.lastChar.toString('utf16le', 0, end);
|
265
|
+
}
|
266
|
+
return r;
|
267
|
+
}
|
268
|
+
|
269
|
+
function base64Text(buf, i) {
|
270
|
+
var n = (buf.length - i) % 3;
|
271
|
+
if (n === 0) return buf.toString('base64', i);
|
272
|
+
this.lastNeed = 3 - n;
|
273
|
+
this.lastTotal = 3;
|
274
|
+
if (n === 1) {
|
275
|
+
this.lastChar[0] = buf[buf.length - 1];
|
276
|
+
} else {
|
277
|
+
this.lastChar[0] = buf[buf.length - 2];
|
278
|
+
this.lastChar[1] = buf[buf.length - 1];
|
279
|
+
}
|
280
|
+
return buf.toString('base64', i, buf.length - n);
|
281
|
+
}
|
282
|
+
|
283
|
+
function base64End(buf) {
|
284
|
+
var r = buf && buf.length ? this.write(buf) : '';
|
285
|
+
if (this.lastNeed) return r + this.lastChar.toString('base64', 0, 3 - this.lastNeed);
|
286
|
+
return r;
|
287
|
+
}
|
288
|
+
|
289
|
+
// Pass bytes on through for single-byte encodings (e.g. ascii, latin1, hex)
|
290
|
+
function simpleWrite(buf) {
|
291
|
+
return buf.toString(this.encoding);
|
292
|
+
}
|
293
|
+
|
294
|
+
function simpleEnd(buf) {
|
295
|
+
return buf && buf.length ? this.write(buf) : '';
|
296
|
+
}
|