| 1447 | return obj && typeof obj === "object" && Function.prototype.toString.call(obj.constructor) === "function String() { [native code] }"; |
| 1448 | } |
| 1449 | function isNumberObject(obj) { |
| 1450 | return obj && typeof obj === "object" && Function.prototype.toString.call(obj.constructor) === "function Number() { [native code] }"; |
| 1451 | } |
| 1452 | function isBooleanObject(obj) { |
| 1453 | return obj && typeof obj === "object" && Function.prototype.toString.call(obj.constructor) === "function Boolean() { [native code] }"; |
| 1454 | } |