async check()

in src/convert.ts [137:145]


  async check(requests: ParsedRequest[]): Promise<boolean> {
    const response = JSON.parse(
      this._check(JSON.stringify({ requests: getSlimRequests(requests) })),
    );
    if (response.error) {
      throw new Error(response.error);
    }
    return response.return;
  }