npm.io
1.0.1 • Published 7 years ago

random-from-array

Licence
MIT
Version
1.0.1
Deps
0
Size
6 kB
Vulns
0
Weekly
0
Stars
2
DeprecatedThis package is deprecated

Written in TypeScript npm Build Status

TypeScript module with type definition support by default. Also works with other JavaScript projects.

random-from-array

Given an array, return a random value from it.

Useful when

An array of elements must output a random value.

Installation

$ npm i random-from-array

Usage

Try it on CodeSandbox

import randomFromArray from 'random-from-array'

randomFromArray(['bossa nova', 'jazz', 'rock']) // one of: 'bossa nova' or 'jazz' or 'rock'

// also works with an array of objects
const arrayOfObj = [
  { value: 'bossa nova' },
  { value: 'jazz' },
  { value: 'rock' }
]

randomFromArray(arrayOfObj) // one of: { value: 'bossa nova' } or { value: 'jazz' } or { value: 'rock' }

License

random-from-array Cezar Augusto. Released under the MIT License.

Keywords