Odoo GraphQL Subscription using Node, Express JS for Sample
You can not select more than 25 topics Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.
 
 
 
Anand Shukla 5269ec3c66 Initial Sample. 11 months ago
..
lib Initial Sample. 11 months ago
process Initial Sample. 11 months ago
LICENSE Initial Sample. 11 months ago
README.md Initial Sample. 11 months ago
package.json Initial Sample. 11 months ago
rollup.config.js Initial Sample. 11 months ago
tsconfig.json Initial Sample. 11 months ago
tsconfig.rollup.json Initial Sample. 11 months ago

README.md

ts-invariant

TypeScript implementation of invariant(condition, message).

Supports invariant.log, invariant.warn, and invariant.error, which wrap console methods of the same name, and may be stripped in production by rollup-plugin-invariant.

The verbosity of these methods can be globally reconfigured using the setVerbosity function:

import { setVerbosity } from "ts-invariant";

setVerbosity("log"); // display all messages (default)
setVerbosity("warn"); // display only warnings and errors
setVerbosity("error"); // display only errors
setVerbosity("silent"); // display no messages