Skip to content

Commit

Permalink
Add files via upload
Browse files Browse the repository at this point in the history
  • Loading branch information
byteshiva committed Mar 24, 2019
1 parent 48e2777 commit 9b09bc3
Show file tree
Hide file tree
Showing 3 changed files with 18 additions and 2 deletions.
2 changes: 1 addition & 1 deletion functionalprogramming/day184/funcday184/index.js
Original file line number Diff line number Diff line change
Expand Up @@ -14,7 +14,7 @@ var students = [
{name: 'Dora', score: 92},
]

const rreduceby1 = reduceBy(groupNames, [], toGrade, students)
const rreduceby1 = R.reduceBy(groupNames, [], toGrade, students)
//=> {"A": ["Dora"], "B": ["Abby", "Curt"], "F": ["Bart"]}

console.log(rreduceby1);
13 changes: 13 additions & 0 deletions functionalprogramming/day184/funcday184/package-lock.json

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

5 changes: 4 additions & 1 deletion functionalprogramming/day184/funcday184/package.json
Original file line number Diff line number Diff line change
Expand Up @@ -8,5 +8,8 @@
},
"keywords": [],
"author": "",
"license": "ISC"
"license": "ISC",
"dependencies": {
"ramda": "^0.26.1"
}
}

0 comments on commit 9b09bc3

Please sign in to comment.