mya/node_modules/native-run/dist/utils/log.js
Fabio 82ccd023df
Some checks are pending
Build Android APK / build (push) Waiting to run
first commit
2026-01-21 15:08:14 +01:00

11 lines
316 B
JavaScript

"use strict";
Object.defineProperty(exports, "__esModule", { value: true });
exports.log = void 0;
const json_1 = require("./json");
function log(message) {
if (process.argv.includes('--json')) {
message = (0, json_1.stringify)({ message });
}
process.stdout.write(message);
}
exports.log = log;