I had this: ``` javascript caplinx.motf.motfticket.FooBootstrap = { // ... }; ``` which got converted into ``` javascript FooBootstrap = { // .. }: module.exports = FooBootstrap; ``` There's a `var` missing basically. Or potentially it could convert it into: ``` javascript module.exports = { // ... }; ```
I had this:
which got converted into
There's a
varmissing basically. Or potentially it could convert it into: