From 0000c933753da4f690675274929a887ffc31dc25 Mon Sep 17 00:00:00 2001 From: phated Date: Fri, 7 Jan 2022 18:59:23 +0000 Subject: [PATCH] chore: Run prettier --- index.js | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/index.js b/index.js index 8b3dfec..b602f08 100644 --- a/index.js +++ b/index.js @@ -37,7 +37,7 @@ function Timestamp() { Timestamp.prototype[util.inspect.custom] = function (depth, opts) { var timestamp = this.now.toLocaleTimeString('en', { hour12: false }); return '[' + opts.stylize(timestamp, 'date') + ']'; -} +}; function getTimestamp() { return util.inspect(new Timestamp(), { colors: hasColors() });