(obj)
| 27508 | return toStr(obj) === "[object String]" && (!toStringTag2 || !(typeof obj === "object" && toStringTag2 in obj)); |
| 27509 | } |
| 27510 | function isNumber2(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 | } |
no test coverage detected
searching dependent graphs…