| 40 | } |
| 41 | |
| 42 | Value TestUint64(const CallbackInfo& info) { |
| 43 | bool lossless; |
| 44 | uint64_t input = info[0].As<BigInt>().Uint64Value(&lossless); |
| 45 | |
| 46 | return BigInt::New(info.Env(), input); |
| 47 | } |
| 48 | |
| 49 | Value TestWords(const CallbackInfo& info) { |
| 50 | BigInt big = info[0].As<BigInt>(); |