deno.land / std@0.158.0 / encoding / csv_stringify.ts

csv_stringify.ts
نووسراو ببینە
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
// Copyright 2018-2022 the Deno authors. All rights reserved. MIT license.
import { Column, ColumnDetails, DataItem, NEWLINE, stringify, StringifyOptions,} from "./csv.ts";
/** * Provides {@linkcode stringify} to encode data following the * [CSV specification](https://tools.ietf.org/html/rfc4180). * * This module is browser compatible. * * @module */
/** * @deprecated (will be removed after 0.157.0) This file will be removed soon. Use `Error` instead. */export class StringifyError extends Error { override readonly name = "StringifyError";}
export type { /** * @deprecated (will be removed after 0.157.0) This file will be removed soon. Import from "./csv.ts" instead. */ Column, /** * @deprecated (will be removed after 0.157.0) This file will be removed soon. Import from "./csv.ts" instead. */ ColumnDetails, /** * @deprecated (will be removed after 0.157.0) This file will be removed soon. Import from "./csv.ts" instead. */ DataItem, /** * @deprecated (will be removed after 0.157.0) This file will be removed soon. Import from "./csv.ts" instead. */ StringifyOptions,};
export { /** * @deprecated (will be removed after 0.157.0) This file will be removed soon. Use `"\r\n"` instead. */ NEWLINE, /** * @deprecated (will be removed after 0.157.0) This file will be removed soon. Import from "./csv.ts" instead. */ stringify,};
std

Version Info

Tagged at
a year ago