JSPM

  • ESM via JSPM
  • ES Module Entrypoint
  • Export Map
  • Keywords
  • License
  • Repository URL
  • TypeScript Types
  • README
  • Created
  • Published
  • Downloads 1
  • Score
    100M100P100Q27082F
  • License MIT

A utility package with multiple pre made functions

Package Exports

  • workie

This package does not declare an exports field, so the exports above have been automatically detected and optimized by JSPM instead. If any package subpath is missing, it is recommended to post an issue to the original package (workie) to support the "exports" field. If that is not possible, create a JSPM override to customize the exports field for this package.

Readme

Workie

Installation

npm install workie

Usage

Format CPF and CNPJ:

  • Input type number.
  • call formatCpfCnpj(number).
  • *Cannot contain special characters, only numbers.

Format phone:

  • Input type number.
  • call formatPhone(number).
  • *Cannot contain special characters, only numbers.

Format CEP:

  • Input type number.
  • call formatCep(number).
  • *Cannot contain special characters, only numbers.

CEP search on Correios:

  • call consultaCep('env', 'cep').

    • env = text field, wich environment is being used. Ex.: prod, dev.
    • cep = text field, CEP without special characters, only numbers.
  • Return of an object with bairro, cep, cidade, complemento, endereço, uf.

      Example:
      consultaCEP('dev', '93315400')
          .then(address => console.log(address))
          .catch(err => console.log(err))
    
      Return:
      {
      bairro: 'Operário',
      cep: '93315400',
      cidade: 'Novo Hamburgo',
      complemento2: '',
      end: 'Rua Visconde de Ouro Preto',
      uf: 'RS'
      }

Dependencies:

"soap": "^0.31.0"