MCPcopy Index your code
hub / github.com/nodejs/node / isToken

Function isToken

deps/undici/undici.js:6662–6666  ·  view source on GitHub ↗
(char)

Source from the content-addressed store, hash-verified

6660 }
6661 __name(isTSpecial, "isTSpecial");
6662 function isToken(char) {
6663 return char <= 127 && // ascii
6664 char !== 32 && // space
6665 char !== 9 && !isCTL(char) && !isTSpecial(char);
6666 }
6667 __name(isToken, "isToken");
6668 module2.exports = {
6669 multipartFormDataParser,

Callers 2

Calls 2

isCTLFunction · 0.70
isTSpecialFunction · 0.70

Tested by

no test coverage detected