mirror of
https://github.com/denoland/deno.git
synced 2025-08-04 02:48:24 +00:00
6 lines
241 B
TypeScript
6 lines
241 B
TypeScript
import defaultImport, * as namespaceImport from "npm:@denotest/cjs-module-export-assignment";
|
|
import { func } from "npm:@denotest/cjs-module-export-assignment";
|
|
|
|
console.log(defaultImport);
|
|
console.log(namespaceImport);
|
|
console.log(func());
|