mirror of
https://github.com/TryGhost/Ghost.git
synced 2025-02-03 23:00:14 -05:00
7 lines
No EOL
182 B
JavaScript
7 lines
No EOL
182 B
JavaScript
import count from 'ghost/utils/word-count';
|
|
|
|
var countWords = Ember.Handlebars.makeBoundHelper(function (markdown) {
|
|
return count(markdown || '');
|
|
});
|
|
|
|
export default countWords; |