Skip to content

Latest commit

 

History

History
23 lines (15 loc) · 1016 Bytes

README.md

File metadata and controls

23 lines (15 loc) · 1016 Bytes

Overview

Some Meteor Blaze helpers for string manipulation.

Installation

meteor add imajus:string-helpers

Related packages

Contents

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.