Tips and tricks
How to convert AMD exports to ES6 imports in IDE via regex
your favorite editor should support regex find and replace
enter in find
exports.(.*?) = function
enter in replace
export function $1
your favorite editor should support regex find and replace
enter in find
exports.(.*?) = function
enter in replace
export function $1