@typespec/ts-http-runtime
Version:
Isomorphic client library for making HTTP requests in node.js and browser.
9 lines • 318 B
JavaScript
// Copyright (c) Microsoft Corporation.
// Licensed under the MIT License.
import { EOL } from "node:os";
import util from "node:util";
import * as process from "node:process";
export function log(message, ...args) {
process.stderr.write(`${util.format(message, ...args)}${EOL}`);
}
//# sourceMappingURL=log.js.map