You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
/** * Append or preprend a character to a string * * @param {String} str * @param {Integer} limit * @param {String} char * @param {Boolean} [insertAfter] * * @return {String} * */// Examplepad("1",3,"0")// -> "001"
template(string, obj)
/** * Interpolate string with the object * * @param {String} string * @param {Object} obj * * @returns {String} * */// Exampletemplate('Hello ${name} !',{name: 'John'})// -> "Hello John !"
trimWhiteSpace(str)
/** * Remove white spaces at the beginning and at the end of the string * * @param {String} str * * @returns {String} * */// ExampletrimeWhiteSpace(' Hello World ! ')// -> "Hello World"