1
0
mirror of https://github.com/sasjs/adapter.git synced 2026-01-03 18:50:05 +00:00
Files
adapter/src/utils/isNode.ts
2021-07-23 22:23:05 +01:00

5 lines
126 B
TypeScript

export const isNode = () =>
typeof process !== 'undefined' &&
process.versions != null &&
process.versions.node != null