webdav
Version:
WebDAV client for NodeJS
13 lines (12 loc) • 317 B
JavaScript
export function getDebugBuildName() {
if (typeof TARGET === "string") {
return TARGET;
}
return "node";
}
export function isReactNative() {
return typeof TARGET === "string" && TARGET === "react-native";
}
export function isWeb() {
return typeof TARGET === "string" && TARGET === "web";
}