@yandex/ui
Version:
Yandex UI components
8 lines (7 loc) • 358 B
JavaScript
/**
* Проверяем: является ли переданный Identifier тем, что нам нужно (valueIdentifier)
* @abstract https://github.com/estree/estree/blob/master/es5.md#identifier
*/
module.exports.isSpecificIdentifier = (arg, valueIdentifier) =>{
return (arg.type === 'Identifier') && arg.name.includes(valueIdentifier);
};