fibjs/fibjs

support# process.hrtime.bigint()

lhkzh opened this issue · 1 comments

lhkzh commented

process.hrtime.bigint()

lhkzh commented
process.hrtime.bigint = function(){
    var arr = process.hrtime();
    return BigInt(arr[0]) * BigInt(1e9) + BigInt(arr[1]);
}