diff options
author | 2021-09-23 19:20:33 -0700 | |
---|---|---|
committer | 2021-09-23 19:20:33 -0700 | |
commit | 638b204d1ee38003e7ae1c8d1e3571003964ed30 (patch) | |
tree | 6a391752d015cd8fbee658f3c806493e4e934763 /src/runtime.footer.js | |
parent | 58e88c4aed433c0570947d51a7525e69e44f0247 (diff) | |
download | bun-638b204d1ee38003e7ae1c8d1e3571003964ed30.tar.gz bun-638b204d1ee38003e7ae1c8d1e3571003964ed30.tar.zst bun-638b204d1ee38003e7ae1c8d1e3571003964ed30.zip |
Add __exportValue and __exportDefault to runtime
Diffstat (limited to 'src/runtime.footer.js')
-rw-r--r-- | src/runtime.footer.js | 4 |
1 files changed, 4 insertions, 0 deletions
diff --git a/src/runtime.footer.js b/src/runtime.footer.js index 0394a6624..5f2773159 100644 --- a/src/runtime.footer.js +++ b/src/runtime.footer.js @@ -16,4 +16,8 @@ export var __export = BUN_RUNTIME.__export; export var __reExport = BUN_RUNTIME.__reExport; export var __cJS2eSM = BUN_RUNTIME.__cJS2eSM; export var regeneratorRuntime = BUN_RUNTIME.regeneratorRuntime; +export var __exportValue = BUN_RUNTIME.__exportValue; +export var __exportDefault = BUN_RUNTIME.__exportDefault; +export var $$bun_runtime_json_parse = JSON.parse; + globalThis.require ||= BUN_RUNTIME.__require; |