build(deps): bump @babel/parser and @babel/types
This commit is contained in:
parent
9fd66d8edc
commit
3e4c3ac66d
@ -34,8 +34,8 @@
|
||||
"vue": "3.0.7"
|
||||
},
|
||||
"dependencies": {
|
||||
"@babel/parser": "^7.12.0",
|
||||
"@babel/types": "^7.12.0",
|
||||
"@babel/parser": "^7.13.9",
|
||||
"@babel/types": "^7.13.0",
|
||||
"@vue/compiler-core": "3.0.7",
|
||||
"@vue/compiler-dom": "3.0.7",
|
||||
"@vue/compiler-ssr": "3.0.7",
|
||||
|
@ -1485,7 +1485,10 @@ function isFunction(node: Node): node is FunctionNode {
|
||||
return /Function(?:Expression|Declaration)$|Method$/.test(node.type)
|
||||
}
|
||||
|
||||
function isCallOf(node: Node | null, name: string): node is CallExpression {
|
||||
function isCallOf(
|
||||
node: Node | null | undefined,
|
||||
name: string
|
||||
): node is CallExpression {
|
||||
return !!(
|
||||
node &&
|
||||
node.type === 'CallExpression' &&
|
||||
|
Loading…
Reference in New Issue
Block a user