00001 var copyArray = require('./_copyArray'), 00002 shuffleSelf = require('./_shuffleSelf'); 00003 00011 function arrayShuffle(array) { 00012 return shuffleSelf(copyArray(array)); 00013 } 00014 00015 module.exports = arrayShuffle;