(input, pos, onComment)
| 2032 | * @returns {TokenStream} the stream to consume from |
| 2033 | */ |
| 2034 | const normalizeIntoTokenStream = (input, pos, onComment) => |
| 2035 | input instanceof TokenStream |
| 2036 | ? input |
| 2037 | : new TokenStream(input, pos || 0, new LocConverter(input), onComment); |
| 2038 | |
| 2039 | // === Parser entry points (CSS Syntax Level 3 §5.3) === |
| 2040 | // Each `parseA*` is a thin public wrapper over a `consumeA*` algorithm |
no outgoing calls
no test coverage detected