diff options
author | DjDeveloper <43033058+DjDeveloperr@users.noreply.github.com> | 2022-01-12 17:08:26 +0530 |
---|---|---|
committer | GitHub <noreply@github.com> | 2022-01-12 12:38:26 +0100 |
commit | 62291e9b0e99406ac7f5a95dc329400f9f966825 (patch) | |
tree | 94c0e151828539c52d48a4d3d92a1e0931fe21aa /runtime/js | |
parent | 79b698f88b5f8e247df7280ccb52c2a8271a426c (diff) |
feat(ext/ffi): UnsafeFnPointer API (#13340)
Diffstat (limited to 'runtime/js')
-rw-r--r-- | runtime/js/90_deno_ns.js | 1 |
1 files changed, 1 insertions, 0 deletions
diff --git a/runtime/js/90_deno_ns.js b/runtime/js/90_deno_ns.js index f7f518427..d93ea4c54 100644 --- a/runtime/js/90_deno_ns.js +++ b/runtime/js/90_deno_ns.js @@ -138,6 +138,7 @@ dlopen: __bootstrap.ffi.dlopen, UnsafePointer: __bootstrap.ffi.UnsafePointer, UnsafePointerView: __bootstrap.ffi.UnsafePointerView, + UnsafeFnPointer: __bootstrap.ffi.UnsafeFnPointer, flock: __bootstrap.fs.flock, flockSync: __bootstrap.fs.flockSync, funlock: __bootstrap.fs.funlock, |