UNPKG

eslint-plugin-unicorn

Version:
12 lines (11 loc) 293 B
'use strict'; module.exports = (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 ); };