app/@overflow/commons/ui/pipe/index.ts
2018-09-13 14:47:22 +09:00

12 lines
245 B
TypeScript

import { ObjectKeys } from './object-keys';
import { stringPrettify } from './string-prettify';
import { IPSort } from './ip-sort';
import { Sort } from './array-sort';
export const PIPES = [
ObjectKeys,
stringPrettify,
IPSort,
Sort
];