mirror of
https://github.com/swc-project/swc.git
synced 2024-12-19 03:31:45 +03:00
ea6beaa06d
swc_ecma_codegen: - Fix codegen of unicode escapes. (denoland/deno#8541) swc_bundler: - Allow importing a module multiple time. (denoland/deno#8530)
9 lines
252 B
TypeScript
9 lines
252 B
TypeScript
import Head from "https://deno.land/x/aleph/head.ts"
|
|
import * as Head2 from "https://deno.land/x/aleph/head.ts"
|
|
console.log(Head, Head2);
|
|
if (typeof Head !== 'function') {
|
|
throw new Error()
|
|
}
|
|
if (typeof Head2 !== 'object') {
|
|
throw new Error()
|
|
} |