MCPcopy Index your code
hub / github.com/dataease/SQLBot / codePointAt

Function codePointAt

frontend/public/swagger-ui-bundle.js:34083–34093  ·  view source on GitHub ↗
(s, o)

Source from the content-addressed store, hash-verified

34081 (58 === o && u)
34082 )
34083 }
34084 function codePointAt(s, o) {
34085 var i,
34086 a = s.charCodeAt(o)
34087 return a >= 55296 &&
34088 a <= 56319 &&
34089 o + 1 < s.length &&
34090 (i = s.charCodeAt(o + 1)) >= 56320 &&
34091 i <= 57343
34092 ? 1024 * (a - 55296) + i - 56320 + 65536
34093 : a
34094 }
34095 function needIndentIndicator(s) {
34096 return /^\n* /.test(s)

Callers 2

chooseScalarStyleFunction · 0.85
writeScalarFunction · 0.85

Calls

no outgoing calls

Tested by

no test coverage detected