MCPcopy Create free account
hub / github.com/CoderLine/alphaTab / stringToBytes

Method stringToBytes

packages/alphatab/src/io/IOHelper.ts:177–180  ·  view source on GitHub ↗
(str: string)

Source from the content-addressed store, hash-verified

175 }
176
177 public static stringToBytes(str: string): Uint8Array {
178 const decoder: TextEncoder = new TextEncoder();
179 return decoder.encode(str);
180 }
181
182 public static writeInt32BE(o: IWriteable, v: number) {
183 o.writeByte((v >> 24) & 0xff);

Callers 8

writeToMethod · 0.80
gpWriteStringMethod · 0.80
writeEntryMethod · 0.80
fromStringMethod · 0.80
writeScoreMethod · 0.80
writeScoreMethod · 0.80

Calls 1

encodeMethod · 0.95

Tested by

no test coverage detected