source: frontend/node_modules/clean-css/lib/optimizer/level-2/properties/overrides-non-component-shorthand.js

Last change on this file was 9af201e, checked in by MBK <marija.karapandzova@…>, 2 weeks ago

Fix frontend appearance

  • Property mode set to 100644
File size: 359 bytes
Line 
1var configuration = require('../../configuration');
2
3function overridesNonComponentShorthand(property1, property2) {
4 return property1.name in configuration
5 && 'overridesShorthands' in configuration[property1.name]
6 && configuration[property1.name].overridesShorthands.indexOf(property2.name) > -1;
7}
8
9module.exports = overridesNonComponentShorthand;
Note: See TracBrowser for help on using the repository browser.