mirror of
https://github.com/denoland/deno.git
synced 2025-09-27 12:49:10 +00:00
fix(std): Don't use JSDoc syntax for browser-compatibility headers (#8960)
This commit is contained in:
parent
41a4a34aee
commit
62465ca4ee
14 changed files with 27 additions and 26 deletions
|
@ -1,5 +1,5 @@
|
|||
// Copyright 2018-2020 the Deno authors. All rights reserved. MIT license.
|
||||
/** This module is browser compatible. */
|
||||
// This module is browser compatible.
|
||||
|
||||
export type Ascii85Standard = "Adobe" | "btoa" | "RFC 1924" | "Z85";
|
||||
/**
|
||||
|
|
|
@ -1,7 +1,7 @@
|
|||
// Copyright 2018-2020 the Deno authors. All rights reserved. MIT license.
|
||||
// Implements the CSV spec at https://tools.ietf.org/html/rfc4180
|
||||
|
||||
/** This module is browser compatible. */
|
||||
// This module is browser compatible.
|
||||
|
||||
const QUOTE = '"';
|
||||
export const NEWLINE = "\r\n";
|
||||
|
|
Loading…
Add table
Add a link
Reference in a new issue