Another way of turning off PRE & POST function checking with TypeCzech is to not
declare any checking functions.
But this method needs the below line to ignore the commented out checking function,
and not cause a ReferenceError. This is why the example code to the left does not
complain.
PRE_check_Person = (typeof PRE_check_Person==='undefined')
? undefined : PRE_check_Person
Furthermore, the TypeCzech library can also be turned off by not choosing
'LOG-ERRORS' or 'THROW-EXCEPTIONS' in the constructor, and instead having
no arguments, or 'NO-CHECKING', as below.
type_czech = TypeCzech()
OR
type_czech = TypeCzech('NO-CHECKING')
The last option to stop function checking is to not link any functions to the TypeCzech library, as is accomplished
by commenting out all type_czech.linkUp() calls. Thus Person will not be linked into TypeCzech,
and the PRE checking function will be ignored.
// Person = type_czech.linkUp(Person, PRE_check_Person) )
TypeCzech is loaded and parsed in this page, but does no checking.