Files
dss.web/client/app/helpers/file.js
Fergal Moran d2c529bafe Screw you git!
2015-12-01 19:50:20 +00:00

9 lines
181 B
JavaScript

var helpers = helpers || {};
helpers.humanise = {
getExtension: function (filename) {
var parts = filename.split('.');
return parts[parts.length - 1];
}
};