import { stripStart } from "https://deno.land/x/ayonli_jsext@v0.9.72/string/index.ts";
Removes the given prefix of the string if present.
Examples
Example 1
Example 1
import { stripStart } from "@ayonli/jsext/string";
console.log(stripStart("hello world", "hello")); // " world"
console.log(stripStart("hello world", "hi")); // "hello world"