Ecco() function not working in Kirby 3

Is there a simple replacement for the ecco() function in the new Kirby 3? I use it a few places on my site to do class changes based on specific parameters and it’s very clean, but seems to not be working with the new version.

Here is the code I’m currently using, but there are several others throughout my site:

<h3 class="dark <?php ecco($page->title()->length() > '50', 'small') ?><?php ecco($page->title()->length() > '100', 'est') ?>">

Thanks for any advice!

I think you’re looking for the (former shorthand) e(): https://getkirby.com/docs/reference/templates/helpers/e

That’s it. Works great now. Thanks!!