You cannot select more than 25 topics Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.

14 lines
241 B
TypeScript

import { parse } from "../mod.ts";
const start = performance.now();
console.log(parse(
`
import * as a from "./a.ts";
`,
{
syntax: "ecmascript",
},
));
const end = performance.now() - start;
console.log(`parse time: ${end}ms`);