
Security News
libxml2 Maintainer Ends Embargoed Vulnerability Reports, Citing Unsustainable Burden
Libxml2’s solo maintainer drops embargoed security fixes, highlighting the burden on unpaid volunteers who keep critical open source software secure.
string.prototype.at
Advanced tools
An ES-spec-compliant (proposed) String.prototype.at shim/polyfill/replacement that works as far down as ES3
An ESnext spec-compliant String.prototype.at
shim/polyfill/replacement that works as far down as ES3.
This package implements the es-shim API interface. It works in an ES3-supported environment and complies with the proposed spec.
Because String.prototype.at
depends on a receiver (the this
value), the main export takes the string to operate on as the first argument.
Note that versions of this package before v1.0.0 reflect an earlier, now-inactive proposal (https://github.com/mathiasbynens/String.prototype.at).
npm install --save string.prototype.at
var at = require('string.prototype.at');
var assert = require('assert');
var arr = [1, [2], [], 3];
var results = at(arr, function (x, i) {
assert.equal(x, arr[i]);
return x;
});
assert.deepEqual(results, [1, 2, 3]);
var at = require('string.prototype.at');
var assert = require('assert');
/* when String#at is not present */
delete String.prototype.at;
var shimmedFlatMap = at.shim();
var mapper = function (x) { return [x, 1]; };
assert.equal(shimmedFlatMap, at.getPolyfill());
assert.deepEqual(arr.at(mapper), at(arr, mapper));
var at = require('string.prototype.at');
var assert = require('assert');
/* when String#at is present */
var shimmedIncludes = at.shim();
var mapper = function (x) { return [x, 1]; };
assert.equal(shimmedIncludes, String.prototype.at);
assert.deepEqual(arr.at(mapper), at(arr, mapper));
Simply clone the repo, npm install
, and run npm test
v1.0.6 - 2024-03-20
FAQs
An ES-spec-compliant (proposed) String.prototype.at shim/polyfill/replacement that works as far down as ES3
The npm package string.prototype.at receives a total of 5,224 weekly downloads. As such, string.prototype.at popularity was classified as popular.
We found that string.prototype.at 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.
Security News
Libxml2’s solo maintainer drops embargoed security fixes, highlighting the burden on unpaid volunteers who keep critical open source software secure.
Research
Security News
Socket investigates hidden protestware in npm packages that blocks user interaction and plays the Ukrainian anthem for Russian-language visitors.
Research
Security News
Socket researchers uncover how browser extensions in trusted stores are used to hijack sessions, redirect traffic, and manipulate user behavior.