UNPKG
@itper/css-shorthand-expand
Version:
latest (1.2.0)
1.2.0
Expand CSS shorthand properties
github.com/kapetan/css-shorthand-expand
kapetan/css-shorthand-expand
@itper/css-shorthand-expand
/
source
/
is-length.js
7 lines
(5 loc)
•
218 B
JavaScript
View Raw
1
2
3
4
5
6
7
var
LENGTH
=
/^(\+|-)?([0-9]*\.)?[0-9]+(em|ex|rpx|ch|rem|vh|vw|vmin|vmax|px|mm|cm|in|pt|pc|%)$/i
;
var
ZERO
=
/^(\+|-)?(0*\.)?0+$/
;
module
.
exports
=
function
(
value
) {
return
LENGTH
.
test
(value) ||
ZERO
.
test
(value); };