0.1.0 • Published 9 years ago

string-slice v0.1.0

Weekly downloads
7
License
MIT
Repository
github
Last release
9 years ago

string-slice

An implementation of String.prototype.slice that works with arbitrary strings, including those containing astral symbols.

Install

$ npm install --save string-slice

Usage

The API is identical to that of String.prototype.slice.

stringSlice('foobar', 1, 3);
// => 'oo'

stringSlice('𝐀𝐁𝐂𝐃', -1));
// => '𝐃'

License

MIT © Martin Svanberg