Files
2026-04-13 08:19:53 +08:00

8 lines
168 B
JavaScript

import { toString } from '../util/toString.mjs';
function padEnd(str, length = 0, chars = ' ') {
return toString(str).padEnd(length, chars);
}
export { padEnd };