UNPKG
ali-react-table
Version:
latest (2.6.1)
2.6.1
2.6.0
2.5.2
2.5.1
2.5.0
2.4.1
2.4.0
2.3.1
2.3.0
2.2.1
2.1.1
2.0.5
2.0.4
2.0.3
2.0.2
2.0.1
2.0.0
2.0.0-beta.1
2.0.0-beta.0
2.0.0-alpha.0
1.3.0-beta.1
1.3.0-beta.0
1.2.1
1.2.0
1.1.0
1.0.1
1.0.0
1.0.0-beta.1
1.0.0-beta.0
0.14.2
0.14.1
0.14.0
0.13.7
0.13.6
0.13.5
0.13.4
0.13.3
0.13.1
0.13.0
0.12.2
0.12.1
0.12.0
0.12.0-snapshot.0
0.0.1-placeholder
高性能 React 表格组件
github.com/alibaba/ali-react-table
alibaba/ali-react-table
ali-react-table
/
dist
/
utils
/
applyTransforms.d.ts
7 lines
(6 loc)
•
269 B
TypeScript
View Raw
1
2
3
4
5
6
7
import
{ Transform }
from
'../interfaces'
; /** * 以
input
作为输入,按序使用 transform. * * `applyTransforms(
input
, f1, f2, f3)` 等价于 `f3(f2(f1(
input
)))` */ export default function applyTransforms<T>(
input
: T, ...transforms: Transform<T>[]): T;