-
Notifications
You must be signed in to change notification settings - Fork 0
Open
Labels
Description
1. /\S*([\s\S]*)|\S+/g
- PASS "1px solid rgba(10, 10, 10, 1)"
=> ["1px", "solid", "rgba(10, 10, 10, 1)"] - FAIL "rgba(10, 10, 10, 0.5) rgba(10, 10, 10, 1) test 10"
=> Expected ["rgba(10, 10, 10, 0.5)", "rgba(10, 10, 10,1)", "test", "10"]
=> Result ["rgba(10, 10, 10, 0.5) rgba(10, 10, 10 1)", "test", "10"]
text in one or more parentheses => error
2./(\S*([^\)])|(\S+(\s,\s*))|\S+)+/g
-
PASS "1px solid rgba(10, 10, 10, 1)"
=> ["1px", "solid", "rgba(10, 10, 10, 1)"] -
PASS "rgba(10, 10, 10, 0.5) rgba(10, 10, 10, 1) test 10"
=> ["rgba(10, 10, 10, 0.5)", "rgba(10, 10, 10,1)", "test", "10"] -
FAIL "gradient(rgba(10, 10, 10, 0.5) rgba(10, 10, 10, 1) test 10)"
=> Expected ["gradient(rgba(10, 10, 10, 0.5) rgba(10, 10, 10, 1) test 10)"]
=> Result ["gradient(rgba(10, 10, 10, 0.5)", "rgba(10, 10, 10, 1) test 10)"]