4.0.0 (2024-04-12)
- Return
undefined
instead ofnull
for default value to allow reassignment when destructuring
3.2.0 (2024-04-12)
3.1.0 (2020-08-29)
3.0.0 (2020-08-28)
- Changed the type
2.1.1 (2020-08-28)
- Revert "feat: make use of export name without tuple qualifier (#13)" (#14) (30ec981), closes #13 #14
2.1.0 (2020-08-28)
2.0.0 (2020-08-27)
The Node.js callback(err, res)
pattern makes sure that the error object is explicitly available and needs to be checked first before expecting the response object. Hence, ignoring the error object requires intentionally ignoring the first argument.
With the goal of making it simpler to adopt better error handling practices, the de-facto approach of this library is now [err, res]
compared to the [res, err]
and { error, result }
formats in previous versions.
- invert tuple ordering (9b69fb9)
1.1.3 (2020-01-27)
1.1.2 (2020-01-27)
1.1.1 (2020-01-27)
1.1.0 (2020-01-27)
1.0.1 (2019-11-30)
- ci build failing (c84a082)