UNPKG

react-saasify-chrisvxd

Version:

React components for Saasify web clients.

26 lines (22 loc) 294 B
'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;