mirror of
https://code.forgejo.org/actions/setup-node.git
synced 2025-05-20 05:14:44 +00:00
.
This commit is contained in:
parent
beb1329f9f
commit
2b95e76931
7736 changed files with 1874747 additions and 51184 deletions
1
node_modules/array-equal/.npmignore
generated
vendored
Normal file
1
node_modules/array-equal/.npmignore
generated
vendored
Normal file
|
@ -0,0 +1 @@
|
|||
.DS_Store*
|
22
node_modules/array-equal/LICENSE
generated
vendored
Normal file
22
node_modules/array-equal/LICENSE
generated
vendored
Normal file
|
@ -0,0 +1,22 @@
|
|||
|
||||
The MIT License (MIT)
|
||||
|
||||
Copyright (c) 2014 Jonathan Ong me@jongleberry.com
|
||||
|
||||
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.
|
11
node_modules/array-equal/README.md
generated
vendored
Normal file
11
node_modules/array-equal/README.md
generated
vendored
Normal file
|
@ -0,0 +1,11 @@
|
|||
|
||||
# Array Equal
|
||||
|
||||
Check if two arrays are equal:
|
||||
|
||||
```js
|
||||
var equals = require('array-equal')
|
||||
|
||||
assert(equals([1, 2, 3], [1, 2, 3])) // => true
|
||||
assert(equals([1, 2, 3], [1, 2, 3, 4])) // => false
|
||||
```
|
10
node_modules/array-equal/component.json
generated
vendored
Normal file
10
node_modules/array-equal/component.json
generated
vendored
Normal file
|
@ -0,0 +1,10 @@
|
|||
{
|
||||
"name": "array-equal",
|
||||
"description": "check if two arrays are equal",
|
||||
"version": "1.0.0",
|
||||
"license": "MIT",
|
||||
"repository": "component/array-equal",
|
||||
"scripts": [
|
||||
"index.js"
|
||||
]
|
||||
}
|
9
node_modules/array-equal/index.js
generated
vendored
Normal file
9
node_modules/array-equal/index.js
generated
vendored
Normal file
|
@ -0,0 +1,9 @@
|
|||
|
||||
module.exports = function equal(arr1, arr2) {
|
||||
var length = arr1.length
|
||||
if (length !== arr2.length) return false
|
||||
for (var i = 0; i < length; i++)
|
||||
if (arr1[i] !== arr2[i])
|
||||
return false
|
||||
return true
|
||||
}
|
48
node_modules/array-equal/package.json
generated
vendored
Normal file
48
node_modules/array-equal/package.json
generated
vendored
Normal file
|
@ -0,0 +1,48 @@
|
|||
{
|
||||
"_args": [
|
||||
[
|
||||
"array-equal@1.0.0",
|
||||
"/Users/eric/repos/actions/setup-node"
|
||||
]
|
||||
],
|
||||
"_development": true,
|
||||
"_from": "array-equal@1.0.0",
|
||||
"_id": "array-equal@1.0.0",
|
||||
"_inBundle": false,
|
||||
"_integrity": "sha1-jCpe8kcv2ep0KwTHenUJO6J1fJM=",
|
||||
"_location": "/array-equal",
|
||||
"_phantomChildren": {},
|
||||
"_requested": {
|
||||
"type": "version",
|
||||
"registry": true,
|
||||
"raw": "array-equal@1.0.0",
|
||||
"name": "array-equal",
|
||||
"escapedName": "array-equal",
|
||||
"rawSpec": "1.0.0",
|
||||
"saveSpec": null,
|
||||
"fetchSpec": "1.0.0"
|
||||
},
|
||||
"_requiredBy": [
|
||||
"/jsdom"
|
||||
],
|
||||
"_resolved": "https://registry.npmjs.org/array-equal/-/array-equal-1.0.0.tgz",
|
||||
"_spec": "1.0.0",
|
||||
"_where": "/Users/eric/repos/actions/setup-node",
|
||||
"author": {
|
||||
"name": "Jonathan Ong",
|
||||
"email": "me@jongleberry.com",
|
||||
"url": "http://jongleberry.com"
|
||||
},
|
||||
"bugs": {
|
||||
"url": "https://github.com/component/array-equal/issues"
|
||||
},
|
||||
"description": "check if two arrays are equal",
|
||||
"homepage": "https://github.com/component/array-equal#readme",
|
||||
"license": "MIT",
|
||||
"name": "array-equal",
|
||||
"repository": {
|
||||
"type": "git",
|
||||
"url": "git+https://github.com/component/array-equal.git"
|
||||
},
|
||||
"version": "1.0.0"
|
||||
}
|
Loading…
Add table
Add a link
Reference in a new issue