mirror of
https://github.com/bendtherules/chart-builder-demo.git
synced 2026-08-18 13:42:05 +00:00
10 lines
286 B
JavaScript
10 lines
286 B
JavaScript
var app = angular.module("chart-builder.filters",[]);
|
|
|
|
app.filter("sentencecase", function () {
|
|
return function (strToUse) {
|
|
if (typeof(strToUse) === "string"){
|
|
strToUse = strToUse[0].toUpperCase() + strToUse.slice(1);
|
|
}
|
|
return strToUse;
|
|
};
|
|
}); |