PassiveSupport.Module.from_string

You're seeing just the function from_string, go back to PassiveSupport.Module module for more information.
Link to this function

from_string(string)

Specs

from_string(String.t()) :: atom() | nil

Retrieves an alias with the same name as string if the alias was already referenced.

Returns nil if the alias has not already been referenced.

Examples

iex> from_string("PassiveSupport.Module")
PassiveSupport.Module

iex> from_string("PassiveSupport.Nodule")
nil