local_ingredients (generic function with 1 method)
👀 Reading hidden code
# this is from the Julia source code (evalfile in base/loading.jl)
# but with the modification that it returns the module instead of the last object
name = Symbol(basename(path))
Expr(:toplevel,
:(include($path))))
end
ingredients (generic function with 1 method)
👀 Reading hidden code
try
catch e
if !startswith(url, "http")
throw(ArgumentError("Not a URL. Use `ingredients(path=\"$(url)\")` for local files instead."))
else
rethrow(e)
end
end
end
ingredients (generic function with 2 methods)
👀 Reading hidden code
url::Union{String,Nothing}=nothing,
path::Union{String,Nothing}=nothing)
else
throw(ArgumentError("""Use `ingredients(url="...")` or `ingredients(path="...")`."""))
end
end
ArgumentError: Not a URL. Use `ingredients(path="unicode.jl")` for local files instead.
Here is what happened, the most recent locations are first:
a2 = ingredients("unicode.jl")
👀 Reading hidden code
Main.unicode.jl
a = ingredients(path="unicode.jl")
👀 Reading hidden code
:💩
a.💩
👀 Reading hidden code
Main.jl_bkEeJR
b = ingredients("https://raw.githubusercontent.com/fonsp/disorganised-mess/master/unicode.jl")
👀 Reading hidden code
:💩
b.💩
👀 Reading hidden code