string.prototype.trimleft

2.1.3 • Public • Published

String.prototype.trimLeft Version Badge

Build Status dependency status dev dependency status License Downloads

npm badge

browser support

An ES2019-spec-compliant String.prototype.trimLeft shim. Invoke its "shim" method to shim String.prototype.trimLeft if it is unavailable.

This package implements the es-shim API interface. It works in an ES3-supported environment and complies with the spec. In an ES6 environment, it will also work properly with Symbols.

Most common usage:

var trimLeft = require('string.prototype.trimleft');
 
assert(trimLeft(' \t\n\t\n') === '\t\n');
 
if (!String.prototype.trimLeft) {
    trimLeft.shim();
}
 
assert(trimLeft(' \t\n\t\n') === ' \t\n\t\n'.trimLeft());

Tests

Simply clone the repo, npm install, and run npm test

/string.prototype.trimleft/

    Package Sidebar

    Install

    npm i string.prototype.trimleft

    Weekly Downloads

    979,631

    Version

    2.1.3

    License

    MIT

    Unpacked Size

    18 kB

    Total Files

    23

    Last publish

    Collaborators

    • ljharb