Skip to content

Commit

Permalink
Release v1.5.6
Browse files Browse the repository at this point in the history
  • Loading branch information
dpilafian committed Feb 12, 2021
1 parent 69d7dcd commit 4c8cb96
Show file tree
Hide file tree
Showing 6 changed files with 14 additions and 13 deletions.
2 changes: 1 addition & 1 deletion dist/clabe.d.ts
Original file line number Diff line number Diff line change
@@ -1,4 +1,4 @@
//! CLABE Validator v1.5.5 ~ github.com/center-key/clabe-validator ~ MIT License
//! CLABE Validator v1.5.6 ~ github.com/center-key/clabe-validator ~ MIT License

export declare type ClabeBank = {
tag?: string;
Expand Down
4 changes: 2 additions & 2 deletions dist/clabe.esm.js
Original file line number Diff line number Diff line change
@@ -1,7 +1,7 @@
//! CLABE Validator v1.5.5 ~ github.com/center-key/clabe-validator ~ MIT License
//! CLABE Validator v1.5.6 ~ github.com/center-key/clabe-validator ~ MIT License

const clabe = {
version: '1.5.5',
version: '1.5.6',
computeChecksum(clabeNum17) {
const x = (i) => [3, 7, 1][i % 3];
const add = (sum, digit, i) => sum + (Number(digit) * x(i)) % 10;
Expand Down
5 changes: 3 additions & 2 deletions dist/clabe.js
Original file line number Diff line number Diff line change
@@ -1,7 +1,7 @@
//! CLABE Validator v1.5.5 ~ github.com/center-key/clabe-validator ~ MIT License
//! CLABE Validator v1.5.6 ~ github.com/center-key/clabe-validator ~ MIT License

const clabe = {
version: '1.5.5',
version: '1.5.6',
computeChecksum(clabeNum17) {
const x = (i) => [3, 7, 1][i % 3];
const add = (sum, digit, i) => sum + (Number(digit) * x(i)) % 10;
Expand Down Expand Up @@ -1068,3 +1068,4 @@ const clabe = {
citiesMap: {},
};
if (typeof window === "object") window.clabe = clabe;
if (typeof module === "object") module.exports = clabe;
4 changes: 2 additions & 2 deletions dist/clabe.min.js

Large diffs are not rendered by default.

4 changes: 2 additions & 2 deletions dist/clabe.umd.cjs
Original file line number Diff line number Diff line change
@@ -1,4 +1,4 @@
//! CLABE Validator v1.5.5 ~ github.com/center-key/clabe-validator ~ MIT License
//! CLABE Validator v1.5.6 ~ github.com/center-key/clabe-validator ~ MIT License

(function (factory) {
if (typeof module === "object" && typeof module.exports === "object") {
Expand All @@ -13,7 +13,7 @@
Object.defineProperty(exports, "__esModule", { value: true });
exports.clabe = void 0;
const clabe = {
version: '1.5.5',
version: '1.5.6',
computeChecksum(clabeNum17) {
const x = (i) => [3, 7, 1][i % 3];
const add = (sum, digit, i) => sum + (Number(digit) * x(i)) % 10;
Expand Down
8 changes: 4 additions & 4 deletions package.json
Original file line number Diff line number Diff line change
@@ -1,6 +1,6 @@
{
"name": "clabe-validator",
"version": "1.5.5",
"version": "1.5.6",
"description": "Analyze or create a CLABE number for a Mexican bank account (written in TypeScript)",
"license": "MIT",
"type": "module",
Expand Down Expand Up @@ -66,8 +66,8 @@
"@babel/core": "~7.12",
"@babel/preset-env": "~7.12",
"@fortawesome/fontawesome-free": "~5.15",
"@typescript-eslint/eslint-plugin": "~4.14",
"@typescript-eslint/parser": "~4.14",
"@typescript-eslint/eslint-plugin": "~4.15",
"@typescript-eslint/parser": "~4.15",
"babel-minify": "~0.5",
"dna.js": "~1.7",
"eslint": "~7.19",
Expand All @@ -84,7 +84,7 @@
"jsdom": "~16.4",
"jshint": "~2.12",
"merge-stream": "~2.0",
"mocha": "~8.2",
"mocha": "~8.3",
"rimraf": "~3.0",
"typescript": "~4.1",
"web-ignition": "~1.4"
Expand Down

0 comments on commit 4c8cb96

Please sign in to comment.