set basic layout. adding status bar
This commit is contained in:
12
node_modules/bower/lib/templates/helpers/rpad.js
generated
vendored
Normal file
12
node_modules/bower/lib/templates/helpers/rpad.js
generated
vendored
Normal file
@@ -0,0 +1,12 @@
|
||||
var mout = require('mout');
|
||||
|
||||
function rpad(Handlebars) {
|
||||
Handlebars.registerHelper('rpad', function(context) {
|
||||
var hash = context.hash;
|
||||
var minLength = parseInt(hash.minLength, 10);
|
||||
var chr = hash.char;
|
||||
return mout.string.rpad(context.fn(this), minLength, chr);
|
||||
});
|
||||
}
|
||||
|
||||
module.exports = rpad;
|
||||
Reference in New Issue
Block a user