2023-09-07 08:09:16 -05:00
|
|
|
import data1 from "./data.json" with { type: "json" };
|
2024-06-05 00:09:29 +01:00
|
|
|
// deno-lint-ignore no-import-assertions
|
2023-09-07 08:09:16 -05:00
|
|
|
import data2 from "./data.json" assert { type: "json" };
|
|
|
|
|
|
|
|
console.log(data1);
|
|
|
|
console.log(data2);
|