mirror of
https://github.com/oven-sh/bun
synced 2026-02-15 05:12:29 +00:00
[autofix.ci] apply automated fixes
This commit is contained in:
@@ -189,7 +189,7 @@ type Defines = Record<string, string>;
|
||||
cc({
|
||||
source: "hello.c",
|
||||
define: {
|
||||
"NDEBUG": "1",
|
||||
NDEBUG: "1",
|
||||
},
|
||||
});
|
||||
```
|
||||
|
||||
@@ -834,7 +834,7 @@ const response = await fetch("s3://my-bucket/my-file.txt", {
|
||||
endpoint: "https://s3.us-east-1.amazonaws.com",
|
||||
},
|
||||
headers: {
|
||||
"range": "bytes=0-1023",
|
||||
range: "bytes=0-1023",
|
||||
},
|
||||
});
|
||||
```
|
||||
|
||||
@@ -98,7 +98,7 @@ notStrict
|
||||
You can also use an import attribute to load a database.
|
||||
|
||||
```ts
|
||||
import db from "./mydb.sqlite" with { "type": "sqlite" };
|
||||
import db from "./mydb.sqlite" with { type: "sqlite" };
|
||||
|
||||
console.log(db.query("select * from users LIMIT 1").get());
|
||||
```
|
||||
|
||||
Reference in New Issue
Block a user