Skip to content

Latest commit

 

History

History
92 lines (46 loc) · 1.15 KB

File metadata and controls

92 lines (46 loc) · 1.15 KB
hide_title true
custom_edit_url
pagination_prev
pagination_next

Home > @rushstack/node-core-library > Text > padStart

Text.padStart() method

Append characters to the start of a string to ensure the result has a minimum length.

Signature:

static padStart(s: string, minimumLength: number, paddingCharacter?: string): string;

Parameters

Parameter

Type

Description

s

string

minimumLength

number

paddingCharacter

string

(Optional)

Returns:

string

Remarks

If the string length already exceeds the minimum length, then the string is unchanged. The string is not truncated.