Open
Description
The readme states:
You may combine strict validation with warnings by passing true as the second argument, and warnFn as third.
However, the code is the other way around:
function normalize (data, warn, strict) {
if(warn === true) warn = null, strict = true
Which one of these should be changed?