MCPcopy
hub / github.com/mobxjs/mobx / utf8Write

Function utf8Write

docs/assets/getting-started-assets/javascripts/JSXTransformer.js:910–918  ·  view source on GitHub ↗
(buf, string, offset, length)

Source from the content-addressed store, hash-verified

908 }
909
910 function utf8Write(buf, string, offset, length) {
911 var charsWritten = blitBuffer(
912 utf8ToBytes(string, buf.length - offset),
913 buf,
914 offset,
915 length
916 )
917 return charsWritten
918 }
919
920 function asciiWrite(buf, string, offset, length) {
921 var charsWritten = blitBuffer(asciiToBytes(string), buf, offset, length)

Callers 1

JSXTransformer.jsFile · 0.85

Calls 2

blitBufferFunction · 0.85
utf8ToBytesFunction · 0.85

Tested by

no test coverage detected

Used in the wild real call sites across dependent graphs

searching dependent graphs…