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
|
{{alias}}()
Returns a regular expression to test if a string is an extended-length path.
Extended-length paths are Windows paths which begin with `\\?\`.
Returns
-------
re: RegExp
Regular expression.
Examples
--------
> var RE = {{alias}}();
> var path = '\\\\?\\C:\\foo\\bar';
> var bool = RE.test( path )
true
> path = '\\\\?\\UNC\\server\\share';
> bool = RE.test( path )
true
> path = 'C:\\foo\\bar';
> bool = RE.test( path )
false
> path = '/c/foo/bar';
> bool = RE.test( path )
false
> path = '/foo/bar';
> bool = RE.test( path )
false
{{alias}}.REGEXP
Regular expression to test if a string is an extended-length path.
Examples
--------
> var bool = {{alias}}.REGEXP.test( 'C:\\foo\\bar' )
false
See Also
--------
|