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

8 lines
154 B
TypeScript
Raw Normal View History

2018-09-12 02:53:28 +00:00
import { ObjectKeys } from "./object-keys";
import { stringPrettify } from "./string-prettify";
2018-08-14 12:26:23 +00:00
export const PIPES = [
2018-09-12 02:53:28 +00:00
ObjectKeys,
stringPrettify
2018-08-14 12:26:23 +00:00
];