(value)
| 263 | return Buffer.from(String(value), 'base64').toString('binary'); |
| 264 | }, |
| 265 | btoa(value) { |
| 266 | return Buffer.from(String(value), 'binary').toString('base64'); |
| 267 | }, |
| 268 | location: { |
| 269 | href: entryUrl, |
| 270 | protocol: `${url.protocol}`, |
nothing calls this directly
no outgoing calls
no test coverage detected