UNPKG

ts-comment-remover

Version:

TypeScript file compression tool that removes comments and unnecessary whitespace using AST

8 lines 255 B
export const left = (e) => ({ _tag: 'Left', left: e }); export const right = (a) => ({ _tag: 'Right', right: a, }); export const isLeft = (e) => e._tag === 'Left'; export const isRight = (e) => e._tag === 'Right'; //# sourceMappingURL=types.js.map