Appearance
String.drop(target, amount)
Removes the first amount characters from target string.
amount
target
import { String } from "@monstermann/string"; String.drop("hello world", 6); // "world"
import { String } from "@monstermann/string"; pipe("hello world", String.drop(6)); // "world"