8000 feat: add bun support by DjDeveloperr · Pull Request #47 · denosaurs/deno_python · GitHub
[go: up one dir, main page]

Skip to content

feat: add bun support #47

New issue

Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.

By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.

Already on GitHub? Sign in to your account

Merged
merged 15 commits into from
Sep 21, 2023
Prev Previous commit
Next Next commit
fmt
  • Loading branch information
DjDeveloperr committed Sep 12, 2023
commit 9be0a71e86d03848d6cf20cea3a7eb41fcef93fd
2 changes: 1 addition & 1 deletion src/bun_compat.js
Original file line number Diff line number Diff line change
@@ -1,4 +1,4 @@
import {type} from "node:os";
import { type } from "node:os";

if (!("Deno" in globalThis) && "Bun" in globalThis) {
const { dlopen, FFIType, CString, JSCallback, ptr } = await import("bun:ffi");
Expand Down
0