(obj)
| 27511 | return toStr(obj) === "[object Number]" && (!toStringTag2 || !(typeof obj === "object" && toStringTag2 in obj)); |
| 27512 | } |
| 27513 | function isBoolean2(obj) { |
| 27514 | return toStr(obj) === "[object Boolean]" && (!toStringTag2 || !(typeof obj === "object" && toStringTag2 in obj)); |
| 27515 | } |
| 27516 | function isSymbol(obj) { |
| 27517 | if (hasShammedSymbols) { |
| 27518 | return obj && typeof obj === "object" && obj instanceof Symbol; |
no test coverage detected
searching dependent graphs…