updated npm modules

This commit is contained in:
2019-05-20 20:43:45 -05:00
parent 2319197b81
commit f166b72b7d
1113 changed files with 8758 additions and 12227 deletions

6
node_modules/is-path-cwd/index.js generated vendored
View File

@@ -1,6 +1,4 @@
'use strict';
var path = require('path');
const path = require('path');
module.exports = function (str) {
return path.resolve(str) === path.resolve(process.cwd());
};
module.exports = path_ => path.resolve(path_) === process.cwd();

View File

@@ -1,46 +1,49 @@
{
"_from": "is-path-cwd@^1.0.0",
"_id": "is-path-cwd@1.0.0",
"_from": "is-path-cwd@^2.0.0",
"_id": "is-path-cwd@2.1.0",
"_inBundle": false,
"_integrity": "sha1-0iXsIxMuie3Tj9p2dHLmLmXxEG0=",
"_integrity": "sha512-Sc5j3/YnM8tDeyCsVeKlm/0p95075DyLmDEIkSgQ7mXkrOX+uTCtmQFm0CYzVyJwcCCmO3k8qfJt17SxQwB5Zw==",
"_location": "/is-path-cwd",
"_phantomChildren": {},
"_requested": {
"type": "range",
"registry": true,
"raw": "is-path-cwd@^1.0.0",
"raw": "is-path-cwd@^2.0.0",
"name": "is-path-cwd",
"escapedName": "is-path-cwd",
"rawSpec": "^1.0.0",
"rawSpec": "^2.0.0",
"saveSpec": null,
"fetchSpec": "^1.0.0"
"fetchSpec": "^2.0.0"
},
"_requiredBy": [
"/del"
],
"_resolved": "https://registry.npmjs.org/is-path-cwd/-/is-path-cwd-1.0.0.tgz",
"_shasum": "d225ec23132e89edd38fda767472e62e65f1106d",
"_spec": "is-path-cwd@^1.0.0",
"_resolved": "https://registry.npmjs.org/is-path-cwd/-/is-path-cwd-2.1.0.tgz",
"_shasum": "2e0c7e463ff5b7a0eb60852d851a6809347a124c",
"_spec": "is-path-cwd@^2.0.0",
"_where": "C:\\xampp\\htdocs\\w4rpservices\\node_modules\\del",
"author": {
"name": "Sindre Sorhus",
"email": "sindresorhus@gmail.com",
"url": "http://sindresorhus.com"
"url": "sindresorhus.com"
},
"bugs": {
"url": "https://github.com/sindresorhus/is-path-cwd/issues"
},
"bundleDependencies": false,
"deprecated": false,
"description": "Check if a path is CWD",
"description": "Check if a path is the current working directory",
"devDependencies": {
"mocha": "*"
"ava": "^1.4.1",
"tsd": "^0.7.2",
"xo": "^0.24.0"
},
"engines": {
"node": ">=0.10.0"
"node": ">=6"
},
"files": [
"index.js"
"index.js",
"index.d.ts"
],
"homepage": "https://github.com/sindresorhus/is-path-cwd#readme",
"keywords": [
@@ -59,7 +62,7 @@
"url": "git+https://github.com/sindresorhus/is-path-cwd.git"
},
"scripts": {
"test": "mocha"
"test": "xo && ava && tsd"
},
"version": "1.0.0"
"version": "2.1.0"
}

10
node_modules/is-path-cwd/readme.md generated vendored
View File

@@ -1,19 +1,19 @@
# is-path-cwd [![Build Status](https://travis-ci.org/sindresorhus/is-path-cwd.svg?branch=master)](https://travis-ci.org/sindresorhus/is-path-cwd)
> Check if a path is [CWD](http://en.wikipedia.org/wiki/Working_directory)
> Check if a path is the [current working directory](https://en.wikipedia.org/wiki/Working_directory)
## Install
```sh
$ npm install --save is-path-cwd
```
$ npm install is-path-cwd
```
## Usage
```js
var isPathCwd = require('is-path-cwd');
const isPathCwd = require('is-path-cwd');
isPathCwd(process.cwd());
//=> true
@@ -25,4 +25,4 @@ isPathCwd('unicorn');
## License
MIT © [Sindre Sorhus](http://sindresorhus.com)
MIT © [Sindre Sorhus](https://sindresorhus.com)