Neah/node_modules/webdav/dist/node/compat/env.js
2025-04-24 19:10:05 +02:00

13 lines
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";
}