Remix
Remix
remix/headers · ClassView Source

Range

Summary

The value of a Range HTTP header.

MDN Range Reference

HTTP/1.1 Specification

Signature

class Range {
  constructor(init: string | RangeInit): Range;

  // Properties
  ranges: { end?: number; start?: number }[];
  unit: string;

  // Methods
  canSatisfy(resourceSize: number): boolean;
  normalize(resourceSize: number): { end: number; start: number }[];
  toString(): string;
  from(value: string | RangeInit | null): Range;
}

Properties

ranges

Requested byte ranges from the header.

unit

The range unit, typically bytes.

Methods

canSatisfy(resourceSize: number): boolean

Checks if this range can be satisfied for a resource of the given size.

Parameters

resourceSize

The size of the resource in bytes

normalize(resourceSize: number): { end: number; start: number }[]

Normalizes the ranges for a resource of the given size. Returns an array of ranges with resolved start and end values. Returns an empty array if the range cannot be satisfied.

Parameters

resourceSize

The size of the resource in bytes

toString(): string

Returns the string representation of the header value.

from(value: string | RangeInit | null): Range

Parse a Range header value.

Parameters

value

The header value (string, init object, or null)