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

std/ini/mod.ts>IniMap#set

Deno standard library
Go to Latest
The Standard Library has been moved to JSR. See the blog post for details.
method IniMap.prototype.set
Re-export
import { IniMap } from "https://deno.land/std@0.218.2/ini/mod.ts";

Set the value of a global key in the INI.

Parameters

key: string
value: any

Set the value of a section key in the INI.

Parameters

section: string
key: string
value: any