npm.io
0.1.2 • Published 12 years ago

rocambole-commafirst

Licence
MIT
Version
0.1.2
Deps
2
Vulns
0
Weekly
0
Stars
4

Transforms your code, converting comma last to comma first.

Install with npm i rocambole-commafirst

var commafirst = require('rocambole-commafirst')
  , rocambole = require('rocambole')

var source = fs.readFileSync('path/to/js/file.js').toString()

var ast = rocambole.parse(source)

commafirst.transform(ast)

ast.toString() // is your transformed source

// OR

rocambole.moonwalk(ast, commafirst)

Keywords