Inline Import Source Processor
process inline code
relative/absolute local js file
remote js file
import { foo } from './local.js';
console.log(foo);Content copied to clipboard// ./local.js
export const foo 'bar';Content copied to clipboardtransform to
const localJsExports = (function (exports = {}) {
const foo = "bar";
exports.foo = foo;
return exports;
})()
const foo = localJsExports.foo;Content copied to clipboard