mirror of
https://github.com/github/codeql-action.git
synced 2026-08-05 21:06:13 -05:00
c4a84a93d4
This commit only adds a single package and all of its transitive dependencies. The github-linguist package will be used for counting lines of code as a baseline for databases we are analyzing.
7 lines
139 B
JavaScript
7 lines
139 B
JavaScript
'use strict';
|
|
var arrayUniq = require('array-uniq');
|
|
|
|
module.exports = function () {
|
|
return arrayUniq([].concat.apply([], arguments));
|
|
};
|