Open villesau opened 1 year ago
AST explorer is (most?) often used when building jscodeshift codemods. Would be great if the tool supported something like this:
input: a => b output:
a => b
j.arrowFunctionExpression( [j.identifier('a')], j.identifier('b') )
This would speed up the development of jscodeshift codemods enormously.
now you can use AI to do this work. such as chatGPT or theb.ai
AST explorer is (most?) often used when building jscodeshift codemods. Would be great if the tool supported something like this:
input:
a => b
output:This would speed up the development of jscodeshift codemods enormously.