Linux v69820.1blu.de 4.15.0 #1 SMP Mon Sep 30 15:36:27 MSK 2024 x86_64
Apache/2.4.58
Server IP : 195.90.215.149 & Your IP : 216.73.216.250
Domains :
Cant Read [ /etc/named.conf ]
User : www-data
Terminal
Auto Root
Create File
Create Folder
Localroot Suggester
Backdoor Destroyer
Readme
/
usr /
share /
doc /
node-cache-base /
examples /
Delete
Unzip
Name
Size
Permission
Date
Action
clear.js
495
B
-rw-r--r--
2021-11-06 22:18
custom-prop.js
361
B
-rw-r--r--
2021-11-06 22:18
defaults.js
455
B
-rw-r--r--
2021-11-06 22:18
del.js
353
B
-rw-r--r--
2021-11-06 22:18
merge.js
660
B
-rw-r--r--
2021-11-06 22:18
set.js
308
B
-rw-r--r--
2021-11-06 22:18
Save
Rename
const Cache = require('..'); const app = new Cache('data'); app.set('a', 'b'); app.set({ c: 'd' }); app.set('e.f', 'g') console.log(app.get('e.f')); //=> 'g' console.log(app.get()); //=> { a: 'b', c: 'd', e: { f: 'g' } } console.log(app.data); //=> { a: 'b', c: 'd', e: { f: 'g' } } console.log(app); //=> Cache { data: { a: 'b', c: 'd', e: { f: 'g' } } }