12 lines
245 B
TypeScript
Raw Normal View History

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