jsfunx 1.0.0

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.
Files changed (5) hide show
  1. package/LICENSE +20 -0
  2. package/README.md +256 -0
  3. package/jsfunx.cjs +1641 -0
  4. package/jsfunx.mjs +1646 -0
  5. package/package.json +32 -0
package/package.json ADDED
@@ -0,0 +1,32 @@
1
+ {
2
+ "name": "jsfunx",
3
+ "version": "1.0.0",
4
+ "description": "JavaScript utility functions for cleaner, more readable code",
5
+ "main": "./jsfunx.cjs",
6
+ "module": "./jsfunx.mjs",
7
+ "exports": {
8
+ "require": "./jsfunx.cjs",
9
+ "import": "./jsfunx.mjs"
10
+ },
11
+ "files": [
12
+ "jsfunx.cjs",
13
+ "jsfunx.mjs",
14
+ "README.md",
15
+ "LICENSE"
16
+ ],
17
+ "keywords": [
18
+ "js",
19
+ "utilities",
20
+ "helpers",
21
+ "functions",
22
+ "clean code",
23
+ "readable code",
24
+ "maintainable code",
25
+ "utility library",
26
+ "code quality",
27
+ "developer tools",
28
+ "productivity"
29
+ ],
30
+ "author": "Khiat Mohammed Abderrezzak",
31
+ "license": "MIT"
32
+ }