@matheo/ng-packagr
Version:
Compile and package Angular libraries in Angular Package Format (APF)
16 lines • 433 B
JavaScript
;
Object.defineProperty(exports, "__esModule", { value: true });
exports.unique = exports.flatten = exports.toArray = void 0;
function toArray(value) {
return [].concat(value);
}
exports.toArray = toArray;
function flatten(value) {
return [].concat.apply([], value);
}
exports.flatten = flatten;
function unique(value) {
return [...new Set(value)];
}
exports.unique = unique;
//# sourceMappingURL=array.js.map