UNPKG

344 BJavaScriptView Raw
1// Copyright (c) Microsoft Corporation.
2// Licensed under the MIT license.
3import { digest } from "./digest";
4import stableStringify from "fast-json-stable-stringify";
5export async function hashObject(object) {
6 const stringifiedObject = stableStringify(object);
7 return digest(stringifiedObject);
8}
9//# sourceMappingURL=hashObject.js.map
\No newline at end of file