mirror of
https://github.com/Sevichecc/Urara-Blog.git
synced 2025-05-04 11:09:30 +08:00
14 lines
262 B
Text
14 lines
262 B
Text
'use strict';
|
|
/**
|
|
* @param {string} value
|
|
* @return {string}
|
|
*/
|
|
module.exports = function (value) {
|
|
const lowerCasedValue = value.toLowerCase();
|
|
|
|
return lowerCasedValue === 'normal'
|
|
? '400'
|
|
: lowerCasedValue === 'bold'
|
|
? '700'
|
|
: value;
|
|
};
|