alpha
Login
or
Join now
wojtekmaj.pl
/
is-valid-utr
Star
0
Fork
0
Atom
Configure Feed
Issues
Pull Requests
Commits
Tags
Feed URL
Select the types of activity you want to include in your feed.
[READ-ONLY] Mirror of https://github.com/wojtekmaj/is-valid-utr. Check if a number is a valid Unique Taxpayer Reference (UTR).
Star
0
Fork
0
Atom
Configure Feed
Issues
Pull Requests
Commits
Tags
Feed URL
Select the types of activity you want to include in your feed.
Overview
Issues
Pulls
Pipelines
Enable Biome Import Organizer
author
Wojciech Maj
date
11 months ago
(Aug 5, 2025, 12:07 PM +0200)
commit
02804b40
02804b409f72b0605432e16b798bc07819438105
parent
2e2d0902
2e2d0902d636b0d373e0c9f69901afc66264969c
+44
2 changed files
Expand all
Collapse all
Unified
Split
biome.json
src
index.spec.ts
+43
biome.json
View file
Reviewed
···
11
11
"!**/.pnp.loader.mjs"
12
12
]
13
13
},
14
14
+
"assist": {
15
15
+
"actions": {
16
16
+
"source": {
17
17
+
"organizeImports": {
18
18
+
"level": "on",
19
19
+
"options": {
20
20
+
"groups": [
21
21
+
{ "type": false, "source": ":NODE:" },
22
22
+
{ "type": false, "source": ["vitest", "vitest/**", "@vitest/**", "vitest-*"] },
23
23
+
{ "type": false, "source": "@testing-library/**" },
24
24
+
{ "type": false, "source": ["react", "react-dom", "react-dom/**", "react-native"] },
25
25
+
{ "type": false, "source": [":PACKAGE:"] },
26
26
+
":BLANK_LINE:",
27
27
+
{
28
28
+
"type": false,
29
29
+
"source": [
30
30
+
":PATH:",
31
31
+
"!**/hooks/*",
32
32
+
"!**/use*.js",
33
33
+
"!**/shared/*",
34
34
+
"!**/utils/*",
35
35
+
"!**/__mocks__/*",
36
36
+
"!**/test-utils.js"
37
37
+
]
38
38
+
},
39
39
+
":BLANK_LINE:",
40
40
+
{ "type": false, "source": ["**/hooks/*", "**/use*.js"] },
41
41
+
":BLANK_LINE:",
42
42
+
{ "type": false, "source": ["**/shared/*", "**/utils/*"] },
43
43
+
":BLANK_LINE:",
44
44
+
{ "type": false, "source": "**/__mocks__/*" },
45
45
+
":BLANK_LINE:",
46
46
+
{ "type": false, "source": "**/test-utils.js" },
47
47
+
":BLANK_LINE:",
48
48
+
":NODE:",
49
49
+
":PACKAGE:",
50
50
+
":PATH:"
51
51
+
]
52
52
+
}
53
53
+
}
54
54
+
}
55
55
+
}
56
56
+
},
14
57
"formatter": {
15
58
"lineWidth": 100,
16
59
"indentStyle": "space"
+1
src/index.spec.ts
View file
Reviewed
···
1
1
import { describe, expect, it } from 'vitest';
2
2
+
2
3
import isValidUTR from './index.js';
3
4
4
5
describe('isValidUTR', () => {