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
Some Filters were created at a time when Stencil didn't support filter parameters yet.
As a result, we have some filters that have been duplicated to allow some variations, but now that Stencil filters support parameters, these duplications can be removed and changed to a filter parameter instead.
One typical example is filters StringFilters.snakeToCamelCase + StringFilters.snakeToCamelCaseNoPrefix that can be unified to a single StringFilters.snakeToCamelCase filter with a parameter (prefix: Bool)
The text was updated successfully, but these errors were encountered:
Some Filters were created at a time when Stencil didn't support filter parameters yet.
As a result, we have some filters that have been duplicated to allow some variations, but now that Stencil filters support parameters, these duplications can be removed and changed to a filter parameter instead.
One typical example is filters
StringFilters.snakeToCamelCase
+StringFilters.snakeToCamelCaseNoPrefix
that can be unified to a singleStringFilters.snakeToCamelCase
filter with a parameter (prefix: Bool
)The text was updated successfully, but these errors were encountered: