UNPKG
minimalist-notation
Version:
latest (1.11.21)
1.11.21
1.11.20
1.11.19
1.11.18
1.11.17
1.11.16
1.11.15
1.11.14
1.11.13
1.11.12
Minimalist Notation
github.com/mr-amirka/minimalist-notation
mr-amirka/minimalist-notation
minimalist-notation
/
isInvalidSelector.js
7 lines
(5 loc)
•
236 B
JavaScript
View Raw
1
2
3
4
5
6
7
const
regexpInvalid =
/\.[[\]#.*^$()><+~=|:,"'`\s@%\!\/0-9]/g
;
const
regexpInQuotesAndEscaped =
/("[^"]*"|'[^']*'|\\.)/g
;
module
.
exports
=
(
selector
) =>
{
return
regexpInvalid.
test
(selector.
replace
(regexpInQuotesAndEscaped,
''
)); };