This repository has been archived on 2024-07-27. You can view files and clone it, but cannot push or open issues or pull requests.
keksAccountGUI/node_modulesOLD/is-color-stop/lib/isCSSLengthUnit.js

26 lines
294 B
JavaScript

'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;