Add production dependencies
This commit is contained in:
parent
5a0114f3e2
commit
579ccdc29f
12113 changed files with 978046 additions and 3 deletions
22
node_modules/better-console/demo.js
generated
vendored
Normal file
22
node_modules/better-console/demo.js
generated
vendored
Normal file
|
@ -0,0 +1,22 @@
|
|||
var console = require('./index');
|
||||
|
||||
console.log('> console.info("This is information")');
|
||||
console.info("This is information");
|
||||
|
||||
console.log('');
|
||||
console.log('> console.error("Oops!")');
|
||||
console.error("Oops!");
|
||||
|
||||
console.log('');
|
||||
console.log("> var arr = [");
|
||||
console.log(" ['a','b','c','d'],");
|
||||
console.log(" ['e','f','h','j']");
|
||||
console.log(" ];");
|
||||
console.log("> console.table(arr);");
|
||||
|
||||
var arr = [
|
||||
['a','b','c','d'],
|
||||
['e','f','h','j']
|
||||
];
|
||||
console.table(arr);
|
||||
console.log('> ');
|
Loading…
Add table
Add a link
Reference in a new issue