tenjs 1.0.0 → 1.0.1
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 +7 -3
- package/package.json +1 -1
package/README.md
CHANGED
|
@@ -3,10 +3,14 @@
|
|
|
3
3
|
|
|
4
4
|
## How to use
|
|
5
5
|
1. Install
|
|
6
|
-
|
|
6
|
+
```
|
|
7
|
+
$ npm install tenjs
|
|
8
|
+
```
|
|
7
9
|
2. Import
|
|
8
|
-
```
|
|
10
|
+
```
|
|
11
|
+
const { ONE, TWO, ... } = require('tenjs');
|
|
12
|
+
```
|
|
9
13
|
3. Profit.
|
|
10
14
|
|
|
11
15
|
## Motivation
|
|
12
|
-
My motivation behind this project was that I always thought typing out all numbers was really
|
|
16
|
+
My motivation behind this project was that I always thought typing out all numbers was really tedious and I could do better. This is why I created this package.
|