UNPKG

183 BJavaScriptView Raw
1var annotate = require('./dist/annotate');
2
3module.exports = {
4 annotate: function (container, out) {
5 out.write(JSON.stringify(annotate(container)));
6 out.write('\n');
7 }
8};