(token)
| 1599 | }; |
| 1600 | |
| 1601 | var isLength = function (token) { |
| 1602 | return token.type === 17 /* NUMBER_TOKEN */ || token.type === 15 /* DIMENSION_TOKEN */; |
| 1603 | }; |
| 1604 | |
| 1605 | var isLengthPercentage = function (token) { |
| 1606 | return token.type === 16 /* PERCENTAGE_TOKEN */ || isLength(token); |
no outgoing calls
no test coverage detected
searching dependent graphs…