function isImportedFrom()

in src/utils/is-imported-from.js [6:11]


function isImportedFrom(moduleRegex, identifier, scope) {
  const definition = getVariableDeclaration(scope, identifier)

  // Return true if the variable was imported from the given module
  return definition && definition.type == 'ImportBinding' && moduleRegex.test(definition.parent.source.value)
}