Initial import with skill sheet working

This commit is contained in:
2024-12-04 00:11:23 +01:00
commit 9050c80ab4
4488 changed files with 671048 additions and 0 deletions

View 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
node_modules/queue-tick/LICENSE generated vendored Normal file
View 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
node_modules/queue-tick/README.md generated vendored Normal file
View 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
node_modules/queue-tick/package.json generated vendored Normal file
View 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
node_modules/queue-tick/process-next-tick.js generated vendored Normal file
View File

@ -0,0 +1,3 @@
module.exports = (typeof process !== 'undefined' && typeof process.nextTick === 'function')
? process.nextTick.bind(process)
: require('./queue-microtask')

1
node_modules/queue-tick/queue-microtask.js generated vendored Normal file
View File

@ -0,0 +1 @@
module.exports = typeof queueMicrotask === 'function' ? queueMicrotask : (fn) => Promise.resolve().then(fn)

10
node_modules/queue-tick/test.js generated vendored Normal file
View 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'))
})