""Provides the empty string "".
When to use
Use when you need the canonical empty string value from the String module.
Example (Referencing the empty string)
import { String } from "effect"
console.log(String.empty) // ""
console.log(String.isEmpty(String.empty)) // trueconstants
Source effect/String.ts:1171 lines
export const const empty: ""Provides the empty string "".
When to use
Use when you need the canonical empty string value from the String module.
Example (Referencing the empty string)
import { String } from "effect"
console.log(String.empty) // ""
console.log(String.isEmpty(String.empty)) // true
empty: "" = "" as type const = ""const