Blame view

node_modules/path-type/readme.md 709 Bytes
ce4c83ff   wxy   初始提交
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
  # path-type [![Build Status](https://travis-ci.org/sindresorhus/path-type.svg?branch=master)](https://travis-ci.org/sindresorhus/path-type)
  
  > Check if a path is a file, directory, or symlink
  
  
  ## Install
  
  ```
  $ npm install path-type
  ```
  
  
  ## Usage
  
  ```js
  const pathType = require('path-type');
  
  pathType.file('package.json').then(isFile => {
  	console.log(isFile);
  	//=> true
  })
  ```
  
  
  ## API
  
  ### .file(path)
  ### .dir(path)
  ### .symlink(path)
  
  Returns a `Promise` for a `boolean` of whether the path is the checked type.
  
  ### .fileSync(path)
  ### .dirSync(path)
  ### .symlinkSync(path)
  
  Returns a `boolean` of whether the path is the checked type.
  
  
  ## License
  
  MIT © [Sindre Sorhus](https://sindresorhus.com)