log

external fun log(string: String)(source)

The util.log() method prints the given string to stdout with an included timestamp.

const util = require('node:util');

util.log('Timestamped message.');

Since

v0.3.0