Create shortcut to console.log() in Chrome

后端 未结 4 908
臣服心动
臣服心动 2020-11-28 12:34

Because I\'m lazy, I created a function log that basically is just an abbreviation of console.log:

function log() {
  console.log.a         


        
4条回答
  •  清歌不尽
    2020-11-28 13:17

    I just created a module to do that.

    Check out: https://github.com/ahlechandre/consl

    Install

    npm install consl --save-dev

    Usage

    const { cl } = require('consl');
    
    cl('Outputs a message on the Console using a quick');
    

提交回复
热议问题