mirror of
https://github.com/mickael-kerjean/filestash.git
synced 2025-10-30 17:46:41 +08:00
11 lines
153 B
JavaScript
11 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 };
|