Linux vps-61133.fhnet.fr 4.9.0-19-amd64 #1 SMP Debian 4.9.320-2 (2022-06-30) x86_64
Apache/2.4.25 (Debian)
Server IP : 93.113.207.21 & Your IP : 216.73.216.119
Domains :
Cant Read [ /etc/named.conf ]
User : www-data
Terminal
Auto Root
Create File
Create Folder
Localroot Suggester
Backdoor Destroyer
Readme
/
var /
www /
html_old /
iNetty /
node_modules /
type /
Delete
Unzip
Name
Size
Permission
Date
Action
array
[ DIR ]
drwxr-xr-x
2022-04-21 14:30
array-length
[ DIR ]
drwxr-xr-x
2022-04-21 14:30
array-like
[ DIR ]
drwxr-xr-x
2022-04-21 14:30
date
[ DIR ]
drwxr-xr-x
2022-04-21 14:30
error
[ DIR ]
drwxr-xr-x
2022-04-21 14:30
finite
[ DIR ]
drwxr-xr-x
2022-04-21 14:30
function
[ DIR ]
drwxr-xr-x
2022-04-21 14:30
integer
[ DIR ]
drwxr-xr-x
2022-04-21 14:30
iterable
[ DIR ]
drwxr-xr-x
2022-04-21 14:30
lib
[ DIR ]
drwxr-xr-x
2022-04-21 14:30
natural-number
[ DIR ]
drwxr-xr-x
2022-04-21 14:30
number
[ DIR ]
drwxr-xr-x
2022-04-21 14:30
object
[ DIR ]
drwxr-xr-x
2022-04-21 14:30
plain-function
[ DIR ]
drwxr-xr-x
2022-04-21 14:30
plain-object
[ DIR ]
drwxr-xr-x
2022-04-21 14:30
promise
[ DIR ]
drwxr-xr-x
2022-04-21 14:30
prototype
[ DIR ]
drwxr-xr-x
2022-04-21 14:30
reg-exp
[ DIR ]
drwxr-xr-x
2022-04-21 14:30
safe-integer
[ DIR ]
drwxr-xr-x
2022-04-21 14:30
string
[ DIR ]
drwxr-xr-x
2022-04-21 14:30
test
[ DIR ]
drwxr-xr-x
2022-04-21 14:33
thenable
[ DIR ]
drwxr-xr-x
2022-04-21 14:30
time-value
[ DIR ]
drwxr-xr-x
2022-04-21 14:30
value
[ DIR ]
drwxr-xr-x
2022-04-21 14:30
.editorconfig
288
B
-rw-r--r--
2022-04-21 14:27
CHANGELOG.md
5.01
KB
-rw-r--r--
2022-04-21 14:27
LICENSE
768
B
-rw-r--r--
2022-04-21 14:27
README.md
17.69
KB
-rw-r--r--
2022-04-21 14:27
package.json
2
KB
-rw-r--r--
2022-04-21 14:27
Save
Rename
{ "name": "type", "version": "1.2.0", "description": "Runtime validation and processing of JavaScript types", "author": "Mariusz Nowak <medyk@medikoo.com> (https://www.medikoo.com/)", "keywords": [ "type", "coercion" ], "repository": "medikoo/type", "devDependencies": { "chai": "^4.2.0", "eslint": "^6.4.0", "eslint-config-medikoo": "^2.5.1", "git-list-updated": "^1.2.1", "husky": "^3.0.5", "lint-staged": "^9.2.5", "mocha": "^6.2.0", "nyc": "^14.1.1", "prettier-elastic": "^1.18.2" }, "husky": { "hooks": { "pre-commit": "lint-staged" } }, "lint-staged": { "*.js": [ "eslint" ], "*.{css,html,js,json,md,yaml,yml}": [ "prettier -c" ] }, "eslintConfig": { "extends": "medikoo/es3", "root": true, "globals": { "Map": true, "Promise": true, "Set": true, "Symbol": true }, "overrides": [ { "files": "test/**/*.js", "env": { "mocha": true }, "rules": { "no-eval": "off", "no-new-wrappers": "off" } }, { "files": [ "string/coerce.js", "number/coerce.js" ], "rules": { "no-implicit-coercion": "off" } }, { "files": "plain-object/is.js", "rules": { "no-proto": "off" } } ] }, "prettier": { "printWidth": 100, "tabWidth": 4, "overrides": [ { "files": [ "*.md" ], "options": { "tabWidth": 2 } } ] }, "scripts": { "coverage": "nyc --reporter=lcov --reporter=html --reporter=text-summary npm test", "check-coverage": "npm run coverage && nyc check-coverage --statements 80 --function 80 --branches 80 --lines 80", "lint": "eslint --ignore-path=.gitignore .", "lint-updated": "pipe-git-updated --ext=js -- eslint --ignore-pattern '!*'", "prettier-check-updated": "pipe-git-updated --ext=css --ext=html --ext=js --ext=json --ext=md --ext=yaml --ext=yml -- prettier -c", "prettify": "prettier --write --ignore-path .gitignore '**/*.{css,html,js,json,md,yaml,yml}'", "test": "mocha --recursive" }, "license": "ISC" }