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.
14 lines
480 B
14 lines
480 B
let shouldThrowAnErrorOutsideOfExpoValue = true;
|
|
/**
|
|
* @param value Should 'expo' validate the environment against Constants.expoVersion
|
|
*/
|
|
export function _setShouldThrowAnErrorOutsideOfExpo(value) {
|
|
shouldThrowAnErrorOutsideOfExpoValue = value;
|
|
}
|
|
/**
|
|
* Should 'expo' validate the environment against Constants.expoVersion
|
|
*/
|
|
export function shouldThrowAnErrorOutsideOfExpo() {
|
|
return shouldThrowAnErrorOutsideOfExpoValue;
|
|
}
|
|
//# sourceMappingURL=validatorState.js.map
|