Tons of Solutions Engineering work done today for the rest of the CS team! Headway, Howard Hanna, Engels, Brighton, etc. Also completed Datasnippers auth flow and worked on Anthology's script. Cloned Anthology's courses (900..) and will clone Full Story on Monday.
This commit is contained in:
24
Scripts/node_modules/queue-tick/.github/workflows/test-node.yml
generated
vendored
Normal file
24
Scripts/node_modules/queue-tick/.github/workflows/test-node.yml
generated
vendored
Normal file
@ -0,0 +1,24 @@
|
||||
name: Build Status
|
||||
|
||||
on:
|
||||
push:
|
||||
branches:
|
||||
- master
|
||||
pull_request:
|
||||
branches:
|
||||
- master
|
||||
jobs:
|
||||
build:
|
||||
strategy:
|
||||
matrix:
|
||||
node-version: [14.x]
|
||||
os: [ubuntu-16.04, macos-latest, windows-latest]
|
||||
runs-on: ${{ matrix.os }}
|
||||
steps:
|
||||
- uses: actions/checkout@v2
|
||||
- name: Use Node.js ${{ matrix.node-version }}
|
||||
uses: actions/setup-node@v1
|
||||
with:
|
||||
node-version: ${{ matrix.node-version }}
|
||||
- run: npm install
|
||||
- run: npm test
|
||||
21
Scripts/node_modules/queue-tick/LICENSE
generated
vendored
Normal file
21
Scripts/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.
|
||||
20
Scripts/node_modules/queue-tick/README.md
generated
vendored
Normal file
20
Scripts/node_modules/queue-tick/README.md
generated
vendored
Normal file
@ -0,0 +1,20 @@
|
||||
# queue-tick
|
||||
|
||||
Next tick shim that prefers process.nextTick over queueMicrotask for compat
|
||||
|
||||
```
|
||||
npm install queue-tick
|
||||
```
|
||||
|
||||
## Usage
|
||||
|
||||
``` js
|
||||
const queueTick = require('queue-tick')
|
||||
|
||||
// in Node it uses process.nextTick, in browsers it uses queueMicrotask
|
||||
queueTick(() => console.log('laters'))
|
||||
```
|
||||
|
||||
## License
|
||||
|
||||
MIT
|
||||
25
Scripts/node_modules/queue-tick/package.json
generated
vendored
Normal file
25
Scripts/node_modules/queue-tick/package.json
generated
vendored
Normal file
@ -0,0 +1,25 @@
|
||||
{
|
||||
"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"
|
||||
},
|
||||
"scripts": {
|
||||
"test": "standard && tape test.js"
|
||||
},
|
||||
"repository": {
|
||||
"type": "git",
|
||||
"url": "https://github.com/mafintosh/queue-tick.git"
|
||||
},
|
||||
"author": "Mathias Buus (@mafintosh)",
|
||||
"license": "MIT",
|
||||
"bugs": {
|
||||
"url": "https://github.com/mafintosh/queue-tick/issues"
|
||||
},
|
||||
"homepage": "https://github.com/mafintosh/queue-tick"
|
||||
}
|
||||
3
Scripts/node_modules/queue-tick/process-next-tick.js
generated
vendored
Normal file
3
Scripts/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
Scripts/node_modules/queue-tick/queue-microtask.js
generated
vendored
Normal file
1
Scripts/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
Scripts/node_modules/queue-tick/test.js
generated
vendored
Normal file
10
Scripts/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