jose/dist/browser/runtime/env.js
2022-04-26 11:58:40 +02:00

11 lines
234 B
JavaScript

export function isCloudflareWorkers() {
return typeof WebSocketPair === 'function';
}
export function isNodeJs() {
try {
return process.versions.node !== undefined;
}
catch (_a) {
return false;
}
}