async exists(name: string): boolean {
    const item = await this.get(name);
    return !!item;
  }