├── .npmignore ├── LICENSE.txt ├── README.md ├── examples ├── hello_answers.js ├── stereotyping_fixed.js └── what_is_it.js ├── index.js └── package.json /.npmignore: -------------------------------------------------------------------------------- 1 | /examples 2 | -------------------------------------------------------------------------------- /LICENSE.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/towerofnix/why-do-kids-love-the-taste-of-cinnamon-toast-crunch/HEAD/LICENSE.txt -------------------------------------------------------------------------------- /README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/towerofnix/why-do-kids-love-the-taste-of-cinnamon-toast-crunch/HEAD/README.md -------------------------------------------------------------------------------- /examples/hello_answers.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/towerofnix/why-do-kids-love-the-taste-of-cinnamon-toast-crunch/HEAD/examples/hello_answers.js -------------------------------------------------------------------------------- /examples/stereotyping_fixed.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/towerofnix/why-do-kids-love-the-taste-of-cinnamon-toast-crunch/HEAD/examples/stereotyping_fixed.js -------------------------------------------------------------------------------- /examples/what_is_it.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/towerofnix/why-do-kids-love-the-taste-of-cinnamon-toast-crunch/HEAD/examples/what_is_it.js -------------------------------------------------------------------------------- /index.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/towerofnix/why-do-kids-love-the-taste-of-cinnamon-toast-crunch/HEAD/index.js -------------------------------------------------------------------------------- /package.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/towerofnix/why-do-kids-love-the-taste-of-cinnamon-toast-crunch/HEAD/package.json --------------------------------------------------------------------------------