(url, { serialize = stringify, deserialize = parse, fetchOptions = {} } = {})
| 17 | }) |
| 18 | class CloudDBAdapter { |
| 19 | constructor(url, { serialize = stringify, deserialize = parse, fetchOptions = {} } = {}) { |
| 20 | this.url = url |
| 21 | this.serialize = serialize |
| 22 | this.deserialize = deserialize |
| 23 | this.fetchOptions = fetchOptions |
| 24 | } |
| 25 | |
| 26 | async read() { |
| 27 | try { |
nothing calls this directly
no outgoing calls
no test coverage detected