Home
last modified time | relevance | path

Searched refs:isBrOrWsOrPunctuatorNotDot (Results 1 - 1 of 1) sorted by relevance

/third_party/node/deps/cjs-module-lexer/
H A Dlexer.js1302 function isBrOrWsOrPunctuatorNotDot (c) { function
1307 return pos === 0 || isBrOrWsOrPunctuatorNotDot(source.charCodeAt(pos - 1));
1313 return source.startsWith(match, pos - match.length + 1) && (pos === 0 || isBrOrWsOrPunctuatorNotDot(source.charCodeAt(pos - match.length)));
1317 return source.charCodeAt(pos) === ch && (pos === 0 || isBrOrWsOrPunctuatorNotDot(source.charCodeAt(pos - 1)));

Completed in 2 milliseconds