fluent-string
v0.0.1
Published
A Node API for handling Strings fluently
Downloads
12
Maintainers
Readme
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