mirror of
https://github.com/caojiezi2003/live2d-widget.git
synced 2025-04-05 09:36:57 +00:00
6 lines
150 B
JavaScript
6 lines
150 B
JavaScript
function randomSelection(obj) {
|
|
return Array.isArray(obj) ? obj[Math.floor(Math.random() * obj.length)] : obj;
|
|
}
|
|
|
|
export default randomSelection;
|