UNPKG

lasso-require

Version:

Lasso.js plugin to support Node.js style module require in the browser

9 lines 226 B
module.exports = { id: __filename, stream: false, createTransform(transformConfig) { return function myTransform(code, lassoContext) { return code.replace(/hello/g, 'HELLO'); }; } };