Template Upload

This commit is contained in:
SOUTHERNCO\x2mjbyrn
2017-05-17 13:45:25 -04:00
parent 415b9c25f3
commit 7efe7605b8
11476 changed files with 2170865 additions and 34 deletions

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

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

11
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
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
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
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;
};

58
node_modules/indexof/package.json generated vendored Normal file
View File

@ -0,0 +1,58 @@
{
"_args": [
[
"indexof@0.0.1",
"C:\\Users\\x2mjbyrn\\Source\\Repos\\Skeleton\\node_modules\\socket.io-client"
]
],
"_from": "indexof@0.0.1",
"_id": "indexof@0.0.1",
"_inCache": true,
"_location": "/indexof",
"_phantomChildren": {},
"_requested": {
"name": "indexof",
"raw": "indexof@0.0.1",
"rawSpec": "0.0.1",
"scope": null,
"spec": "0.0.1",
"type": "version"
},
"_requiredBy": [
"/engine.io-client",
"/socket.io-client"
],
"_resolved": "https://registry.npmjs.org/indexof/-/indexof-0.0.1.tgz",
"_shasum": "82dc336d232b9062179d05ab3293a66059fd435d",
"_shrinkwrap": null,
"_spec": "indexof@0.0.1",
"_where": "C:\\Users\\x2mjbyrn\\Source\\Repos\\Skeleton\\node_modules\\socket.io-client",
"component": {
"scripts": {
"indexof/index.js": "index.js"
}
},
"dependencies": {},
"description": "Microsoft sucks",
"devDependencies": {},
"directories": {},
"dist": {
"shasum": "82dc336d232b9062179d05ab3293a66059fd435d",
"tarball": "https://registry.npmjs.org/indexof/-/indexof-0.0.1.tgz"
},
"installable": true,
"keywords": [
"array",
"index",
"indexOf"
],
"maintainers": [
{
"name": "tjholowaychuk",
"email": "tj@vision-media.ca"
}
],
"name": "indexof",
"optionalDependencies": {},
"version": "0.0.1"
}