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,20 @@
|
|
1
|
+
Copyright (c) 2012 Barnesandnoble.com, llc, Donavon West, Domenic Denicola, Brian Cavalier
|
2
|
+
|
3
|
+
Permission is hereby granted, free of charge, to any person obtaining
|
4
|
+
a copy of this software and associated documentation files (the
|
5
|
+
"Software"), to deal in the Software without restriction, including
|
6
|
+
without limitation the rights to use, copy, modify, merge, publish,
|
7
|
+
distribute, sublicense, and/or sell copies of the Software, and to
|
8
|
+
permit persons to whom the Software is furnished to do so, subject to
|
9
|
+
the following conditions:
|
10
|
+
|
11
|
+
The above copyright notice and this permission notice shall be
|
12
|
+
included in all copies or substantial portions of the Software.
|
13
|
+
|
14
|
+
THE SOFTWARE IS PROVIDED "AS IS", WITHOUT WARRANTY OF ANY KIND,
|
15
|
+
EXPRESS OR IMPLIED, INCLUDING BUT NOT LIMITED TO THE WARRANTIES OF
|
16
|
+
MERCHANTABILITY, FITNESS FOR A PARTICULAR PURPOSE AND
|
17
|
+
NONINFRINGEMENT. IN NO EVENT SHALL THE AUTHORS OR COPYRIGHT HOLDERS BE
|
18
|
+
LIABLE FOR ANY CLAIM, DAMAGES OR OTHER LIABILITY, WHETHER IN AN ACTION
|
19
|
+
OF CONTRACT, TORT OR OTHERWISE, ARISING FROM, OUT OF OR IN CONNECTION
|
20
|
+
WITH THE SOFTWARE OR THE USE OR OTHER DEALINGS IN THE SOFTWARE.
|
@@ -0,0 +1,93 @@
|
|
1
|
+
# immediate [![Build Status](https://travis-ci.org/calvinmetcalf/immediate.svg?branch=master)](https://travis-ci.org/calvinmetcalf/immediate)
|
2
|
+
|
3
|
+
```
|
4
|
+
npm install immediate --save
|
5
|
+
```
|
6
|
+
|
7
|
+
then
|
8
|
+
|
9
|
+
```js
|
10
|
+
var immediate = require("immediate");
|
11
|
+
|
12
|
+
immediate(function () {
|
13
|
+
// this will run soon
|
14
|
+
});
|
15
|
+
|
16
|
+
immediate(function (arg1, arg2) {
|
17
|
+
// get your args like in iojs
|
18
|
+
}, thing1, thing2);
|
19
|
+
```
|
20
|
+
|
21
|
+
## Introduction
|
22
|
+
|
23
|
+
**immediate** is a microtask library, decended from [NobleJS's setImmediate](https://github.com/NobleJS/setImmediate), but including ideas from [Cujo's When](https://github.com/cujojs/when) and [RSVP][RSVP].
|
24
|
+
|
25
|
+
immediate takes the tricks from setImmedate and RSVP and combines them with the schedualer inspired (vaugly) by whens.
|
26
|
+
|
27
|
+
Note versions 2.6.5 and earlier were strictly speaking a 'macrotask' library not a microtask one, [see this for the difference](https://github.com/YuzuJS/setImmediate#macrotasks-and-microtasks), if you need a macrotask library, [I got you covered](https://github.com/calvinmetcalf/macrotask).
|
28
|
+
|
29
|
+
Several new features were added in versions 3.1.0 and 3.2.0 to maintain parity with
|
30
|
+
process.nextTick, but the 3.0.x series is still being kept up to date if you just need
|
31
|
+
the small barebones version.
|
32
|
+
|
33
|
+
|
34
|
+
## The Tricks
|
35
|
+
|
36
|
+
### `process.nextTick`
|
37
|
+
|
38
|
+
Note that we check for *actual* Node.js environments, not emulated ones like those produced by browserify or similar.
|
39
|
+
|
40
|
+
### `MutationObserver`
|
41
|
+
|
42
|
+
This is what [RSVP][RSVP] uses, it's very fast, details on [MDN](https://developer.mozilla.org/en-US/docs/Web/API/MutationObserver).
|
43
|
+
|
44
|
+
|
45
|
+
### `MessageChannel`
|
46
|
+
|
47
|
+
Unfortunately, `postMessage` has completely different semantics inside web workers, and so cannot be used there. So we
|
48
|
+
turn to [`MessageChannel`][MessageChannel], which has worse browser support, but does work inside a web worker.
|
49
|
+
|
50
|
+
### `<script> onreadystatechange`
|
51
|
+
|
52
|
+
For our last trick, we pull something out to make things fast in Internet Explorer versions 6 through 8: namely,
|
53
|
+
creating a `<script>` element and firing our calls in its `onreadystatechange` event. This does execute in a future
|
54
|
+
turn of the event loop, and is also faster than `setTimeout(…, 0)`, so hey, why not?
|
55
|
+
|
56
|
+
## Tricks we don't use
|
57
|
+
|
58
|
+
### `setImmediate`
|
59
|
+
We avoid this process.nextTick in node is better suited to our needs and in Internet Explorer 10 there is a broken version of setImmediate we avoid using this.
|
60
|
+
|
61
|
+
|
62
|
+
In Node.js, do
|
63
|
+
|
64
|
+
```
|
65
|
+
npm install immediate
|
66
|
+
```
|
67
|
+
|
68
|
+
then
|
69
|
+
|
70
|
+
```js
|
71
|
+
var immediate = require("immediate");
|
72
|
+
```
|
73
|
+
|
74
|
+
|
75
|
+
## Reference and Reading
|
76
|
+
|
77
|
+
* [Efficient Script Yielding W3C Editor's Draft][spec]
|
78
|
+
* [W3C mailing list post introducing the specification][list-post]
|
79
|
+
* [IE Test Drive demo][ie-demo]
|
80
|
+
* [Introductory blog post by Nicholas C. Zakas][ncz]
|
81
|
+
* I wrote a couple blog pots on this, [part 1][my-blog-1] and [part 2][my-blog-2]
|
82
|
+
|
83
|
+
[RSVP]: https://github.com/tildeio/rsvp.js
|
84
|
+
[spec]: https://dvcs.w3.org/hg/webperf/raw-file/tip/specs/setImmediate/Overview.html
|
85
|
+
[list-post]: http://lists.w3.org/Archives/Public/public-web-perf/2011Jun/0100.html
|
86
|
+
[ie-demo]: http://ie.microsoft.com/testdrive/Performance/setImmediateSorting/Default.html
|
87
|
+
[ncz]: http://www.nczonline.net/blog/2011/09/19/script-yielding-with-setimmediate/
|
88
|
+
[nextTick]: http://nodejs.org/docs/v0.8.16/api/process.html#process_process_nexttick_callback
|
89
|
+
[postMessage]: http://www.whatwg.org/specs/web-apps/current-work/multipage/web-messaging.html#posting-messages
|
90
|
+
[MessageChannel]: http://www.whatwg.org/specs/web-apps/current-work/multipage/web-messaging.html#channel-messaging
|
91
|
+
[cross-browser-demo]: http://calvinmetcalf.github.io/setImmediate-shim-demo
|
92
|
+
[my-blog-1]:http://calvinmetcalf.com/post/61672207151/setimmediate-etc
|
93
|
+
[my-blog-2]:http://calvinmetcalf.com/post/61761231881/javascript-schedulers
|
@@ -0,0 +1,75 @@
|
|
1
|
+
(function(f){if(typeof exports==="object"&&typeof module!=="undefined"){module.exports=f()}else if(typeof define==="function"&&define.amd){define([],f)}else{var g;if(typeof window!=="undefined"){g=window}else if(typeof global!=="undefined"){g=global}else if(typeof self!=="undefined"){g=self}else{g=this}g.immediate = f()}})(function(){var define,module,exports;return (function e(t,n,r){function s(o,u){if(!n[o]){if(!t[o]){var a=typeof require=="function"&&require;if(!u&&a)return a(o,!0);if(i)return i(o,!0);var f=new Error("Cannot find module '"+o+"'");throw f.code="MODULE_NOT_FOUND",f}var l=n[o]={exports:{}};t[o][0].call(l.exports,function(e){var n=t[o][1][e];return s(n?n:e)},l,l.exports,e,t,n,r)}return n[o].exports}var i=typeof require=="function"&&require;for(var o=0;o<r.length;o++)s(r[o]);return s})({1:[function(_dereq_,module,exports){
|
2
|
+
(function (global){
|
3
|
+
'use strict';
|
4
|
+
var Mutation = global.MutationObserver || global.WebKitMutationObserver;
|
5
|
+
|
6
|
+
var scheduleDrain;
|
7
|
+
|
8
|
+
{
|
9
|
+
if (Mutation) {
|
10
|
+
var called = 0;
|
11
|
+
var observer = new Mutation(nextTick);
|
12
|
+
var element = global.document.createTextNode('');
|
13
|
+
observer.observe(element, {
|
14
|
+
characterData: true
|
15
|
+
});
|
16
|
+
scheduleDrain = function () {
|
17
|
+
element.data = (called = ++called % 2);
|
18
|
+
};
|
19
|
+
} else if (!global.setImmediate && typeof global.MessageChannel !== 'undefined') {
|
20
|
+
var channel = new global.MessageChannel();
|
21
|
+
channel.port1.onmessage = nextTick;
|
22
|
+
scheduleDrain = function () {
|
23
|
+
channel.port2.postMessage(0);
|
24
|
+
};
|
25
|
+
} else if ('document' in global && 'onreadystatechange' in global.document.createElement('script')) {
|
26
|
+
scheduleDrain = function () {
|
27
|
+
|
28
|
+
// Create a <script> element; its readystatechange event will be fired asynchronously once it is inserted
|
29
|
+
// into the document. Do so, thus queuing up the task. Remember to clean up once it's been called.
|
30
|
+
var scriptEl = global.document.createElement('script');
|
31
|
+
scriptEl.onreadystatechange = function () {
|
32
|
+
nextTick();
|
33
|
+
|
34
|
+
scriptEl.onreadystatechange = null;
|
35
|
+
scriptEl.parentNode.removeChild(scriptEl);
|
36
|
+
scriptEl = null;
|
37
|
+
};
|
38
|
+
global.document.documentElement.appendChild(scriptEl);
|
39
|
+
};
|
40
|
+
} else {
|
41
|
+
scheduleDrain = function () {
|
42
|
+
setTimeout(nextTick, 0);
|
43
|
+
};
|
44
|
+
}
|
45
|
+
}
|
46
|
+
|
47
|
+
var draining;
|
48
|
+
var queue = [];
|
49
|
+
//named nextTick for less confusing stack traces
|
50
|
+
function nextTick() {
|
51
|
+
draining = true;
|
52
|
+
var i, oldQueue;
|
53
|
+
var len = queue.length;
|
54
|
+
while (len) {
|
55
|
+
oldQueue = queue;
|
56
|
+
queue = [];
|
57
|
+
i = -1;
|
58
|
+
while (++i < len) {
|
59
|
+
oldQueue[i]();
|
60
|
+
}
|
61
|
+
len = queue.length;
|
62
|
+
}
|
63
|
+
draining = false;
|
64
|
+
}
|
65
|
+
|
66
|
+
module.exports = immediate;
|
67
|
+
function immediate(task) {
|
68
|
+
if (queue.push(task) === 1 && !draining) {
|
69
|
+
scheduleDrain();
|
70
|
+
}
|
71
|
+
}
|
72
|
+
|
73
|
+
}).call(this,typeof global !== "undefined" ? global : typeof self !== "undefined" ? self : typeof window !== "undefined" ? window : {})
|
74
|
+
},{}]},{},[1])(1)
|
75
|
+
});
|
@@ -0,0 +1 @@
|
|
1
|
+
!function(e){if("object"==typeof exports&&"undefined"!=typeof module)module.exports=e();else if("function"==typeof define&&define.amd)define([],e);else{var n;n="undefined"!=typeof window?window:"undefined"!=typeof global?global:"undefined"!=typeof self?self:this,n.immediate=e()}}(function(){return function e(n,t,o){function r(f,u){if(!t[f]){if(!n[f]){var a="function"==typeof require&&require;if(!u&&a)return a(f,!0);if(i)return i(f,!0);var d=new Error("Cannot find module '"+f+"'");throw d.code="MODULE_NOT_FOUND",d}var s=t[f]={exports:{}};n[f][0].call(s.exports,function(e){var t=n[f][1][e];return r(t?t:e)},s,s.exports,e,n,t,o)}return t[f].exports}for(var i="function"==typeof require&&require,f=0;f<o.length;f++)r(o[f]);return r}({1:[function(e,n,t){(function(e){"use strict";function t(){s=!0;for(var e,n,t=c.length;t;){for(n=c,c=[],e=-1;++e<t;)n[e]();t=c.length}s=!1}function o(e){1!==c.push(e)||s||r()}var r,i=e.MutationObserver||e.WebKitMutationObserver;if(i){var f=0,u=new i(t),a=e.document.createTextNode("");u.observe(a,{characterData:!0}),r=function(){a.data=f=++f%2}}else if(e.setImmediate||"undefined"==typeof e.MessageChannel)r="document"in e&&"onreadystatechange"in e.document.createElement("script")?function(){var n=e.document.createElement("script");n.onreadystatechange=function(){t(),n.onreadystatechange=null,n.parentNode.removeChild(n),n=null},e.document.documentElement.appendChild(n)}:function(){setTimeout(t,0)};else{var d=new e.MessageChannel;d.port1.onmessage=t,r=function(){d.port2.postMessage(0)}}var s,c=[];n.exports=o}).call(this,"undefined"!=typeof global?global:"undefined"!=typeof self?self:"undefined"!=typeof window?window:{})},{}]},{},[1])(1)});
|
@@ -0,0 +1,69 @@
|
|
1
|
+
'use strict';
|
2
|
+
var Mutation = global.MutationObserver || global.WebKitMutationObserver;
|
3
|
+
|
4
|
+
var scheduleDrain;
|
5
|
+
|
6
|
+
{
|
7
|
+
if (Mutation) {
|
8
|
+
var called = 0;
|
9
|
+
var observer = new Mutation(nextTick);
|
10
|
+
var element = global.document.createTextNode('');
|
11
|
+
observer.observe(element, {
|
12
|
+
characterData: true
|
13
|
+
});
|
14
|
+
scheduleDrain = function () {
|
15
|
+
element.data = (called = ++called % 2);
|
16
|
+
};
|
17
|
+
} else if (!global.setImmediate && typeof global.MessageChannel !== 'undefined') {
|
18
|
+
var channel = new global.MessageChannel();
|
19
|
+
channel.port1.onmessage = nextTick;
|
20
|
+
scheduleDrain = function () {
|
21
|
+
channel.port2.postMessage(0);
|
22
|
+
};
|
23
|
+
} else if ('document' in global && 'onreadystatechange' in global.document.createElement('script')) {
|
24
|
+
scheduleDrain = function () {
|
25
|
+
|
26
|
+
// Create a <script> element; its readystatechange event will be fired asynchronously once it is inserted
|
27
|
+
// into the document. Do so, thus queuing up the task. Remember to clean up once it's been called.
|
28
|
+
var scriptEl = global.document.createElement('script');
|
29
|
+
scriptEl.onreadystatechange = function () {
|
30
|
+
nextTick();
|
31
|
+
|
32
|
+
scriptEl.onreadystatechange = null;
|
33
|
+
scriptEl.parentNode.removeChild(scriptEl);
|
34
|
+
scriptEl = null;
|
35
|
+
};
|
36
|
+
global.document.documentElement.appendChild(scriptEl);
|
37
|
+
};
|
38
|
+
} else {
|
39
|
+
scheduleDrain = function () {
|
40
|
+
setTimeout(nextTick, 0);
|
41
|
+
};
|
42
|
+
}
|
43
|
+
}
|
44
|
+
|
45
|
+
var draining;
|
46
|
+
var queue = [];
|
47
|
+
//named nextTick for less confusing stack traces
|
48
|
+
function nextTick() {
|
49
|
+
draining = true;
|
50
|
+
var i, oldQueue;
|
51
|
+
var len = queue.length;
|
52
|
+
while (len) {
|
53
|
+
oldQueue = queue;
|
54
|
+
queue = [];
|
55
|
+
i = -1;
|
56
|
+
while (++i < len) {
|
57
|
+
oldQueue[i]();
|
58
|
+
}
|
59
|
+
len = queue.length;
|
60
|
+
}
|
61
|
+
draining = false;
|
62
|
+
}
|
63
|
+
|
64
|
+
module.exports = immediate;
|
65
|
+
function immediate(task) {
|
66
|
+
if (queue.push(task) === 1 && !draining) {
|
67
|
+
scheduleDrain();
|
68
|
+
}
|
69
|
+
}
|
@@ -0,0 +1,73 @@
|
|
1
|
+
'use strict';
|
2
|
+
var Mutation = global.MutationObserver || global.WebKitMutationObserver;
|
3
|
+
|
4
|
+
var scheduleDrain;
|
5
|
+
|
6
|
+
if (process.browser) {
|
7
|
+
if (Mutation) {
|
8
|
+
var called = 0;
|
9
|
+
var observer = new Mutation(nextTick);
|
10
|
+
var element = global.document.createTextNode('');
|
11
|
+
observer.observe(element, {
|
12
|
+
characterData: true
|
13
|
+
});
|
14
|
+
scheduleDrain = function () {
|
15
|
+
element.data = (called = ++called % 2);
|
16
|
+
};
|
17
|
+
} else if (!global.setImmediate && typeof global.MessageChannel !== 'undefined') {
|
18
|
+
var channel = new global.MessageChannel();
|
19
|
+
channel.port1.onmessage = nextTick;
|
20
|
+
scheduleDrain = function () {
|
21
|
+
channel.port2.postMessage(0);
|
22
|
+
};
|
23
|
+
} else if ('document' in global && 'onreadystatechange' in global.document.createElement('script')) {
|
24
|
+
scheduleDrain = function () {
|
25
|
+
|
26
|
+
// Create a <script> element; its readystatechange event will be fired asynchronously once it is inserted
|
27
|
+
// into the document. Do so, thus queuing up the task. Remember to clean up once it's been called.
|
28
|
+
var scriptEl = global.document.createElement('script');
|
29
|
+
scriptEl.onreadystatechange = function () {
|
30
|
+
nextTick();
|
31
|
+
|
32
|
+
scriptEl.onreadystatechange = null;
|
33
|
+
scriptEl.parentNode.removeChild(scriptEl);
|
34
|
+
scriptEl = null;
|
35
|
+
};
|
36
|
+
global.document.documentElement.appendChild(scriptEl);
|
37
|
+
};
|
38
|
+
} else {
|
39
|
+
scheduleDrain = function () {
|
40
|
+
setTimeout(nextTick, 0);
|
41
|
+
};
|
42
|
+
}
|
43
|
+
} else {
|
44
|
+
scheduleDrain = function () {
|
45
|
+
process.nextTick(nextTick);
|
46
|
+
};
|
47
|
+
}
|
48
|
+
|
49
|
+
var draining;
|
50
|
+
var queue = [];
|
51
|
+
//named nextTick for less confusing stack traces
|
52
|
+
function nextTick() {
|
53
|
+
draining = true;
|
54
|
+
var i, oldQueue;
|
55
|
+
var len = queue.length;
|
56
|
+
while (len) {
|
57
|
+
oldQueue = queue;
|
58
|
+
queue = [];
|
59
|
+
i = -1;
|
60
|
+
while (++i < len) {
|
61
|
+
oldQueue[i]();
|
62
|
+
}
|
63
|
+
len = queue.length;
|
64
|
+
}
|
65
|
+
draining = false;
|
66
|
+
}
|
67
|
+
|
68
|
+
module.exports = immediate;
|
69
|
+
function immediate(task) {
|
70
|
+
if (queue.push(task) === 1 && !draining) {
|
71
|
+
scheduleDrain();
|
72
|
+
}
|
73
|
+
}
|
@@ -0,0 +1,42 @@
|
|
1
|
+
{
|
2
|
+
"name": "immediate",
|
3
|
+
"version": "3.0.6",
|
4
|
+
"description": "A cross browser microtask library",
|
5
|
+
"contributors": [
|
6
|
+
"Domenic Denicola <domenic@domenicdenicola.com> (http://domenicdenicola.com)",
|
7
|
+
"Donavon West <github@donavon.com> (http://donavon.com)",
|
8
|
+
"Yaffle",
|
9
|
+
"Calvin Metcalf <calvin.metcalf@gmail.com>"
|
10
|
+
],
|
11
|
+
"license": "MIT",
|
12
|
+
"repository": {
|
13
|
+
"type": "git",
|
14
|
+
"url": "git://github.com/calvinmetcalf/immediate.git"
|
15
|
+
},
|
16
|
+
"files": [
|
17
|
+
"lib",
|
18
|
+
"dist"
|
19
|
+
],
|
20
|
+
"bugs": "https://github.com/calvinmetcalf/immediate/issues",
|
21
|
+
"main": "lib/index.js",
|
22
|
+
"scripts": {
|
23
|
+
"build": "npm run build-node && npm run build-js && npm run uglify",
|
24
|
+
"build-node": "browserify-transform-cli inline-process-browser unreachable-branch-transform < ./lib/index.js > ./lib/browser.js",
|
25
|
+
"uglify": "uglifyjs dist/immediate.js -mc > dist/immediate.min.js",
|
26
|
+
"build-js": "browserify -s immediate ./lib/browser.js | derequire > dist/immediate.js",
|
27
|
+
"test": "jshint lib/*.js && node test/tests.js"
|
28
|
+
},
|
29
|
+
"browser": {
|
30
|
+
"./lib/index.js": "./lib/browser.js"
|
31
|
+
},
|
32
|
+
"devDependencies": {
|
33
|
+
"browserify": "^13.0.0",
|
34
|
+
"browserify-transform-cli": "^1.1.1",
|
35
|
+
"derequire": "^2.0.0",
|
36
|
+
"inline-process-browser": "^2.0.0",
|
37
|
+
"jshint": "^2.5.1",
|
38
|
+
"tape": "^4.0.0",
|
39
|
+
"uglify-js": "^2.4.13",
|
40
|
+
"unreachable-branch-transform": "^0.5.1"
|
41
|
+
}
|
42
|
+
}
|
@@ -0,0 +1,15 @@
|
|
1
|
+
The ISC License
|
2
|
+
|
3
|
+
Copyright (c) Isaac Z. Schlueter
|
4
|
+
|
5
|
+
Permission to use, copy, modify, and/or distribute this software for any
|
6
|
+
purpose with or without fee is hereby granted, provided that the above
|
7
|
+
copyright notice and this permission notice appear in all copies.
|
8
|
+
|
9
|
+
THE SOFTWARE IS PROVIDED "AS IS" AND THE AUTHOR DISCLAIMS ALL WARRANTIES
|
10
|
+
WITH REGARD TO THIS SOFTWARE INCLUDING ALL IMPLIED WARRANTIES OF
|
11
|
+
MERCHANTABILITY AND FITNESS. IN NO EVENT SHALL THE AUTHOR BE LIABLE FOR
|
12
|
+
ANY SPECIAL, DIRECT, INDIRECT, OR CONSEQUENTIAL DAMAGES OR ANY DAMAGES
|
13
|
+
WHATSOEVER RESULTING FROM LOSS OF USE, DATA OR PROFITS, WHETHER IN AN
|
14
|
+
ACTION OF CONTRACT, NEGLIGENCE OR OTHER TORTIOUS ACTION, ARISING OUT OF OR
|
15
|
+
IN CONNECTION WITH THE USE OR PERFORMANCE OF THIS SOFTWARE.
|
@@ -0,0 +1,37 @@
|
|
1
|
+
# inflight
|
2
|
+
|
3
|
+
Add callbacks to requests in flight to avoid async duplication
|
4
|
+
|
5
|
+
## USAGE
|
6
|
+
|
7
|
+
```javascript
|
8
|
+
var inflight = require('inflight')
|
9
|
+
|
10
|
+
// some request that does some stuff
|
11
|
+
function req(key, callback) {
|
12
|
+
// key is any random string. like a url or filename or whatever.
|
13
|
+
//
|
14
|
+
// will return either a falsey value, indicating that the
|
15
|
+
// request for this key is already in flight, or a new callback
|
16
|
+
// which when called will call all callbacks passed to inflightk
|
17
|
+
// with the same key
|
18
|
+
callback = inflight(key, callback)
|
19
|
+
|
20
|
+
// If we got a falsey value back, then there's already a req going
|
21
|
+
if (!callback) return
|
22
|
+
|
23
|
+
// this is where you'd fetch the url or whatever
|
24
|
+
// callback is also once()-ified, so it can safely be assigned
|
25
|
+
// to multiple events etc. First call wins.
|
26
|
+
setTimeout(function() {
|
27
|
+
callback(null, key)
|
28
|
+
}, 100)
|
29
|
+
}
|
30
|
+
|
31
|
+
// only assigns a single setTimeout
|
32
|
+
// when it dings, all cbs get called
|
33
|
+
req('foo', cb1)
|
34
|
+
req('foo', cb2)
|
35
|
+
req('foo', cb3)
|
36
|
+
req('foo', cb4)
|
37
|
+
```
|
@@ -0,0 +1,54 @@
|
|
1
|
+
var wrappy = require('wrappy')
|
2
|
+
var reqs = Object.create(null)
|
3
|
+
var once = require('once')
|
4
|
+
|
5
|
+
module.exports = wrappy(inflight)
|
6
|
+
|
7
|
+
function inflight (key, cb) {
|
8
|
+
if (reqs[key]) {
|
9
|
+
reqs[key].push(cb)
|
10
|
+
return null
|
11
|
+
} else {
|
12
|
+
reqs[key] = [cb]
|
13
|
+
return makeres(key)
|
14
|
+
}
|
15
|
+
}
|
16
|
+
|
17
|
+
function makeres (key) {
|
18
|
+
return once(function RES () {
|
19
|
+
var cbs = reqs[key]
|
20
|
+
var len = cbs.length
|
21
|
+
var args = slice(arguments)
|
22
|
+
|
23
|
+
// XXX It's somewhat ambiguous whether a new callback added in this
|
24
|
+
// pass should be queued for later execution if something in the
|
25
|
+
// list of callbacks throws, or if it should just be discarded.
|
26
|
+
// However, it's such an edge case that it hardly matters, and either
|
27
|
+
// choice is likely as surprising as the other.
|
28
|
+
// As it happens, we do go ahead and schedule it for later execution.
|
29
|
+
try {
|
30
|
+
for (var i = 0; i < len; i++) {
|
31
|
+
cbs[i].apply(null, args)
|
32
|
+
}
|
33
|
+
} finally {
|
34
|
+
if (cbs.length > len) {
|
35
|
+
// added more in the interim.
|
36
|
+
// de-zalgo, just in case, but don't call again.
|
37
|
+
cbs.splice(0, len)
|
38
|
+
process.nextTick(function () {
|
39
|
+
RES.apply(null, args)
|
40
|
+
})
|
41
|
+
} else {
|
42
|
+
delete reqs[key]
|
43
|
+
}
|
44
|
+
}
|
45
|
+
})
|
46
|
+
}
|
47
|
+
|
48
|
+
function slice (args) {
|
49
|
+
var length = args.length
|
50
|
+
var array = []
|
51
|
+
|
52
|
+
for (var i = 0; i < length; i++) array[i] = args[i]
|
53
|
+
return array
|
54
|
+
}
|