8000 stop intentionally crashing · sdemjanenko/sentry-javascript@f39f1c2 · GitHub
[go: up one dir, main page]

Skip to content

Commit f39f1c2

Browse files
committed
stop intentionally crashing
1 parent 71327c0 commit f39f1c2

File tree

1 file changed

+1
-1
lines changed

1 file changed

+1
-1
lines changed

packages/utils/src/object.ts

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -28,7 +28,7 @@ export function fill(source: { [key: string]: any }, name: string, replacementFa
2828
const original = source[name] as () => any;
2929
const wrapped = replacementFactory(original) as WrappedFunction;
3030
console.log(`just created wrapped function for ${source}.${name}`);
31-
process.exit(26);
31+
// process.exit(26);
3232

3333
// Make sure it's a function first, as we need to attach an empty prototype for `defineProperties` to work
3434
// otherwise it'll throw "TypeError: Object.defineProperties called on non-object"

0 commit comments

Comments
 (0)
0