tenjs 1.0.0 → 1.0.2
Sign up to get free protection for your applications and to get access to all the features.
- 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. That's why I created this package.
|