fix(core): Fixed wrong return message in debug output for Path
This commit is contained in:
parent
44fb6e0107
commit
2699bb9496
2 changed files with 4 additions and 2 deletions
|
@ -31,7 +31,7 @@ Path.prototype.withRaise = function (raise = false) {
|
|||
Path.prototype.setRender = function (render = true) {
|
||||
if (render) this.render = true
|
||||
else this.render = false
|
||||
if (this.debug) this.raise.debug('Setting `Path.render` to ' + render ? '`true`' : '`false`')
|
||||
if (this.debug) this.raise.debug('Setting `Path.render` to ' + (render ? '`true`' : '`false`'))
|
||||
|
||||
return this
|
||||
}
|
||||
|
|
Loading…
Add table
Add a link
Reference in a new issue