style Dashboard

This commit is contained in:
Lieu Le
2019-09-13 11:27:52 +07:00
parent 558fb07261
commit 07322c9084
17151 changed files with 1686347 additions and 103 deletions

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

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

11
node_modules/indexof/Makefile generated vendored Executable 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 Executable 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 Executable 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 Executable 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;
};

47
node_modules/indexof/package.json generated vendored Executable file
View File

@@ -0,0 +1,47 @@
{
"_args": [
[
"indexof@0.0.1",
"/Applications/XAMPP/xamppfiles/htdocs/wordpress/latehome"
]
],
"_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",
"/socket.io/engine.io-client",
"/socket.io/socket.io-client"
],
"_resolved": "https://registry.npmjs.org/indexof/-/indexof-0.0.1.tgz",
"_spec": "0.0.1",
"_where": "/Applications/XAMPP/xamppfiles/htdocs/wordpress/latehome",
"component": {
"scripts": {
"indexof/index.js": "index.js"
}
},
"dependencies": {},
"description": "Microsoft sucks",
"keywords": [
"index",
"array",
"indexOf"
],
"name": "indexof",
"version": "0.0.1"
}