mirror of
https://github.com/denoland/deno.git
synced 2025-09-26 20:29:11 +00:00

Closes #29650. Currently passing `--platform=browser` does two things: - makes us prefer the `"browser"` key in package json over module and main - makes us prefer the `"browser"` export condition but we may add more things in the future
3 lines
98 B
TypeScript
3 lines
98 B
TypeScript
import * as mod from "npm:@denotest/browser-export-condition";
|
|
|
|
console.log(Object.keys(mod)[0]);
|