Skip to content

Commit 5e23da2

Browse files
committedMay 31, 2019
chore: remove trivial type
1 parent a89645a commit 5e23da2

File tree

1 file changed

+1
-1
lines changed

1 file changed

+1
-1
lines changed
 

‎packages/utils/ast-utils.ts

+1-1
Original file line numberDiff line numberDiff line change
@@ -3,7 +3,7 @@ import * as validateIdentifier from "./validate-identifier";
33

44

55
function isImportPresent (j: JSCodeshift, ast: Node, path: string): boolean {
6-
let isPresent: boolean = false;
6+
let isPresent = false;
77
ast.find(j.CallExpression).forEach(callExp => {
88
if ((callExp.value as Node).callee.name === 'require' && (callExp.value as Node).arguments[0].value === path) {
99
isPresent = true;

0 commit comments

Comments
 (0)
Please sign in to comment.