Open tmcw opened 2 months ago
The behavior of
return !utils.access(data, check);
and
return !utils.access(data, check) ?? true;
Is identical because false ?? true === false and true ?? true === true.
false ?? true === false
true ?? true === true
Any chance this'll get merged? This is going to prevent people from using arborist with TypeScript 5.6.
The behavior of
and
Is identical because
false ?? true === false
andtrue ?? true === true
.