Skip to content

sxzz/magic-string-ast

Repository files navigation

magic-string-ast npm JSR

Unit Test

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.

Sponsors

License

MIT License © 2023-PRESENT 三咲智子