UNPKG

canonify

Version:

**NOTE: This is effictively a fork of [@truestamp/canonify](https://www.npmjs.com/package/@truestamp/canonify) to fix an issue with exporting types. Since a repo could not be found, a fork/PR was not possible. All copyrights/attribution has been left in p

9 lines (7 loc) 253 B
/** * Convert a JSON serializable object to a canonicalized string. * @param object The object to convert. * @return The canonicalized string or undefined. */ declare function canonify(object: any): string | undefined; export { canonify };