Skip to content

Commit e567bb2

Browse files
committed
Add repo description
1 parent ea96ebf commit e567bb2

File tree

2 files changed

+4
-1
lines changed

2 files changed

+4
-1
lines changed

JavaScript/2-functional-good.js

Lines changed: 1 addition & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -34,6 +34,7 @@ const parseTable = lines => lines.map(line => line.split(','));
3434
const toLines = data => data.split('\n').filter((s, i) => i && s);
3535
const readFile = file => fs.readFileSync(file).toString();
3636
const getDataset = compose(readFile, toLines, parseTable);
37+
3738
const main = compose(getDataset, sortByDensity, calcProportion, renderTable);
3839

3940
console.log(main('./cities.dat'));

README.md

Lines changed: 3 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,3 +1,5 @@
11
# Abstractions
22

3-
Programming is abstract thinking
3+
Programming with any paradigm is an abstractions so here we will collect
4+
code examples for different paradigms to illustrate good and bad practices
5+
in building abstractions.

0 commit comments

Comments
 (0)