apius 0.0.5 → 0.0.6

Sign up to get free protection for your applications and to get access to all the features.
Files changed (2) hide show
  1. package/README.md +3 -3
  2. package/package.json +1 -1
package/README.md CHANGED
@@ -2,7 +2,7 @@
2
2
 
3
3
  ## Installation
4
4
 
5
- > `npm i apius`
5
+ > npm i apius
6
6
 
7
7
  ## Introduction
8
8
 
@@ -17,8 +17,8 @@ import apius from 'apius'
17
17
  apius.log("hello world!", "color") // its can be bold. apius.log("hello world!", "color", true)
18
18
 
19
19
  // - And you can use RGB codes!
20
- apius.logRGB("hello world!", [rgb code]) // its can be bold. apius.log("hello world!", "color", true)
20
+ apius.logRGB("hello world!", [rgb code]) // its can be bold. apius.log("hello world!", [rgb code], true)
21
21
 
22
22
  // - Also you can use hex codes!
23
- apius.logHex("hello world!", "hex code") // its can be bold. apius.logHex("hello world!", "color", true)
23
+ apius.logHex("hello world!", "hex code") // its can be bold. apius.logHex("hello world!", "hex code", true)
24
24
  ```
package/package.json CHANGED
@@ -1,6 +1,6 @@
1
1
  {
2
2
  "name": "apius",
3
- "version": "0.0.5",
3
+ "version": "0.0.6",
4
4
  "description": "A simple package.",
5
5
  "main": "index.js",
6
6
  "type": "module",