├── .gitignore ├── LICENSE.md ├── README.md ├── demo.js ├── index.js ├── log_table.js ├── package.json ├── screenshot.png └── test.js /.gitignore: -------------------------------------------------------------------------------- 1 | node_modules 2 | .DS_Store 3 | npm-debug.log 4 | -------------------------------------------------------------------------------- /LICENSE.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mohsen1/better-console/HEAD/LICENSE.md -------------------------------------------------------------------------------- /README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mohsen1/better-console/HEAD/README.md -------------------------------------------------------------------------------- /demo.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mohsen1/better-console/HEAD/demo.js -------------------------------------------------------------------------------- /index.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mohsen1/better-console/HEAD/index.js -------------------------------------------------------------------------------- /log_table.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mohsen1/better-console/HEAD/log_table.js -------------------------------------------------------------------------------- /package.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mohsen1/better-console/HEAD/package.json -------------------------------------------------------------------------------- /screenshot.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mohsen1/better-console/HEAD/screenshot.png -------------------------------------------------------------------------------- /test.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mohsen1/better-console/HEAD/test.js --------------------------------------------------------------------------------