UNPKG

lasso

Version:

Lasso.js is a build tool and runtime library for building and bundling all of the resources needed by a web application

10 lines (7 loc) 218 B
var Writer = require('./Writer'); function createWriter(writerImpl) { return new Writer(writerImpl); } exports.Writer = Writer; exports.fileWriter = require('./file-writer'); exports.createWriter = createWriter;