Use string interpolation

This commit is contained in:
Aya Morisawa 2018-09-01 23:12:51 +09:00
parent ffb345ccb5
commit 291beb45fc
No known key found for this signature in database
GPG key ID: 3E64865D70D579F2
40 changed files with 53 additions and 53 deletions

View file

@ -26,7 +26,7 @@ export const replacement = (match: string, key: string) => {
arg == 'B' ? 'fab' :
'';
} else if (arg.startsWith('.')) {
classes.push('fa-' + arg.substr(1));
classes.push(`fa-${arg.substr(1)}`);
} else if (arg.startsWith('-')) {
transform = arg.substr(1).split('|').join(' ');
} else {