File size: 258 Bytes
d4f5807
 
 
 
 
 
 
 
 
 
 
 
 
1
2
3
4
5
6
7
8
9
10
11
12
13
14
/**
Check if the process is running inside a container.

@example
```
import isInsideContainer from 'is-inside-container';

if (isInsideContainer()) {
	console.log('Running inside a container');
}
```
*/
export default function isInsideContainer(): boolean;