我想编写一个模板函数来在 JsCodeShift 中创建新变量。
任何人都有一个想法如何?或者一些更好的文档?
根据this ,我尝试了下面的代码。
const j = api.jscodeshift;
let test = j.variableDeclaration('let',
j.variableDeclarator(
j.identifier('test'),
null
)
);
但我得到了错误
Error: {id: [object Object], init: null, loc: null, type: VariableDeclarator,
comments: null} does not match field "declarations": [VariableDeclarator |
Identifier] of type VariableDeclaration
干杯詹斯