function()

in src/exporters/javascript.ts [110:118]


        function (this: ParsedRequest, kind: string, options) {
          const bodyKind = this.request?.body?.kind ?? "value";

          if (bodyKind == kind) {
            return options.fn(this);
          } else {
            return options.inverse(this);
          }
        },