Module

x/lodash_es/mod.ts>trimStart

lodash for deno use
Latest
function trimStart
import { trimStart } from "https://dotland.deno.dev/x/lodash_es@v0.0.2/mod.ts";

Removes leading whitespace or specified characters from string.

Examples

_.trimStart(' abc '); // => 'abc '

.trimStart('--abc--', '-'); // => 'abc-_-'

Parameters

string
chars
guard