removed console log

This commit is contained in:
nicco 2018-02-06 21:16:29 +01:00
parent 105834ae27
commit 4e0745c146
1 changed files with 0 additions and 1 deletions

View File

@ -64,7 +64,6 @@ export const logic: ActionFunction = html => {
return {
parts: [(data: any) => {
const ret: any = getFromObject(data, current.variable)
console.log('IF', typeof ret, ret)
let isTrue: boolean = ret !== undefined && ret !== false && ret !== null && ret !== ''
if (current.inverted) isTrue = !isTrue