-
Notifications
You must be signed in to change notification settings - Fork 4
Open
Labels
Description
We have a problem with the validation operator for object type without null javascript and a type to point to an empty object. However validation breaks if I have rows with null values.
const isObject = typeof data[i] === 'object'
change to :
const isObject = typeof data[i] === 'object' && data[i] != null
Reactions are currently unavailable