imajus:string-helpers

v0.0.3Published 6 years ago

This package has not had recent updates. Please investigate it's current state before committing to using it in your project.

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.