1.2.0 • Published 6 years ago

power-assert-renderer-diagram v1.2.0

Weekly downloads
152,263
License
MIT
Repository
github
Last release
6 years ago

power-assert

Build Status NPM version License

Produces graph of each value in expression.

  assert(a.name === 'bar')
         | |    |         
         | |    false     
         | "foo"          
         Object{name:"foo"}

USAGE

var DiagramRenderer = require('power-assert-renderer-diagram');

options.stringify

typedefault value
functionstringifier module

Function to stringify any target value.

options.maxDepth

typedefault value
number2

Depth of object traversal. If object depth is greater than maxDepth, compound object (IOW, Array or object) will be pruned with # like ["foo",#Array#,#Object#].

options.lineSeparator

typedefault value
string"\n"

Line separator in power assert output.

options.anonymous

typedefault value
string"Object"

Type name to show when target object is created by anonymous constructor.

options.circular

typedefault value
string"#@Circular#"

Name to show when target object is detected as circular structure.

options.widthOf

typedefault value
functionpower-assert-util-string-width

Function to calculate width of string.

options.ambiguousEastAsianCharWidth

typedefault value
number2

Width of 'Ambiguous' characters defined in Unicode Standard Annex #11 EAST ASIAN WIDTH. Configure options.ambiguousEastAsianCharWidth to treat ambiguous east asian character as fullwidth (= 2) or narrow (= 1). Default is 2.

INSTALL

$ npm install --save-dev power-assert-renderer-diagram

AUTHOR

LICENSE

Licensed under the MIT license.