Skip to main content
Deno 2 is finally here 🎉️
Learn more
Module

x/deno/std/strings/mod.ts>pad

A modern runtime for JavaScript and TypeScript.
Go to Latest
function pad
import { pad } from "https://deno.land/x/deno@v0.28.0/std/strings/mod.ts";

Pad helper for strings. Input string is processed to output a string with a minimal length. If the parameter strict is set to true, the output string length is equal to the strLen parameter. Example:

pad("deno", 6, { char: "*", side: "left" }) // output : "**deno"
pad("deno", 6, { char: "*", side: "right"}) // output : "deno**"
pad("denosorusrex", 6 {
  char: "*",
  side: "left",
  strict: true,
  strictSide: "right",
  strictChar: "..."
}) // output : "den..."

Parameters

input: string

Input string

strLen: number

Output string lenght

optional
opts: FillOption = [UNSUPPORTED]

Configuration object

Returns

string