From 70e214f9298eefad76be37bec6294828b6388b1b Mon Sep 17 00:00:00 2001 From: Aleksandr Statciuk Date: Sun, 1 Aug 2021 06:24:51 +0300 Subject: [PATCH] Update utils.js --- scripts/utils.js | 4 ++++ 1 file changed, 4 insertions(+) diff --git a/scripts/utils.js b/scripts/utils.js index 0c290ba5f..085848b55 100644 --- a/scripts/utils.js +++ b/scripts/utils.js @@ -185,4 +185,8 @@ utils.removeProtocol = function (string) { return string.replace(/(^\w+:|^)\/\//, '') } +utils.log = function (string) { + process.stdout.write(string) +} + module.exports = utils