Buckets:
| import fs from 'node:fs'; | |
| let isDockerCached; | |
| function hasDockerEnv() { | |
| try { | |
| fs.statSync('/.dockerenv'); | |
| return true; | |
| } catch { | |
| return false; | |
| } | |
| } | |
| function hasDockerCGroup() { | |
| try { | |
| return fs.readFileSync('/proc/self/cgroup', 'utf8').includes('docker'); | |
| } catch { | |
| return false; | |
| } | |
| } | |
| export default function isDocker() { | |
| // TODO: Use `??=` when targeting Node.js 16. | |
| if (isDockerCached === undefined) { | |
| isDockerCached = hasDockerEnv() || hasDockerCGroup(); | |
| } | |
| return isDockerCached; | |
| } | |
Xet Storage Details
- Size:
- 509 Bytes
- Xet hash:
- c342bc42e33f18f64a78a130f08678a7d1586dc4d3eed466efebb3c2c5f14903
·
Xet efficiently stores files, intelligently splitting them into unique chunks and accelerating uploads and downloads. More info.