
Research
/Security News
Contagious Interview Campaign Escalates With 67 Malicious npm Packages and New Malware Loader
North Korean threat actors deploy 67 malicious npm packages using the newly discovered XORIndex malware loader.
string.prototype.trimstart
Advanced tools
ES2019 spec-compliant String.prototype.trimStart shim.
The string.prototype.trimstart package provides functionality to remove whitespace from the beginning of a string without altering the rest of the string. This is particularly useful for cleaning up user input, formatting strings before processing, or simply ensuring consistency in string data.
Trimming start of a string
This feature allows you to remove all whitespace from the beginning of a string. The example code demonstrates how to use the trimStart method to remove leading spaces from a string, resulting in 'Hello world!' without the leading spaces.
" Hello world!".trimStart()
Lodash's trimStart function offers similar functionality to string.prototype.trimstart by removing whitespace from the beginning of a string. Lodash provides a more extensive utility library that includes this method among many others for manipulating strings, arrays, objects, etc., making it a more versatile choice if additional utilities are needed.
The string.prototype.trimleft package is an alternative that provides similar functionality to trimStart. It's essentially an alias for trimStart in environments that support it, ensuring compatibility and providing a polyfill where necessary. This package is useful for developers looking for consistency in naming or needing support in environments where trimStart is not available.
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 Symbol
s.
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());
Simply clone the repo, npm install
, and run npm test
FAQs
ES2019 spec-compliant String.prototype.trimStart shim.
The npm package string.prototype.trimstart receives a total of 36,576,115 weekly downloads. As such, string.prototype.trimstart popularity was classified as popular.
We found that string.prototype.trimstart demonstrated a not healthy version release cadence and project activity because the last version was released a year ago. It has 2 open source maintainers collaborating on the project.
Did you know?
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.
Research
/Security News
North Korean threat actors deploy 67 malicious npm packages using the newly discovered XORIndex malware loader.
Security News
Meet Socket at Black Hat & DEF CON 2025 for 1:1s, insider security talks at Allegiant Stadium, and a private dinner with top minds in software supply chain security.
Security News
CAI is a new open source AI framework that automates penetration testing tasks like scanning and exploitation up to 3,600× faster than humans.