pipe:具有(几乎)可变参数类型的管道实施 源码
@ csvenke /管道 具有(几乎)可变参数类型的管道实施 •••• 安装 使用npm npm install --save @csvenke/pipe 使用纱 yarn add @csvenke/pipe 用法 用javascript import pipe from "@csvenke/pipe" ; const getName = data => data . name ; const toUpperCase = str => str . toUpperCase ( ) ; const reverse = str => str . split ( "" ) . reverse ( ) . join ( "" ) ; const piped = pipe ( getName , toUpperCase , reverse ) ; console . log ( piped (
用户评论