Skip to main content
Module

std/fs/mod.ts>writeFileStrSync

Deno standard library
Go to Latest
The Standard Library has been moved to JSR. See the blog post for details.
function writeFileStrSync
import { writeFileStrSync } from "https://deno.land/std@v0.34.0/fs/mod.ts";

Write the string to file synchronously.

Parameters

filename: string

File to write

content: string

The content write to file

Returns

void

void