Detailansicht verbessert

This commit is contained in:
Lukas Nowy
2019-02-13 00:36:21 +01:00
parent ff07d4ef0b
commit 87e7673513
1069 changed files with 105627 additions and 106 deletions

30
express-server/node_modules/is-npm/readme.md generated vendored Normal file
View File

@ -0,0 +1,30 @@
# is-npm [![Build Status](https://travis-ci.org/sindresorhus/is-npm.svg?branch=master)](https://travis-ci.org/sindresorhus/is-npm)
> Check if your code is running as an [npm script](https://www.npmjs.org/doc/misc/npm-scripts.html)
## Install
```sh
$ npm install --save is-npm
```
## Usage
```js
var isNpm = require('is-npm');
console.log(isNpm);
```
```sh
$ node foo.js
#=> false
$ npm run foo
#=> true
```
## License
MIT © [Sindre Sorhus](http://sindresorhus.com)