@httpland/accept-ranges-parser
TypeScript icon, indicating that this package has built-in type declarations

1.0.1 • Public • Published

accept-ranges-parser

deno land deno doc GitHub release (latest by date) codecov GitHub

test NPM

HTTP Accept-Ranges header field parser.

Compliant with RFC 9110, 14.3. Accept-Ranges.

Deserialization

Parses string into AcceptRanges.

import { parseAcceptRanges } from "https://deno.land/x/accept_ranges_parser@$VERSION/parse.ts";
import { assertEquals } from "https://deno.land/std/testing/asserts.ts";

assertEquals(parseAcceptRanges(`none`), ["none"]);
assertEquals(parseAcceptRanges(`bytes, unknown`), ["bytes", "unknown"]);

Throwing error

Throws SyntaxError if the input is invalid <Accept-Ranges> syntax.

import { parseAcceptRanges } from "https://deno.land/x/accept_ranges_parser@$VERSION/parse.ts";
import { assertThrows } from "https://deno.land/std/testing/asserts.ts";

assertThrows(() => parseAcceptRanges("<invalid>"));

Serialization

Serialize string of array into string.

import { stringifyAcceptRanges } from "https://deno.land/x/accept_ranges_parser@$VERSION/stringify.ts";
import { assertEquals } from "https://deno.land/std/testing/asserts.ts";

assertEquals(stringifyAcceptRanges(["bytes"]), "bytes");

Throwing error

Throws TypeError if the element contains invalid <range-unit> syntax.

import { stringifyAcceptRanges } from "https://deno.land/x/accept_ranges_parser@$VERSION/stringify.ts";
import { assertThrows } from "https://deno.land/std/testing/asserts.ts";

assertThrows(() => stringifyAcceptRanges(["<invalid>", "none"]));

AcceptRanges

AcceptRanges is a subtype of array with the following characteristics.

  • It has one or more elements.
  • The elements are Token.

Token

Represents a character set that compliant with RFC 9110, 5.6.2. Tokens as much as possible.

API

All APIs can be found in the deno doc.

License

Copyright © 2023-present httpland.

Released under the MIT license

Package Sidebar

Install

npm i @httpland/accept-ranges-parser

Weekly Downloads

37

Version

1.0.1

License

MIT

Unpacked Size

15 kB

Total Files

23

Last publish

Collaborators

  • miyauci