magic-string-ast
v0.6.3
Published
magic-string with Babel AST shortcut.
Downloads
2,722,503
Readme
magic-string-ast
magic-string with Babel AST shortcut.
Install
# npm
npm i magic-string-ast
# jsr
npx jsr add -D @sxzz/magic-string-ast
Usage
import { MagicStringAST } from 'magic-string-ast'
const offset = 0
const node = {
// AST node from @babel/parser
start: 6,
end: 7,
// ...
}
const s = new MagicStringAST('const a = 1')
s.sliceNode(node, { offset }) // 'a'
s.removeNode(node)
s.moveNode(node, 0)
s.overwriteNode(node, 'foo')
For more APIs, see docs and magic-string.