@ng-doc/core
Version:
<!-- PROJECT LOGO --> <br /> <div align="center"> <a href="https://github.com/ng-doc/ng-doc"> <img src="https://ng-doc.com/assets/images/ng-doc.svg?raw=true" alt="Logo" height="150px"> </a>
12 lines • 360 B
JavaScript
Object.defineProperty(exports, "__esModule", { value: true });
exports.unique = unique;
const as_array_1 = require("./as-array");
/**
* Returns only unique items from the given arrays
* @param items - arrays of items
*/
function unique(...items) {
return (0, as_array_1.asArray)(new Set(items.flat()));
}
//# sourceMappingURL=unique.js.map
;