mirror of
https://github.com/spacebarchat/server.git
synced 2026-05-22 12:45:54 +00:00
4 lines
85 B
TypeScript
4 lines
85 B
TypeScript
export default function toBigInt(string: String): BigInt {
|
|
return BigInt(string);
|
|
}
|