0
Fork 0
mirror of https://github.com/TryGhost/Ghost.git synced 2025-01-06 22:40:14 -05:00
ghost/core/client/helpers/gh-count-words.js
2014-05-28 15:26:16 -04:00

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;