Guest User

Untitled

a guest
May 27th, 2018
86
0
Never
Not a member of Pastebin yet? Sign Up, it unlocks many cool features!
text 0.23 KB | None | 0 0
  1. import { itemFromCollection } from '../utils/random';
  2.  
  3. export default class Random {
  4. element(array) {
  5. if (!array) {
  6. throw new Error('An array or string must be specified');
  7. }
  8. return itemFromCollection(array);
  9. }
  10. }
Add Comment
Please, Sign In to add comment