(obj)
| 1437 | return uidSeed++; |
| 1438 | } |
| 1439 | function isArray$1(obj) { |
| 1440 | if (Array.isArray) { |
| 1441 | return Array.isArray(obj); |
| 1442 | } else { |
| 1443 | return obj && obj.length !== void 0 && obj.pop && obj.push; |
| 1444 | } |
| 1445 | } |
| 1446 | function isStringObject(obj) { |
| 1447 | return obj && typeof obj === "object" && Function.prototype.toString.call(obj.constructor) === "function String() { [native code] }"; |
| 1448 | } |