MCPcopy Create free account
hub / github.com/Code-Bullet/Jump-King / cacheKey

Function cacheKey

libraries/p5.js:30241–30253  ·  view source on GitHub ↗
()

Source from the content-addressed store, hash-verified

30239}
30240
30241function cacheKey() {
30242 var args = new Array(arguments.length);
30243 for (var i = 0; i < args.length; ++i) {
30244 args[i] = arguments[i];
30245 }
30246 i = args.length;
30247 var hash = '';
30248 while (i--) {
30249 hash += (args[i] === Object(args[i])) ?
30250 JSON.stringify(args[i]) : args[i];
30251 }
30252 return hash;
30253}
30254
30255module.exports = p5.Font;
30256

Callers 1

p5.jsFile · 0.85

Calls

no outgoing calls

Tested by

no test coverage detected