MCPcopy Create free account
hub / github.com/GamerHack/GamerHack.github.io / str2array

Function str2array

restore/702/utils.js:113–121  ·  view source on GitHub ↗
(str, length, offset)

Source from the content-addressed store, hash-verified

111}
112
113function str2array(str, length, offset) {
114 if (offset === undefined)
115 offset = 0;
116 var a = new Array(length);
117 for (var i = 0; i < length; i++) {
118 a[i] = str.charCodeAt(i + offset);
119 }
120 return a;
121}

Callers 2

setupRWFunction · 0.70
leakJSCFunction · 0.70

Calls

no outgoing calls

Tested by

no test coverage detected