File tree 1 file changed +7
-5
lines changed
1 file changed +7
-5
lines changed Original file line number Diff line number Diff line change @@ -317,17 +317,19 @@ added: v0.11.2
317
317
* ` path ` {string}
318
318
* Returns: {boolean}
319
319
320
- The ` path.isAbsolute() ` method determines if ` path ` is an absolute path.
320
+ The ` path.isAbsolute() ` method determines if the literal ` path ` is absolute.
321
+ Therefore, it’s not safe for mitigating path traversals.
321
322
322
323
If the given ` path ` is a zero-length string, ` false ` will be returned.
323
324
324
325
For example, on POSIX:
325
326
326
327
``` js
327
- path .isAbsolute (' /foo/bar' ); // true
328
- path .isAbsolute (' /baz/..' ); // true
329
- path .isAbsolute (' qux/' ); // false
330
- path .isAbsolute (' .' ); // false
328
+ path .isAbsolute (' /foo/bar' ); // true
329
+ path .isAbsolute (' /baz/..' ); // true
330
+ path .isAbsolute (' /baz/../..' ); // true
331
+ path .isAbsolute (' qux/' ); // false
332
+ path .isAbsolute (' .' ); // false
331
333
```
332
334
333
335
On Windows:
You can’t perform that action at this time.
0 commit comments