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

Function asciiSlice

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

Source from the content-addressed store, hash-verified

1114 }
1115
1116 function asciiSlice (buf, start, end) {
1117 var ret = ''
1118 end = Math.min(buf.length, end)
1119
1120 for (var i = start; i < end; ++i) {
1121 ret += String.fromCharCode(buf[i] & 0x7F)
1122 }
1123 return ret
1124 }
1125
1126 function latin1Slice (buf, start, end) {
1127 var ret = ''

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…