forked from rescript-lang/rescript
-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathbytesLabels.js
99 lines (66 loc) · 2.19 KB
/
bytesLabels.js
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
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
83
84
85
86
87
88
89
90
91
92
93
94
95
96
97
98
99
// GENERATED CODE BY BUCKLESCRIPT VERSION 0.3 , PLEASE EDIT WITH CARE
'use strict';
var Bytes = require("./bytes");
var make = Bytes.make;
var init = Bytes.init;
var empty = Bytes.empty;
var copy = Bytes.copy;
var of_string = Bytes.of_string;
var to_string = Bytes.to_string;
var sub = Bytes.sub;
var sub_string = Bytes.sub_string;
var fill = Bytes.fill;
var blit = Bytes.blit;
var concat = Bytes.concat;
var iter = Bytes.iter;
var iteri = Bytes.iteri;
var map = Bytes.map;
var mapi = Bytes.mapi;
var trim = Bytes.trim;
var escaped = Bytes.escaped;
var index = Bytes.index;
var rindex = Bytes.rindex;
var index_from = Bytes.index_from;
var rindex_from = Bytes.rindex_from;
var contains = Bytes.contains;
var contains_from = Bytes.contains_from;
var rcontains_from = Bytes.rcontains_from;
var uppercase = Bytes.uppercase;
var lowercase = Bytes.lowercase;
var capitalize = Bytes.capitalize;
var uncapitalize = Bytes.uncapitalize;
var compare = Bytes.compare;
var unsafe_to_string = Bytes.unsafe_to_string;
var unsafe_of_string = Bytes.unsafe_of_string;
exports.make = make;
exports.init = init;
exports.empty = empty;
exports.copy = copy;
exports.of_string = of_string;
exports.to_string = to_string;
exports.sub = sub;
exports.sub_string = sub_string;
exports.fill = fill;
exports.blit = blit;
exports.concat = concat;
exports.iter = iter;
exports.iteri = iteri;
exports.map = map;
exports.mapi = mapi;
exports.trim = trim;
exports.escaped = escaped;
exports.index = index;
exports.rindex = rindex;
exports.index_from = index_from;
exports.rindex_from = rindex_from;
exports.contains = contains;
exports.contains_from = contains_from;
exports.rcontains_from = rcontains_from;
exports.uppercase = uppercase;
exports.lowercase = lowercase;
exports.capitalize = capitalize;
exports.uncapitalize = uncapitalize;
exports.compare = compare;
exports.unsafe_to_string = unsafe_to_string;
exports.unsafe_of_string = unsafe_of_string;
/* No side effect */