(str)
| 544 | }); |
| 545 | |
| 546 | function isInteger(str) { |
| 547 | var c0 = str.charCodeAt(0); |
| 548 | if (c0 >= 48 && c0 <= 57) return !/\D/.test(str); |
| 549 | else return false; |
| 550 | } |
| 551 | |
| 552 | var Obj = exports.Obj = function(proto, name) { |
| 553 | if (!this.props) this.props = Object.create(null); |
no outgoing calls
no test coverage detected
searching dependent graphs…