├── .gitignore ├── es6.js ├── package.json └── test ├── data.json ├── introduction.js ├── mocha.opts ├── square-code-challenge.js └── square-code-solution.js /.gitignore: -------------------------------------------------------------------------------- 1 | .tern-port 2 | node_modules 3 | -------------------------------------------------------------------------------- /es6.js: -------------------------------------------------------------------------------- 1 | require('babel/register')({ 2 | extensions: ['.js'], 3 | ignore: /node_modules/ 4 | }); 5 | -------------------------------------------------------------------------------- /package.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bobpace/ramda-demo/HEAD/package.json -------------------------------------------------------------------------------- /test/data.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bobpace/ramda-demo/HEAD/test/data.json -------------------------------------------------------------------------------- /test/introduction.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bobpace/ramda-demo/HEAD/test/introduction.js -------------------------------------------------------------------------------- /test/mocha.opts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bobpace/ramda-demo/HEAD/test/mocha.opts -------------------------------------------------------------------------------- /test/square-code-challenge.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bobpace/ramda-demo/HEAD/test/square-code-challenge.js -------------------------------------------------------------------------------- /test/square-code-solution.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bobpace/ramda-demo/HEAD/test/square-code-solution.js --------------------------------------------------------------------------------