frontend/.pnpm-store/v3/files/31/bb0f905c99533019b42fbf181876110f6b18bead2cc3f1372fa5cf8576c5f00aaa9dc6225769e6203c0a8e161b61d890d3402f9ee1bde9abab5d0ee3cf10ca

20 lines
379 B
Plaintext

/**
Check if your package was installed globally.
@example
```
import isInstalledGlobally = require('is-installed-globally');
// With `npm install your-package`
console.log(isInstalledGlobally);
//=> false
// With `npm install --global your-package`
console.log(isInstalledGlobally);
//=> true
```
*/
declare const isInstalledGlobally: boolean;
export = isInstalledGlobally;