mirror of
https://github.com/spacebarchat/server.git
synced 2026-04-06 06:15:39 +00:00
4 lines
85 B
TypeScript
4 lines
85 B
TypeScript
export default function toBigInt(string: String): BigInt {
|
|
return BigInt(string);
|
|
}
|