mirror of
https://github.com/denoland/deno.git
synced 2024-11-25 15:29:32 -05:00
a8d1ab5276
Using `--allow-all` with other `--allow-x` permission flags should cause an error since `--allow-all` is a superset of `--allow-x`. Closes #25901
3 lines
77 B
TypeScript
3 lines
77 B
TypeScript
import { add } from "http://localhost:4545/add.ts";
|
|
|
|
console.log(add(1, 2));
|