mirror of
				https://github.com/musix-org/musix-oss
				synced 2025-11-04 09:49:32 +00:00 
			
		
		
		
	fix
This commit is contained in:
		
							
								
								
									
										3
									
								
								node_modules/graceful-readlink/.npmignore
									
									
									
										generated
									
									
										vendored
									
									
										Normal file
									
								
							
							
						
						
									
										3
									
								
								node_modules/graceful-readlink/.npmignore
									
									
									
										generated
									
									
										vendored
									
									
										Normal file
									
								
							@@ -0,0 +1,3 @@
 | 
			
		||||
.idea/
 | 
			
		||||
.DS_Store
 | 
			
		||||
node_modules/
 | 
			
		||||
							
								
								
									
										5
									
								
								node_modules/graceful-readlink/.travis.yml
									
									
									
										generated
									
									
										vendored
									
									
										Normal file
									
								
							
							
						
						
									
										5
									
								
								node_modules/graceful-readlink/.travis.yml
									
									
									
										generated
									
									
										vendored
									
									
										Normal file
									
								
							@@ -0,0 +1,5 @@
 | 
			
		||||
language: node_js
 | 
			
		||||
node_js:
 | 
			
		||||
  - "0.10"
 | 
			
		||||
  - "0.12"
 | 
			
		||||
  - "io.js"
 | 
			
		||||
							
								
								
									
										22
									
								
								node_modules/graceful-readlink/LICENSE
									
									
									
										generated
									
									
										vendored
									
									
										Normal file
									
								
							
							
						
						
									
										22
									
								
								node_modules/graceful-readlink/LICENSE
									
									
									
										generated
									
									
										vendored
									
									
										Normal file
									
								
							@@ -0,0 +1,22 @@
 | 
			
		||||
The MIT License (MIT)
 | 
			
		||||
 | 
			
		||||
Copyright (c) 2015 Zhiye Li
 | 
			
		||||
 | 
			
		||||
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.
 | 
			
		||||
 | 
			
		||||
							
								
								
									
										17
									
								
								node_modules/graceful-readlink/README.md
									
									
									
										generated
									
									
										vendored
									
									
										Normal file
									
								
							
							
						
						
									
										17
									
								
								node_modules/graceful-readlink/README.md
									
									
									
										generated
									
									
										vendored
									
									
										Normal file
									
								
							@@ -0,0 +1,17 @@
 | 
			
		||||
# graceful-readlink
 | 
			
		||||
[](https://www.npmjs.org/package/graceful-readlink)
 | 
			
		||||
[](https://www.npmjs.org/package/graceful-readlink)
 | 
			
		||||
 | 
			
		||||
 | 
			
		||||
## Usage
 | 
			
		||||
 | 
			
		||||
```js
 | 
			
		||||
var readlinkSync = require('graceful-readlink').readlinkSync;
 | 
			
		||||
console.log(readlinkSync(f));
 | 
			
		||||
// output
 | 
			
		||||
//  the file pointed to when `f` is a symbolic link
 | 
			
		||||
//  the `f` itself when `f` is not a symbolic link
 | 
			
		||||
```
 | 
			
		||||
## Licence
 | 
			
		||||
 | 
			
		||||
MIT License
 | 
			
		||||
							
								
								
									
										12
									
								
								node_modules/graceful-readlink/index.js
									
									
									
										generated
									
									
										vendored
									
									
										Normal file
									
								
							
							
						
						
									
										12
									
								
								node_modules/graceful-readlink/index.js
									
									
									
										generated
									
									
										vendored
									
									
										Normal file
									
								
							@@ -0,0 +1,12 @@
 | 
			
		||||
var fs = require('fs')
 | 
			
		||||
  , lstat = fs.lstatSync;
 | 
			
		||||
 | 
			
		||||
exports.readlinkSync = function (p) {
 | 
			
		||||
  if (lstat(p).isSymbolicLink()) {
 | 
			
		||||
    return fs.readlinkSync(p);
 | 
			
		||||
  } else {
 | 
			
		||||
    return p;
 | 
			
		||||
  }
 | 
			
		||||
};
 | 
			
		||||
 | 
			
		||||
 | 
			
		||||
							
								
								
									
										50
									
								
								node_modules/graceful-readlink/package.json
									
									
									
										generated
									
									
										vendored
									
									
										Normal file
									
								
							
							
						
						
									
										50
									
								
								node_modules/graceful-readlink/package.json
									
									
									
										generated
									
									
										vendored
									
									
										Normal file
									
								
							@@ -0,0 +1,50 @@
 | 
			
		||||
{
 | 
			
		||||
  "_from": "graceful-readlink@>= 1.0.0",
 | 
			
		||||
  "_id": "graceful-readlink@1.0.1",
 | 
			
		||||
  "_inBundle": false,
 | 
			
		||||
  "_integrity": "sha1-TK+tdrxi8C+gObL5Tpo906ORpyU=",
 | 
			
		||||
  "_location": "/graceful-readlink",
 | 
			
		||||
  "_phantomChildren": {},
 | 
			
		||||
  "_requested": {
 | 
			
		||||
    "type": "range",
 | 
			
		||||
    "registry": true,
 | 
			
		||||
    "raw": "graceful-readlink@>= 1.0.0",
 | 
			
		||||
    "name": "graceful-readlink",
 | 
			
		||||
    "escapedName": "graceful-readlink",
 | 
			
		||||
    "rawSpec": ">= 1.0.0",
 | 
			
		||||
    "saveSpec": null,
 | 
			
		||||
    "fetchSpec": ">= 1.0.0"
 | 
			
		||||
  },
 | 
			
		||||
  "_requiredBy": [
 | 
			
		||||
    "/commander"
 | 
			
		||||
  ],
 | 
			
		||||
  "_resolved": "https://registry.npmjs.org/graceful-readlink/-/graceful-readlink-1.0.1.tgz",
 | 
			
		||||
  "_shasum": "4cafad76bc62f02fa039b2f94e9a3dd3a391a725",
 | 
			
		||||
  "_spec": "graceful-readlink@>= 1.0.0",
 | 
			
		||||
  "_where": "C:\\Users\\matia\\Musix\\node_modules\\commander",
 | 
			
		||||
  "author": {
 | 
			
		||||
    "name": "zhiyelee"
 | 
			
		||||
  },
 | 
			
		||||
  "bugs": {
 | 
			
		||||
    "url": "https://github.com/zhiyelee/graceful-readlink/issues"
 | 
			
		||||
  },
 | 
			
		||||
  "bundleDependencies": false,
 | 
			
		||||
  "deprecated": false,
 | 
			
		||||
  "description": "graceful fs.readlink",
 | 
			
		||||
  "homepage": "https://github.com/zhiyelee/graceful-readlink",
 | 
			
		||||
  "keywords": [
 | 
			
		||||
    "fs.readlink",
 | 
			
		||||
    "readlink"
 | 
			
		||||
  ],
 | 
			
		||||
  "license": "MIT",
 | 
			
		||||
  "main": "index.js",
 | 
			
		||||
  "name": "graceful-readlink",
 | 
			
		||||
  "repository": {
 | 
			
		||||
    "type": "git",
 | 
			
		||||
    "url": "git://github.com/zhiyelee/graceful-readlink.git"
 | 
			
		||||
  },
 | 
			
		||||
  "scripts": {
 | 
			
		||||
    "test": "echo \"Error: no test specified\" && exit 1"
 | 
			
		||||
  },
 | 
			
		||||
  "version": "1.0.1"
 | 
			
		||||
}
 | 
			
		||||
		Reference in New Issue
	
	Block a user