Skip to main content

@std/http@0.215.0

latest
Works with
It is unknown whether this package works with Browsers, Deno, Node.js, Cloudflare Workers, Bun
It is unknown whether this package works with Browsers
It is unknown whether this package works with Deno
It is unknown whether this package works with Node.js
It is unknown whether this package works with Cloudflare Workers
It is unknown whether this package works with Bun
JSR Score70%
Published2 years ago (0.215.0)
function ifMatch
ifMatch(
value: string | null,
etag: string | undefined
): boolean

A helper function that takes the value from the If-Match header and a calculated etag for the target. By using strong comparison, return true if the values match, otherwise false.

See MDN's If-Match article for more information on how to use this function.

import {
  calculate,
  ifMatch,
} from "@std/http/etag";
import { assert } from "@std/assert/assert"

const body = "hello deno!";

Deno.serve(async (req) => {
  const ifMatchValue = req.headers.get("if-match");
  const etag = await calculate(body);
  assert(etag);
  if (!ifMatchValue || ifMatch(ifMatchValue, etag)) {
    return new Response(body, { status: 200, headers: { etag } });
  } else {
    return new Response(null, { status: 412, statusText: "Precondition Failed"});
  }
});

Parameters

value: string | null
etag: string | undefined

Return Type

Report package

Please provide a reason for reporting this package. We will review your report and take appropriate action.

Please review the JSR usage policy before submitting a report.

Add Package

deno add jsr:@std/http

Import symbol

import { ifMatch } from "@std/http";
or

Import directly with a jsr specifier

import { ifMatch } from "jsr:@std/http";