Skip to main content
AI Assist is now on Stack Overflow. Start a chat to get instant answers from across the network. Sign up to save and share your chats.
@Matti suggestion
Source Link
insign
  • 5.9k
  • 1
  • 43
  • 35
function isObjectLike(value) {
  return value != null && typeof value == 'object';'object' && !Array.isArray(value);
}

gotBased from lodash

function isObjectLike(value) {
  return value != null && typeof value == 'object';
}

got from lodash

function isObjectLike(value) {
  return value != null && typeof value == 'object' && !Array.isArray(value);
}

Based from lodash

Source Link
insign
  • 5.9k
  • 1
  • 43
  • 35

function isObjectLike(value) {
  return value != null && typeof value == 'object';
}

got from lodash