UNPKG

arquero

Version:

Query processing and transformation of array-backed data tables.

6 lines (5 loc) 164 B
export function pad(value, width, char = '0') { const s = value + ''; const len = s.length; return len < width ? Array(width - len + 1).join(char) + s : s; }