UNPKG

@soos-io/soos-sbom

Version:

Upload your Software Bill of Materials (SBOM) to SOOS for vulnerability analysis, license matching and more. Register for a free trial today at https://app.soos.io/register

6 lines (5 loc) 212 B
"use strict"; Object.defineProperty(exports, "__esModule", { value: true }); exports.removeDuplicates = void 0; const removeDuplicates = (list) => [...new Set(list)]; exports.removeDuplicates = removeDuplicates;