Utilities for working with Asset
Split asset id by the last slash.
@spec split_id(String.t()) :: {String.t(), String.t()}
iex> Asset.split_id("/type/id") {"/type", "id"} iex> Asset.split_id("id") {"", "id"}