[][src]Function boa::builtins::string::pad_end

pub fn pad_end(
    this: &Value,
    args: &[Value],
    ctx: &mut Interpreter
) -> ResultValue

String.prototype.padEnd ( maxLength [ , fillString ] )

Pads the string with the given filler at the end of the string. Filler defaults to single space. https://tc39.es/ecma262/#sec-string.prototype.padend/