API Docs for: 0.0.4
Show:

Utility Class

Module: abstract-utility
Parent Module: abstract

Item Index

Methods

Methods

embed

(
  • target
)
Object chainable

Defined in lib/utility.js:267

Shallow Merge of Current Object with Another, and Function Mounting

Functions in exact same manner as the Connect utilities "merge" method

Parameters:

  • target Object

Returns:

Object:

report

(
  • arguments
)

Defined in lib/utility.js:220

Console a variable report

Parameters:

  • arguments Object multiple

table

(
  • data
)

Defined in lib/utility.js:161

Draw data in table style

Parameters:

  • data Object

Example:

//console.table console.table([ { .. row .. } ]);

//console.table console.table({ 'head': [ 'I/O ID', 'Endpoint', 'Description' ], 'colWidths': [ 30, 50, 50 ], 'rows': [ [ 'one', 'two', 'three' ], [ 'one', 'two', 'three' ] ] });