Skip to main content
Module

std/ini/ini_map.ts>IniMap#set

The Deno Standard Library
Latest
The Standard Library has been moved to JSR. See the blog post for details.
method IniMap.prototype.set
import { IniMap } from "https://deno.land/std@0.224.0/ini/ini_map.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