mirror of
https://github.com/mickael-kerjean/filestash
synced 2025-12-06 08:22:24 +01:00
10 lines
153 B
JavaScript
10 lines
153 B
JavaScript
// export function test(){
|
|
// return 'aaaa';
|
|
// }
|
|
|
|
|
|
function cube(x) {
|
|
return x * x * x;
|
|
}
|
|
const foo = Math.PI + Math.SQRT2;
|
|
export { cube, foo };
|