UNPKG

fabric8-planner

Version:
17 lines 535 B
import { Pipe } from '@angular/core'; import { sortBy } from 'lodash'; var F8SortByPipe = /** @class */ (function () { function F8SortByPipe() { } F8SortByPipe.prototype.transform = function (value, key) { return sortBy(value, key); }; F8SortByPipe.decorators = [ { type: Pipe, args: [{ name: 'f8SortBy' },] }, ]; /** @nocollapse */ F8SortByPipe.ctorParameters = function () { return []; }; return F8SortByPipe; }()); export { F8SortByPipe }; //# sourceMappingURL=sort-by.pipe.js.map