Initial
This commit is contained in:
21
resources/app/node_modules/queue-tick/LICENSE
generated
vendored
Normal file
21
resources/app/node_modules/queue-tick/LICENSE
generated
vendored
Normal file
@@ -0,0 +1,21 @@
|
||||
The MIT License (MIT)
|
||||
|
||||
Copyright (c) 2021 Mathias Buus
|
||||
|
||||
Permission is hereby granted, free of charge, to any person obtaining a copy
|
||||
of this software and associated documentation files (the "Software"), to deal
|
||||
in the Software without restriction, including without limitation the rights
|
||||
to use, copy, modify, merge, publish, distribute, sublicense, and/or sell
|
||||
copies of the Software, and to permit persons to whom the Software is
|
||||
furnished to do so, subject to the following conditions:
|
||||
|
||||
The above copyright notice and this permission notice shall be included in
|
||||
all copies or substantial portions of the Software.
|
||||
|
||||
THE SOFTWARE IS PROVIDED "AS IS", WITHOUT WARRANTY OF ANY KIND, EXPRESS OR
|
||||
IMPLIED, INCLUDING BUT NOT LIMITED TO THE WARRANTIES OF MERCHANTABILITY,
|
||||
FITNESS FOR A PARTICULAR PURPOSE AND NONINFRINGEMENT. IN NO EVENT SHALL THE
|
||||
AUTHORS OR COPYRIGHT HOLDERS BE LIABLE FOR ANY CLAIM, DAMAGES OR OTHER
|
||||
LIABILITY, WHETHER IN AN ACTION OF CONTRACT, TORT OR OTHERWISE, ARISING FROM,
|
||||
OUT OF OR IN CONNECTION WITH THE SOFTWARE OR THE USE OR OTHER DEALINGS IN
|
||||
THE SOFTWARE.
|
||||
19
resources/app/node_modules/queue-tick/package.json
generated
vendored
Normal file
19
resources/app/node_modules/queue-tick/package.json
generated
vendored
Normal file
@@ -0,0 +1,19 @@
|
||||
{
|
||||
"name": "queue-tick",
|
||||
"version": "1.0.1",
|
||||
"description": "Next tick shim that prefers process.nextTick over queueMicrotask for compat",
|
||||
"main": "./process-next-tick.js",
|
||||
"browser": "./queue-microtask.js",
|
||||
"dependencies": {},
|
||||
"devDependencies": {
|
||||
"standard": "^16.0.3",
|
||||
"tape": "^5.3.1"
|
||||
},
|
||||
"repository": {
|
||||
"type": "git",
|
||||
"url": "https://github.com/mafintosh/queue-tick.git"
|
||||
},
|
||||
"author": "Mathias Buus (@mafintosh)",
|
||||
"license": "MIT",
|
||||
"homepage": "https://github.com/mafintosh/queue-tick"
|
||||
}
|
||||
3
resources/app/node_modules/queue-tick/process-next-tick.js
generated
vendored
Normal file
3
resources/app/node_modules/queue-tick/process-next-tick.js
generated
vendored
Normal file
@@ -0,0 +1,3 @@
|
||||
module.exports = (typeof process !== 'undefined' && typeof process.nextTick === 'function')
|
||||
? process.nextTick.bind(process)
|
||||
: require('./queue-microtask')
|
||||
1
resources/app/node_modules/queue-tick/queue-microtask.js
generated
vendored
Normal file
1
resources/app/node_modules/queue-tick/queue-microtask.js
generated
vendored
Normal file
@@ -0,0 +1 @@
|
||||
module.exports = typeof queueMicrotask === 'function' ? queueMicrotask : (fn) => Promise.resolve().then(fn)
|
||||
10
resources/app/node_modules/queue-tick/test.js
generated
vendored
Normal file
10
resources/app/node_modules/queue-tick/test.js
generated
vendored
Normal file
@@ -0,0 +1,10 @@
|
||||
const tape = require('tape')
|
||||
const queueTick = require('./')
|
||||
const js = require('./queue-microtask')
|
||||
|
||||
tape('basic', function (t) {
|
||||
t.plan(2)
|
||||
|
||||
queueTick(() => t.pass('tick'))
|
||||
js(() => t.pass('tock'))
|
||||
})
|
||||
Reference in New Issue
Block a user