mirror of
https://github.com/cp6/my-idlers.git
synced 2025-04-21 02:28:35 +00:00
9 lines
359 B
JavaScript
9 lines
359 B
JavaScript
var configuration = require('../../configuration');
|
|
|
|
function overridesNonComponentShorthand(property1, property2) {
|
|
return property1.name in configuration &&
|
|
'overridesShorthands' in configuration[property1.name] &&
|
|
configuration[property1.name].overridesShorthands.indexOf(property2.name) > -1;
|
|
}
|
|
|
|
module.exports = overridesNonComponentShorthand;
|