fix: type check

This commit is contained in:
cha0s 2020-06-20 02:01:46 -05:00
parent 9661a12b90
commit 3dc1bf49af

View File

@ -26,7 +26,7 @@ export const variableStepsList = (context, previousSteps, key, variable, variabl
context, context,
previousSteps.concat(steps), previousSteps.concat(steps),
key, key,
'undefined' === typeof variable ? undefined : variable[key], ('object' === typeof variable && null !== variable) ? variable[key] : undefined,
description.type, description.type,
type type
) )