You can not select more than 25 topics
Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.
28 lines
726 B
28 lines
726 B
/** |
|
* @fileoverview Utility functions for propWrapperFunctions setting |
|
*/ |
|
|
|
'use strict'; |
|
|
|
function getPropWrapperFunctions(context) { |
|
return new Set(context.settings.propWrapperFunctions || []); |
|
} |
|
|
|
function isPropWrapperFunction(context, name) { |
|
if (typeof name !== 'string') { |
|
return false; |
|
} |
|
const propWrapperFunctions = getPropWrapperFunctions(context); |
|
const splitName = name.split('.'); |
|
return Array.from(propWrapperFunctions).some((func) => { |
|
if (splitName.length === 2 && func.object === splitName[0] && func.property === splitName[1]) { |
|
return true; |
|
} |
|
return name === func || func.property === name; |
|
}); |
|
} |
|
|
|
module.exports = { |
|
getPropWrapperFunctions, |
|
isPropWrapperFunction |
|
};
|
|
|