string.prototype.substr

1.0.3 • Public • Published

String.prototype.substr Version Badge

github actions coverage dependency status dev dependency status License Downloads

npm badge

An ES-spec-compliant String.prototype.substrshim/polyfill/replacement that works as far down as ES3.

This package implements the es-shim API interface. It works in an ES3-supported environment and complies with the spec.

Getting started

npm install --save string.prototype.substr

Usage/Examples

var assert = require('assert');
var substr = require('string.prototype.substr');

assert(substr('abc', 1) === 'bc');

substr.shim(); // will be a no-op if not needed

assert(substr(' \t\na \t\n') === ' \t\na \t\n'.substr());

Tests

Clone the repo, npm install, and run npm test

Package Sidebar

Install

npm i string.prototype.substr

Weekly Downloads

8

Version

1.0.3

License

MIT

Unpacked Size

15.2 kB

Total Files

15

Last publish

Collaborators

  • ljharb