HOME


Mini Shell 1.0
Redirecting to https://devs.lapieza.net/iniciar-sesion Redirecting to https://devs.lapieza.net/iniciar-sesion.
DIR: /proc/1784574/root/usr/share/doc/node-cache-base/examples/
Upload File :
Current File : //proc/1784574/root/usr/share/doc/node-cache-base/examples/set.js
const Cache = require('..');
const app = new Cache();

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);