2024-01-01 14:58:21 -05:00
|
|
|
// Copyright 2018-2024 the Deno authors. All rights reserved. MIT license.
|
2023-02-14 11:38:45 -05:00
|
|
|
// Copyright Joyent and Node contributors. All rights reserved. MIT license.
|
|
|
|
|
2023-06-27 02:18:22 -04:00
|
|
|
// TODO(petamoriken): enable prefer-primordials for node polyfills
|
|
|
|
// deno-lint-ignore-file prefer-primordials
|
|
|
|
|
2023-07-02 14:19:30 -04:00
|
|
|
import { setUnrefTimeout } from "node:timers";
|
2023-03-08 06:44:54 -05:00
|
|
|
import { notImplemented } from "ext:deno_node/_utils.ts";
|
2023-02-14 11:38:45 -05:00
|
|
|
|
|
|
|
let utcCache: string | undefined;
|
|
|
|
|
|
|
|
export function utcDate() {
|
|
|
|
if (!utcCache) cache();
|
|
|
|
return utcCache;
|
|
|
|
}
|
|
|
|
|
|
|
|
function cache() {
|
|
|
|
const d = new Date();
|
|
|
|
utcCache = d.toUTCString();
|
|
|
|
setUnrefTimeout(resetCache, 1000 - d.getMilliseconds());
|
|
|
|
}
|
|
|
|
|
|
|
|
function resetCache() {
|
|
|
|
utcCache = undefined;
|
|
|
|
}
|
|
|
|
|
|
|
|
export function emitStatistics(
|
|
|
|
_statistics: { startTime: [number, number] } | null,
|
|
|
|
) {
|
|
|
|
notImplemented("internal/http.emitStatistics");
|
|
|
|
}
|
|
|
|
|
|
|
|
export const kOutHeaders = Symbol("kOutHeaders");
|
|
|
|
export const kNeedDrain = Symbol("kNeedDrain");
|
|
|
|
|
|
|
|
export default {
|
|
|
|
utcDate,
|
|
|
|
emitStatistics,
|
|
|
|
kOutHeaders,
|
|
|
|
kNeedDrain,
|
|
|
|
};
|