Skip to content

Commit

Permalink
init
Browse files Browse the repository at this point in the history
  • Loading branch information
1kevgriff committed Dec 27, 2018
1 parent 7bdb026 commit 3d4bf9c
Show file tree
Hide file tree
Showing 4 changed files with 22 additions and 3 deletions.
4 changes: 2 additions & 2 deletions index.js
Original file line number Diff line number Diff line change
@@ -1,11 +1,11 @@
var fileCounter = (function (){
return {
count: () => {
console.log("How the heck should I know?");
console.log("Test!");
}
}
})();

export default fileCounter;
module.exports = fileCounter;


13 changes: 13 additions & 0 deletions package-lock.json

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

6 changes: 5 additions & 1 deletion package.json
Original file line number Diff line number Diff line change
Expand Up @@ -7,5 +7,9 @@
"test": "echo \"Error: no test specified\" && exit 1"
},
"author": "Kevin Griffin",
"license": "ISC"
"license": "ISC",
"dependencies": {
"moment": "^2.23.0"
}
}

2 changes: 2 additions & 0 deletions test.js
Original file line number Diff line number Diff line change
@@ -0,0 +1,2 @@
var counter = require('./index');
counter.count();

0 comments on commit 3d4bf9c

Please sign in to comment.