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