⚝
One Hat Cyber Team
⚝
Your IP:
216.73.216.1
Server IP:
185.238.29.86
Server:
Linux server2 6.8.12-6-pve #1 SMP PREEMPT_DYNAMIC PMX 6.8.12-6 (2024-12-19T19:05Z) x86_64
Server Software:
nginx/1.18.0
PHP Version:
8.1.31
Buat File
|
Buat Folder
Eksekusi
Dir :
~
/
var
/
www
/
invoice
/
node_modules
/
fstream
/
lib
/
View File Name :
get-type.js
module.exports = getType function getType (st) { var types = [ 'Directory', 'File', 'SymbolicLink', 'Link', // special for hardlinks from tarballs 'BlockDevice', 'CharacterDevice', 'FIFO', 'Socket' ] var type if (st.type && types.indexOf(st.type) !== -1) { st[st.type] = true return st.type } for (var i = 0, l = types.length; i < l; i++) { type = types[i] var is = st[type] || st['is' + type] if (typeof is === 'function') is = is.call(st) if (is) { st[type] = true st.type = type return type } } return null }