1.2.0 update (yes, there have been minor updates I didn’t announce)
Changelog:
- Added new
shuffleandtoShuffledmethods (certainly not related to the upcoming jam)
- Fixed minor issues and updated dependencies
Shuffle method
The shuffle method rearranges items in an array in a random order. This method modifies the original array.
function shuffle(array: any[]): void

To shuffled method
The toShuffled method returns an array copy with items rearranged in a random order. This method does not modify the original array.
function toShuffled(array: any[]): any[]
![]()
Until next time, peace ![]()