Skip to content

Commit

Permalink
tesssts
Browse files Browse the repository at this point in the history
  • Loading branch information
MylesBorins committed Aug 6, 2020
1 parent a99395d commit bd359c5
Show file tree
Hide file tree
Showing 5 changed files with 896 additions and 4 deletions.
8 changes: 8 additions & 0 deletions .eslintrc.yml
@@ -0,0 +1,8 @@
env:
es2020: true
node: true
extends: 'eslint:recommended'
parserOptions:
ecmaVersion: 11
sourceType: module
rules: {}
2 changes: 1 addition & 1 deletion index.js
Expand Up @@ -11,7 +11,7 @@ function random (range) {
}

function greet () {
console.log(greetings[random(greetings.length)]);
return greetings[random(greetings.length)];
}

export {
Expand Down

0 comments on commit bd359c5

Please sign in to comment.