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.15.219.78
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 /
unique-stream /
Delete
Unzip
Name
Size
Permission
Date
Action
LICENSE
1.03
KB
-rw-rw-r--
2022-08-30 11:49
README.md
3.55
KB
-rw-rw-r--
2022-08-30 11:49
index.js
930
B
-rw-rw-r--
2022-08-30 11:49
package.json
716
B
-rw-rw-r--
2022-08-30 11:49
Save
Rename
'use strict'; var filter = require('through2-filter').obj; var stringify = require("json-stable-stringify-without-jsonify"); var ES6Set; if (typeof global.Set === 'function') { ES6Set = global.Set; } else { ES6Set = function() { this.keys = []; this.has = function(val) { return this.keys.indexOf(val) !== -1; }, this.add = function(val) { this.keys.push(val); } } } function prop(propName) { return function (data) { return data[propName]; }; } module.exports = unique; function unique(propName, keyStore) { keyStore = keyStore || new ES6Set(); var keyfn = stringify; if (typeof propName === 'string') { keyfn = prop(propName); } else if (typeof propName === 'function') { keyfn = propName; } return filter(function (data) { var key = keyfn(data); if (keyStore.has(key)) { return false; } keyStore.add(key); return true; }); }