overrides-non-component-shorthand.js 359 B

123456789
  1. var configuration = require('../../configuration');
  2. function overridesNonComponentShorthand(property1, property2) {
  3. return property1.name in configuration
  4. && 'overridesShorthands' in configuration[property1.name]
  5. && configuration[property1.name].overridesShorthands.indexOf(property2.name) > -1;
  6. }
  7. module.exports = overridesNonComponentShorthand;