UNPKG

postcss-minify-font-values

Version:

Minify font declarations with PostCSS

15 lines (13 loc) 266 B
'use strict'; /** * @param {string} value * @return {string} */ module.exports = function (value) { const lowerCasedValue = value.toLowerCase(); return lowerCasedValue === 'normal' ? '400' : lowerCasedValue === 'bold' ? '700' : value; };