File tree Expand file tree Collapse file tree 2 files changed +13
-5
lines changed Expand file tree Collapse file tree 2 files changed +13
-5
lines changed Original file line number Diff line number Diff line change 1
1
/**
2
- * Virtual DOM implementation based on Snabbdom by
2
+ * Virtual DOM patching algorithm based on Snabbdom by
3
3
* Simon Friis Vindum (@paldepind)
4
- * with custom modifications.
4
+ * Licensed under the MIT License
5
+ * https://github.com/paldepind/snabbdom/blob/master/LICENSE
5
6
*
7
+ * modified by Evan You (@yyx990803)
8
+ *
9
+
10
+ /*
6
11
* Not type-checking this because this file is perf-critical and the cost
7
12
* of making flow understand it is not worth it.
8
13
*/
Original file line number Diff line number Diff line change 1
1
/* @flow */
2
2
3
- import stream from 'stream'
4
- import { createWriteFunction } from './write'
5
-
6
3
/**
7
4
* Original RenderStream implmentation by Sasha Aickin (@aickin)
8
5
* Licensed under the Apache License, Version 2.0
6
+ * http://www.apache.org/licenses/LICENSE-2.0
7
+ *
9
8
* Modified by Evan You (@yyx990803)
10
9
*/
10
+
11
+ import stream from 'stream'
12
+ import { createWriteFunction } from './write'
13
+
11
14
export default class RenderStream extends stream . Readable {
12
15
buffer : string ;
13
16
render : Function ;
You can’t perform that action at this time.
0 commit comments