(str)
| 215 | } |
| 216 | |
| 217 | export const escapeIdentifier = function escape(str) { |
| 218 | return '"' + str.replace(/"/g, '""').replace(/\./g, '"."') + '"' |
| 219 | } |
| 220 | |
| 221 | export const inferType = function inferType(x) { |
| 222 | return ( |
no outgoing calls
no test coverage detected