module Ollama::Documents::Cache::Common

def unpre(key)

Returns:
  • (String) - the input string without the prefix.

Parameters:
  • key (String) -- the input string containing the prefix.
def unpre(key)
  key.sub(/\A#@prefix/, '')
end