Permalink
Name already in use
A tag already exists with the provided branch name. Many Git commands accept both tag and branch names, so creating this branch may cause unexpected behavior. Are you sure you want to create this branch?
codeql-action/node_modules/ajv/lib/cache.js
Go to fileThis commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
26 lines (16 sloc)
409 Bytes
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
'use strict'; | |
var Cache = module.exports = function Cache() { | |
this._cache = {}; | |
}; | |
Cache.prototype.put = function Cache_put(key, value) { | |
this._cache[key] = value; | |
}; | |
Cache.prototype.get = function Cache_get(key) { | |
return this._cache[key]; | |
}; | |
Cache.prototype.del = function Cache_del(key) { | |
delete this._cache[key]; | |
}; | |
Cache.prototype.clear = function Cache_clear() { | |
this._cache = {}; | |
}; |