is-mergeable-shorthand.js 256 B

1234567891011
  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;