UNPKG

pip-services3-commons-node

Version:
26 lines (22 loc) 639 B
/** @module random */ import { RandomInteger } from './RandomInteger'; /** * Random generator for array objects. * * ### Example ### * * let value1 = RandomArray.pick([1, 2, 3, 4]); // Possible result: 3 */ export class RandomArray { /** * Picks a random element from specified array. * * @param values an array of any type * @returns a randomly picked item. */ public static pick<T>(values: T[]): T { if (values == null || values.length == 0) return null; return values[RandomInteger.nextInteger(values.length)]; } }