From 06c4e96ad29ca7fb3cfbce3c80d2412e1947c846 Mon Sep 17 00:00:00 2001 From: ikun <13082063+ikun@user.noreply.gitee.com> Date: Mon, 26 Aug 2024 07:41:58 +0000 Subject: [PATCH] add util.js. Signed-off-by: ikun <13082063+ikun@user.noreply.gitee.com> --- util.js | 3 +++ 1 file changed, 3 insertions(+) create mode 100644 util.js diff --git a/util.js b/util.js new file mode 100644 index 0000000..438611a --- /dev/null +++ b/util.js @@ -0,0 +1,3 @@ +export function sum(n1, n2) { + return n1 + n2; +} \ No newline at end of file -- Gitee