UNPKG

280 BJavaScriptView Raw
1"use strict";
2
3module.exports = function (value) {
4 if (!value) return false;
5 if (typeof value === "symbol") return true;
6 if (!value.constructor) return false;
7 if (value.constructor.name !== "Symbol") return false;
8 return value[value.constructor.toStringTag] === "Symbol";
9};