6 lines
78 B
JavaScript
6 lines
78 B
JavaScript
function isSet(value) {
|
|
return value instanceof Set;
|
|
}
|
|
|
|
export { isSet };
|