FLUTTER ECOSYSTEM

thiagopereiramartinez/dart-cpfcnpj

一個容易使用的 CPF/CNPJ 驗證和格式化工具。

dart-cpfcnpj 專案封面
Stars
18
Forks
10
最近推送(UTC)
2021年3月12日
專案狀態
已封存
Thiago P. Martinez GitHub avatar
GITHUB User

Thiago P. Martinez ↗

Programador movido a cafeína.

語言Dart

此儲存庫發佈的套件

使用的依賴

依賴清單 2 項
  • pedantic開發依賴^1.8.0
  • test開發依賴^1.6.0

原始 README

以下為英文專案原文快照,最新內容請造訪 GitHub。

展開 / 收合專案 README

An easy-to-use utility for CPF/CNPJ validation and formatting.

Usage

A simple usage example:

import 'package:cpfcnpj/cpfcnpj.dart';

main() {
  
  // Validar CPF
  if (CPF.isValid("123.717.730-86")) {
    print("Este CPF é válido.");
  } else {
    print("Este CPF é inválido.");
  }

  // Validar CNPJ
  if (CNPJ.isValid("43.814.971/0001-89")) {
    print("Este CNPJ é válido.");
  } else {
    print("Este CNPJ é inválido.");
  }

  // Formatar CPF
  print(CPF.format("12371773085")); // 123.717.730-85

  // Formatar CNPJ
  print(CNPJ.format("43814971000188")); // 43.814.971/0001-88

}

Features and bugs

Please file feature requests and bugs at the issue tracker.