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 365 forks source link

to fix truncateWords function not work properly #408

Open VijaytParmar opened 2 years ago

VijaytParmar commented 2 years ago

In String's truncateWords function there is a one mistake of > instead of < in if condition, That's why trucateWords not work properly

if(num > arr.length) => This will not work properly This will slice array if word count is greater than total number of words, which is wrong

instead,

if(num < arr.lenght) => this will work properly This will slice array if word count is less than total number of words, which is right

and now trucateWords work properly