Website : rimsha.abasa.com
backdoor
Home
Console
Upload
information
Create File
Create Folder
About
Tools
:
/
var
/
canvas
/
node_modules
/
@instructure
/
ui-test-locator
/
node_modules
/
@sinonjs
/
samsam
/
lib
/
Filename :
is-set.js
back
Copy
"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;