lastIndexOf
ts
function String.lastIndexOf(target: string, source: string): numberReturns the index of the last occurrence of source string in target string, or -1 if not found.
Example
ts
import { String } from "@monstermann/string";
String.lastIndexOf("hello world hello", "hello"); // 12ts
import { String } from "@monstermann/string";
pipe("hello world hello", String.lastIndexOf("hello")); // 12