MCPcopy Create free account
hub / github.com/UI5/webcomponents / base64Slice

Function base64Slice

packages/main/test/pages/diffable-html.js:1012–1018  ·  view source on GitHub ↗
(buf, start, end)

Source from the content-addressed store, hash-verified

1010 }
1011
1012 function base64Slice (buf, start, end) {
1013 if (start === 0 && end === buf.length) {
1014 return base64.fromByteArray(buf)
1015 } else {
1016 return base64.fromByteArray(buf.slice(start, end))
1017 }
1018 }
1019
1020 function utf8Slice (buf, start, end) {
1021 end = Math.min(buf.length, end)

Callers 1

slowToStringFunction · 0.85

Calls

no outgoing calls

Tested by

no test coverage detected

Used in the wild real call sites across dependent graphs

searching dependent graphs…