File tree Expand file tree Collapse file tree 1 file changed +4
-4
lines changed Expand file tree Collapse file tree 1 file changed +4
-4
lines changed Original file line number Diff line number Diff line change @@ -6,28 +6,28 @@ import { arbDomainName } from "./domain-name.arb";
6
6
* Arbitrary {@link PackageUrl} with `http` protocol.
7
7
*/
8
8
export const arbHttpPackageUrl = arbDomainName
9
- . map ( ( packageName ) => `http://github.com/user/${ { packageName } } ` )
9
+ . map ( ( packageName ) => `http://github.com/user/${ packageName } ` )
10
10
. map ( PackageUrl . parse ) ;
11
11
12
12
/**
13
13
* Arbitrary {@link PackageUrl} with `https` protocol.
14
14
*/
15
15
export const arbHttpsPackageUrl = arbDomainName
16
- . map ( ( packageName ) => `https://github.com/user/${ { packageName } } ` )
16
+ . map ( ( packageName ) => `https://github.com/user/${ packageName } ` )
17
17
. map ( PackageUrl . parse ) ;
18
18
19
19
/**
20
20
* Arbitrary {@link PackageUrl} with `git` protocol.
21
21
*/
22
22
export const arbGitPackageUrl = arbDomainName
23
- . map ( ( packageName ) => `git@github:user/${ { packageName } } ` )
23
+ . map ( ( packageName ) => `git@github:user/${ packageName } ` )
24
24
. map ( PackageUrl . parse ) ;
25
25
26
26
/**
27
27
* Arbitrary {@link PackageUrl} with `file` protocol.
28
28
*/
29
29
export const arbFilePackageUrl = arbDomainName
30
- . map ( ( packageName ) => `file://users/some-user/projects/${ { packageName } } ` )
30
+ . map ( ( packageName ) => `file://users/some-user/projects/${ packageName } ` )
31
31
. map ( PackageUrl . parse ) ;
32
32
33
33
/**
You can’t perform that action at this time.
0 commit comments