UNPKG
globify-gitignore
Version:
latest (1.0.3)
1.0.3
1.0.2
1.0.1
1.0.0
0.2.1
0.2.0
0.1.1
0.1.0
Convert Gitignore to Glob patterns
github.com/aminya/globify-gitignore
aminya/globify-gitignore
globify-gitignore
/
src
/
make-unique.d.ts
6 lines
(5 loc)
•
161 B
TypeScript
View Raw
1
2
3
4
5
6
declare module
"make-unique"
{
function
unique
<
T
>
(
array
:
T
[
]
)
:
T
[
]
function
unique
<
T
>
(
array
:
T
[
]
,
matcher
:
(
a
:
T
,
b
:
T
)
=
>
boolean
)
:
T
[
]
export
=
unique
}