Research
Security News
Quasar RAT Disguised as an npm Package for Detecting Vulnerabilities in Ethereum Smart Contracts
Socket researchers uncover a malicious npm package posing as a tool for detecting vulnerabilities in Etherium smart contracts.
binmap
is a Map
implementation compatible to the Built-in Map but guaranteeing the keys to be ordered.
The constructor has an optional options object and the class has a member function between
for iterating between two boundary keys.
BinMap
instances are convertible to and from built-in Maps and Arrays (of sub-arrays).
The constructor works like the built-in Map in that it can optionally take an iterable of key-value pairs (as individual arrays), but can also have an extra optional options object which can contain a comparison function cmp
with the same semantics as the custom sort
comparator.
import BinMap from 'binmap'
// Custom comparator
const cmp = ( a, b ) => a.length - b.length;
const bm1 = new BinMap( { cmp } );
// or
const bm2 = new BinMap( [ [ 'key1', 'value1' ], ... ], { cmp } );
between( { ... } )
returns an IterableIterator between two boundary keys. The options object can contain:
lt
(less than) or an le
(less than or equal to).gt
(greater than) or a ge
(greater than or equal to).reverse
being a boolean (defaults to false
), which if true
returns an iterator from the end to the beginning of the span.There are two magic values for lt
, le
, gt
and ge
which is BinMap.min
and BinMap.max
which represents the lowest/highest possible values. These are also the default, so an empty between( { } )
(or just between( )
) iterates the whole map.
import BinMap from 'binmap'
const bm = new BinMap( [
[ "a", 1 ],
[ "b", 2 ],
[ "c", 3 ],
[ "d", 4 ],
] );
Array.from( bm.between( { gt: 'b' } ) )
// -> [ [ "c", 3 ], [ "d", 4 ] ]
Array.from( bm.between( { gt: 'b', reverse: true } ) )
// -> [ [ "d", 4 ], [ "c", 3 ] ]
FAQs
Ordered Map (ES Map compatible)
We found that binmap 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.
Research
Security News
Socket researchers uncover a malicious npm package posing as a tool for detecting vulnerabilities in Etherium smart contracts.
Security News
Research
A supply chain attack on Rspack's npm packages injected cryptomining malware, potentially impacting thousands of developers.
Research
Security News
Socket researchers discovered a malware campaign on npm delivering the Skuld infostealer via typosquatted packages, exposing sensitive data.