source: imaps-frontend/node_modules/clean-css/lib/optimizer/level-2/properties/is-mergeable-shorthand.js

main
Last change on this file was 79a0317, checked in by stefan toskovski <stefantoska84@…>, 5 days ago

F4 Finalna Verzija

  • Property mode set to 100644
File size: 256 bytes
Line 
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;
Note: See TracBrowser for help on using the repository browser.