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.

12 lines (10 loc) 304 B
'use strict'; /** * Test whether a value is a Matrix * @param {*} x * @returns {boolean} returns true with input is a Matrix * (like a DenseMatrix or SparseMatrix) */ module.exports = function isMatrix (x) { return x && x.constructor.prototype.isMatrix || false; };