Welcome to mirror list, hosted at ThFree Co, Russian Federation.

github.com/gohugoio/hugoTestModulesJS.git - Unnamed repository; edit this file 'description' to name the repository.
summaryrefslogtreecommitdiff
diff options
context:
space:
mode:
Diffstat (limited to 'mod2/assets/core/util/hello3.js')
-rw-r--r--mod2/assets/core/util/hello3.js5
1 files changed, 5 insertions, 0 deletions
diff --git a/mod2/assets/core/util/hello3.js b/mod2/assets/core/util/hello3.js
index deab5ba..8fa9b0f 100644
--- a/mod2/assets/core/util/hello3.js
+++ b/mod2/assets/core/util/hello3.js
@@ -1,6 +1,11 @@
import { format } from 'date-fns';
+import { hello5 } from './hello5';
export function hello3() {
let today = format(new Date(), "'Today is a' iiii");
return `Hello3 from mod2. Date from date-fns: ${today}`;
}
+
+export function hello6() {
+ return hello5();
+}