UNPKG

lenye_base

Version:

基础方法

9 lines (6 loc) 159 B
'use strict'; /** * Returns a random element from an array. */ var random = arr => arr[Math.floor(Math.random() * arr.length)]; module.exports = random;