Big news!Introducing Socket AI - ChatGPT-Powered Threat Analysis.Learn more
Socket
Socket

string.prototype.trimstart

Package Overview
Dependencies
3
Maintainers
2
Versions
9
Issues
File Explorer

Advanced tools

string.prototype.trimstart

ES2019 spec-compliant String.prototype.trimStart shim.

    1.0.6latest
    GitHub
    npm

Version published
Maintainers
2
Weekly downloads
28,910,168
increased by7.43%

Weekly downloads

Changelog

Source

v1.0.6 - 2022-11-07

Commits

  • [meta] use npmignore to autogenerate an npmignore file 0838ae4
  • [actions] update rebase action to use reusable workflow d6bb784
  • [Dev Deps] update aud, tape 8734d9a
  • [Deps] update es-abstract 30f593f

Readme

Source

String.prototype.trimStart Version Badge

github actions coverage dependency status dev dependency status License Downloads

npm badge

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 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 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

Keywords

FAQs

Last updated on 07 Nov 2022

Did you know?

Socket installs a Github app to automatically flag issues on every pull request and report the health of your dependencies. Find out what is inside your node modules and prevent malicious activity before you update the dependencies.

Install Socket
Socket
Socket SOC 2 Logo

Product

  • Package Issues
  • Integrations
  • Docs
  • Pricing
  • FAQ
  • Roadmap

Stay in touch

Get open source security insights delivered straight into your inbox.


  • Terms
  • Privacy
  • Security

Made with ⚡️ by Socket Inc