https://github.com/hugoalh/shuffle-array-es
An ES (JavaScript & TypeScript) module to shuffle the array's indexes.
https://github.com/hugoalh/shuffle-array-es
array es javascript js modulejs shuffle ts typescript
Last synced: 6 months ago
JSON representation
An ES (JavaScript & TypeScript) module to shuffle the array's indexes.
- Host: GitHub
- URL: https://github.com/hugoalh/shuffle-array-es
- Owner: hugoalh
- License: other
- Created: 2023-06-16T08:02:29.000Z (over 2 years ago)
- Default Branch: main
- Last Pushed: 2024-10-24T18:54:14.000Z (12 months ago)
- Last Synced: 2024-10-25T03:36:28.654Z (12 months ago)
- Topics: array, es, javascript, js, modulejs, shuffle, ts, typescript
- Language: TypeScript
- Homepage:
- Size: 146 KB
- Stars: 1
- Watchers: 1
- Forks: 0
- Open Issues: 1
-
Metadata Files:
- Readme: README.md
- Contributing: CONTRIBUTING.md
- License: LICENSE.md
- Code of conduct: CODE_OF_CONDUCT.md
- Citation: CITATION.cff
- Codeowners: .github/CODEOWNERS
- Security: SECURITY.md
Awesome Lists containing this project
README
# Shuffle Array (ES)
[**⚖️** MIT](./LICENSE.md)
[](https://deno.land/x/shuffle_array)
[](https://github.com/hugoalh/shuffle-array-es)
[](https://jsr.io/@hugoalh/shuffle-array)
[](https://www.npmjs.com/package/@hugoalh/shuffle-array)An ES (JavaScript & TypeScript) module to shuffle the array's indexes.
## 🔰 Begin
### 🎯 Targets
| | **Remote** | **JSR** | **NPM** |
|:--|:--|:--|:--|
| **[Bun](https://bun.sh/)** >= v1.1.0 | ❌ | ❓ | ✔️ |
| **[Cloudflare Workers](https://workers.cloudflare.com/)** | ❌ | ❓ | ✔️ |
| **[Deno](https://deno.land/)** >= v1.42.0 | ✔️ | ✔️ | ✔️ |
| **[NodeJS](https://nodejs.org/)** >= v16.13.0 | ❌ | ❓ | ✔️ |> [!NOTE]
> - It is possible to use this module in other methods/ways which not listed in here, however those methods/ways are not officially supported, and should beware maybe cause security issues.### #️⃣ Resources Identifier
- **Remote - Deno Land:**
```
https://deno.land/x/shuffle_array[@{Tag}]/mod.ts
```
- **Remote - GitHub Raw:**
```
https://raw.githubusercontent.com/hugoalh/shuffle-array-es/{Tag}/mod.ts
```
- **JSR:**
```
[jsr:]@hugoalh/shuffle-array[@{Tag}]
```
- **NPM:**
```
[npm:]@hugoalh/shuffle-array[@{Tag}]
```> [!NOTE]
> - For usage of remote resources, it is recommended to import the entire module with the main path `mod.ts`, however it is also able to import part of the module with sub path if available, but do not import if:
>
> - it's path has an underscore prefix (e.g.: `_foo.ts`, `_util/bar.ts`), or
> - it is a benchmark or test file (e.g.: `foo.bench.ts`, `foo.test.ts`), or
> - it's symbol has an underscore prefix (e.g.: `_bar`, `_foo`).
>
> These elements are not considered part of the public API, thus no stability is guaranteed for them.
> - For usage of JSR or NPM resources, it is recommended to import the entire module with the main entrypoint, however it is also able to import part of the module with sub entrypoint if available, please visit the [file `jsr.jsonc`](./jsr.jsonc) property `exports` for available sub entrypoints.
> - It is recommended to use this module with tag for immutability.### 🛡️ Runtime Permissions
*This module does not request any runtime permission.*
## 🧩 APIs
- ```ts
function shuffleArray(item: readonly T[], prng?: PseudoRandomNumberGenerator): T[];
```
- ```ts
type PseudoRandomNumberGenerator = () => number;
```> [!NOTE]
> - For the full or prettier documentation, can visit via:
> - [Deno CLI `deno doc`](https://docs.deno.com/runtime/reference/cli/documentation_generator/)
> - [Deno Land](https://deno.land/x/shuffle_array)
> - [JSR](https://jsr.io/@hugoalh/shuffle-array)## ✍️ Examples
- ```ts
const item = [3, 7, 25, 26, 42, 62, 71, 76, 92, 93];shuffleArray(item);
//=> [62, 93, 26, 42, 25, 7, 76, 71, 3, 92]shuffleArray(item);
//=> [42, 3, 26, 62, 93, 7, 76, 25, 92, 71]
```