-
-
Notifications
You must be signed in to change notification settings - Fork 1.7k
Closed
Description
Occurs in master branch, 5390681 due to the code from PR #261:
} else if (isObject(module)) {
// browserify
module.exports = Raven;
} else if (isObject(exports)) {
// CommonJS
exports = Raven;
}
To fix, it should be replaced with:
} else if (isObject(window.module)) {
// browserify
module.exports = Raven;
} else if (isObject(window.exports)) {
// CommonJS
exports = Raven;
}
Metadata
Metadata
Assignees
Labels
No labels