├── .gitignore ├── README.md ├── index.js ├── monoid.js ├── package.json └── spotify.js /.gitignore: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DrBoolean/spotify-fp-example/HEAD/.gitignore -------------------------------------------------------------------------------- /README.md: -------------------------------------------------------------------------------- 1 | # spotify-fp-example 2 | Egghead.io lesson 3 | -------------------------------------------------------------------------------- /index.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DrBoolean/spotify-fp-example/HEAD/index.js -------------------------------------------------------------------------------- /monoid.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DrBoolean/spotify-fp-example/HEAD/monoid.js -------------------------------------------------------------------------------- /package.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DrBoolean/spotify-fp-example/HEAD/package.json -------------------------------------------------------------------------------- /spotify.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DrBoolean/spotify-fp-example/HEAD/spotify.js --------------------------------------------------------------------------------