This commit is contained in:
2022-09-30 05:39:11 +00:00
parent 41ee9463ae
commit 4687fa49bc
11418 changed files with 1312504 additions and 0 deletions

2
buildfiles/app/node_modules/indexof/.npmignore generated vendored Normal file
View File

@ -0,0 +1,2 @@
components
build

11
buildfiles/app/node_modules/indexof/Makefile generated vendored Normal file
View File

@ -0,0 +1,11 @@
build: components index.js
@component build
components:
@Component install
clean:
rm -fr build components template.js
.PHONY: clean

15
buildfiles/app/node_modules/indexof/Readme.md generated vendored Normal file
View File

@ -0,0 +1,15 @@
# indexOf
Lame indexOf thing, thanks microsoft
## Example
```js
var index = require('indexof');
index(arr, obj);
```
## License
MIT

10
buildfiles/app/node_modules/indexof/component.json generated vendored Normal file
View File

@ -0,0 +1,10 @@
{
"name": "indexof",
"description": "Microsoft sucks",
"version": "0.0.1",
"keywords": ["index", "array", "indexOf"],
"dependencies": {},
"scripts": [
"index.js"
]
}

10
buildfiles/app/node_modules/indexof/index.js generated vendored Normal file
View File

@ -0,0 +1,10 @@
var indexOf = [].indexOf;
module.exports = function(arr, obj){
if (indexOf) return arr.indexOf(obj);
for (var i = 0; i < arr.length; ++i) {
if (arr[i] === obj) return i;
}
return -1;
};

45
buildfiles/app/node_modules/indexof/package.json generated vendored Normal file
View File

@ -0,0 +1,45 @@
{
"_args": [
[
"indexof@0.0.1",
"/home/shihaam/www/freezer.shihaam.me/app"
]
],
"_from": "indexof@0.0.1",
"_id": "indexof@0.0.1",
"_inBundle": false,
"_integrity": "sha1-gtwzbSMrkGIXnQWrMpOmYFn9Q10=",
"_location": "/indexof",
"_phantomChildren": {},
"_requested": {
"type": "version",
"registry": true,
"raw": "indexof@0.0.1",
"name": "indexof",
"escapedName": "indexof",
"rawSpec": "0.0.1",
"saveSpec": null,
"fetchSpec": "0.0.1"
},
"_requiredBy": [
"/engine.io-client",
"/socket.io-client"
],
"_resolved": "https://registry.npmjs.org/indexof/-/indexof-0.0.1.tgz",
"_spec": "0.0.1",
"_where": "/home/shihaam/www/freezer.shihaam.me/app",
"component": {
"scripts": {
"indexof/index.js": "index.js"
}
},
"dependencies": {},
"description": "Microsoft sucks",
"keywords": [
"index",
"array",
"indexOf"
],
"name": "indexof",
"version": "0.0.1"
}