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

Function isPrintable

frontend/public/swagger-ui-bundle.js:34061–34068  ·  view source on GitHub ↗
(s)

Source from the content-addressed store, hash-verified

34059 function isWhitespace(s) {
34060 return 32 === s || 9 === s
34061 }
34062 function isPrintable(s) {
34063 return (
34064 (32 <= s && s <= 126) ||
34065 (161 <= s && s <= 55295 && 8232 !== s && 8233 !== s) ||
34066 (57344 <= s && s <= 65533 && s !== Kr) ||
34067 (65536 <= s && s <= 1114111)
34068 )
34069 }
34070 function isNsCharOrWhitespace(s) {
34071 return isPrintable(s) && s !== Kr && 13 !== s && 10 !== s

Callers 3

isNsCharOrWhitespaceFunction · 0.85
chooseScalarStyleFunction · 0.85
writeScalarFunction · 0.85

Calls

no outgoing calls

Tested by

no test coverage detected