
Research
Two Malicious Rust Crates Impersonate Popular Logger to Steal Wallet Keys
Socket uncovers malicious Rust crates impersonating fast_log to steal Solana and Ethereum wallet keys from source code.
group-array-by
Advanced tools
Takes an array and returns an object with values grouped into arrays by passing each value to `getKey` to determine to which group the value belongs.
Takes an array and returns an object with values grouped into arrays by passing each value to getKey
to determine to which group the value belongs.
$ npm install group-array-by
const groupBy = require('group-array-by')
groupBy(v => v.type, [
{ type: 'coffee', roast: 'light' },
{ type: 'coffee', roast: 'medium' },
{ type: 'juice', fruit: 'grape' },
{ type: 'coffee', roast: 'dark' }
])
/* => {
coffee: [
{ type: 'coffee', roast: 'light' },
{ type: 'coffee', roast: 'medium' },
{ type: 'coffee', roast: 'dark' }
],
juice: [
{ type: 'juice', fruit: 'grape' }
]
} */
getKey(value)
value
an item from the array=> key
the key the item should be grouped underarray: []
the array to group into an object=> object
the object of grouped valuesFAQs
Takes an array and returns an object with values grouped into arrays by passing each value to `getKey` to determine to which group the value belongs.
We found that group-array-by 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
Socket uncovers malicious Rust crates impersonating fast_log to steal Solana and Ethereum wallet keys from source code.
Research
A malicious package uses a QR code as steganography in an innovative technique.
Research
/Security News
Socket identified 80 fake candidates targeting engineering roles, including suspected North Korean operators, exposing the new reality of hiring as a security function.