
Security News
Node.js Drops Bug Bounty Rewards After Funding Dries Up
Node.js has paused its bug bounty program after funding ended, removing payouts for vulnerability reports but keeping its security process unchanged.
@tschallacka/googlemapsrender
Advanced tools
A utility to render google maps with special json instructions.
A simple utility to check if a String contains all elements of a String array in the provided order.
Sometimes you just wish to pattern match, without having to figure out all the regex for it and just go!
This utility does just that. It matches the string against all the strings in the test array, in the given order.
When your string contains all the matches in given pattern, it will return true.
'hello world' will match against ['hel', ' ', 'rld'] but not against ['rld', 'hel'] because the order is different.
npm install @tschallacka/shouldmatchall
var matches = require('@tschallacka/shouldmatchall');
matches ( STRING, ARRAY)
STRING: The string that should be searched.
ARRAY: An Array that contains strings, in the order it should be matched against.
var matches = require('@tschallacka/shouldmatchall');
if(matches('Friends, hold my arms! For in the mere act of penning \
my thoughts of this Leviathan, they weary me, and make me \
faint with their out-reaching comprehensiveness of sweep, as \
if to include the whole circle of the sciences, and all the \
generations of whales, and men, and mastodons, past, present, \
and to come, with all the revolving panoramas of empire on earth,\
and throughout the whole universe, not excluding its suburbs. - Moby Dick',
[
'arms!',
'out-reaching',
'mastodons',
'revolving panoramas',
'excluding',
'suburbs.'
])) {
console.log('yes it's moby dick');
}
FAQs
A utility to render google maps with special json instructions.
We found that @tschallacka/googlemapsrender 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
Node.js has paused its bug bounty program after funding ended, removing payouts for vulnerability reports but keeping its security process unchanged.

Security News
The Axios compromise shows how time-dependent dependency resolution makes exposure harder to detect and contain.

Research
A supply chain attack on Axios introduced a malicious dependency, plain-crypto-js@4.2.1, published minutes earlier and absent from the project’s GitHub releases.