diff options
author | 2022-07-02 01:30:20 -0700 | |
---|---|---|
committer | 2022-07-02 01:36:04 -0700 | |
commit | b995e7797d8d2ece9fe2f68eb0b29908a733356d (patch) | |
tree | 4a4e4a43e033d9425e78c8e58b9c133b33db33cc | |
parent | 69b32a01c44bf95a88df1e4b49ef13d1ba002cf7 (diff) | |
download | bun-b995e7797d8d2ece9fe2f68eb0b29908a733356d.tar.gz bun-b995e7797d8d2ece9fe2f68eb0b29908a733356d.tar.zst bun-b995e7797d8d2ece9fe2f68eb0b29908a733356d.zip |
[bun:jsc] Add export for `getProtectedObjects`
-rw-r--r-- | src/bun.js/bun-jsc.exports.js | 1 |
1 files changed, 1 insertions, 0 deletions
diff --git a/src/bun.js/bun-jsc.exports.js b/src/bun.js/bun-jsc.exports.js index d94f69197..77c7ecb26 100644 --- a/src/bun.js/bun-jsc.exports.js +++ b/src/bun.js/bun-jsc.exports.js @@ -21,5 +21,6 @@ export const reoptimizationRetryCount = jsc.reoptimizationRetryCount; export const setRandomSeed = jsc.setRandomSeed; export const startRemoteDebugger = jsc.startRemoteDebugger; export const totalCompileTime = jsc.totalCompileTime; +export const getProtectedObjects = jsc.getProtectedObjects; export default jsc; |