(setting)
| 291 | * @returns {undefined | string | boolean} encoded overlay settings |
| 292 | */ |
| 293 | const encodeOverlaySettings = (setting) => |
| 294 | typeof setting === "function" |
| 295 | ? encodeURIComponent(setting.toString()) |
| 296 | : setting; |
| 297 | |
| 298 | // Working for overload, because typescript doesn't support this yes |
| 299 | /** |
no outgoing calls
no test coverage detected
searching dependent graphs…