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.

13 lines (10 loc) 275 B
'use strict'; var isMatrix = require('./isMatrix'); /** * Test whether a value is a collection: an Array or Matrix * @param {*} x * @returns {boolean} isCollection */ module.exports = function isCollection (x) { return Array.isArray(x) || isMatrix(x); };