Files
30-seconds-of-code/test/isSet/isSet.js
Angelos Chalaris 4f1e8b48b6 Test files linted
2018-08-03 10:39:26 +03:00

3 lines
65 B
JavaScript

const isSet = val => val instanceof Set;
module.exports = isSet;