@stdlib/assert-is-unc-path
v0.2.2
Published
Test if a value is a UNC path.
Downloads
91
Readme
isUNCPath
Test if a value is a UNC path.
Installation
npm install @stdlib/assert-is-unc-path
Usage
var isUNCPath = require( '@stdlib/assert-is-unc-path' );
isUNCPath( value )
Tests if a value
is a UNC path.
var bool = isUNCPath( '\\\\server\\share\\foo\\bar\\baz' );
// returns true
bool = isUNCPath( '/foo/bar/baz' );
// returns false
Examples
var isUNCPath = require( '@stdlib/assert-is-unc-path' );
var path = '\\\\server\\share\\foo\\bar\\baz:a:b';
var bool = isUNCPath( path );
// returns true
path = '\\\\server\\share\\foo\\bar\\baz::b';
bool = isUNCPath( path );
// returns true
path = '\\\\server\\share\\foo\\bar\\baz:a';
bool = isUNCPath( path );
// returns true
path = '\\\\server\\share\\foo\\bar\\baz';
bool = isUNCPath( path );
// returns true
path = '\\\\server\\share\\foo\\bar';
bool = isUNCPath( path );
// returns true
path = '\\\\server\\share\\foo';
bool = isUNCPath( path );
// returns true
path = '\\\\server\\share';
bool = isUNCPath( path );
// returns true
path = '\\\\server\\\\share';
bool = isUNCPath( path );
// returns false
path = '\\\\\\\\server\\share';
bool = isUNCPath( path );
// returns false
path = 'beep boop \\\\server\\share';
bool = isUNCPath( path );
// returns false
path = '\\\\server';
bool = isUNCPath( path );
// returns false
path = '\\';
bool = isUNCPath( path );
// returns false
path = '';
bool = isUNCPath( path );
// returns false
path = '\\\\server\\share\\';
bool = isUNCPath( path );
// returns false
path = '\\\\server\\share\\foo\\bar\\baz:';
bool = isUNCPath( path );
// returns false
path = '\\\\server\\share\\foo\\bar\\baz:a:';
bool = isUNCPath( path );
// returns false
path = '\\\\server\\share\\foo\\bar\\baz::';
bool = isUNCPath( path );
// returns false
path = '\\\\server\\share\\foo\\bar\\baz:a:b:c';
bool = isUNCPath( path );
// returns false
path = '\\\\server\\share\\foo\\bar\\';
bool = isUNCPath( path );
// returns false
path = '//server/share';
bool = isUNCPath( path );
// returns false
path = '/foo/bar';
bool = isUNCPath( path );
// returns false
path = 'foo/bar';
bool = isUNCPath( path );
// returns false
path = './foo/bar';
bool = isUNCPath( path );
// returns false
path = '/foo/../bar';
bool = isUNCPath( path );
// returns false
See Also
@stdlib/assert-is-unc-path-cli
: CLI package for use as a command-line utility.
Notice
This package is part of stdlib, a standard library for JavaScript and Node.js, with an emphasis on numerical and scientific computing. The library provides a collection of robust, high performance libraries for mathematics, statistics, streams, utilities, and more.
For more information on the project, filing bug reports and feature requests, and guidance on how to develop stdlib, see the main project repository.
Community
License
See LICENSE.
Copyright
Copyright © 2016-2024. The Stdlib Authors.