Update utils.js

This commit is contained in:
Aleksandr Statciuk 2021-08-01 06:24:51 +03:00
parent 641286090e
commit 70e214f929

View File

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