![]() | Name | Last modified | Size | Description |
---|---|---|---|---|
![]() | Parent Directory | - | ||
![]() | node_modules/ | 2023-06-08 13:46 | - | |
![]() | test/ | 2023-06-08 13:46 | - | |
![]() | CHANGELOG.md | 2023-06-08 13:46 | 3.0K | 0fb859dc fixed mobile overflwo options [كارل مبارك] |
![]() | LICENSE | 2023-06-08 13:46 | 1.0K | 0fb859dc fixed mobile overflwo options [كارل مبارك] |
![]() | README.md | 2023-06-08 13:46 | 2.2K | 0fb859dc fixed mobile overflwo options [كارل مبارك] |
![]() | auto.js | 2023-06-08 13:46 | 36 | 0fb859dc fixed mobile overflwo options [كارل مبارك] |
![]() | implementation.js | 2023-06-08 13:46 | 457 | 0fb859dc fixed mobile overflwo options [كارل مبارك] |
![]() | index.js | 2023-06-08 13:46 | 392 | 0fb859dc fixed mobile overflwo options [كارل مبارك] |
![]() | package.json | 2023-06-08 13:46 | 3.5K | 0fb859dc fixed mobile overflwo options [كارل مبارك] |
![]() | polyfill.js | 2023-06-08 13:46 | 463 | 0fb859dc fixed mobile overflwo options [كارل مبارك] |
![]() | shim.js | 2023-06-08 13:46 | 337 | 0fb859dc fixed mobile overflwo options [كارل مبارك] |
String.prototype.trimStart <sup>[![Version Badge][npm-version-svg]][package-url]</sup> [![Build Status][travis-svg]][travis-url] [![dependency status][deps-svg]][deps-url] [![dev dependency status][dev-deps-svg]][dev-deps-url] [![License][license-image]][license-url] [![Downloads][downloads-image]][downloads-url] [![npm badge][npm-badge-png]][package-url] [![browser support][testling-svg]][testling-url] An ES2019-spec-compliant `String.prototype.trimStart` shim. Invoke its "shim" method to shim `String.prototype.trimStart` if it is unavailable. This package implements the [es-shim API](https://github.com/es-shims/api) interface. It works in an ES3-supported environment and complies with the [spec](http://www.ecma-international.org/ecma-262/6.0/#sec-object.assign). In an ES6 environment, it will also work properly with `Symbol`s. Most common usage: ```js var trimStart = require('string.prototype.trimstart'); assert(trimStart(' \t\na \t\n') === 'a \t\n'); if (!String.prototype.trimStart) { trimStart.shim(); } assert(trimStart(' \t\na \t\n') === ' \t\na \t\n'.trimStart()); ``` ## Tests Simply clone the repo, `npm install`, and run `npm test` [package-url]: https://npmjs.com/package/string.prototype.trimstart [npm-version-svg]: http://vb.teelaun.ch/es-shims/String.prototype.trimStart.svg [travis-svg]: https://travis-ci.org/es-shims/String.prototype.trimStart.svg [travis-url]: https://travis-ci.org/es-shims/String.prototype.trimStart [deps-svg]: https://david-dm.org/es-shims/String.prototype.trimStart.svg [deps-url]: https://david-dm.org/es-shims/String.prototype.trimStart [dev-deps-svg]: https://david-dm.org/es-shims/String.prototype.trimStart/dev-status.svg [dev-deps-url]: https://david-dm.org/es-shims/String.prototype.trimStart#info=devDependencies [testling-svg]: https://ci.testling.com/es-shims/String.prototype.trimStart.png [testling-url]: https://ci.testling.com/es-shims/String.prototype.trimStart [npm-badge-png]: https://nodei.co/npm/string.prototype.trimstart.png?downloads=true&stars=true [license-image]: http://img.shields.io/npm/l/string.prototype.trimstart.svg [license-url]: LICENSE [downloads-image]: http://img.shields.io/npm/dm/string.prototype.trimstart.svg [downloads-url]: http://npm-stat.com/charts.html?package=string.prototype.trimstart