Skip to main content
The Deno 2 Release Candidate is here
Learn more
Module

x/fathym_common/src/common/iterables/json-map-set/jsonMapSetStringify.ts>jsonMapSetStringify

The Fathym Reference Architecture provides the common foundation for applications built in Typescript.
Latest
function jsonMapSetStringify
import { jsonMapSetStringify } from "https://deno.land/x/fathym_common@v0.2.160/src/common/iterables/json-map-set/jsonMapSetStringify.ts";

Stringifies a value with Map/Set replacer applied.

Examples

From direct import

import { jsonMapSetStringify } from "@fathym/common/iterables";

const obj = jsonMapSetStringify({});

From common import

import { jsonMapSetStringify } from "@fathym/common";

const obj = jsonMapSetStringify({});

Parameters

value: T

The value to stringify with Map/Set replacer.

Returns

string

The stringified value.