MCPcopy
hub / github.com/CodeboxIDE/codebox / isWhitespace

Function isWhitespace

core/cb.addons/require-tools/less/lessc.js:145–149  ·  view source on GitHub ↗
(c)

Source from the content-addressed store, hash-verified

143 }
144 }
145 function isWhitespace(c) {
146 // Could change to \s?
147 var code = c.charCodeAt(0);
148 return code === 32 || code === 10 || code === 9;
149 }
150 //
151 // Parse from a token, regexp or string, and move forward if match
152 //

Callers 2

skipWhitespaceFunction · 0.85
lessc.jsFile · 0.85

Calls

no outgoing calls

Tested by

no test coverage detected