mirror of
https://github.com/cdr/code-server.git
synced 2025-12-07 17:02:27 +01:00
Inside registerServiceWorker, we were originally using the nullash coalescing operator to check if options.base was null or undefined. However, I realized this check is not necessary. If you look at getOptions' return value, we return an object with a key "base" which is of type "string". We get that value by calling resolveBase which always returns a string. As a result, we didn't need to check if options.base was null or undefined because it never can be. |
||
|---|---|---|
| .. | ||
| routes | ||
| test-plugin | ||
| cli.test.ts | ||
| constants.test.ts | ||
| emitter.test.ts | ||
| health.test.ts | ||
| http.test.ts | ||
| plugin.test.ts | ||
| proxy.test.ts | ||
| register.test.ts | ||
| serviceWorker.test.ts | ||
| socket.test.ts | ||
| update.test.ts | ||
| util.test.ts | ||