We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
There was an error while loading. Please reload this page.
1 parent a36c83b commit 50367d3Copy full SHA for 50367d3
packages/cdktf/lib/terraform-output.ts
@@ -5,7 +5,6 @@ import { TerraformElement } from "./terraform-element";
5
import { deepMerge } from "./util";
6
import { ITerraformDependable } from "./terraform-dependable";
7
import { Expression } from ".";
8
-import { isArray } from "util";
9
import { ITerraformAddressable } from "./terraform-addressable";
10
import { Token } from "./tokens";
11
import { Precondition } from "./terraform-conditions";
@@ -66,7 +65,7 @@ export class TerraformOutput extends TerraformElement {
66
65
return (
67
object &&
68
typeof object === "object" &&
69
- !isArray(object) &&
+ !Array.isArray(object) &&
70
"fqn" in object
71
);
72
}
0 commit comments