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
    44,896
    • latest

Version History

  • Version
    Downloads (Last 7 Days)
    • Published
  • 2.1.3
    44,896
  • 2.1.2
    336,553
  • 2.1.1
    350,606
  • 2.1.0
    187,762
  • 2.0.0
    10,203
  • 1.0.1
    48

Package Sidebar

Install

npm i string.prototype.trimleft

Weekly Downloads

930,068

Version

2.1.3

License

MIT

Unpacked Size

18 kB

Total Files

23

Last publish

Collaborators

  • ljharb