(str)
| 533 | }); |
| 534 | |
| 535 | function isInteger(str) { |
| 536 | var c0 = str.charCodeAt(0) |
| 537 | if (c0 >= 48 && c0 <= 57) return !/\D/.test(str) |
| 538 | else return false |
| 539 | } |
| 540 | |
| 541 | var Obj = exports.Obj = function(proto, name) { |
| 542 | if (!this.props) this.props = Object.create(null); |
no test coverage detected