blob: 1be001183c0ba3424290006ee2f1e650ce94890c [file] [log] [blame]
'use strict';
const lengthArray = [
'PX',
'IN',
'CM',
'MM',
'EM',
'REM',
'POINTS',
'PC',
'EX',
'CH',
'VW',
'VH',
'VMIN',
'VMAX',
'%',
];
function isCSSLengthUnit(unit) {
return lengthArray.indexOf(unit.toUpperCase()) >= 0;
}
module.exports = isCSSLengthUnit;