Appearance
take(target, amount)
Takes the first amount characters from target string.
amount
target
take("hello world", 5); // "hello"
pipe("hello world", take(5)); // "hello"