UNPKG

tachyons-generator

Version:

Generate a custom Tachyons build with a json configuration

9 lines (6 loc) 174 B
const hasUnits = str => /(px|em|rem)$/.test(str) const withUnits = (str, unit = 'em') => hasUnits(str) ? str : `${str}${unit}` module.exports = { withUnits, hasUnits }