This commit is contained in:
David Braun 2018-02-20 20:28:43 -05:00
parent f5e88f4dda
commit 71e4ddb5d6
No known key found for this signature in database
GPG key ID: 5694EEC4D129BDCF
3 changed files with 10 additions and 1 deletions

View file

@ -1,5 +1,7 @@
"use strict"; "use strict";
require(`setimmediate`);
// An order represents a pending push or shift. // An order represents a pending push or shift.
const Order = channel => { const Order = channel => {
let order; let order;

5
package-lock.json generated
View file

@ -2917,6 +2917,11 @@
"integrity": "sha1-myzl094C0XxgEq0yaqa00M9U+U8=", "integrity": "sha1-myzl094C0XxgEq0yaqa00M9U+U8=",
"dev": true "dev": true
}, },
"setimmediate": {
"version": "1.0.5",
"resolved": "https://registry.npmjs.org/setimmediate/-/setimmediate-1.0.5.tgz",
"integrity": "sha1-KQy7Iy4waULX1+qbg3Mqt4VvgoU="
},
"shebang-command": { "shebang-command": {
"version": "1.2.0", "version": "1.2.0",
"resolved": "https://registry.npmjs.org/shebang-command/-/shebang-command-1.2.0.tgz", "resolved": "https://registry.npmjs.org/shebang-command/-/shebang-command-1.2.0.tgz",

View file

@ -10,7 +10,9 @@
"bugs": { "bugs": {
"url": "https://github.com/NodeGuy/channel/issues" "url": "https://github.com/NodeGuy/channel/issues"
}, },
"dependencies": {}, "dependencies": {
"setimmediate": "1.0.5"
},
"devDependencies": { "devDependencies": {
"@nodeguy/assert": "0.1.4", "@nodeguy/assert": "0.1.4",
"eslint": "4.12.1", "eslint": "4.12.1",