Some Meteor Blaze helpers for string manipulation.
meteor add imajus:string-helpers
Package provides following global Blaze helpers:
slugify(string)
– Transform text into an ascii slug which can be used in safely in URLs, HTML, etc. See more in underscore.string docs.capitalize(string, lowercaseRest)
– Converts first letter of the string to uppercase. If true is passed as second argument the rest of the string will be converted to lower case. See more in underscore.string docs.concat(...args)
– Join arguments intro a single string.