You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
Locomotive provides a custom filter called concat. At the time it was implemented, this was a unique name.
Since then, Liquid has added its own filter called concat, which provides a way to join arrays. However, this new function cannot be accessed due to the conflict with the Locomotive version.
Being able to use Liquid's concat would be very useful, as it provides a way to combine multiple arrays into a single array, as opposed to the Locomotive version which appends the arguments as strings. From what I can tell, The functionality of Locomotive's concat can be achieved with join and append.
Would you consider removing the custom concat or providing a workaround so the vanilla concat can be accessed?
The text was updated successfully, but these errors were encountered:
Locomotive provides a custom filter called
concat
. At the time it was implemented, this was a unique name.Since then, Liquid has added its own filter called
concat
, which provides a way to join arrays. However, this new function cannot be accessed due to the conflict with the Locomotive version.Being able to use Liquid's
concat
would be very useful, as it provides a way to combine multiple arrays into a single array, as opposed to the Locomotive version which appends the arguments as strings. From what I can tell, The functionality of Locomotive'sconcat
can be achieved withjoin
andappend
.Would you consider removing the custom
concat
or providing a workaround so the vanillaconcat
can be accessed?The text was updated successfully, but these errors were encountered: