public isDepthAtStart()

in src/util/Bookmark.ts [72:85]


  public isDepthAtStart(depth: number) {
    if (depth === 0) {
      return true;
    }
    if (depth === undefined) {
      return this.startingDepth === undefined;
    }

    let startingDepth = this.startingDepth();
    if (startingDepth === undefined) {
      startingDepth = this.commitPath.length - 1;
    }
    return depth === startingDepth;
  }