MCPcopy Create free account
hub / github.com/nwutils/nw-sample-apps / parseString

Function parseString

webgl/js/three.min.js:7028–7042  ·  view source on GitHub ↗
( data, offset, length )

Source from the content-addressed store, hash-verified

7026 };
7027
7028 function parseString( data, offset, length ) {
7029
7030 var charArray = new Uint8Array( data, offset, length );
7031
7032 var text = "";
7033
7034 for ( var i = 0; i < length; i ++ ) {
7035
7036 text += String.fromCharCode( charArray[ offset + i ] );
7037
7038 }
7039
7040 return text;
7041
7042 };
7043
7044 function parseUChar8( data, offset ) {
7045

Callers 1

parseMetaDataFunction · 0.85

Calls

no outgoing calls

Tested by

no test coverage detected