Security News
pnpm 10.0.0 Blocks Lifecycle Scripts by Default
pnpm 10 blocks lifecycle scripts by default to improve security, addressing supply chain attack risks but sparking debate over compatibility and workflow changes.
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.
The npm package default-avatar-helper receives a total of 224 weekly downloads. As such, default-avatar-helper popularity was classified as not popular.
We found that default-avatar-helper demonstrated a healthy version release cadence and project activity because the last version was released less than a year ago. It has 0 open source maintainers 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
pnpm 10 blocks lifecycle scripts by default to improve security, addressing supply chain attack risks but sparking debate over compatibility and workflow changes.
Product
Socket now supports uv.lock files to ensure consistent, secure dependency resolution for Python projects and enhance supply chain security.
Research
Security News
Socket researchers have discovered multiple malicious npm packages targeting Solana private keys, abusing Gmail to exfiltrate the data and drain Solana wallets.