(thing)
| 185 | } |
| 186 | const toString = Object.prototype.toString; |
| 187 | function isObject(thing) { |
| 188 | return toString.call(thing) === '[object Object]'; |
| 189 | } |
| 190 | function getLocator(source) { |
| 191 | const originalLines = source.split('\n'); |
| 192 | const lineOffsets = []; |