JavaScript-関数の組み合わせ

1124 ワード

  • 純関数とコリゼーションは、タマネギコード
  • を引き起こしやすい.
  • 関数の組み合わせは、細かい粒度の関数を再結合して新しい関数
  • を生成することができます.
  • 関数の組み合わせは玉ねぎコードを減らしていません.玉ねぎコードをカプセル化しただけです.
  • 関数組合せ実行順序は、右から左まで
  • です.
  • は、結合法則を満たすために、gとhを組み合わせることもでき、fとgを組み合わせることもできます.結果は同じ
  • です.
    const _ = require("lodash");
    
    const reverse = arr => arr.reverse()
    const first = arr => arr[0]
    const toUpper = s => s.toUpperCase()
      
    const lastToupper = _.flowRight(toUpper, first, reverse) 
    
    console.log(lastToupper(['one', 'two', 'three']))
      
    //    lodash    flowRight
    function compose (...args) {
      return function (value) {
        return args.reverse().reduce(function (acc, fn) {
            console.log(fn)
          return fn(acc)
        }, value)
      }
    }
    const composeEs6 = (...args) => value => args.reverse().reduce((acc, fn) => fn(acc), value)
    const f = composeEs6(toUpper, first, reverse)
    console.log(f(['one', 'two', 'three']))
    //   
    原文の住所:https://kspf.xyz/archives/71