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,107 @@
|
|
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
|
+
// NOTE: These type checking functions intentionally don't use `instanceof`
|
23
|
+
// because it is fragile and can be easily faked with `Object.create()`.
|
24
|
+
|
25
|
+
function isArray(arg) {
|
26
|
+
if (Array.isArray) {
|
27
|
+
return Array.isArray(arg);
|
28
|
+
}
|
29
|
+
return objectToString(arg) === '[object Array]';
|
30
|
+
}
|
31
|
+
exports.isArray = isArray;
|
32
|
+
|
33
|
+
function isBoolean(arg) {
|
34
|
+
return typeof arg === 'boolean';
|
35
|
+
}
|
36
|
+
exports.isBoolean = isBoolean;
|
37
|
+
|
38
|
+
function isNull(arg) {
|
39
|
+
return arg === null;
|
40
|
+
}
|
41
|
+
exports.isNull = isNull;
|
42
|
+
|
43
|
+
function isNullOrUndefined(arg) {
|
44
|
+
return arg == null;
|
45
|
+
}
|
46
|
+
exports.isNullOrUndefined = isNullOrUndefined;
|
47
|
+
|
48
|
+
function isNumber(arg) {
|
49
|
+
return typeof arg === 'number';
|
50
|
+
}
|
51
|
+
exports.isNumber = isNumber;
|
52
|
+
|
53
|
+
function isString(arg) {
|
54
|
+
return typeof arg === 'string';
|
55
|
+
}
|
56
|
+
exports.isString = isString;
|
57
|
+
|
58
|
+
function isSymbol(arg) {
|
59
|
+
return typeof arg === 'symbol';
|
60
|
+
}
|
61
|
+
exports.isSymbol = isSymbol;
|
62
|
+
|
63
|
+
function isUndefined(arg) {
|
64
|
+
return arg === void 0;
|
65
|
+
}
|
66
|
+
exports.isUndefined = isUndefined;
|
67
|
+
|
68
|
+
function isRegExp(re) {
|
69
|
+
return objectToString(re) === '[object RegExp]';
|
70
|
+
}
|
71
|
+
exports.isRegExp = isRegExp;
|
72
|
+
|
73
|
+
function isObject(arg) {
|
74
|
+
return typeof arg === 'object' && arg !== null;
|
75
|
+
}
|
76
|
+
exports.isObject = isObject;
|
77
|
+
|
78
|
+
function isDate(d) {
|
79
|
+
return objectToString(d) === '[object Date]';
|
80
|
+
}
|
81
|
+
exports.isDate = isDate;
|
82
|
+
|
83
|
+
function isError(e) {
|
84
|
+
return (objectToString(e) === '[object Error]' || e instanceof Error);
|
85
|
+
}
|
86
|
+
exports.isError = isError;
|
87
|
+
|
88
|
+
function isFunction(arg) {
|
89
|
+
return typeof arg === 'function';
|
90
|
+
}
|
91
|
+
exports.isFunction = isFunction;
|
92
|
+
|
93
|
+
function isPrimitive(arg) {
|
94
|
+
return arg === null ||
|
95
|
+
typeof arg === 'boolean' ||
|
96
|
+
typeof arg === 'number' ||
|
97
|
+
typeof arg === 'string' ||
|
98
|
+
typeof arg === 'symbol' || // ES6 symbol
|
99
|
+
typeof arg === 'undefined';
|
100
|
+
}
|
101
|
+
exports.isPrimitive = isPrimitive;
|
102
|
+
|
103
|
+
exports.isBuffer = Buffer.isBuffer;
|
104
|
+
|
105
|
+
function objectToString(o) {
|
106
|
+
return Object.prototype.toString.call(o);
|
107
|
+
}
|
@@ -0,0 +1,32 @@
|
|
1
|
+
{
|
2
|
+
"name": "core-util-is",
|
3
|
+
"version": "1.0.2",
|
4
|
+
"description": "The `util.is*` functions introduced in Node v0.12.",
|
5
|
+
"main": "lib/util.js",
|
6
|
+
"repository": {
|
7
|
+
"type": "git",
|
8
|
+
"url": "git://github.com/isaacs/core-util-is"
|
9
|
+
},
|
10
|
+
"keywords": [
|
11
|
+
"util",
|
12
|
+
"isBuffer",
|
13
|
+
"isArray",
|
14
|
+
"isNumber",
|
15
|
+
"isString",
|
16
|
+
"isRegExp",
|
17
|
+
"isThis",
|
18
|
+
"isThat",
|
19
|
+
"polyfill"
|
20
|
+
],
|
21
|
+
"author": "Isaac Z. Schlueter <i@izs.me> (http://blog.izs.me/)",
|
22
|
+
"license": "MIT",
|
23
|
+
"bugs": {
|
24
|
+
"url": "https://github.com/isaacs/core-util-is/issues"
|
25
|
+
},
|
26
|
+
"scripts": {
|
27
|
+
"test": "tap test.js"
|
28
|
+
},
|
29
|
+
"devDependencies": {
|
30
|
+
"tap": "^2.3.0"
|
31
|
+
}
|
32
|
+
}
|
@@ -0,0 +1,68 @@
|
|
1
|
+
var assert = require('tap');
|
2
|
+
|
3
|
+
var t = require('./lib/util');
|
4
|
+
|
5
|
+
assert.equal(t.isArray([]), true);
|
6
|
+
assert.equal(t.isArray({}), false);
|
7
|
+
|
8
|
+
assert.equal(t.isBoolean(null), false);
|
9
|
+
assert.equal(t.isBoolean(true), true);
|
10
|
+
assert.equal(t.isBoolean(false), true);
|
11
|
+
|
12
|
+
assert.equal(t.isNull(null), true);
|
13
|
+
assert.equal(t.isNull(undefined), false);
|
14
|
+
assert.equal(t.isNull(false), false);
|
15
|
+
assert.equal(t.isNull(), false);
|
16
|
+
|
17
|
+
assert.equal(t.isNullOrUndefined(null), true);
|
18
|
+
assert.equal(t.isNullOrUndefined(undefined), true);
|
19
|
+
assert.equal(t.isNullOrUndefined(false), false);
|
20
|
+
assert.equal(t.isNullOrUndefined(), true);
|
21
|
+
|
22
|
+
assert.equal(t.isNumber(null), false);
|
23
|
+
assert.equal(t.isNumber('1'), false);
|
24
|
+
assert.equal(t.isNumber(1), true);
|
25
|
+
|
26
|
+
assert.equal(t.isString(null), false);
|
27
|
+
assert.equal(t.isString('1'), true);
|
28
|
+
assert.equal(t.isString(1), false);
|
29
|
+
|
30
|
+
assert.equal(t.isSymbol(null), false);
|
31
|
+
assert.equal(t.isSymbol('1'), false);
|
32
|
+
assert.equal(t.isSymbol(1), false);
|
33
|
+
assert.equal(t.isSymbol(Symbol()), true);
|
34
|
+
|
35
|
+
assert.equal(t.isUndefined(null), false);
|
36
|
+
assert.equal(t.isUndefined(undefined), true);
|
37
|
+
assert.equal(t.isUndefined(false), false);
|
38
|
+
assert.equal(t.isUndefined(), true);
|
39
|
+
|
40
|
+
assert.equal(t.isRegExp(null), false);
|
41
|
+
assert.equal(t.isRegExp('1'), false);
|
42
|
+
assert.equal(t.isRegExp(new RegExp()), true);
|
43
|
+
|
44
|
+
assert.equal(t.isObject({}), true);
|
45
|
+
assert.equal(t.isObject([]), true);
|
46
|
+
assert.equal(t.isObject(new RegExp()), true);
|
47
|
+
assert.equal(t.isObject(new Date()), true);
|
48
|
+
|
49
|
+
assert.equal(t.isDate(null), false);
|
50
|
+
assert.equal(t.isDate('1'), false);
|
51
|
+
assert.equal(t.isDate(new Date()), true);
|
52
|
+
|
53
|
+
assert.equal(t.isError(null), false);
|
54
|
+
assert.equal(t.isError({ err: true }), false);
|
55
|
+
assert.equal(t.isError(new Error()), true);
|
56
|
+
|
57
|
+
assert.equal(t.isFunction(null), false);
|
58
|
+
assert.equal(t.isFunction({ }), false);
|
59
|
+
assert.equal(t.isFunction(function() {}), true);
|
60
|
+
|
61
|
+
assert.equal(t.isPrimitive(null), true);
|
62
|
+
assert.equal(t.isPrimitive(''), true);
|
63
|
+
assert.equal(t.isPrimitive(0), true);
|
64
|
+
assert.equal(t.isPrimitive(new Date()), false);
|
65
|
+
|
66
|
+
assert.equal(t.isBuffer(null), false);
|
67
|
+
assert.equal(t.isBuffer({}), false);
|
68
|
+
assert.equal(t.isBuffer(new Buffer(0)), true);
|
@@ -0,0 +1,43 @@
|
|
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.
|
16
|
+
|
17
|
+
----
|
18
|
+
|
19
|
+
This library bundles a version of the `fs.realpath` and `fs.realpathSync`
|
20
|
+
methods from Node.js v0.10 under the terms of the Node.js MIT license.
|
21
|
+
|
22
|
+
Node's license follows, also included at the header of `old.js` which contains
|
23
|
+
the licensed code:
|
24
|
+
|
25
|
+
Copyright Joyent, Inc. and other Node contributors.
|
26
|
+
|
27
|
+
Permission is hereby granted, free of charge, to any person obtaining a
|
28
|
+
copy of this software and associated documentation files (the "Software"),
|
29
|
+
to deal in the Software without restriction, including without limitation
|
30
|
+
the rights to use, copy, modify, merge, publish, distribute, sublicense,
|
31
|
+
and/or sell copies of the Software, and to permit persons to whom the
|
32
|
+
Software is furnished to do so, subject to the following conditions:
|
33
|
+
|
34
|
+
The above copyright notice and this permission notice shall be included in
|
35
|
+
all copies or substantial portions of the Software.
|
36
|
+
|
37
|
+
THE SOFTWARE IS PROVIDED "AS IS", WITHOUT WARRANTY OF ANY KIND, EXPRESS OR
|
38
|
+
IMPLIED, INCLUDING BUT NOT LIMITED TO THE WARRANTIES OF MERCHANTABILITY,
|
39
|
+
FITNESS FOR A PARTICULAR PURPOSE AND NONINFRINGEMENT. IN NO EVENT SHALL THE
|
40
|
+
AUTHORS OR COPYRIGHT HOLDERS BE LIABLE FOR ANY CLAIM, DAMAGES OR OTHER
|
41
|
+
LIABILITY, WHETHER IN AN ACTION OF CONTRACT, TORT OR OTHERWISE, ARISING
|
42
|
+
FROM, OUT OF OR IN CONNECTION WITH THE SOFTWARE OR THE USE OR OTHER
|
43
|
+
DEALINGS IN THE SOFTWARE.
|
@@ -0,0 +1,33 @@
|
|
1
|
+
# fs.realpath
|
2
|
+
|
3
|
+
A backwards-compatible fs.realpath for Node v6 and above
|
4
|
+
|
5
|
+
In Node v6, the JavaScript implementation of fs.realpath was replaced
|
6
|
+
with a faster (but less resilient) native implementation. That raises
|
7
|
+
new and platform-specific errors and cannot handle long or excessively
|
8
|
+
symlink-looping paths.
|
9
|
+
|
10
|
+
This module handles those cases by detecting the new errors and
|
11
|
+
falling back to the JavaScript implementation. On versions of Node
|
12
|
+
prior to v6, it has no effect.
|
13
|
+
|
14
|
+
## USAGE
|
15
|
+
|
16
|
+
```js
|
17
|
+
var rp = require('fs.realpath')
|
18
|
+
|
19
|
+
// async version
|
20
|
+
rp.realpath(someLongAndLoopingPath, function (er, real) {
|
21
|
+
// the ELOOP was handled, but it was a bit slower
|
22
|
+
})
|
23
|
+
|
24
|
+
// sync version
|
25
|
+
var real = rp.realpathSync(someLongAndLoopingPath)
|
26
|
+
|
27
|
+
// monkeypatch at your own risk!
|
28
|
+
// This replaces the fs.realpath/fs.realpathSync builtins
|
29
|
+
rp.monkeypatch()
|
30
|
+
|
31
|
+
// un-do the monkeypatching
|
32
|
+
rp.unmonkeypatch()
|
33
|
+
```
|
@@ -0,0 +1,66 @@
|
|
1
|
+
module.exports = realpath
|
2
|
+
realpath.realpath = realpath
|
3
|
+
realpath.sync = realpathSync
|
4
|
+
realpath.realpathSync = realpathSync
|
5
|
+
realpath.monkeypatch = monkeypatch
|
6
|
+
realpath.unmonkeypatch = unmonkeypatch
|
7
|
+
|
8
|
+
var fs = require('fs')
|
9
|
+
var origRealpath = fs.realpath
|
10
|
+
var origRealpathSync = fs.realpathSync
|
11
|
+
|
12
|
+
var version = process.version
|
13
|
+
var ok = /^v[0-5]\./.test(version)
|
14
|
+
var old = require('./old.js')
|
15
|
+
|
16
|
+
function newError (er) {
|
17
|
+
return er && er.syscall === 'realpath' && (
|
18
|
+
er.code === 'ELOOP' ||
|
19
|
+
er.code === 'ENOMEM' ||
|
20
|
+
er.code === 'ENAMETOOLONG'
|
21
|
+
)
|
22
|
+
}
|
23
|
+
|
24
|
+
function realpath (p, cache, cb) {
|
25
|
+
if (ok) {
|
26
|
+
return origRealpath(p, cache, cb)
|
27
|
+
}
|
28
|
+
|
29
|
+
if (typeof cache === 'function') {
|
30
|
+
cb = cache
|
31
|
+
cache = null
|
32
|
+
}
|
33
|
+
origRealpath(p, cache, function (er, result) {
|
34
|
+
if (newError(er)) {
|
35
|
+
old.realpath(p, cache, cb)
|
36
|
+
} else {
|
37
|
+
cb(er, result)
|
38
|
+
}
|
39
|
+
})
|
40
|
+
}
|
41
|
+
|
42
|
+
function realpathSync (p, cache) {
|
43
|
+
if (ok) {
|
44
|
+
return origRealpathSync(p, cache)
|
45
|
+
}
|
46
|
+
|
47
|
+
try {
|
48
|
+
return origRealpathSync(p, cache)
|
49
|
+
} catch (er) {
|
50
|
+
if (newError(er)) {
|
51
|
+
return old.realpathSync(p, cache)
|
52
|
+
} else {
|
53
|
+
throw er
|
54
|
+
}
|
55
|
+
}
|
56
|
+
}
|
57
|
+
|
58
|
+
function monkeypatch () {
|
59
|
+
fs.realpath = realpath
|
60
|
+
fs.realpathSync = realpathSync
|
61
|
+
}
|
62
|
+
|
63
|
+
function unmonkeypatch () {
|
64
|
+
fs.realpath = origRealpath
|
65
|
+
fs.realpathSync = origRealpathSync
|
66
|
+
}
|
@@ -0,0 +1,303 @@
|
|
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
|
+
var pathModule = require('path');
|
23
|
+
var isWindows = process.platform === 'win32';
|
24
|
+
var fs = require('fs');
|
25
|
+
|
26
|
+
// JavaScript implementation of realpath, ported from node pre-v6
|
27
|
+
|
28
|
+
var DEBUG = process.env.NODE_DEBUG && /fs/.test(process.env.NODE_DEBUG);
|
29
|
+
|
30
|
+
function rethrow() {
|
31
|
+
// Only enable in debug mode. A backtrace uses ~1000 bytes of heap space and
|
32
|
+
// is fairly slow to generate.
|
33
|
+
var callback;
|
34
|
+
if (DEBUG) {
|
35
|
+
var backtrace = new Error;
|
36
|
+
callback = debugCallback;
|
37
|
+
} else
|
38
|
+
callback = missingCallback;
|
39
|
+
|
40
|
+
return callback;
|
41
|
+
|
42
|
+
function debugCallback(err) {
|
43
|
+
if (err) {
|
44
|
+
backtrace.message = err.message;
|
45
|
+
err = backtrace;
|
46
|
+
missingCallback(err);
|
47
|
+
}
|
48
|
+
}
|
49
|
+
|
50
|
+
function missingCallback(err) {
|
51
|
+
if (err) {
|
52
|
+
if (process.throwDeprecation)
|
53
|
+
throw err; // Forgot a callback but don't know where? Use NODE_DEBUG=fs
|
54
|
+
else if (!process.noDeprecation) {
|
55
|
+
var msg = 'fs: missing callback ' + (err.stack || err.message);
|
56
|
+
if (process.traceDeprecation)
|
57
|
+
console.trace(msg);
|
58
|
+
else
|
59
|
+
console.error(msg);
|
60
|
+
}
|
61
|
+
}
|
62
|
+
}
|
63
|
+
}
|
64
|
+
|
65
|
+
function maybeCallback(cb) {
|
66
|
+
return typeof cb === 'function' ? cb : rethrow();
|
67
|
+
}
|
68
|
+
|
69
|
+
var normalize = pathModule.normalize;
|
70
|
+
|
71
|
+
// Regexp that finds the next partion of a (partial) path
|
72
|
+
// result is [base_with_slash, base], e.g. ['somedir/', 'somedir']
|
73
|
+
if (isWindows) {
|
74
|
+
var nextPartRe = /(.*?)(?:[\/\\]+|$)/g;
|
75
|
+
} else {
|
76
|
+
var nextPartRe = /(.*?)(?:[\/]+|$)/g;
|
77
|
+
}
|
78
|
+
|
79
|
+
// Regex to find the device root, including trailing slash. E.g. 'c:\\'.
|
80
|
+
if (isWindows) {
|
81
|
+
var splitRootRe = /^(?:[a-zA-Z]:|[\\\/]{2}[^\\\/]+[\\\/][^\\\/]+)?[\\\/]*/;
|
82
|
+
} else {
|
83
|
+
var splitRootRe = /^[\/]*/;
|
84
|
+
}
|
85
|
+
|
86
|
+
exports.realpathSync = function realpathSync(p, cache) {
|
87
|
+
// make p is absolute
|
88
|
+
p = pathModule.resolve(p);
|
89
|
+
|
90
|
+
if (cache && Object.prototype.hasOwnProperty.call(cache, p)) {
|
91
|
+
return cache[p];
|
92
|
+
}
|
93
|
+
|
94
|
+
var original = p,
|
95
|
+
seenLinks = {},
|
96
|
+
knownHard = {};
|
97
|
+
|
98
|
+
// current character position in p
|
99
|
+
var pos;
|
100
|
+
// the partial path so far, including a trailing slash if any
|
101
|
+
var current;
|
102
|
+
// the partial path without a trailing slash (except when pointing at a root)
|
103
|
+
var base;
|
104
|
+
// the partial path scanned in the previous round, with slash
|
105
|
+
var previous;
|
106
|
+
|
107
|
+
start();
|
108
|
+
|
109
|
+
function start() {
|
110
|
+
// Skip over roots
|
111
|
+
var m = splitRootRe.exec(p);
|
112
|
+
pos = m[0].length;
|
113
|
+
current = m[0];
|
114
|
+
base = m[0];
|
115
|
+
previous = '';
|
116
|
+
|
117
|
+
// On windows, check that the root exists. On unix there is no need.
|
118
|
+
if (isWindows && !knownHard[base]) {
|
119
|
+
fs.lstatSync(base);
|
120
|
+
knownHard[base] = true;
|
121
|
+
}
|
122
|
+
}
|
123
|
+
|
124
|
+
// walk down the path, swapping out linked pathparts for their real
|
125
|
+
// values
|
126
|
+
// NB: p.length changes.
|
127
|
+
while (pos < p.length) {
|
128
|
+
// find the next part
|
129
|
+
nextPartRe.lastIndex = pos;
|
130
|
+
var result = nextPartRe.exec(p);
|
131
|
+
previous = current;
|
132
|
+
current += result[0];
|
133
|
+
base = previous + result[1];
|
134
|
+
pos = nextPartRe.lastIndex;
|
135
|
+
|
136
|
+
// continue if not a symlink
|
137
|
+
if (knownHard[base] || (cache && cache[base] === base)) {
|
138
|
+
continue;
|
139
|
+
}
|
140
|
+
|
141
|
+
var resolvedLink;
|
142
|
+
if (cache && Object.prototype.hasOwnProperty.call(cache, base)) {
|
143
|
+
// some known symbolic link. no need to stat again.
|
144
|
+
resolvedLink = cache[base];
|
145
|
+
} else {
|
146
|
+
var stat = fs.lstatSync(base);
|
147
|
+
if (!stat.isSymbolicLink()) {
|
148
|
+
knownHard[base] = true;
|
149
|
+
if (cache) cache[base] = base;
|
150
|
+
continue;
|
151
|
+
}
|
152
|
+
|
153
|
+
// read the link if it wasn't read before
|
154
|
+
// dev/ino always return 0 on windows, so skip the check.
|
155
|
+
var linkTarget = null;
|
156
|
+
if (!isWindows) {
|
157
|
+
var id = stat.dev.toString(32) + ':' + stat.ino.toString(32);
|
158
|
+
if (seenLinks.hasOwnProperty(id)) {
|
159
|
+
linkTarget = seenLinks[id];
|
160
|
+
}
|
161
|
+
}
|
162
|
+
if (linkTarget === null) {
|
163
|
+
fs.statSync(base);
|
164
|
+
linkTarget = fs.readlinkSync(base);
|
165
|
+
}
|
166
|
+
resolvedLink = pathModule.resolve(previous, linkTarget);
|
167
|
+
// track this, if given a cache.
|
168
|
+
if (cache) cache[base] = resolvedLink;
|
169
|
+
if (!isWindows) seenLinks[id] = linkTarget;
|
170
|
+
}
|
171
|
+
|
172
|
+
// resolve the link, then start over
|
173
|
+
p = pathModule.resolve(resolvedLink, p.slice(pos));
|
174
|
+
start();
|
175
|
+
}
|
176
|
+
|
177
|
+
if (cache) cache[original] = p;
|
178
|
+
|
179
|
+
return p;
|
180
|
+
};
|
181
|
+
|
182
|
+
|
183
|
+
exports.realpath = function realpath(p, cache, cb) {
|
184
|
+
if (typeof cb !== 'function') {
|
185
|
+
cb = maybeCallback(cache);
|
186
|
+
cache = null;
|
187
|
+
}
|
188
|
+
|
189
|
+
// make p is absolute
|
190
|
+
p = pathModule.resolve(p);
|
191
|
+
|
192
|
+
if (cache && Object.prototype.hasOwnProperty.call(cache, p)) {
|
193
|
+
return process.nextTick(cb.bind(null, null, cache[p]));
|
194
|
+
}
|
195
|
+
|
196
|
+
var original = p,
|
197
|
+
seenLinks = {},
|
198
|
+
knownHard = {};
|
199
|
+
|
200
|
+
// current character position in p
|
201
|
+
var pos;
|
202
|
+
// the partial path so far, including a trailing slash if any
|
203
|
+
var current;
|
204
|
+
// the partial path without a trailing slash (except when pointing at a root)
|
205
|
+
var base;
|
206
|
+
// the partial path scanned in the previous round, with slash
|
207
|
+
var previous;
|
208
|
+
|
209
|
+
start();
|
210
|
+
|
211
|
+
function start() {
|
212
|
+
// Skip over roots
|
213
|
+
var m = splitRootRe.exec(p);
|
214
|
+
pos = m[0].length;
|
215
|
+
current = m[0];
|
216
|
+
base = m[0];
|
217
|
+
previous = '';
|
218
|
+
|
219
|
+
// On windows, check that the root exists. On unix there is no need.
|
220
|
+
if (isWindows && !knownHard[base]) {
|
221
|
+
fs.lstat(base, function(err) {
|
222
|
+
if (err) return cb(err);
|
223
|
+
knownHard[base] = true;
|
224
|
+
LOOP();
|
225
|
+
});
|
226
|
+
} else {
|
227
|
+
process.nextTick(LOOP);
|
228
|
+
}
|
229
|
+
}
|
230
|
+
|
231
|
+
// walk down the path, swapping out linked pathparts for their real
|
232
|
+
// values
|
233
|
+
function LOOP() {
|
234
|
+
// stop if scanned past end of path
|
235
|
+
if (pos >= p.length) {
|
236
|
+
if (cache) cache[original] = p;
|
237
|
+
return cb(null, p);
|
238
|
+
}
|
239
|
+
|
240
|
+
// find the next part
|
241
|
+
nextPartRe.lastIndex = pos;
|
242
|
+
var result = nextPartRe.exec(p);
|
243
|
+
previous = current;
|
244
|
+
current += result[0];
|
245
|
+
base = previous + result[1];
|
246
|
+
pos = nextPartRe.lastIndex;
|
247
|
+
|
248
|
+
// continue if not a symlink
|
249
|
+
if (knownHard[base] || (cache && cache[base] === base)) {
|
250
|
+
return process.nextTick(LOOP);
|
251
|
+
}
|
252
|
+
|
253
|
+
if (cache && Object.prototype.hasOwnProperty.call(cache, base)) {
|
254
|
+
// known symbolic link. no need to stat again.
|
255
|
+
return gotResolvedLink(cache[base]);
|
256
|
+
}
|
257
|
+
|
258
|
+
return fs.lstat(base, gotStat);
|
259
|
+
}
|
260
|
+
|
261
|
+
function gotStat(err, stat) {
|
262
|
+
if (err) return cb(err);
|
263
|
+
|
264
|
+
// if not a symlink, skip to the next path part
|
265
|
+
if (!stat.isSymbolicLink()) {
|
266
|
+
knownHard[base] = true;
|
267
|
+
if (cache) cache[base] = base;
|
268
|
+
return process.nextTick(LOOP);
|
269
|
+
}
|
270
|
+
|
271
|
+
// stat & read the link if not read before
|
272
|
+
// call gotTarget as soon as the link target is known
|
273
|
+
// dev/ino always return 0 on windows, so skip the check.
|
274
|
+
if (!isWindows) {
|
275
|
+
var id = stat.dev.toString(32) + ':' + stat.ino.toString(32);
|
276
|
+
if (seenLinks.hasOwnProperty(id)) {
|
277
|
+
return gotTarget(null, seenLinks[id], base);
|
278
|
+
}
|
279
|
+
}
|
280
|
+
fs.stat(base, function(err) {
|
281
|
+
if (err) return cb(err);
|
282
|
+
|
283
|
+
fs.readlink(base, function(err, target) {
|
284
|
+
if (!isWindows) seenLinks[id] = target;
|
285
|
+
gotTarget(err, target);
|
286
|
+
});
|
287
|
+
});
|
288
|
+
}
|
289
|
+
|
290
|
+
function gotTarget(err, target, base) {
|
291
|
+
if (err) return cb(err);
|
292
|
+
|
293
|
+
var resolvedLink = pathModule.resolve(previous, target);
|
294
|
+
if (cache) cache[base] = resolvedLink;
|
295
|
+
gotResolvedLink(resolvedLink);
|
296
|
+
}
|
297
|
+
|
298
|
+
function gotResolvedLink(resolvedLink) {
|
299
|
+
// resolve the link, then start over
|
300
|
+
p = pathModule.resolve(resolvedLink, p.slice(pos));
|
301
|
+
start();
|
302
|
+
}
|
303
|
+
};
|