
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.
default-avatar-helper
Advanced tools
A helper for creating default avatars.
import { getDefaultAvatarDetails } from 'default-avatar-helper'
const palette = ['red', 'green', 'blue']
const name = 'random name'
// Providing both arguments at once will return a result object straight away:
const { colour, initials } = getDefaultAvatarDetails(palette, name)
// Alternatively, since `getDefaultAvatarDetails` is curried, you can do
// something like:
const getDefaultAvatarDetailsWithPalette = getDefaultAvatarDetails(palette)
const { colour, initials } = getDefaultAvatarDetailsWithPalette(name)
The following live examples show how colour
and initials
can be used to
create a default avatar.
Arguments
palette
- An array of strings representing the colour palette to use.name
- A string representing a user name.Returns
If less than two arguments have been provided, returns a function accepting the remaining argument.
If both arguments have been provided, returns an object containing the properties defined below:
colour
- A colour string.initials
- The user initials string.Example
const palette = ['red', 'green', 'blue']
const name = 'random name'
// Providing both arguments at once.
const { colour, initials } = getDefaultAvatarDetails(palette, name)
// Making use of currying.
const getDefaultAvatarDetailsWithPalette = getDefaultAvatarDetails(palette)
const { colour, initials } = getDefaultAvatarDetailsWithPalette(name)
$ npm install default-avatar-helper
There are also UMD builds available via unpkg:
Make sure you have already included:
MIT
FAQs
A helper for creating default avatars.
We found that default-avatar-helper 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.