source: node_modules/es-toolkit/dist/compat/string/padStart.mjs

Last change on this file was a762898, checked in by istevanoska <ilinastevanoska@…>, 5 months ago

Added visualizations

  • Property mode set to 100644
File size: 174 bytes
Line 
1import { toString } from '../util/toString.mjs';
2
3function padStart(str, length = 0, chars = ' ') {
4 return toString(str).padStart(length, chars);
5}
6
7export { padStart };
Note: See TracBrowser for help on using the repository browser.