You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
$0.debugMatches('(my-range: 100)') // expecting false as the value 100 is outside the custom rangetrue
But it logs true. In the debugger, I can see that queryValue >= myCustomRange.min && queryValue <= myCustomRange.max is false, but the overal function returns true. What am I misunderstanding?
Thanks!
The text was updated successfully, but these errors were encountered:
Hi, and thanks for this nice looking library!!!
I am trying to get familiar with how to set it up to use custom / unknown media features and I wonder if you could tell me what I'm doing wrong.
I have the following code:
When I run the function:
But it logs true. In the debugger, I can see that
queryValue >= myCustomRange.min && queryValue <= myCustomRange.max
is false, but the overal function returns true. What am I misunderstanding?Thanks!
The text was updated successfully, but these errors were encountered: