├── .gitignore ├── .npmignore ├── LICENSE ├── README.md ├── example └── example.js ├── package.json └── triangle.js /.gitignore: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mikolalysenko/a-big-triangle/HEAD/.gitignore -------------------------------------------------------------------------------- /.npmignore: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mikolalysenko/a-big-triangle/HEAD/.npmignore -------------------------------------------------------------------------------- /LICENSE: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mikolalysenko/a-big-triangle/HEAD/LICENSE -------------------------------------------------------------------------------- /README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mikolalysenko/a-big-triangle/HEAD/README.md -------------------------------------------------------------------------------- /example/example.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mikolalysenko/a-big-triangle/HEAD/example/example.js -------------------------------------------------------------------------------- /package.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mikolalysenko/a-big-triangle/HEAD/package.json -------------------------------------------------------------------------------- /triangle.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mikolalysenko/a-big-triangle/HEAD/triangle.js --------------------------------------------------------------------------------