We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
There was an error while loading. Please reload this page.
1 parent 7092441 commit 3862c84Copy full SHA for 3862c84
packages/kit/src/exports/hooks/sequence.js
@@ -1,4 +1,13 @@
1
/**
2
+ * Merge an array of multiple handlers into one. The `resolve` passed
3
+ * to the first handler will call the second handler, and so on,
4
+ * until the last handler calls the framework.
5
+ *
6
+ * If handlers use the `transformPageChunk` option, the functions
7
+ * will be 'chained', meaning a transform function specified in
8
+ * the first handler will be applied to later handlers, and
9
+ * multiple transformations can be applied.
10
11
* @param {...import('types').Handle} handlers
12
* @returns {import('types').Handle}
13
*/
0 commit comments