We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
There was an error while loading. Please reload this page.
1 parent 3cd8393 commit a27d276Copy full SHA for a27d276
src/_utils.mjs
@@ -47,7 +47,7 @@ function _arraySerializer (serializer, array) {
47
* used for the serialization of arrais.
48
*/
49
const _makeArraySerializer = (serializer) => {
50
- if (typeof serializer === 'function') return _arraySerializer.bind(null, serializer);
+ if (typeof serializer === 'function') return _arraySerializer.bind(this, serializer);
51
return JSON.stringify;
52
};
53
0 commit comments