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

Function latin1Slice

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

Source from the content-addressed store, hash-verified

1124 }
1125
1126 function latin1Slice (buf, start, end) {
1127 var ret = ''
1128 end = Math.min(buf.length, end)
1129
1130 for (var i = start; i < end; ++i) {
1131 ret += String.fromCharCode(buf[i])
1132 }
1133 return ret
1134 }
1135
1136 function hexSlice (buf, start, end) {
1137 var len = buf.length

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…