
Research
/Security News
Intercom’s npm Package Compromised in Ongoing Mini Shai-Hulud Worm Attack
Compromised intercom-client@7.0.4 npm package is tied to the ongoing Mini Shai-Hulud worm attack targeting developer and CI/CD secrets.
string.prototype.trimend
Advanced tools
An ES2019-spec-compliant String.prototype.trimEnd shim. Invoke its "shim" method to shim String.prototype.trimEnd 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 trimEnd = require('string.prototype.trimend');
assert(trimEnd(' \t\na \t\n') === 'a \t\n');
if (!String.prototype.trimEnd) {
trimEnd.shim();
}
assert(trimEnd(' \t\na \t\n ') === ' \t\na \t\n '.trimEnd());
Simply clone the repo, npm install, and run npm test
Lodash's trimEnd function offers similar functionality to string.prototype.trimend by removing whitespace from the end of a string. Lodash is a more comprehensive utility library that includes a wide range of functions for manipulating strings, arrays, objects, and more, making it a heavier dependency if you only need string trimming functionality.
The string.prototype.trimright package is another polyfill that provides similar functionality to string.prototype.trimend. The difference lies in the naming convention, as 'trimRight' is an alias for 'trimEnd' in the ECMAScript specification. This package ensures compatibility with environments that recognize 'trimRight' instead of 'trimEnd'.
FAQs
ES2019 spec-compliant String.prototype.trimEnd shim.
The npm package string.prototype.trimend receives a total of 55,006,107 weekly downloads. As such, string.prototype.trimend popularity was classified as popular.
We found that string.prototype.trimend 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
Compromised intercom-client@7.0.4 npm package is tied to the ongoing Mini Shai-Hulud worm attack targeting developer and CI/CD secrets.

Research
Socket detected a malicious supply chain attack on PyPI package lightning versions 2.6.2 and 2.6.3, which execute credential-stealing malware on import.

Research
A brand-squatted TanStack npm package used postinstall scripts to steal .env files and exfiltrate developer secrets to an attacker-controlled endpoint.