mirror of
https://github.com/danbulant/jose
synced 2026-05-21 21:39:04 +00:00
11 lines
234 B
JavaScript
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;
|
|
}
|
|
}
|