@httpland/accept-ranges-parser
Version:
HTTP Accept-Ranges header field parser
10 lines (9 loc) • 632 B
JavaScript
// Copyright 2023-latest the httpland authors. All rights reserved. MIT license.
// This module is browser compatible.
Object.defineProperty(exports, "__esModule", { value: true });
exports.stringifyAcceptRanges = exports.parseAcceptRanges = void 0;
var parse_js_1 = require("./parse.js");
Object.defineProperty(exports, "parseAcceptRanges", { enumerable: true, get: function () { return parse_js_1.parseAcceptRanges; } });
var stringify_js_1 = require("./stringify.js");
Object.defineProperty(exports, "stringifyAcceptRanges", { enumerable: true, get: function () { return stringify_js_1.stringifyAcceptRanges; } });
;