export const stableStringify = (value) => {
Serializes a value with stable object key ordering.
Target style API. Preferred for new code.
Helpers
Source: helpers/stableStringify.mjs
Target Style
export const stableStringify = (value) => {
Serializes a value with stable object key ordering.
Target style API. Preferred for new code.
export const hashStably = (value, { using = 'sha256' } = {}) => hashOf(stableStringify(value), { using })
Generates a hash from a stable serialized representation of a value.
Target style API. Preferred for new code.
Legacy Style
No legacy exports in this module.