mirror of
https://github.com/oven-sh/setup-bun.git
synced 2025-07-05 09:43:45 +08:00
8 lines
267 B
JavaScript
8 lines
267 B
JavaScript
// Copyright (c) Microsoft Corporation.
|
|
// Licensed under the MIT license.
|
|
import util from "util";
|
|
import { EOL } from "os";
|
|
export function log(message, ...args) {
|
|
process.stderr.write(`${util.format(message, ...args)}${EOL}`);
|
|
}
|
|
//# sourceMappingURL=log.js.map
|