(value, options)
| 258 | } |
| 259 | |
| 260 | function encode(value, options) { |
| 261 | if (options.encode) { |
| 262 | return options.strict ? strictUriEncode(value) : encodeURIComponent(value); |
| 263 | } |
| 264 | |
| 265 | return value; |
| 266 | } |
| 267 | |
| 268 | function decode(value, options) { |
| 269 | if (options.decode) { |
no test coverage detected
searching dependent graphs…