mod97 1.0.0 copy "mod97: ^1.0.0" to clipboard
mod97: ^1.0.0 copied to clipboard

Calculate the modulo 97.

mod97 #

Calculates the MOD 97 10 of the passed number as specified in ISO7064.

Only positive numbers are allowed.

I have copied this code from iban.js

Build Status

Usage #

A simple usage example:

import 'package:mod97/mod97.dart';

main() {
  int m = mod97('1234567');
  
  int m2 = mod97('-123', onError: (_) => 5);
  // m2 will be 5
}

The input must be a String. Returned value is an integer.

Invalid characters throw a FormatException unless an onError function is provided.

0
likes
130
pub points
64%
popularity

Publisher

unverified uploader

Calculate the modulo 97.

Repository (GitHub)
View/report issues

Documentation

API reference

License

MIT (LICENSE)

More

Packages that depend on mod97