Skip to content

Latest commit

 

History

History
20 lines (12 loc) · 743 Bytes

README.md

File metadata and controls

20 lines (12 loc) · 743 Bytes

#Separator Build Status Analytics

Log separators to your console and what-not

ns = require('separator');

ns.separator('=').log(); // logs a string of ='s to the console => ==========...


ns.separator('+=', 13).log(); // logs to the console, exactly => +=+=+=+=+=+=+

// Make it thicker,
ns.separator('-', 6, 5).log();  // => ------
                                //    ------
                                //    ------


ns.separator('-', 6).get();     // generates the string => '------'