From 99ae709453171ddd7e8bfe96c7bf7cf673d78684 Mon Sep 17 00:00:00 2001 From: stdlib-bot Date: Thu, 22 Feb 2024 22:13:56 +0000 Subject: [PATCH] Update README.md for Deno bundle v0.2.1 --- README.md | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/README.md b/README.md index d773023..77ca0aa 100644 --- a/README.md +++ b/README.md @@ -48,7 +48,7 @@ limitations under the License. ## Usage ```javascript -import isUNCPath from 'https://cdn.jsdelivr.net/gh/stdlib-js/assert-is-unc-path@deno/mod.js'; +import isUNCPath from 'https://cdn.jsdelivr.net/gh/stdlib-js/assert-is-unc-path@v0.2.1-deno/mod.js'; ``` #### isUNCPath( value ) @@ -74,7 +74,7 @@ bool = isUNCPath( '/foo/bar/baz' ); ```javascript -import isUNCPath from 'https://cdn.jsdelivr.net/gh/stdlib-js/assert-is-unc-path@deno/mod.js'; +import isUNCPath from 'https://cdn.jsdelivr.net/gh/stdlib-js/assert-is-unc-path@v0.2.1-deno/mod.js'; var path = '\\\\server\\share\\foo\\bar\\baz:a:b'; var bool = isUNCPath( path );