patch()

in src/httpPostMessage.ts [84:91]


  patch<T>(url: string, body: any, headers: any = {}, targetWindow: Window = this.defaultTargetWindow) {
    return this.send<T>({
      method: "PATCH",
      url,
      headers,
      body
    }, targetWindow);
  }