UNPKG

ng-packagr

Version:

Compile and package Angular libraries in Angular Package Format (APF)

11 lines 278 B
"use strict"; Object.defineProperty(exports, "__esModule", { value: true }); exports.toArray = toArray; exports.unique = unique; function toArray(value) { return [].concat(value); } function unique(value) { return [...new Set(value)]; } //# sourceMappingURL=array.js.map