printstack
v1.0.7
Published
Extends the console commands to log out the file name and line number for easier debugging in a functional enviroment
Downloads
2
Readme
$ npm i printstack
var Stack = require('printstack');
Stack.PrintStack();
//File: <The File Name>
//Line Number: <Line Number>
//or
Stack.PrintStack("This is a comment that will show up.");
//File: <The File Name>
//Line Number: <Line Number>
//This is a comment that will show up.