UNPKG

277 BJavaScriptView Raw
1// Generated by CoffeeScript 2.0.2
2var pad;
3
4pad = require('./index');
5
6module.exports = function(string, size, options = {}) {
7 if (typeof options === 'string') {
8 options = {
9 char: options
10 };
11 }
12 options.colors = true;
13 return pad(string, size, options);
14};