Skip to content

Commit

Permalink
2023-09-18T14:37:21.281Z
Browse files Browse the repository at this point in the history
  • Loading branch information
mattpocock committed Sep 18, 2023
1 parent 62aabac commit bbd60c8
Show file tree
Hide file tree
Showing 4 changed files with 29 additions and 0 deletions.
Original file line number Diff line number Diff line change
@@ -0,0 +1,12 @@
{
"name": "117-const-enums.explainer",
"version": "1.0.0",
"description": "",
"main": "index.js",
"scripts": {
"dev": "nodemon ./src/index.mjs"
},
"keywords": [],
"author": "Matt Pocock",
"devDependencies": {}
}

Some generated files are not rendered by default. Learn more about how customized files appear on GitHub.

Original file line number Diff line number Diff line change
@@ -0,0 +1,5 @@
const hello = () => {
console.log("Hello!");
};

module.exports = hello;
Original file line number Diff line number Diff line change
@@ -0,0 +1,7 @@
import hello from "./cjs-module.cjs";

const main = async () => {
hello();
};

main();

0 comments on commit bbd60c8

Please sign in to comment.