mirror of
https://github.com/cp6/my-idlers.git
synced 2025-04-21 02:28:35 +00:00
11 lines
256 B
JavaScript
11 lines
256 B
JavaScript
var Marker = require('../../../tokenizer/marker');
|
|
|
|
function isMergeableShorthand(shorthand) {
|
|
if (shorthand.name != 'font') {
|
|
return true;
|
|
}
|
|
|
|
return shorthand.value[0][1].indexOf(Marker.INTERNAL) == -1;
|
|
}
|
|
|
|
module.exports = isMergeableShorthand;
|