Answers for "Local Export Module"

0

Local Export Module

const log = {
            info: function (info) { 
                console.log('Info: ' + info);
            },
            warning:function (warning) { 
                console.log('Warning: ' + warning);
            },
            error:function (error) { 
                console.log('Error: ' + error);
            }
    };

module.exports = log
Posted by: Guest on June-18-2021

Code answers related to "Local Export Module"

Browse Popular Code Answers by Language