resolve method

String resolve(
  1. String href
)

Implementation

String resolve(String href) {
  final String cleaned = href.split("#").first;
  if (cleaned.startsWith("/")) return cleaned.substring(1);
  return _normalize("$opfDirectory$cleaned");
}