Skip to content

drop

drop(target, amount)

Removes the first amount characters from target string.

ts
drop("hello world", 6); // "world"
ts
pipe("hello world", drop(6)); // "world"