Son CV dans un terminal web en Javascript! https://terminal-cv.gregandev.fr
You can not select more than 25 topics Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.

12 lines
251 B

1 year ago
export * from "module";
export * as m from "module";
export {name} from "module";
export {a as b, c as d} from "module";
let e, g;
export {e as f, g as h};
export {};
export default i = 42;
export var j = 42;
export let k = 42;
export function l() {}