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

Versions

Current Tags

  • Version
    Downloads (Last 7 Days)
    • Tag
  • 2.1.3
    41,538
    • latest

Version History

  • Version
    Downloads (Last 7 Days)
    • Published
  • 2.1.3
    41,538
  • 2.1.2
    369,890
  • 2.1.1
    346,830
  • 2.1.0
    193,192
  • 2.0.0
    9,587
  • 1.0.1
    20

Package Sidebar

Install

npm i string.prototype.trimleft

Weekly Downloads

762,931

Version

2.1.3

License

MIT

Unpacked Size

18 kB

Total Files

23

Last publish

Collaborators

  • ljharb