mail/src/styleguide/helpers/strip-file-extension.js

11 lines
262 B
JavaScript
Raw Normal View History

'use strict';
module.exports.register = function(Handlebars) {
2015-01-24 07:52:29 -05:00
// Customize this helper
Handlebars.registerHelper('stripFileExtension', function(str) {
var content = str.replace(/\.[^\.]*$/, '');
return new Handlebars.SafeString(content);
});
};