(chore) rename function

This commit is contained in:
Kim Biesbjerg
2019-09-16 16:54:24 +02:00
parent 75ee2bdfda
commit ab2b78eaec
2 changed files with 3 additions and 3 deletions

View File

@@ -72,7 +72,7 @@ export function findFunctionCallExpressions(node: Node, fnName: string | string[
return nodes;
}
export function findMethodCallExpression(node: Node, prop: string, fnName: string | string[]): CallExpression[] {
export function findMethodCallExpressions(node: Node, prop: string, fnName: string | string[]): CallExpression[] {
if (Array.isArray(fnName)) {
fnName = fnName.join('|');
}