"use strict";
// Add whitespace to the front of a string until it's at least numCharacters longfunctionpadString(s, numCharacters) {
let result = s;
while (result.length < numCharacters) {
result = ` ${result}`;
}
return result;
}
module.exports = {
padString
};