forked from public/fvtt-cthulhu-eternal
Initial import with skill sheet working
This commit is contained in:
21
node_modules/path-root/LICENSE
generated
vendored
Normal file
21
node_modules/path-root/LICENSE
generated
vendored
Normal file
@ -0,0 +1,21 @@
|
||||
The MIT License (MIT)
|
||||
|
||||
Copyright (c) 2016, Jon Schlinkert.
|
||||
|
||||
Permission is hereby granted, free of charge, to any person obtaining a copy
|
||||
of this software and associated documentation files (the "Software"), to deal
|
||||
in the Software without restriction, including without limitation the rights
|
||||
to use, copy, modify, merge, publish, distribute, sublicense, and/or sell
|
||||
copies of the Software, and to permit persons to whom the Software is
|
||||
furnished to do so, subject to the following conditions:
|
||||
|
||||
The above copyright notice and this permission notice shall be included in
|
||||
all copies or substantial portions of the Software.
|
||||
|
||||
THE SOFTWARE IS PROVIDED "AS IS", WITHOUT WARRANTY OF ANY KIND, EXPRESS OR
|
||||
IMPLIED, INCLUDING BUT NOT LIMITED TO THE WARRANTIES OF MERCHANTABILITY,
|
||||
FITNESS FOR A PARTICULAR PURPOSE AND NONINFRINGEMENT. IN NO EVENT SHALL THE
|
||||
AUTHORS OR COPYRIGHT HOLDERS BE LIABLE FOR ANY CLAIM, DAMAGES OR OTHER
|
||||
LIABILITY, WHETHER IN AN ACTION OF CONTRACT, TORT OR OTHERWISE, ARISING FROM,
|
||||
OUT OF OR IN CONNECTION WITH THE SOFTWARE OR THE USE OR OTHER DEALINGS IN
|
||||
THE SOFTWARE.
|
94
node_modules/path-root/README.md
generated
vendored
Normal file
94
node_modules/path-root/README.md
generated
vendored
Normal file
@ -0,0 +1,94 @@
|
||||
# path-root [](https://www.npmjs.com/package/path-root) [](https://npmjs.org/package/path-root) [](https://travis-ci.org/jonschlinkert/path-root)
|
||||
|
||||
> Get the root of a posix or windows filepath.
|
||||
|
||||
You might also be interested in [parse-filepath](https://github.com/jonschlinkert/parse-filepath).
|
||||
|
||||
## Install
|
||||
|
||||
Install with [npm](https://www.npmjs.com/):
|
||||
|
||||
```sh
|
||||
$ npm install path-root --save
|
||||
```
|
||||
|
||||
## Usage
|
||||
|
||||
```js
|
||||
var pathRoot = require('path-root');
|
||||
```
|
||||
|
||||
**Examples**
|
||||
|
||||
```js
|
||||
pathRoot('\\\\server\\share\\abc');
|
||||
//=> '\\\\server\\share\\'
|
||||
|
||||
pathRoot('\\\\server foo\\some folder\\base-file.js');
|
||||
//=> '\\\\server foo\\some folder\\'
|
||||
|
||||
pathRoot('\\\\?\\UNC\\server\\share');
|
||||
//=> '\\\\?\\UNC\\'
|
||||
|
||||
pathRoot('foo/bar/baz.js');
|
||||
//=> ''
|
||||
|
||||
pathRoot('c:\\foo\\bar\\baz.js');
|
||||
//=> 'c:\\'
|
||||
|
||||
pathRoot('\\\\slslslsl\\admin$\\system32');
|
||||
//=> '\\\\slslslsl\\admin$\\'
|
||||
|
||||
pathRoot('/foo/bar/baz.js');
|
||||
//=> '/'
|
||||
```
|
||||
|
||||
## Related projects
|
||||
|
||||
You might also be interested in these projects:
|
||||
|
||||
* [is-absolute](https://www.npmjs.com/package/is-absolute): Polyfill for node.js `path.isAbolute`. Returns true if a file path is absolute. | [homepage](https://github.com/jonschlinkert/is-absolute)
|
||||
* [parse-filepath](https://www.npmjs.com/package/parse-filepath): Parse a filepath into an object. Falls back on the native node.js `path.parse` method if… [more](https://www.npmjs.com/package/parse-filepath) | [homepage](https://github.com/jonschlinkert/parse-filepath)
|
||||
* [path-root-regex](https://www.npmjs.com/package/path-root-regex): Regular expression for getting the root of a posix or windows filepath. | [homepage](https://github.com/regexhq/path-root-regex)
|
||||
|
||||
## Contributing
|
||||
|
||||
Pull requests and stars are always welcome. For bugs and feature requests, [please create an issue](https://github.com/jonschlinkert/path-root/issues/new).
|
||||
|
||||
## Building docs
|
||||
|
||||
Generate readme and API documentation with [verb](https://github.com/verbose/verb):
|
||||
|
||||
```sh
|
||||
$ npm install verb && npm run docs
|
||||
```
|
||||
|
||||
Or, if [verb](https://github.com/verbose/verb) is installed globally:
|
||||
|
||||
```sh
|
||||
$ verb
|
||||
```
|
||||
|
||||
## Running tests
|
||||
|
||||
Install dev dependencies:
|
||||
|
||||
```sh
|
||||
$ npm install -d && npm test
|
||||
```
|
||||
|
||||
## Author
|
||||
|
||||
**Jon Schlinkert**
|
||||
|
||||
* [github/jonschlinkert](https://github.com/jonschlinkert)
|
||||
* [twitter/jonschlinkert](http://twitter.com/jonschlinkert)
|
||||
|
||||
## License
|
||||
|
||||
Copyright © 2016, [Jon Schlinkert](https://github.com/jonschlinkert).
|
||||
Released under the [MIT license](https://github.com/jonschlinkert/path-root/blob/master/LICENSE).
|
||||
|
||||
***
|
||||
|
||||
_This file was generated by [verb](https://github.com/verbose/verb), v, on March 29, 2016._
|
21
node_modules/path-root/index.js
generated
vendored
Normal file
21
node_modules/path-root/index.js
generated
vendored
Normal file
@ -0,0 +1,21 @@
|
||||
/*!
|
||||
* path-root <https://github.com/jonschlinkert/path-root>
|
||||
*
|
||||
* Copyright (c) 2016, Jon Schlinkert.
|
||||
* Licensed under the MIT License.
|
||||
*/
|
||||
|
||||
'use strict';
|
||||
|
||||
var pathRootRegex = require('path-root-regex');
|
||||
|
||||
module.exports = function(filepath) {
|
||||
if (typeof filepath !== 'string') {
|
||||
throw new TypeError('expected a string');
|
||||
}
|
||||
|
||||
var match = pathRootRegex().exec(filepath);
|
||||
if (match) {
|
||||
return match[0];
|
||||
}
|
||||
};
|
58
node_modules/path-root/package.json
generated
vendored
Normal file
58
node_modules/path-root/package.json
generated
vendored
Normal file
@ -0,0 +1,58 @@
|
||||
{
|
||||
"name": "path-root",
|
||||
"description": "Get the root of a posix or windows filepath.",
|
||||
"version": "0.1.1",
|
||||
"homepage": "https://github.com/jonschlinkert/path-root",
|
||||
"author": "Jon Schlinkert (https://github.com/jonschlinkert)",
|
||||
"repository": "jonschlinkert/path-root",
|
||||
"bugs": {
|
||||
"url": "https://github.com/jonschlinkert/path-root/issues"
|
||||
},
|
||||
"license": "MIT",
|
||||
"files": [
|
||||
"index.js"
|
||||
],
|
||||
"main": "index.js",
|
||||
"engines": {
|
||||
"node": ">=0.10.0"
|
||||
},
|
||||
"scripts": {
|
||||
"test": "mocha"
|
||||
},
|
||||
"dependencies": {
|
||||
"path-root-regex": "^0.1.0"
|
||||
},
|
||||
"devDependencies": {
|
||||
"gulp-format-md": "^0.1.7",
|
||||
"mocha": "^2.4.5"
|
||||
},
|
||||
"keywords": [
|
||||
"path",
|
||||
"root"
|
||||
],
|
||||
"verb": {
|
||||
"run": true,
|
||||
"toc": false,
|
||||
"layout": "default",
|
||||
"tasks": [
|
||||
"readme"
|
||||
],
|
||||
"plugins": [
|
||||
"gulp-format-md"
|
||||
],
|
||||
"related": {
|
||||
"highlight": "parse-filepath",
|
||||
"list": [
|
||||
"path-root-regex",
|
||||
"parse-filepath",
|
||||
"is-absolute"
|
||||
]
|
||||
},
|
||||
"reflinks": [
|
||||
"verb"
|
||||
],
|
||||
"lint": {
|
||||
"reflinks": true
|
||||
}
|
||||
}
|
||||
}
|
Reference in New Issue
Block a user