* @param {string | number | boolean | null} v * @param {(v: string) => string} encode * @returns {string}
(v, encode)
| 213 | * @returns {string} |
| 214 | */ |
| 215 | function encodeStringifiedCustom(v, encode) { |
| 216 | return encode(stringifyPrimitive(v)); |
| 217 | } |
| 218 | |
| 219 | /** |
| 220 | * @param {Record<string, string | number | boolean |
nothing calls this directly
no test coverage detected
searching dependent graphs…