has
ts
function String.has(target: string, source: string): booleanChecks if target string contains source string.
Example
ts
import { String } from "@monstermann/string";
String.has("hello world", "world"); // truets
import { String } from "@monstermann/string";
pipe("hello world", String.has("world")); // true