UNPKG

@micro-os-plus/hello-world-qemu-template

Version:

A source xPack / npm package with a template to generate semihosted Hello World projects running on QEMU

20 lines (15 loc) 379 B
/** 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;