docs(cli,encoding,fmt,jsonc,path,semver,testing,text,toml,url): remove "This module is browser compatible" note (#4945)

This commit is contained in:
Asher Gomez 2024-06-04 13:21:54 +10:00 committed by GitHub
parent 315903117d
commit c5ad9d48dc
No known key found for this signature in database
GPG Key ID: B5690EEEBB952194
20 changed files with 1 additions and 39 deletions

View File

@ -5,8 +5,6 @@
* Command line arguments parser based on
* {@link https://github.com/minimistjs/minimist | minimist}.
*
* This module is browser compatible.
*
* @example
* ```ts
* import { parseArgs } from "@std/cli/parse-args";

View File

@ -4,8 +4,6 @@
/**
* Utilities for working with {@link https://en.wikipedia.org/wiki/Ascii85 | ascii85} encoding.
*
* This module is browser compatible.
*
* ## Specifying a standard and delimiter
*
* By default, all functions are using the most popular Adobe version of ascii85

View File

@ -9,8 +9,6 @@
*
* Modified from {@link https://github.com/beatgammit/base64-js}.
*
* This module is browser compatible.
*
* ```ts
* import { encodeBase32, decodeBase32 } from "@std/encoding/base32";
* import { assertEquals } from "@std/assert/assert-equals";

View File

@ -6,8 +6,6 @@
* {@link https://datatracker.ietf.org/doc/html/draft-msporny-base58-03 | base58}
* encoding and decoding.
*
* This module is browser compatible.
*
* ```ts
* import { encodeBase58, decodeBase58 } from "@std/encoding/base58";
* import { assertEquals } from "@std/assert/assert-equals";

View File

@ -6,8 +6,6 @@
* {@link https://www.rfc-editor.org/rfc/rfc4648.html#section-4 | base64}
* encoding and decoding.
*
* This module is browser compatible.
*
* ```ts
* import {
* encodeBase64,

View File

@ -6,8 +6,6 @@
* {@link https://www.rfc-editor.org/rfc/rfc4648.html#section-5 | base64url}
* encoding and decoding.
*
* This module is browser compatible.
*
* @module
*/

View File

@ -8,8 +8,6 @@
* {@link https://github.com/golang/go/blob/go1.12.5/src/encoding/hex/hex.go | encoding/hex}
* library.
*
* This module is browser compatible.
*
* ```ts
* import {
* decodeHex,

View File

@ -3,8 +3,6 @@
/**
* Utilities for encoding and decoding common formats like hex, base64, and varint.
*
* This module is browser compatible.
*
* ```ts
* import { encodeBase64, decodeBase64 } from "@std/encoding";
* import { assertEquals } from "@std/assert/assert-equals";

View File

@ -57,8 +57,6 @@ export interface FormatOptions {
* Based on {@link https://github.com/sindresorhus/pretty-bytes | pretty-bytes}.
* A utility for displaying file sizes for humans.
*
* This module is browser compatible.
*
* @param num The bytes value to format
* @param options The options for formatting
* @returns The formatted string

View File

@ -6,8 +6,6 @@
/**
* String formatters and utilities for dealing with ANSI color codes.
*
* This module is browser compatible.
*
* This module supports `NO_COLOR` environmental variable disabling any coloring
* if `NO_COLOR` is set.
*

View File

@ -6,8 +6,6 @@
* module only provides a means of parsing JSONC. JSONC serialization is not
* yet supported.
*
* This module is browser compatible.
*
* ```ts
* import { parse } from "@std/jsonc";
* import { assertEquals } from "@std/assert/assert-equals";

View File

@ -6,8 +6,6 @@
* {@link https://code.visualstudio.com/docs/languages/json#_json-with-comments | JSONC}
* (JSON with Comments) strings.
*
* This module is browser compatible.
*
* @module
*/

View File

@ -31,8 +31,6 @@
* assertEquals(fromFileUrl("file:///home/foo"), "\\home\\foo");
* ```
*
* This module is browser compatible.
*
* @module
*/

View File

@ -17,8 +17,6 @@
* assertEquals(fromFileUrl("file:///home/foo"), "/home/foo");
* ```
*
* This module is browser compatible.
*
* @module
*/
export * from "./basename.ts";

View File

@ -17,8 +17,6 @@
* assertEquals(fromFileUrl("file:///home/foo"), "\\home\\foo");
* ```
*
* This module is browser compatible.
*
* @module
*/
export * from "./basename.ts";

View File

@ -270,7 +270,7 @@
* If you want to know if a version satisfies or does not satisfy a range, use the
* {@linkcode satisfies} function.
*
* This module is browser compatible.
*
*
*

View File

@ -316,8 +316,6 @@
* });
* ```
*
* This module is browser compatible.
*
* @module
*/

View File

@ -25,8 +25,6 @@
* assertEquals(words.sort(compareSimilarity("hep")), ["help", "hi", "hello"]);
* ```
*
* This module is browser compatible.
*
* @module
*/

View File

@ -88,8 +88,6 @@
* }
* ```
*
* This module is browser compatible.
*
* ```ts
* import { parse, stringify } from "@std/toml";
* import { assertEquals } from "@std/assert/assert-equals";

View File

@ -5,8 +5,6 @@
* Utilities for working with
* {@linkcode https://developer.mozilla.org/en-US/docs/Web/API/URL | URL}s.
*
* This module is browser compatible.
*
* ## Get basename
*
* {@linkcode basename} returns the base name of a URL or URL string, optionally