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

Function base64Write

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

Source from the content-addressed store, hash-verified

113406 return blitBuffer(asciiToBytes(string), buf, offset, length);
113407}
113408function base64Write(buf, string, offset, length) {
113409 return blitBuffer(base64ToBytes(string), buf, offset, length);
113410}
113411function ucs2Write(buf, string, offset, length) {
113412 return blitBuffer(utf16leToBytes(string, buf.length - offset), buf, offset, length);
113413}

Callers 1

sanddance-app.jsFile · 0.70

Calls 2

blitBufferFunction · 0.70
base64ToBytesFunction · 0.70

Tested by

no test coverage detected