mirror of
https://github.com/swc-project/swc.git
synced 2024-12-19 11:42:13 +03:00
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()
|
||
|
}
|