Similar: ceilDiv, floorDiv.
This is part of package extra-bigint.
This is browserified, minified version of @extra-bigint/ceil-div.
It is exported as global variable bigint_ceilDiv.
CDN: unpkg, jsDelivr.
bigint.ceilDiv(x, y);
// x: dividend
// y: divisor
const bigint = require('extra-bigint');
bigint.ceilDiv(1n, 10n);
// 1n
bigint.ceilDiv(-1n, 10n);
// 0n
bigint.ceilDiv(1n, -10n);
// 0n
bigint.ceilDiv(-1n, -10n);
// 1n