|
export const normalizeAlign = (align) => {
|
43✔ |
|
if (align === 'center') { |
|
|
return 'centered'; |
1✔ |
4 |
} |
|
|
if (align === 'justify') { |
|
|
return 'justifyed'; |
× |
7 |
} |
|
|
return align;
|
4,296✔ |
9 |
}; |