You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
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.
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
The text was updated successfully, but these errors were encountered: