├── .gitignore ├── Makefile ├── README.md ├── SUMMARY.md ├── a-bit-of-theory.md ├── book.json ├── book.pdf ├── cover.jpg ├── cover_small.jpg ├── functional-languages-targeting-javascript.md ├── introduction.md ├── meet-eslint.md ├── monads-monoids-and-functors.md ├── roots-of-the-evil.md ├── styles └── pdf.css ├── types.md └── welcome-to-fantasy-land.md /.gitignore: -------------------------------------------------------------------------------- 1 | _book 2 | -------------------------------------------------------------------------------- /Makefile: -------------------------------------------------------------------------------- 1 | pdf: 2 | gitbook pdf 3 | -------------------------------------------------------------------------------- /README.md: -------------------------------------------------------------------------------- 1 | ![Pragmatic Functional JavaScript](./cover.jpg) 2 | 3 | 4 | 5 | -------------------------------------------------------------------------------- /SUMMARY.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/haskellcamargo/pragmatic-functional-javascript/HEAD/SUMMARY.md -------------------------------------------------------------------------------- /a-bit-of-theory.md: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /book.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/haskellcamargo/pragmatic-functional-javascript/HEAD/book.json -------------------------------------------------------------------------------- /book.pdf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/haskellcamargo/pragmatic-functional-javascript/HEAD/book.pdf -------------------------------------------------------------------------------- /cover.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/haskellcamargo/pragmatic-functional-javascript/HEAD/cover.jpg -------------------------------------------------------------------------------- /cover_small.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/haskellcamargo/pragmatic-functional-javascript/HEAD/cover_small.jpg -------------------------------------------------------------------------------- /functional-languages-targeting-javascript.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/haskellcamargo/pragmatic-functional-javascript/HEAD/functional-languages-targeting-javascript.md -------------------------------------------------------------------------------- /introduction.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/haskellcamargo/pragmatic-functional-javascript/HEAD/introduction.md -------------------------------------------------------------------------------- /meet-eslint.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/haskellcamargo/pragmatic-functional-javascript/HEAD/meet-eslint.md -------------------------------------------------------------------------------- /monads-monoids-and-functors.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/haskellcamargo/pragmatic-functional-javascript/HEAD/monads-monoids-and-functors.md -------------------------------------------------------------------------------- /roots-of-the-evil.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/haskellcamargo/pragmatic-functional-javascript/HEAD/roots-of-the-evil.md -------------------------------------------------------------------------------- /styles/pdf.css: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/haskellcamargo/pragmatic-functional-javascript/HEAD/styles/pdf.css -------------------------------------------------------------------------------- /types.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/haskellcamargo/pragmatic-functional-javascript/HEAD/types.md -------------------------------------------------------------------------------- /welcome-to-fantasy-land.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/haskellcamargo/pragmatic-functional-javascript/HEAD/welcome-to-fantasy-land.md --------------------------------------------------------------------------------