mirror of
https://github.com/orionprotocol/sdk.git
synced 2026-03-25 15:17:40 +03:00
Added deposit
This commit is contained in:
4
src/utils/arrayEquals.ts
Normal file
4
src/utils/arrayEquals.ts
Normal file
@@ -0,0 +1,4 @@
|
||||
const arrayEquals = (a: unknown[], b: unknown[]) => a.length === b.length
|
||||
&& a.every((value, index) => value === b[index]);
|
||||
|
||||
export default arrayEquals;
|
||||
Reference in New Issue
Block a user