1var Marker = require('../../../tokenizer/marker');
2
3function isMergeableShorthand(shorthand) {
4  if (shorthand.name != 'font') {
5    return true;
6  }
7
8  return shorthand.value[0][1].indexOf(Marker.INTERNAL) == -1;
9}
10
11module.exports = isMergeableShorthand;
12