shuffle-array

WebJar for shuffle-array

License

License

MIT
GroupId

GroupId

org.webjars.npm
ArtifactId

ArtifactId

shuffle-array
Last Version

Last Version

1.0.1
Release Date

Release Date

Type

Type

jar
Description

Description

shuffle-array
WebJar for shuffle-array
Project URL

Project URL

http://webjars.org
Source Code Management

Source Code Management

https://github.com/pazguille/shuffle-array

Download shuffle-array

How to add to project

<!-- https://jarcasting.com/artifacts/org.webjars.npm/shuffle-array/ -->
<dependency>
    <groupId>org.webjars.npm</groupId>
    <artifactId>shuffle-array</artifactId>
    <version>1.0.1</version>
</dependency>
// https://jarcasting.com/artifacts/org.webjars.npm/shuffle-array/
implementation 'org.webjars.npm:shuffle-array:1.0.1'
// https://jarcasting.com/artifacts/org.webjars.npm/shuffle-array/
implementation ("org.webjars.npm:shuffle-array:1.0.1")
'org.webjars.npm:shuffle-array:jar:1.0.1'
<dependency org="org.webjars.npm" name="shuffle-array" rev="1.0.1">
  <artifact name="shuffle-array" type="jar" />
</dependency>
@Grapes(
@Grab(group='org.webjars.npm', module='shuffle-array', version='1.0.1')
)
libraryDependencies += "org.webjars.npm" % "shuffle-array" % "1.0.1"
[org.webjars.npm/shuffle-array "1.0.1"]

Dependencies

There are no dependencies for this project. It is a standalone project that does not depend on any other jars.

Project Modules

There are no modules declared in this project.

shuffle-array

NPM version License Build status Coverage Status devDependency status downloads

Randomize the order of the elements in a given array using the Fisher-Yates algorithm.

Installation

$ npm install shuffle-array

$ bower install shuffle-array

$ component install pazguille/shuffle-array

Usage

var shuffle = require('shuffle-array'),
    collection = [1,2,3,4,5];

shuffle(collection);

console.log(collection); // returns [4, 3, 1, 5, 2]

API

shuffle(arr, [options])

Randomizes the order of the elements in a given array.

  • arr - The given array.
  • [options] {Object} - Optional configuration options.
  • [options.copy] {Boolean} - Sets if should return a shuffled copy of the given array. By default it's a falsy value.
  • [options.rng] {Function} - Specifies a custom random number generator.
shuffle([1,2,3,4,5]); // returns [4, 3, 1, 5, 2]

// Return a copy of the given array
shuffle([1,2,3,4,5], { 'copy': true }); // returns [4, 3, 1, 5, 2] (copied)

shuffle.pick(arr, [options])

Pick one or more random elements from the given array.

  • arr - The given array.
  • [options] {Object} - Optional configuration options.
  • [options.picks] {Number} - Specifies how many random elements you want to pick. By default it picks 1.
  • [options.rng] {Function} - Specifies a custom random number generator.
shuffle.pick([1,2,3,4,5]); // returns 5

// Return a random collection with 2 elements
shuffle.pick([1,2,3,4,5], { 'picks': 2 })); // returns [4, 3]

Build

npm run dist

Test

npm test

With ❤️ by

License

MIT license. Copyright © 2014.

Versions

Version
1.0.1