UNPKG

@liara/cli

Version:

The command line interface for Liara

9 lines (8 loc) 283 B
export default function spacing(maxLength, value) { const inputLength = value.toString().length; return inputLength === 1 ? ' '.repeat(maxLength) : inputLength === maxLength ? ' '.repeat(1) : ' '.repeat(maxLength + 1 - inputLength); }