(obj)
| 1969 | noop.exec = noop; |
| 1970 | |
| 1971 | function merge(obj) { |
| 1972 | var i = 1, |
| 1973 | target, |
| 1974 | key; |
| 1975 | |
| 1976 | for (; i < arguments.length; i++) { |
| 1977 | target = arguments[i]; |
| 1978 | for (key in target) { |
| 1979 | if (Object.prototype.hasOwnProperty.call(target, key)) { |
| 1980 | obj[key] = target[key]; |
| 1981 | } |
| 1982 | } |
| 1983 | } |
| 1984 | |
| 1985 | return obj; |
| 1986 | } |
| 1987 | |
| 1988 | function splitCells(tableRow, count) { |
| 1989 | var cells = tableRow.replace(/([^\\])\|/g, '$1 |').split(/ +\| */), |
no outgoing calls
no test coverage detected