0.0.1 • Published 8 years ago

fluent-string v0.0.1

Weekly downloads
3
License
MIT
Repository
github
Last release
8 years ago

Fluent String

A Node API for handling Strings fluently

Examples

var FluentString = require("fluent-string");
FluentString("Get on the bus").replace("bus").with("car"); // => Get on the car
FluentString("Get on the bus").replace("get").ignoringCase().with("go"); // => go on the bus
FluentString("run run").replace.all("run").with("go"); // => go go
FluentString("RUN RUN").replace.all("run").ignoringCase().with("go"); // => go go