Viewing File: /htdocs/atito2/node_modules/postcss-minify-font-values/src/lib/minify-weight.js

'use strict';
/**
 * @param {string} value
 * @return {string}
 */
module.exports = function (value) {
  const lowerCasedValue = value.toLowerCase();

  return lowerCasedValue === 'normal'
    ? '400'
    : lowerCasedValue === 'bold'
    ? '700'
    : value;
};
Back to Directory File Manager