techprotrade's picture
Add aimoneyflow directory (part 10)
13971d4 verified
Raw
History Blame Contribute Delete
213 Bytes
'use strict'
let Stringifier = require('./stringifier')
function stringify(node, builder) {
let str = new Stringifier(builder)
str.stringify(node)
}
module.exports = stringify
stringify.default = stringify