toosoon-prng 4.0.3 → 4.0.4
This diff represents the content of publicly available package versions that have been released to one of the supported registries. The information contained in this diff is provided for informational purposes only and reflects changes between package versions as they appear in their respective public registries.
- package/README.md +2 -0
- package/package.json +1 -1
- package/.prettierrc +0 -7
- package/tsconfig.json +0 -28
package/README.md
CHANGED
|
@@ -2,6 +2,8 @@
|
|
|
2
2
|
|
|
3
3
|
This project provides PRNG functions for generating pseudo-random values using a seed-based approach and various algorithms. These are particularly useful for applications requiring deterministic randomization, such as procedural generation or simulations.
|
|
4
4
|
|
|
5
|
+
[](https://nodei.co/npm/toosoon-prng/)
|
|
6
|
+
|
|
5
7
|
## Installation
|
|
6
8
|
|
|
7
9
|
Yarn:
|
package/package.json
CHANGED
package/.prettierrc
DELETED
package/tsconfig.json
DELETED
|
@@ -1,28 +0,0 @@
|
|
|
1
|
-
{
|
|
2
|
-
"include": ["src"],
|
|
3
|
-
"exclude": ["node_modules"],
|
|
4
|
-
"compilerOptions": {
|
|
5
|
-
"baseUrl": ".",
|
|
6
|
-
|
|
7
|
-
"outDir": "lib",
|
|
8
|
-
|
|
9
|
-
"target": "ESNext",
|
|
10
|
-
"lib": ["ESNext", "DOM", "DOM.Iterable"],
|
|
11
|
-
"skipLibCheck": true,
|
|
12
|
-
"declaration": true,
|
|
13
|
-
"incremental": true,
|
|
14
|
-
|
|
15
|
-
/* Bundler mode */
|
|
16
|
-
"module": "ESNext",
|
|
17
|
-
"moduleResolution": "bundler",
|
|
18
|
-
"moduleDetection": "force",
|
|
19
|
-
"isolatedModules": true,
|
|
20
|
-
"resolveJsonModule": true,
|
|
21
|
-
|
|
22
|
-
/* Linting */
|
|
23
|
-
"strict": true,
|
|
24
|
-
"allowJs": true,
|
|
25
|
-
"checkJs": true,
|
|
26
|
-
"forceConsistentCasingInFileNames": true
|
|
27
|
-
}
|
|
28
|
-
}
|