(prefix, value)
| 1258 | |
| 1259 | t.test('strictNullHandling works with custom filter', function (st) { |
| 1260 | var filter = function (prefix, value) { |
| 1261 | return value; |
| 1262 | }; |
| 1263 | |
| 1264 | var options = { strictNullHandling: true, filter: filter }; |
| 1265 | st.equal(qs.stringify({ key: null }, options), 'key'); |
no outgoing calls
no test coverage detected