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,105 @@
|
|
1
|
+
'use strict';
|
2
|
+
|
3
|
+
|
4
|
+
var TYPED_OK = (typeof Uint8Array !== 'undefined') &&
|
5
|
+
(typeof Uint16Array !== 'undefined') &&
|
6
|
+
(typeof Int32Array !== 'undefined');
|
7
|
+
|
8
|
+
function _has(obj, key) {
|
9
|
+
return Object.prototype.hasOwnProperty.call(obj, key);
|
10
|
+
}
|
11
|
+
|
12
|
+
exports.assign = function (obj /*from1, from2, from3, ...*/) {
|
13
|
+
var sources = Array.prototype.slice.call(arguments, 1);
|
14
|
+
while (sources.length) {
|
15
|
+
var source = sources.shift();
|
16
|
+
if (!source) { continue; }
|
17
|
+
|
18
|
+
if (typeof source !== 'object') {
|
19
|
+
throw new TypeError(source + 'must be non-object');
|
20
|
+
}
|
21
|
+
|
22
|
+
for (var p in source) {
|
23
|
+
if (_has(source, p)) {
|
24
|
+
obj[p] = source[p];
|
25
|
+
}
|
26
|
+
}
|
27
|
+
}
|
28
|
+
|
29
|
+
return obj;
|
30
|
+
};
|
31
|
+
|
32
|
+
|
33
|
+
// reduce buffer size, avoiding mem copy
|
34
|
+
exports.shrinkBuf = function (buf, size) {
|
35
|
+
if (buf.length === size) { return buf; }
|
36
|
+
if (buf.subarray) { return buf.subarray(0, size); }
|
37
|
+
buf.length = size;
|
38
|
+
return buf;
|
39
|
+
};
|
40
|
+
|
41
|
+
|
42
|
+
var fnTyped = {
|
43
|
+
arraySet: function (dest, src, src_offs, len, dest_offs) {
|
44
|
+
if (src.subarray && dest.subarray) {
|
45
|
+
dest.set(src.subarray(src_offs, src_offs + len), dest_offs);
|
46
|
+
return;
|
47
|
+
}
|
48
|
+
// Fallback to ordinary array
|
49
|
+
for (var i = 0; i < len; i++) {
|
50
|
+
dest[dest_offs + i] = src[src_offs + i];
|
51
|
+
}
|
52
|
+
},
|
53
|
+
// Join array of chunks to single array.
|
54
|
+
flattenChunks: function (chunks) {
|
55
|
+
var i, l, len, pos, chunk, result;
|
56
|
+
|
57
|
+
// calculate data length
|
58
|
+
len = 0;
|
59
|
+
for (i = 0, l = chunks.length; i < l; i++) {
|
60
|
+
len += chunks[i].length;
|
61
|
+
}
|
62
|
+
|
63
|
+
// join chunks
|
64
|
+
result = new Uint8Array(len);
|
65
|
+
pos = 0;
|
66
|
+
for (i = 0, l = chunks.length; i < l; i++) {
|
67
|
+
chunk = chunks[i];
|
68
|
+
result.set(chunk, pos);
|
69
|
+
pos += chunk.length;
|
70
|
+
}
|
71
|
+
|
72
|
+
return result;
|
73
|
+
}
|
74
|
+
};
|
75
|
+
|
76
|
+
var fnUntyped = {
|
77
|
+
arraySet: function (dest, src, src_offs, len, dest_offs) {
|
78
|
+
for (var i = 0; i < len; i++) {
|
79
|
+
dest[dest_offs + i] = src[src_offs + i];
|
80
|
+
}
|
81
|
+
},
|
82
|
+
// Join array of chunks to single array.
|
83
|
+
flattenChunks: function (chunks) {
|
84
|
+
return [].concat.apply([], chunks);
|
85
|
+
}
|
86
|
+
};
|
87
|
+
|
88
|
+
|
89
|
+
// Enable/Disable typed arrays use, for testing
|
90
|
+
//
|
91
|
+
exports.setTyped = function (on) {
|
92
|
+
if (on) {
|
93
|
+
exports.Buf8 = Uint8Array;
|
94
|
+
exports.Buf16 = Uint16Array;
|
95
|
+
exports.Buf32 = Int32Array;
|
96
|
+
exports.assign(exports, fnTyped);
|
97
|
+
} else {
|
98
|
+
exports.Buf8 = Array;
|
99
|
+
exports.Buf16 = Array;
|
100
|
+
exports.Buf32 = Array;
|
101
|
+
exports.assign(exports, fnUntyped);
|
102
|
+
}
|
103
|
+
};
|
104
|
+
|
105
|
+
exports.setTyped(TYPED_OK);
|
@@ -0,0 +1,187 @@
|
|
1
|
+
// String encode/decode helpers
|
2
|
+
'use strict';
|
3
|
+
|
4
|
+
|
5
|
+
var utils = require('./common');
|
6
|
+
|
7
|
+
|
8
|
+
// Quick check if we can use fast array to bin string conversion
|
9
|
+
//
|
10
|
+
// - apply(Array) can fail on Android 2.2
|
11
|
+
// - apply(Uint8Array) can fail on iOS 5.1 Safari
|
12
|
+
//
|
13
|
+
var STR_APPLY_OK = true;
|
14
|
+
var STR_APPLY_UIA_OK = true;
|
15
|
+
|
16
|
+
try { String.fromCharCode.apply(null, [ 0 ]); } catch (__) { STR_APPLY_OK = false; }
|
17
|
+
try { String.fromCharCode.apply(null, new Uint8Array(1)); } catch (__) { STR_APPLY_UIA_OK = false; }
|
18
|
+
|
19
|
+
|
20
|
+
// Table with utf8 lengths (calculated by first byte of sequence)
|
21
|
+
// Note, that 5 & 6-byte values and some 4-byte values can not be represented in JS,
|
22
|
+
// because max possible codepoint is 0x10ffff
|
23
|
+
var _utf8len = new utils.Buf8(256);
|
24
|
+
for (var q = 0; q < 256; q++) {
|
25
|
+
_utf8len[q] = (q >= 252 ? 6 : q >= 248 ? 5 : q >= 240 ? 4 : q >= 224 ? 3 : q >= 192 ? 2 : 1);
|
26
|
+
}
|
27
|
+
_utf8len[254] = _utf8len[254] = 1; // Invalid sequence start
|
28
|
+
|
29
|
+
|
30
|
+
// convert string to array (typed, when possible)
|
31
|
+
exports.string2buf = function (str) {
|
32
|
+
var buf, c, c2, m_pos, i, str_len = str.length, buf_len = 0;
|
33
|
+
|
34
|
+
// count binary size
|
35
|
+
for (m_pos = 0; m_pos < str_len; m_pos++) {
|
36
|
+
c = str.charCodeAt(m_pos);
|
37
|
+
if ((c & 0xfc00) === 0xd800 && (m_pos + 1 < str_len)) {
|
38
|
+
c2 = str.charCodeAt(m_pos + 1);
|
39
|
+
if ((c2 & 0xfc00) === 0xdc00) {
|
40
|
+
c = 0x10000 + ((c - 0xd800) << 10) + (c2 - 0xdc00);
|
41
|
+
m_pos++;
|
42
|
+
}
|
43
|
+
}
|
44
|
+
buf_len += c < 0x80 ? 1 : c < 0x800 ? 2 : c < 0x10000 ? 3 : 4;
|
45
|
+
}
|
46
|
+
|
47
|
+
// allocate buffer
|
48
|
+
buf = new utils.Buf8(buf_len);
|
49
|
+
|
50
|
+
// convert
|
51
|
+
for (i = 0, m_pos = 0; i < buf_len; m_pos++) {
|
52
|
+
c = str.charCodeAt(m_pos);
|
53
|
+
if ((c & 0xfc00) === 0xd800 && (m_pos + 1 < str_len)) {
|
54
|
+
c2 = str.charCodeAt(m_pos + 1);
|
55
|
+
if ((c2 & 0xfc00) === 0xdc00) {
|
56
|
+
c = 0x10000 + ((c - 0xd800) << 10) + (c2 - 0xdc00);
|
57
|
+
m_pos++;
|
58
|
+
}
|
59
|
+
}
|
60
|
+
if (c < 0x80) {
|
61
|
+
/* one byte */
|
62
|
+
buf[i++] = c;
|
63
|
+
} else if (c < 0x800) {
|
64
|
+
/* two bytes */
|
65
|
+
buf[i++] = 0xC0 | (c >>> 6);
|
66
|
+
buf[i++] = 0x80 | (c & 0x3f);
|
67
|
+
} else if (c < 0x10000) {
|
68
|
+
/* three bytes */
|
69
|
+
buf[i++] = 0xE0 | (c >>> 12);
|
70
|
+
buf[i++] = 0x80 | (c >>> 6 & 0x3f);
|
71
|
+
buf[i++] = 0x80 | (c & 0x3f);
|
72
|
+
} else {
|
73
|
+
/* four bytes */
|
74
|
+
buf[i++] = 0xf0 | (c >>> 18);
|
75
|
+
buf[i++] = 0x80 | (c >>> 12 & 0x3f);
|
76
|
+
buf[i++] = 0x80 | (c >>> 6 & 0x3f);
|
77
|
+
buf[i++] = 0x80 | (c & 0x3f);
|
78
|
+
}
|
79
|
+
}
|
80
|
+
|
81
|
+
return buf;
|
82
|
+
};
|
83
|
+
|
84
|
+
// Helper (used in 2 places)
|
85
|
+
function buf2binstring(buf, len) {
|
86
|
+
// On Chrome, the arguments in a function call that are allowed is `65534`.
|
87
|
+
// If the length of the buffer is smaller than that, we can use this optimization,
|
88
|
+
// otherwise we will take a slower path.
|
89
|
+
if (len < 65534) {
|
90
|
+
if ((buf.subarray && STR_APPLY_UIA_OK) || (!buf.subarray && STR_APPLY_OK)) {
|
91
|
+
return String.fromCharCode.apply(null, utils.shrinkBuf(buf, len));
|
92
|
+
}
|
93
|
+
}
|
94
|
+
|
95
|
+
var result = '';
|
96
|
+
for (var i = 0; i < len; i++) {
|
97
|
+
result += String.fromCharCode(buf[i]);
|
98
|
+
}
|
99
|
+
return result;
|
100
|
+
}
|
101
|
+
|
102
|
+
|
103
|
+
// Convert byte array to binary string
|
104
|
+
exports.buf2binstring = function (buf) {
|
105
|
+
return buf2binstring(buf, buf.length);
|
106
|
+
};
|
107
|
+
|
108
|
+
|
109
|
+
// Convert binary string (typed, when possible)
|
110
|
+
exports.binstring2buf = function (str) {
|
111
|
+
var buf = new utils.Buf8(str.length);
|
112
|
+
for (var i = 0, len = buf.length; i < len; i++) {
|
113
|
+
buf[i] = str.charCodeAt(i);
|
114
|
+
}
|
115
|
+
return buf;
|
116
|
+
};
|
117
|
+
|
118
|
+
|
119
|
+
// convert array to string
|
120
|
+
exports.buf2string = function (buf, max) {
|
121
|
+
var i, out, c, c_len;
|
122
|
+
var len = max || buf.length;
|
123
|
+
|
124
|
+
// Reserve max possible length (2 words per char)
|
125
|
+
// NB: by unknown reasons, Array is significantly faster for
|
126
|
+
// String.fromCharCode.apply than Uint16Array.
|
127
|
+
var utf16buf = new Array(len * 2);
|
128
|
+
|
129
|
+
for (out = 0, i = 0; i < len;) {
|
130
|
+
c = buf[i++];
|
131
|
+
// quick process ascii
|
132
|
+
if (c < 0x80) { utf16buf[out++] = c; continue; }
|
133
|
+
|
134
|
+
c_len = _utf8len[c];
|
135
|
+
// skip 5 & 6 byte codes
|
136
|
+
if (c_len > 4) { utf16buf[out++] = 0xfffd; i += c_len - 1; continue; }
|
137
|
+
|
138
|
+
// apply mask on first byte
|
139
|
+
c &= c_len === 2 ? 0x1f : c_len === 3 ? 0x0f : 0x07;
|
140
|
+
// join the rest
|
141
|
+
while (c_len > 1 && i < len) {
|
142
|
+
c = (c << 6) | (buf[i++] & 0x3f);
|
143
|
+
c_len--;
|
144
|
+
}
|
145
|
+
|
146
|
+
// terminated by end of string?
|
147
|
+
if (c_len > 1) { utf16buf[out++] = 0xfffd; continue; }
|
148
|
+
|
149
|
+
if (c < 0x10000) {
|
150
|
+
utf16buf[out++] = c;
|
151
|
+
} else {
|
152
|
+
c -= 0x10000;
|
153
|
+
utf16buf[out++] = 0xd800 | ((c >> 10) & 0x3ff);
|
154
|
+
utf16buf[out++] = 0xdc00 | (c & 0x3ff);
|
155
|
+
}
|
156
|
+
}
|
157
|
+
|
158
|
+
return buf2binstring(utf16buf, out);
|
159
|
+
};
|
160
|
+
|
161
|
+
|
162
|
+
// Calculate max possible position in utf8 buffer,
|
163
|
+
// that will not break sequence. If that's not possible
|
164
|
+
// - (very small limits) return max size as is.
|
165
|
+
//
|
166
|
+
// buf[] - utf8 bytes array
|
167
|
+
// max - length limit (mandatory);
|
168
|
+
exports.utf8border = function (buf, max) {
|
169
|
+
var pos;
|
170
|
+
|
171
|
+
max = max || buf.length;
|
172
|
+
if (max > buf.length) { max = buf.length; }
|
173
|
+
|
174
|
+
// go back from last position, until start of sequence found
|
175
|
+
pos = max - 1;
|
176
|
+
while (pos >= 0 && (buf[pos] & 0xC0) === 0x80) { pos--; }
|
177
|
+
|
178
|
+
// Very small and broken sequence,
|
179
|
+
// return max, because we should return something anyway.
|
180
|
+
if (pos < 0) { return max; }
|
181
|
+
|
182
|
+
// If we came to start of buffer - that means buffer is too small,
|
183
|
+
// return max too.
|
184
|
+
if (pos === 0) { return max; }
|
185
|
+
|
186
|
+
return (pos + _utf8len[buf[pos]] > max) ? pos : max;
|
187
|
+
};
|
@@ -0,0 +1,59 @@
|
|
1
|
+
Content of this folder follows zlib C sources as close as possible.
|
2
|
+
That's intended to simplify maintainability and guarantee equal API
|
3
|
+
and result.
|
4
|
+
|
5
|
+
Key differences:
|
6
|
+
|
7
|
+
- Everything is in JavaScript.
|
8
|
+
- No platform-dependent blocks.
|
9
|
+
- Some things like crc32 rewritten to keep size small and make JIT
|
10
|
+
work better.
|
11
|
+
- Some code is different due missed features in JS (macros, pointers,
|
12
|
+
structures, header files)
|
13
|
+
- Specific API methods are not implemented (see notes in root readme)
|
14
|
+
|
15
|
+
This port is based on zlib 1.2.8.
|
16
|
+
|
17
|
+
This port is under zlib license (see below) with contribution and addition of javascript
|
18
|
+
port under expat license (see LICENSE at root of project)
|
19
|
+
|
20
|
+
Copyright:
|
21
|
+
(C) 1995-2013 Jean-loup Gailly and Mark Adler
|
22
|
+
(C) 2014-2017 Vitaly Puzrin and Andrey Tupitsin
|
23
|
+
|
24
|
+
|
25
|
+
From zlib's README
|
26
|
+
=============================================================================
|
27
|
+
|
28
|
+
Acknowledgments:
|
29
|
+
|
30
|
+
The deflate format used by zlib was defined by Phil Katz. The deflate and
|
31
|
+
zlib specifications were written by L. Peter Deutsch. Thanks to all the
|
32
|
+
people who reported problems and suggested various improvements in zlib; they
|
33
|
+
are too numerous to cite here.
|
34
|
+
|
35
|
+
Copyright notice:
|
36
|
+
|
37
|
+
(C) 1995-2013 Jean-loup Gailly and Mark Adler
|
38
|
+
|
39
|
+
Copyright (c) <''year''> <''copyright holders''>
|
40
|
+
|
41
|
+
This software is provided 'as-is', without any express or implied
|
42
|
+
warranty. In no event will the authors be held liable for any damages
|
43
|
+
arising from the use of this software.
|
44
|
+
|
45
|
+
Permission is granted to anyone to use this software for any purpose,
|
46
|
+
including commercial applications, and to alter it and redistribute it
|
47
|
+
freely, subject to the following restrictions:
|
48
|
+
|
49
|
+
1. The origin of this software must not be misrepresented; you must not
|
50
|
+
claim that you wrote the original software. If you use this software
|
51
|
+
in a product, an acknowledgment in the product documentation would be
|
52
|
+
appreciated but is not required.
|
53
|
+
2. Altered source versions must be plainly marked as such, and must not be
|
54
|
+
misrepresented as being the original software.
|
55
|
+
3. This notice may not be removed or altered from any source distribution.
|
56
|
+
|
57
|
+
|
58
|
+
Jean-loup Gailly Mark Adler
|
59
|
+
jloup@gzip.org madler@alumni.caltech.edu
|
@@ -0,0 +1,51 @@
|
|
1
|
+
'use strict';
|
2
|
+
|
3
|
+
// Note: adler32 takes 12% for level 0 and 2% for level 6.
|
4
|
+
// It isn't worth it to make additional optimizations as in original.
|
5
|
+
// Small size is preferable.
|
6
|
+
|
7
|
+
// (C) 1995-2013 Jean-loup Gailly and Mark Adler
|
8
|
+
// (C) 2014-2017 Vitaly Puzrin and Andrey Tupitsin
|
9
|
+
//
|
10
|
+
// This software is provided 'as-is', without any express or implied
|
11
|
+
// warranty. In no event will the authors be held liable for any damages
|
12
|
+
// arising from the use of this software.
|
13
|
+
//
|
14
|
+
// Permission is granted to anyone to use this software for any purpose,
|
15
|
+
// including commercial applications, and to alter it and redistribute it
|
16
|
+
// freely, subject to the following restrictions:
|
17
|
+
//
|
18
|
+
// 1. The origin of this software must not be misrepresented; you must not
|
19
|
+
// claim that you wrote the original software. If you use this software
|
20
|
+
// in a product, an acknowledgment in the product documentation would be
|
21
|
+
// appreciated but is not required.
|
22
|
+
// 2. Altered source versions must be plainly marked as such, and must not be
|
23
|
+
// misrepresented as being the original software.
|
24
|
+
// 3. This notice may not be removed or altered from any source distribution.
|
25
|
+
|
26
|
+
function adler32(adler, buf, len, pos) {
|
27
|
+
var s1 = (adler & 0xffff) |0,
|
28
|
+
s2 = ((adler >>> 16) & 0xffff) |0,
|
29
|
+
n = 0;
|
30
|
+
|
31
|
+
while (len !== 0) {
|
32
|
+
// Set limit ~ twice less than 5552, to keep
|
33
|
+
// s2 in 31-bits, because we force signed ints.
|
34
|
+
// in other case %= will fail.
|
35
|
+
n = len > 2000 ? 2000 : len;
|
36
|
+
len -= n;
|
37
|
+
|
38
|
+
do {
|
39
|
+
s1 = (s1 + buf[pos++]) |0;
|
40
|
+
s2 = (s2 + s1) |0;
|
41
|
+
} while (--n);
|
42
|
+
|
43
|
+
s1 %= 65521;
|
44
|
+
s2 %= 65521;
|
45
|
+
}
|
46
|
+
|
47
|
+
return (s1 | (s2 << 16)) |0;
|
48
|
+
}
|
49
|
+
|
50
|
+
|
51
|
+
module.exports = adler32;
|
@@ -0,0 +1,68 @@
|
|
1
|
+
'use strict';
|
2
|
+
|
3
|
+
// (C) 1995-2013 Jean-loup Gailly and Mark Adler
|
4
|
+
// (C) 2014-2017 Vitaly Puzrin and Andrey Tupitsin
|
5
|
+
//
|
6
|
+
// This software is provided 'as-is', without any express or implied
|
7
|
+
// warranty. In no event will the authors be held liable for any damages
|
8
|
+
// arising from the use of this software.
|
9
|
+
//
|
10
|
+
// Permission is granted to anyone to use this software for any purpose,
|
11
|
+
// including commercial applications, and to alter it and redistribute it
|
12
|
+
// freely, subject to the following restrictions:
|
13
|
+
//
|
14
|
+
// 1. The origin of this software must not be misrepresented; you must not
|
15
|
+
// claim that you wrote the original software. If you use this software
|
16
|
+
// in a product, an acknowledgment in the product documentation would be
|
17
|
+
// appreciated but is not required.
|
18
|
+
// 2. Altered source versions must be plainly marked as such, and must not be
|
19
|
+
// misrepresented as being the original software.
|
20
|
+
// 3. This notice may not be removed or altered from any source distribution.
|
21
|
+
|
22
|
+
module.exports = {
|
23
|
+
|
24
|
+
/* Allowed flush values; see deflate() and inflate() below for details */
|
25
|
+
Z_NO_FLUSH: 0,
|
26
|
+
Z_PARTIAL_FLUSH: 1,
|
27
|
+
Z_SYNC_FLUSH: 2,
|
28
|
+
Z_FULL_FLUSH: 3,
|
29
|
+
Z_FINISH: 4,
|
30
|
+
Z_BLOCK: 5,
|
31
|
+
Z_TREES: 6,
|
32
|
+
|
33
|
+
/* Return codes for the compression/decompression functions. Negative values
|
34
|
+
* are errors, positive values are used for special but normal events.
|
35
|
+
*/
|
36
|
+
Z_OK: 0,
|
37
|
+
Z_STREAM_END: 1,
|
38
|
+
Z_NEED_DICT: 2,
|
39
|
+
Z_ERRNO: -1,
|
40
|
+
Z_STREAM_ERROR: -2,
|
41
|
+
Z_DATA_ERROR: -3,
|
42
|
+
//Z_MEM_ERROR: -4,
|
43
|
+
Z_BUF_ERROR: -5,
|
44
|
+
//Z_VERSION_ERROR: -6,
|
45
|
+
|
46
|
+
/* compression levels */
|
47
|
+
Z_NO_COMPRESSION: 0,
|
48
|
+
Z_BEST_SPEED: 1,
|
49
|
+
Z_BEST_COMPRESSION: 9,
|
50
|
+
Z_DEFAULT_COMPRESSION: -1,
|
51
|
+
|
52
|
+
|
53
|
+
Z_FILTERED: 1,
|
54
|
+
Z_HUFFMAN_ONLY: 2,
|
55
|
+
Z_RLE: 3,
|
56
|
+
Z_FIXED: 4,
|
57
|
+
Z_DEFAULT_STRATEGY: 0,
|
58
|
+
|
59
|
+
/* Possible values of the data_type field (though see inflate()) */
|
60
|
+
Z_BINARY: 0,
|
61
|
+
Z_TEXT: 1,
|
62
|
+
//Z_ASCII: 1, // = Z_TEXT (deprecated)
|
63
|
+
Z_UNKNOWN: 2,
|
64
|
+
|
65
|
+
/* The deflate compression method */
|
66
|
+
Z_DEFLATED: 8
|
67
|
+
//Z_NULL: null // Use -1 or null inline, depending on var type
|
68
|
+
};
|