split
Divides an input string into an array using the argument as a separator and is commonly used to convert comma-separated items from a string to an array.
Input
-
{{ 'apple, banana' | split: ', ' }}
Output
-
[ 'apple', 'banana' ]