Sign in
chromium
/
devtools
/
devtools-frontend
/
main
/
.
/
node_modules
/
postcss-minify-font-values
/
src
/
lib
/
minify-weight.js
blob: 5fd59313bf7b9f815c4b780b613f394320211e13 [
file
] [
log
] [
blame
]
'use strict'
;
/**
* @param {string} value
* @return {string}
*/
module
.
exports
=
function
(
value
)
{
const
lowerCasedValue
=
value
.
toLowerCase
();
return
lowerCasedValue
===
'normal'
?
'400'
:
lowerCasedValue
===
'bold'
?
'700'
:
value
;
};