UNPKG

eslint-plugin-unicorn

Version:
11 lines (10 loc) 296 B
export default function isObjectMethod(node, object, method) { const {callee} = node; return ( callee.type === 'MemberExpression' && callee.object.type === 'Identifier' && callee.object.name === object && callee.property.type === 'Identifier' && callee.property.name === method ); }