You're Invited:Meet the Socket Team at BlackHat and DEF CON in Las Vegas, Aug 4-6.RSVP
Socket
Book a DemoInstallSign in
Socket

string.prototype.trimright

Package Overview
Dependencies
Maintainers
1
Versions
6
Alerts
File Explorer

Advanced tools

Socket logo

Install Socket

Detect and block malicious and high-risk dependencies

Install

string.prototype.trimright

ES2019 spec-compliant String.prototype.trimLeft shim.

2.1.3
latest
Source
npmnpm
Version published
Weekly downloads
2.6M
45.15%
Maintainers
1
Weekly downloads
 
Created
Source

String.prototype.trimRight Version Badge

Build Status dependency status dev dependency status License Downloads

npm badge

browser support

A ES2019-spec-compliant String.prototype.trimRight shim. Invoke its "shim" method to shim String.prototype.trimRight 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 trimRight = require('string.prototype.trimright');

assert(trimRight(' \t\na \t\n') === 'a \t\n');

if (!String.prototype.trimRight) {
	trimRight.shim();
}

assert(trimRight(' \t\na \t\n ') === ' \t\na \t\n '.trimRight());

Tests

Simply clone the repo, npm install, and run npm test

Keywords

String.prototype.trimRight

FAQs

Package last updated on 22 Nov 2020

Did you know?

Socket

Socket for GitHub automatically highlights issues in each pull request and monitors the health of all your open source dependencies. Discover the contents of your packages and block harmful activity before you install or update your dependencies.

Install

Related posts