1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
| module.exports = function compressFontWeight(node) {
| var value = node.children.head.data;
|
| if (value.type === 'Identifier') {
| switch (value.name) {
| case 'normal':
| node.children.head.data = {
| type: 'Number',
| loc: value.loc,
| value: '400'
| };
| break;
| case 'bold':
| node.children.head.data = {
| type: 'Number',
| loc: value.loc,
| value: '700'
| };
| break;
| }
| }
| };
|
|