
Security News
NVD Quietly Sweeps 100K+ CVEs Into a “Deferred” Black Hole
NVD now marks all pre-2018 CVEs as "Deferred," signaling it will no longer enrich older vulnerabilities, further eroding trust in its data.
Make multiple changes to a block of text by providing start and end indices and replacement text
Make multiple changes to a block of text by providing start and end indices and replacement text
$ npm install --save patch-text
var patch = require('patch-text');
var text = 'Hello guys!'
var updated = patch(text, [
{
start: 0,
end: 5,
replacement: 'Hi'
},
{
start: 7,
end: 9,
replacement: 'al'
}
])
// => 'Hi gals!'
Your patches shouldn't overlap, but they can shrink or increase the character count and your patches will still apply to the right text.
patch(text, patches)
-> string
Required
Type: string
The text to patch.
Required
Type: array[object]
The patches to apply to the text, each with:
MIT © Ben Drucker
FAQs
Make multiple changes to a block of text by providing start and end indices and replacement text
The npm package patch-text receives a total of 28,300 weekly downloads. As such, patch-text popularity was classified as popular.
We found that patch-text demonstrated a not healthy version release cadence and project activity because the last version was released a year ago. It has 1 open source maintainer 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
NVD now marks all pre-2018 CVEs as "Deferred," signaling it will no longer enrich older vulnerabilities, further eroding trust in its data.
Research
Security News
Lazarus-linked threat actors expand their npm malware campaign with new RAT loaders, hex obfuscation, and over 5,600 downloads across 11 packages.
Security News
Safari 18.4 adds support for Iterator Helpers and two other TC39 JavaScript features, bringing full cross-browser coverage to key parts of the ECMAScript spec.