Remove unnecessary ternary

This commit is contained in:
Bernardo Belchior
2019-04-30 14:19:51 +01:00
committed by GitHub
parent 742bf85a89
commit 12ff3abeda

View File

@@ -27,7 +27,7 @@
name: {value:""},
func: {value:"\nreturn msg;"},
outputs: {value:1},
noerr: {value:0,required:true,validate:function(v) { return ((!v) || (v === 0)) ? true : false; }}
noerr: {value:0,required:true,validate:function(v) { return ((!v) || (v === 0)); }}
},
inputs:1,
outputs:1,