[Pkg-javascript-commits] [node-path-root] 01/04: Import Upstream version 0.1.1
Paolo Greppi
paolog-guest at moszumanska.debian.org
Mon Dec 12 11:40:25 UTC 2016
This is an automated email from the git hooks/post-receive script.
paolog-guest pushed a commit to branch master
in repository node-path-root.
commit 48d01e9433f9537641e79d161ccf6f20a03885d2
Author: Paolo Greppi <paolo.greppi at libpf.com>
Date: Mon Dec 12 11:02:06 2016 +0000
Import Upstream version 0.1.1
---
LICENSE | 21 ++++++++++++++
README.md | 94 ++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++
index.js | 21 ++++++++++++++
package.json | 58 +++++++++++++++++++++++++++++++++++++
4 files changed, 194 insertions(+)
diff --git a/LICENSE b/LICENSE
new file mode 100644
index 0000000..e28e603
--- /dev/null
+++ b/LICENSE
@@ -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.
diff --git a/README.md b/README.md
new file mode 100644
index 0000000..aa3c861
--- /dev/null
+++ b/README.md
@@ -0,0 +1,94 @@
+# path-root [![NPM version](https://img.shields.io/npm/v/path-root.svg?style=flat)](https://www.npmjs.com/package/path-root) [![NPM downloads](https://img.shields.io/npm/dm/path-root.svg?style=flat)](https://npmjs.org/package/path-root) [![Build Status](https://img.shields.io/travis/jonschlinkert/path-root.svg?style=flat)](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._
\ No newline at end of file
diff --git a/index.js b/index.js
new file mode 100644
index 0000000..8e141ba
--- /dev/null
+++ b/index.js
@@ -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];
+ }
+};
diff --git a/package.json b/package.json
new file mode 100644
index 0000000..35cf577
--- /dev/null
+++ b/package.json
@@ -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
+ }
+ }
+}
--
Alioth's /usr/local/bin/git-commit-notice on /srv/git.debian.org/git/pkg-javascript/node-path-root.git
More information about the Pkg-javascript-commits
mailing list