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
    38,246
    • latest

Version History

  • Version
    Downloads (Last 7 Days)
    • Published
  • 2.1.3
    38,246
  • 2.1.2
    370,689
  • 2.1.1
    344,076
  • 2.1.0
    194,016
  • 2.0.0
    8,783
  • 1.0.1
    46

Package Sidebar

Install

npm i string.prototype.trimleft

Weekly Downloads

955,856

Version

2.1.3

License

MIT

Unpacked Size

18 kB

Total Files

23

Last publish

Collaborators

  • ljharb