# left-pad Created by [@theoludwig](https://github.com/theoludwig) on 21 May 2023. ## Instructions Create a function that pads the current string with another string (multiple times, if needed) until the resulting string reaches the given length. The padding is applied from the start (left) of the current string. Inspired from [left-pad (JavaScript npm package)](https://www.npmjs.com/package/left-pad). ### Input - **Line 1:** The current string - **Line 2:** The length of the resulting string - **Line 3:** The string to pad the current string with ## Examples See the `test` folder for examples of input/output. ### Example 1 #### Input ```txt foo 12 - ``` #### Output ```txt ---------foo ```