Update utils.js

This commit is contained in:
Aleksandr Statciuk 2021-08-01 06:24:51 +03:00
parent 641286090e
commit 70e214f929
1 changed files with 4 additions and 0 deletions

View File

@ -185,4 +185,8 @@ utils.removeProtocol = function (string) {
return string.replace(/(^\w+:|^)\/\//, '')
}
utils.log = function (string) {
process.stdout.write(string)
}
module.exports = utils