Liuj

Results 1 comments of Liuj

> @Envek > > ```js > function stringToUtf16Raw(text) { > let out = []; > out.push(String.fromCharCode(254)); > out.push(String.fromCharCode(255)); > for (let c of text) { > c = c.charCodeAt(0); >...