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 /
nodejs /
istanbul /
lib /
store /
Delete
Unzip
Name
Size
Permission
Date
Action
fslookup.js
1.5
KB
-rw-r--r--
2023-08-21 05:40
index.js
3.98
KB
-rw-r--r--
2023-08-21 05:40
memory.js
1.08
KB
-rw-r--r--
2023-08-21 05:40
tmp.js
2.04
KB
-rw-r--r--
2023-08-21 05:40
Save
Rename
/* Copyright (c) 2012, Yahoo! Inc. All rights reserved. Copyrights licensed under the New BSD License. See the accompanying LICENSE file for terms. */ var util = require('util'), Store = require('./index'); /** * a `Store` implementation using an in-memory object. * * Usage * ----- * * var store = require('istanbul').Store.create('memory'); * * * @class MemoryStore * @extends Store * @module store * @constructor */ function MemoryStore() { Store.call(this); this.map = {}; } MemoryStore.TYPE = 'memory'; util.inherits(MemoryStore, Store); Store.mix(MemoryStore, { set: function (key, contents) { this.map[key] = contents; }, get: function (key) { if (!this.hasKey(key)) { throw new Error('Unable to find entry for [' + key + ']'); } return this.map[key]; }, hasKey: function (key) { return this.map.hasOwnProperty(key); }, keys: function () { return Object.keys(this.map); }, dispose: function () { this.map = {}; } }); module.exports = MemoryStore;