You can not select more than 25 topics Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.

11 lines
256 B

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