Du kannst nicht mehr als 25 Themen auswählen
Themen müssen entweder mit einem Buchstaben oder einer Ziffer beginnen. Sie können Bindestriche („-“) enthalten und bis zu 35 Zeichen lang sein.
|
- /**
- 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;
|