| FazBrowse GitHub Viewer | Trending | | Home |
| Tools: [Download Repo ZIP] [Original HTTPS Page] |
1 parent 7857604 commit cc8d705
1 file changed
| Original file line number | Diff line number | Diff line change | |
|---|---|---|---|
@@ -553,7 +553,7 @@ void InitializeContextRuntime(Local<Context> context) { | |||
| 553 | 553 | if (context->Global()->Get(context, intl_string).ToLocal(&intl_v) && | |
| 554 | 554 | intl_v->IsObject()) { | |
| 555 | 555 | Local<Object> intl = intl_v.As<Object>(); | |
| 556 | - intl->Delete(context, break_iter_string).FromJust(); | ||
| 556 | + intl->Delete(context, break_iter_string).Check(); | ||
| 557 | 557 | } | |
| 558 | 558 | ||
| 559 | 559 | // Delete `Atomics.wake` | |
@@ -564,7 +564,7 @@ void InitializeContextRuntime(Local<Context> context) { | |||
| 564 | 564 | if (context->Global()->Get(context, atomics_string).ToLocal(&atomics_v) && | |
| 565 | 565 | atomics_v->IsObject()) { | |
| 566 | 566 | Local<Object> atomics = atomics_v.As<Object>(); | |
| 567 | - atomics->Delete(context, wake_string).FromJust(); | ||
| 567 | + atomics->Delete(context, wake_string).Check(); | ||
| 568 | 568 | } | |
| 569 | 569 | ||
| 570 | 570 | // Remove __proto__ | |
| Back | FazBrowse Home | New Git URL |
0 commit comments