pix-utils-js 1.0.3 → 1.0.5

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 +2 -2
  2. package/package.json +1 -1
package/README.md CHANGED
@@ -8,7 +8,7 @@
8
8
 
9
9
  Uma pequena biblioteca que irá te ajudar a lidar com chaves pix
10
10
 
11
-
11
+ Demo https://pix-key-js-demo.vercel.app/
12
12
 
13
13
 
14
14
  ## Instalação
@@ -39,7 +39,7 @@ Instale pix-utils-js com npm ou yarn
39
39
  const { validate } = 'pix-utils-js'
40
40
  console.log(validate({pix: 'test@gmail.com'})) // true
41
41
  console.log(validate({pix: 'test'})) // false
42
- console.log(validate({pix: 'test@gmail.com', 'type' : 'cpf'})) // false
42
+ console.log(validate({pix: 'test@gmail.com', type : 'cpf'})) // false
43
43
  ```
44
44
 
45
45
  | Função | Parametro | Retorno |
package/package.json CHANGED
@@ -1,6 +1,6 @@
1
1
  {
2
2
  "name": "pix-utils-js",
3
- "version": "1.0.3",
3
+ "version": "1.0.5",
4
4
  "author": "Paulo Henrique",
5
5
  "description": "Um pacote para fornecer utilidades e validações para chaves pix.",
6
6
  "main": "index.js",