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.217.80
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 CacheBase = require('..'); const app = new CacheBase(); app.set('foo', 'xxx'); app.default('foo', 'one'); app.default('bar', 'two'); app.default('baz', 'three'); app.set('baz', 'zzz'); console.log(app.get('foo')); //=> 'xxx' console.log(app.get('bar')); //=> 'two' console.log(app.get('baz')); //=> 'zzz' console.log(app); // Cache { // cache: { foo: 'xxx', bar: 'two', baz: 'zzz' }, // defaults: { foo: 'one', bar: 'two', baz: 'three' } }