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 : 52.14.238.102
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
var parser = require('js-yaml') var optionalByteOrderMark = '\\ufeff?' var pattern = '^(' + optionalByteOrderMark + '(= yaml =|---)' + '$([\\s\\S]*?)' + '^(?:\\2|\\.\\.\\.)' + '$' + (process.platform === 'win32' ? '\\r?' : '') + '(?:\\n)?)' // NOTE: If this pattern uses the 'g' flag the `regex` variable definition will // need to be moved down into the functions that use it. var regex = new RegExp(pattern, 'm') module.exports = extractor module.exports.test = test function extractor (string) { string = string || '' var lines = string.split(/(\r?\n)/) if (lines[0] && /= yaml =|---/.test(lines[0])) { return parse(string) } else { return { attributes: {}, body: string } } } function parse (string) { var match = regex.exec(string) if (!match) { return { attributes: {}, body: string } } var yaml = match[match.length - 1].replace(/^\s+|\s+$/g, '') var attributes = parser.load(yaml) || {} var body = string.replace(match[0], '') return { attributes: attributes, body: body, frontmatter: yaml } } function test (string) { string = string || '' return regex.test(string) }