File tree 5 files changed +12
-7
lines changed
5 files changed +12
-7
lines changed Original file line number Diff line number Diff line change 1
1
import { objectHash , HashOptions } from "./object-hash" ;
2
- import { sha256base64 } from "./crypto/sha256" ;
2
+ import { sha256base64 } from ".. /crypto/sha256" ;
3
3
4
4
/**
5
5
* Hash any JS value into a string
File renamed without changes.
Original file line number Diff line number Diff line change 1
- export { objectHash } from "./object-hash" ;
2
- export { hash } from "./hash" ;
1
+ // Hash
2
+ export { objectHash } from "./hash/object-hash" ;
3
+ export { hash } from "./hash/hash" ;
4
+
5
+ // Crypto
3
6
export { murmurHash } from "./crypto/murmur" ;
4
7
export { sha256 , sha256base64 } from "./crypto/sha256" ;
5
- export { isEqual } from "./utils" ;
6
- export { diff } from "./diff" ;
8
+
9
+ // Utils
10
+ export { isEqual } from "./utils/is-equal" ;
11
+ export { diff } from "./utils/diff" ;
Original file line number Diff line number Diff line change 1
- import { objectHash , HashOptions } from "./object-hash" ;
1
+ import { objectHash , HashOptions } from "../hash /object-hash" ;
2
2
3
3
/**
4
4
* Calculates the difference between two objects and returns a list of differences.
Original file line number Diff line number Diff line change 1
- import { objectHash , HashOptions } from "./object-hash" ;
1
+ import { objectHash , HashOptions } from "../hash /object-hash" ;
2
2
/**
3
3
* Compare two objects using reference equality and stable deep hashing.
4
4
* @param {any } object1 First object
You can’t perform that action at this time.
0 commit comments