Skip to content

Commit

Permalink
Removed sanitization
Browse files Browse the repository at this point in the history
  • Loading branch information
songyuew committed Jan 23, 2023
1 parent 2a5b111 commit 31acc53
Showing 1 changed file with 0 additions and 1 deletion.
1 change: 0 additions & 1 deletion src/lib/isAbaRouting.js
Original file line number Diff line number Diff line change
Expand Up @@ -7,7 +7,6 @@ const isRoutingReg = /^(?!(1[3-9])|(20)|(3[3-9])|(4[0-9])|(5[0-9])|(60)|(7[3-9])

export default function isAbaRouting(str) {
assertString(str);
str = str.trim();

if (!isRoutingReg.test(str)) return false;

Expand Down

0 comments on commit 31acc53

Please sign in to comment.