MCPcopy Index your code
hub / github.com/codrops/RainEffect / getEntry

Function getEntry

demo/js/main.js:239–247  ·  view source on GitHub ↗
(that, key)

Source from the content-addressed store, hash-verified

237};
238
239var getEntry = function(that, key){
240 // fast case
241 var index = fastKey(key), entry;
242 if(index !== 'F')return that._i[index];
243 // frozen object case
244 for(entry = that._f; entry; entry = entry.n){
245 if(entry.k == key)return entry;
246 }
247};
248
249module.exports = {
250 getConstructor: function(wrapper, NAME, IS_MAP, ADDER){

Callers 1

main.jsFile · 0.70

Calls 1

fastKeyFunction · 0.70

Tested by

no test coverage detected