pyrae-alex
Results
1
comments of
pyrae-alex
Using CJS vs ESM style exports fixed this issue for me. E.g ```javascript export const handler = function() {} ``` refactored to ```javascript const handler = function() {} module.exports =...