Skip to content

Commit 2b9695d

Browse files
committed
chore: deprecate createBranchStream
Signed-off-by: will Farrell <willfarrell@proton.me>
1 parent 4c47151 commit 2b9695d

36 files changed

+4575
-4587
lines changed

README.md

Lines changed: 1 addition & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -69,3 +69,4 @@ Warning: This library is in Alpha, and will contain breaking changes as modules
6969
- format
7070
- type
7171
- pg - obj to db types
72+
- benchmark using `node file.js | pv > /dev/null`

biome.json

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,5 +1,5 @@
11
{
2-
"$schema": "https://biomejs.dev/schemas/2.2.2/schema.json",
2+
"$schema": "https://biomejs.dev/schemas/2.3.7/schema.json",
33
"vcs": {
44
"enabled": false,
55
"clientKind": "git",

docs/index.html

Lines changed: 65 additions & 61 deletions
Original file line numberDiff line numberDiff line change
@@ -1,63 +1,67 @@
1-
<!DOCTYPE html>
1+
<!doctype html>
22
<html lang="en">
3-
<head>
4-
<meta charset="UTF-8" />
5-
<title>
6-
datastream - Commonly used stream patterns for Web Streams API and NodeJS
7-
Stream.
8-
</title>
9-
<meta
10-
name="description"
11-
content="Commonly used stream patterns for Web Streams API and NodeJS Stream."
12-
/>
13-
<meta
14-
name="viewport"
15-
content="width=device-width, user-scalable=no, initial-scale=1.0, maximum-scale=1.0, minimum-scale=1.0"
16-
/>
17-
<link
18-
href="//unpkg.com/docsify-themeable/dist/css/theme-simple.css"
19-
rel="stylesheet"
20-
/>
21-
<link href="//unpkg.com/prismjs@v1.x/themes/prism.css" rel="stylesheet" />
22-
<style>
23-
:root {
24-
--base-font-size: 16px;
25-
--theme-color: rgb(104, 118, 52);
26-
--link-color: rgb(104, 118, 52);
27-
--link-color--hover: rgb(137, 152, 100);
28-
--sidebar-name-margin: 0;
29-
--sidebar-name-padding: 0;
30-
--code-font-size: 0.9em;
31-
}
32-
.sidebar > h1 {
33-
margin-bottom: -0.75em;
34-
margin-top: 0.75em;
35-
}
36-
.markdown-section a code {
37-
color: var(--link-color) !important;
38-
}
39-
.markdown-section code:not([class*='lang-']):not([class*='language-']) {
40-
white-space: unset;
41-
}
42-
</style>
43-
</head>
44-
<body>
45-
<div id="app"></div>
46-
</body>
47-
<script>
48-
window.$docsify = {
49-
name: 'datastream',
50-
logo: 'sidebar.png',
51-
loadSidebar: 'sidebar.md',
52-
repo: 'https://github.com/willfarrell/datastream',
53-
auto2top: true
54-
}
55-
mermaid.initialize({ startOnLoad: true })
56-
</script>
57-
<script src="//unpkg.com/docsify/lib/docsify.min.js"></script>
58-
<script src="//unpkg.com/docsify/lib/plugins/search.min.js"></script>
59-
<script src="//unpkg.com/mermaid/dist/mermaid.js"></script>
60-
<script src="//unpkg.com/docsify-mermaid@latest/dist/docsify-mermaid.js"></script>
61-
<script src="//unpkg.com/prismjs@v1.x/components/prism-core.min.js"></script>
62-
<script src="//unpkg.com/prismjs@v1.x/plugins/autoloader/prism-autoloader.min.js"></script>
3+
<head>
4+
<meta charset="UTF-8" />
5+
<title>
6+
datastream - Commonly used stream patterns for Web Streams API and
7+
NodeJS Stream.
8+
</title>
9+
<meta
10+
name="description"
11+
content="Commonly used stream patterns for Web Streams API and NodeJS Stream."
12+
/>
13+
<meta
14+
name="viewport"
15+
content="width=device-width, user-scalable=no, initial-scale=1.0, maximum-scale=1.0, minimum-scale=1.0"
16+
/>
17+
<link
18+
href="//unpkg.com/docsify-themeable/dist/css/theme-simple.css"
19+
rel="stylesheet"
20+
/>
21+
<link
22+
href="//unpkg.com/prismjs@v1.x/themes/prism.css"
23+
rel="stylesheet"
24+
/>
25+
<style>
26+
:root {
27+
--base-font-size: 16px;
28+
--theme-color: rgb(104, 118, 52);
29+
--link-color: rgb(104, 118, 52);
30+
--link-color--hover: rgb(137, 152, 100);
31+
--sidebar-name-margin: 0;
32+
--sidebar-name-padding: 0;
33+
--code-font-size: 0.9em;
34+
}
35+
.sidebar > h1 {
36+
margin-bottom: -0.75em;
37+
margin-top: 0.75em;
38+
}
39+
.markdown-section a code {
40+
color: var(--link-color);
41+
}
42+
.markdown-section
43+
code:not([class*="lang-"]):not([class*="language-"]) {
44+
white-space: unset;
45+
}
46+
</style>
47+
</head>
48+
<body>
49+
<div id="app"></div>
50+
</body>
51+
<script>
52+
window.$docsify = {
53+
name: "datastream",
54+
logo: "sidebar.png",
55+
loadSidebar: "sidebar.md",
56+
repo: "https://github.com/willfarrell/datastream",
57+
auto2top: true,
58+
};
59+
mermaid.initialize({ startOnLoad: true });
60+
</script>
61+
<script src="//unpkg.com/docsify/lib/docsify.min.js"></script>
62+
<script src="//unpkg.com/docsify/lib/plugins/search.min.js"></script>
63+
<script src="//unpkg.com/mermaid/dist/mermaid.js"></script>
64+
<script src="//unpkg.com/docsify-mermaid@latest/dist/docsify-mermaid.js"></script>
65+
<script src="//unpkg.com/prismjs@v1.x/components/prism-core.min.js"></script>
66+
<script src="//unpkg.com/prismjs@v1.x/plugins/autoloader/prism-autoloader.min.js"></script>
6367
</html>

0 commit comments

Comments
 (0)