(input, pos)
| 551 | * @returns {number} position of the next `{`, or EOF if none |
| 552 | */ |
| 553 | const findLeftCurly = (input, pos) => { |
| 554 | while (pos < input.length) { |
| 555 | if (input.charCodeAt(pos) === CC_LEFT_CURLY) return pos; |
| 556 | pos++; |
| 557 | } |
| 558 | return pos; |
| 559 | }; |
| 560 | |
| 561 | /** |
| 562 | * Defines the css parser own options type used by this module. |