We have some bidness that stores answers to form f...
# box-products
s
We have some bidness that stores answers to form fields created by our clients, and those answers are sometimes "yes" or "no". Mementifier is auto-magically turning them into
true
and
false
because of this:
Copy code
// Strict Type Boolean Values
		else if ( !isNumeric( thisValue ) && isBoolean( thisValue ) ) {
			result[ thisAlias ] = javacast( "Boolean", thisValue );
		}
Is there a way to tell mementifier not to do that other than using a mapper for every column?