UNPKG

github-release-info-downloader

Version:

Gets latest release download URL using the GitHub Releases API. It also shows when it was released and the download count.

9 lines (8 loc) 196 B
/** * Test whether a value is a BigNumber * @param {*} x * @return {boolean} */ module.exports = function isBigNumber(x) { return x && x.constructor.prototype.isBigNumber || false }