utilsxo
Version:
A small, portable library full of utilities, functions, and neat tricks for your project/application
18 lines (16 loc) • 409 B
JavaScript
/**
* Created by Curtis Gervais on 4/16/2017.
* License: MIT
*
* @desc Test functions/dev functions, included but not recommended you use
*/
module.exports = {
section: function(count) {
var sep = '-',
sectionData = '';
for(var i = 0; i < count; i++) {
sectionData += sep;
}
console.log(sectionData);
}
};