This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
| ├── bin => Contains the scripts of your project | |
| │ └── resources => any resources needed for the scripts | |
| ├── docs => Contains documentation and future aspects about your project | |
| ├── CONTRIBUTING.md => Contains information how to contribute code, bugs, documentation etc. | |
| ├── etc => Add configuration files under this directory | |
| │ └── imdb-xplorer.cfg => Configuration file | |
| ├── LICENSE => Add license for your project | |
| ├── lib => Contains any scripts that are included in the scripts in bin | |
| ├── README.md => Contains how to install, test and use your project | |
| ├── setup.sh => install the project on your machine |
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
| /** | |
| * Console-polyfill. MIT license. | |
| * Modified from https://github.com/paulmillr/console-polyfill | |
| * Make it safe to do console.log() always. | |
| */ | |
| (function(con) { | |
| var dummy = con.log || function() {} | |
| for (var methods = "assert,count,debug,dir,dirxml,error,exception,group,groupCollapsed,groupEnd,info,log,markTimeline,profile,profileEnd,time,timeEnd,trace,warn".split(","), func; | |
| (func = methods.pop()) !== undefined;) { | |
| con[func] = con[func] || dummy; |