18 lines
234 B
Plaintext
18 lines
234 B
Plaintext
|
/**
|
||
|
* @flow
|
||
|
*/
|
||
|
|
||
|
import os from 'os';
|
||
|
|
||
|
export function home(): string {
|
||
|
return os.homedir();
|
||
|
}
|
||
|
|
||
|
export function isStaging() {
|
||
|
return !!process.env.EXPO_STAGING;
|
||
|
}
|
||
|
|
||
|
export function isLocal() {
|
||
|
return !!process.env.EXPO_LOCAL;
|
||
|
}
|