UNPKG
@ichong/px-to-viewport
Version:
latest (1.0.2)
1.0.2
1.0.1
1.0.0
A CSS post-processor that converts px to viewport units (vw, vh, vmin, vmax)
@ichong/px-to-viewport
/
src
/
pixel-unit-regexp.js
7 lines
(6 loc)
•
170 B
JavaScript
View Raw
1
2
3
4
5
6
7
function getUnitRegexp(unit) {
return
new
RegExp
('
"[^"
]
+
"|
\'
[^
\'
]+
\'
|url
\\
([^
\\
)]+
\\
)|(
\\
d*
\\
.?
\\
d+)' + unit, 'g'); } module.exports = { getUnitRegexp };