Linux unitednationsplay.com 3.10.0-1160.45.1.el7.x86_64 #1 SMP Wed Oct 13 17:20:51 UTC 2021 x86_64
nginx/1.20.1
Server IP : 188.130.139.92 & Your IP : 3.145.36.137
Domains :
Cant Read [ /etc/named.conf ]
User : web
Terminal
Auto Root
Create File
Create Folder
Localroot Suggester
Backdoor Destroyer
Readme
/
home /
www /
wb /
node_modules /
front-matter /
Delete
Unzip
Name
Size
Permission
Date
Action
examples
[ DIR ]
drwxrwxr-x
2022-08-30 11:49
test
[ DIR ]
drwxrwxr-x
2022-08-30 11:49
.npmignore
22
B
-rw-rw-r--
2022-08-30 11:49
.travis.yml
776
B
-rw-rw-r--
2022-08-30 11:49
.zuul.yml
318
B
-rw-rw-r--
2022-08-30 11:49
LICENSE
1.06
KB
-rw-rw-r--
2022-08-30 11:49
Makefile
1.23
KB
-rw-rw-r--
2022-08-30 11:49
README.md
5.97
KB
-rw-rw-r--
2022-08-30 11:49
index.d.ts
239
B
-rw-rw-r--
2022-08-30 11:49
index.js
1.13
KB
-rw-rw-r--
2022-08-30 11:49
notes.md
1.14
KB
-rw-rw-r--
2022-08-30 11:49
package.json
1.23
KB
-rw-rw-r--
2022-08-30 11:49
Save
Rename
MAKEFLAGS += --warn-undefined-variables PATH := node_modules/.bin:$(PATH) SHELL := /bin/bash .SHELLFLAGS := -eu -o pipefail -c .DEFAULT_GOAL := all .DELETE_ON_ERROR: .SUFFIXES: TEST ?= node version ?= patch node_modules: package.json @npm prune @npm install @touch node_modules .PHONY: clean clean: @$(RM) -fr node_modules @$(RM) -fr npm-debug.log @$(RM) -fr coverage .PHONY: fmt fmt: node_modules @standard-format -w .PHONY: lint lint: node_modules @standard .PHONY: test test: lint @if [ "$(TEST)" = "browser" ]; \ then make test-browser; \ else make test-node; \ fi .PHONY: test-node test-node: node_modules tape test/index.js .PHONY: test-browser test-browser: node_modules ifeq ($(TRAVIS_PULL_REQUEST),true) zuul -- test/index.js endif .PHONY: zuul zuul: node_modules zuul --local 8080 --ui tape -- test/index.js .PHONY: release release: test npm version $(version) git push && git push --tags npm publish .PHONY: coverage coverage: node_modules index.js test/index.js node_modules @istanbul cover --report html --print detail ./test/index.js @touch coverage .PHONY: coveralls coveralls: node_modules coverage @istanbul report lcov (cat coverage/lcov.info | coveralls) || exit 0 .PHONY: travis travis: test coveralls