source: imaps-frontend/node_modules/clean-css/lib/optimizer/level-2/properties/overrides-non-component-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: 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.