From d055a21c8b5a6f6e2e6900ce24cca98bbaac6908 Mon Sep 17 00:00:00 2001 From: stdlib-bot Date: Sun, 18 Aug 2024 21:52:35 +0000 Subject: [PATCH] Update README.md for Deno bundle v0.3.0 --- README.md | 6 +++--- 1 file changed, 3 insertions(+), 3 deletions(-) diff --git a/README.md b/README.md index 00905c9f4..e2fd4abf2 100644 --- a/README.md +++ b/README.md @@ -42,13 +42,13 @@ limitations under the License. ## Usage ```javascript -import math from 'https://cdn.jsdelivr.net/gh/stdlib-js/math@deno/mod.js'; +import math from 'https://cdn.jsdelivr.net/gh/stdlib-js/math@v0.3.0-deno/mod.js'; ``` You can also import the following named exports from the package: ```javascript -import { base, iter, special, strided, tools } from 'https://cdn.jsdelivr.net/gh/stdlib-js/math@deno/mod.js'; +import { base, iter, special, strided, tools } from 'https://cdn.jsdelivr.net/gh/stdlib-js/math@v0.3.0-deno/mod.js'; ``` #### math @@ -90,7 +90,7 @@ The namespace consists of the following sub-namespaces: ```javascript import objectKeys from 'https://cdn.jsdelivr.net/gh/stdlib-js/utils/keys@deno/mod.js'; -import math from 'https://cdn.jsdelivr.net/gh/stdlib-js/math@deno/mod.js'; +import math from 'https://cdn.jsdelivr.net/gh/stdlib-js/math@v0.3.0-deno/mod.js'; console.log( objectKeys( math ) ); ```