You can not select more than 25 topics
Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.
14 lines
391 B
14 lines
391 B
"use strict";
|
|
|
|
/**
|
|
* Returns `true` when the argument is an instance of Set, `false` otherwise
|
|
*
|
|
* @alias module:samsam.isSet
|
|
* @param {*} val - A value to examine
|
|
* @returns {boolean} Returns `true` when the argument is an instance of Set, `false` otherwise
|
|
*/
|
|
function isSet(val) {
|
|
return (typeof Set !== "undefined" && val instanceof Set) || false;
|
|
}
|
|
|
|
module.exports = isSet;
|
|
|