tcomb icon indicating copy to clipboard operation
tcomb copied to clipboard

Add Void, Null and Empty types

Open gcanti opened this issue 9 years ago • 1 comments

const Void = t.irreducible('Void', x => x === undefined) 
const Null = t.irreducible('Null', x => x === null) 
const Empty = t.irreducible('Empty', () => false) 

gcanti avatar Jul 05 '16 05:07 gcanti

I'm not sure about the use case for Empty, but :+1: for Void and Null

hexpunk avatar Apr 14 '17 01:04 hexpunk