NOTICE: By continued use of this site you understand and agree to the binding Terms of Service and Privacy Policy.
/* * name Console Tools * namespace PXgamer * version 0.2 * description A library for shortened console.log, console.info, console.error * author PXgamer */ function cl(variable) { 'use strict'; console.log(variable); } function ci(variable) { 'use strict'; console.info(variable); } function ce(variable) { 'use strict'; console.error(variable); } function cw(variable) { 'use strict'; console.warn(variable); } function ct(variable) { 'use strict'; console.trace(variable); } function cc() { 'use strict'; console.clear(); }