tcomb-postcss Extends the tcomb library with PostCSS irreducible node types. The following types are added to tcomb: Container Root Rule AtRule Decl Comment Usage var t = require('tcomb-postcss');var postcss = require('postcss'); var root = postcss.parse('a{}');t.Root.is(root); // truet.Rule.is(root.first); // truet.AtRule.is(root.first); // false