app/@overflow/commons/ui/pipe/index.ts

12 lines
245 B
TypeScript
Raw Permalink Normal View History

2018-09-13 05:47:22 +00:00
import { ObjectKeys } from './object-keys';
import { stringPrettify } from './string-prettify';
import { IPSort } from './ip-sort';
import { Sort } from './array-sort';
2018-09-12 02:53:28 +00:00
2018-08-14 12:26:23 +00:00
export const PIPES = [
2018-09-12 02:53:28 +00:00
ObjectKeys,
2018-09-13 05:47:22 +00:00
stringPrettify,
IPSort,
Sort
2018-08-14 12:26:23 +00:00
];