ox
Version:
Ethereum Standard Library
83 lines • 2.91 kB
TypeScript
import type * as Errors from './Errors.js';
/**
* Serializes a value to a canonical JSON string as defined by
* [RFC 8785 (JSON Canonicalization Scheme)](https://www.rfc-editor.org/rfc/rfc8785).
*
* - Object keys are sorted recursively by UTF-16 code unit comparison.
* - Primitives are serialized per ECMAScript rules (no trailing zeros on numbers, etc.).
* - No whitespace is inserted.
*
* @example
* ```ts twoslash
* import { Json } from 'ox'
*
* const json = Json.canonicalize({ b: 2, a: 1 })
* // @log: '{"a":1,"b":2}'
* ```
*
* @example
* ```ts twoslash
* import { Json } from 'ox'
*
* const json = Json.canonicalize({
* z: [3, { y: 1, x: 2 }],
* a: 'hello'
* })
* // @log: '{"a":"hello","z":[3,{"x":2,"y":1}]}'
* ```
*
* @param value - The value to canonicalize.
* @returns The canonical JSON string.
*/
export declare function canonicalize(value: unknown): string;
export declare namespace canonicalize {
type ErrorType = Errors.GlobalErrorType;
}
/**
* Parses a JSON string, with support for `bigint`.
*
* @example
* ```ts twoslash
* import { Json } from 'ox'
*
* const json = Json.parse(
* '{"foo":"bar","baz":"69420694206942069420694206942069420694206942069420#__bigint"}'
* )
* // @log: {
* // @log: foo: 'bar',
* // @log: baz: 69420694206942069420694206942069420694206942069420n
* // @log: }
* ```
*
* @param string - The value to parse.
* @param reviver - A function that transforms the results.
* @returns The parsed value.
*/
export declare function parse(string: string, reviver?: (this: any, key: string, value: any) => any): any;
export declare namespace parse {
type ErrorType = Errors.GlobalErrorType;
}
/**
* Stringifies a value to its JSON representation, with support for `bigint`.
*
* @example
* ```ts twoslash
* import { Json } from 'ox'
*
* const json = Json.stringify({
* foo: 'bar',
* baz: 69420694206942069420694206942069420694206942069420n
* })
* // @log: '{"foo":"bar","baz":"69420694206942069420694206942069420694206942069420#__bigint"}'
* ```
*
* @param value - The value to stringify.
* @param replacer - A function that transforms the results. It is passed the key and value of the property, and must return the value to be used in the JSON string. If this function returns `undefined`, the property is not included in the resulting JSON string.
* @param space - A string or number that determines the indentation of the JSON string. If it is a number, it indicates the number of spaces to use as indentation; if it is a string (e.g. `'\t'`), it uses the string as the indentation character.
* @returns The JSON string.
*/
export declare function stringify(value: any, replacer?: ((this: any, key: string, value: any) => any) | null, space?: string | number): string;
export declare namespace stringify {
type ErrorType = Errors.GlobalErrorType;
}
//# sourceMappingURL=Json.d.ts.map