Skip to main content
Deno 2 is finally here 🎉️
Learn more
Module

x/deno2node/src/deps.deno.ts>CodeBlockWriter#conditionalWriteLine

Compile your Deno project to run on Node.js.
Go to Latest
method CodeBlockWriter.prototype.conditionalWriteLine
import { CodeBlockWriter } from "https://deno.land/x/deno2node@v1.10.0/src/deps.deno.ts";

Conditionally writes a line of text.

Parameters

condition: boolean | undefined
  • Condition to evaluate.
textFunc: () => string
  • A function that returns a string to write if the condition is true.

Conditionally writes a line of text.

Parameters

condition: boolean | undefined
  • Condition to evaluate.
text: string
  • Text to write if the condition is true.