jose/dist/browser/runtime/env.js
2021-11-11 23:31:14 +01: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;
}
}