MCPcopy Create free account
hub / github.com/microsoft/SandDance / asciiWrite

Function asciiWrite

docs/app/js/sanddance-app.js:113405–113407  ·  view source on GitHub ↗
(buf, string, offset, length)

Source from the content-addressed store, hash-verified

113403 return blitBuffer(utf8ToBytes(string, buf.length - offset), buf, offset, length);
113404}
113405function asciiWrite(buf, string, offset, length) {
113406 return blitBuffer(asciiToBytes(string), buf, offset, length);
113407}
113408function base64Write(buf, string, offset, length) {
113409 return blitBuffer(base64ToBytes(string), buf, offset, length);
113410}

Callers 1

sanddance-app.jsFile · 0.70

Calls 2

blitBufferFunction · 0.70
asciiToBytesFunction · 0.70

Tested by

no test coverage detected