helpers / handlebars-helpers

188 handlebars helpers in ~20 categories. Can be used with Assemble, Ghost, YUI, express.js etc.
http://assemble.io/helpers/
MIT License
2.22k stars 364 forks source link

truncateWords helper not working #344

Open laurenhamel opened 5 years ago

laurenhamel commented 5 years ago

I'm attempting to use the truncateWords helper, but it's failing to truncate a block of text. It looks like the culprit is this line in the helper's definition:

if (num > arr.length) { ... }

My assumption is that it should read < instead of >.

doowb commented 5 years ago

I think you're right, thanks for opening the issue.

Would you like to submit a PR with the fix? If so, if you add some tests like the truncate tests that would be really helpful.