add "s" case-sensitivity flag
This commit is contained in:
parent
e1a369f283
commit
02716010d1
|
@ -4633,7 +4633,8 @@ self.parserlib = (() => {
|
||||||
this._ws();
|
this._ws();
|
||||||
|
|
||||||
if (stream.match([Tokens.IDENT])) {
|
if (stream.match([Tokens.IDENT])) {
|
||||||
if (lower(stream._token.value) === 'i') {
|
const caseMod = lower(stream._token.value);
|
||||||
|
if (caseMod === 'i' || caseMode === 's') {
|
||||||
value += stream._token.value +
|
value += stream._token.value +
|
||||||
this._ws();
|
this._ws();
|
||||||
} else {
|
} else {
|
||||||
|
|
Loading…
Reference in New Issue
Block a user