Skip to content

Commit

Permalink
Merge pull request #99 from koblas/be_clean
Browse files Browse the repository at this point in the history
fix: added .- to vat cleaner
  • Loading branch information
koblas authored Aug 23, 2023
2 parents 97c1c3c + 72067e9 commit 30ea48b
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion src/be/vat.ts
Original file line number Diff line number Diff line change
Expand Up @@ -14,7 +14,7 @@ import { Validator, ValidateReturn } from '../types';

function clean(input: string): ReturnType<typeof strings.cleanUnicode> {
// eslint-disable-next-line prefer-const
let [value, err] = strings.cleanUnicode(input, ' ');
let [value, err] = strings.cleanUnicode(input, ' -.');

if (err !== null) {
return [value, err];
Expand Down

0 comments on commit 30ea48b

Please sign in to comment.