UNPKG
@minofrk/msf-io-ts
Version:
latest (0.2.0)
0.2.0
0.1.0
0.0.2
0.0.1
0.0.0
Type utilities with io-ts for MSF format.
github.com/minofrk/msf-io-ts
minofrk/msf-io-ts
@minofrk/msf-io-ts
/
lib
/
state
/
has-duplicate.js
7 lines
•
265 B
JavaScript
View Raw
1
2
3
4
5
6
7
"use strict"
;
Object
.
defineProperty
(
exports
,
"__esModule"
, {
value
:
true
});
function
hasDuplicate
(
items
) {
return
!items.
every
(
function
(
x, i
) {
return
items.
indexOf
(x) === i; }); }
exports
.
hasDuplicate
= hasDuplicate;
//# sourceMappingURL=has-duplicate.js.map