easyappointments/assets/js/utils/string.min.js

1 line
219 B
JavaScript
Executable File

"use strict";window.App.Utils.String=function(){return{upperCaseFirstLetter:function(value){return value.charAt(0).toUpperCase()+value.slice(1)},escapeHtml:function(content){return $("<div/>").text(content).html()}}}();