prototype-helper 0.1.5 → 0.1.6

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 (2) hide show
  1. package/README.md +11 -0
  2. package/package.json +1 -1
package/README.md CHANGED
@@ -19,6 +19,17 @@
19
19
  Adds a convenient prototype function package.
20
20
  </p>
21
21
 
22
+ # Getting started
23
+
24
+ Import the package to the first file you call.
25
+
26
+ ```js
27
+ import "prototype-helper";
28
+
29
+ // and use
30
+ console.log("10000".toComma()); // 10,000
31
+ ```
32
+
22
33
  # Prototype Helper
23
34
 
24
35
  ## Number
package/package.json CHANGED
@@ -1,6 +1,6 @@
1
1
  {
2
2
  "name": "prototype-helper",
3
- "version": "0.1.5",
3
+ "version": "0.1.6",
4
4
  "private": false,
5
5
  "main": "./dist/index.js",
6
6
  "types": "./dist/index.d.ts",