打字稿中的链接功能

时间:2020-11-02 10:24:49

标签: javascript typescript lodash chaining

我有一些应该应用于某些字符串的格式化功能:

const limitSize = (limit: number): ((str: string) => string) => {
  return (str: string) => str.substring(0, limit)
}

const replaceNewLine = (replaceWith: string): ((str: string) => string) => {
  return (str: string) => str.replace(/\n/g, replaceWith)
}

它们都返回可以应用于字符串的函数

如何将它们链接在一起,以便结果还返回可以应用于字符串的函数?

我是否缺少lodash实用程序?

2 个答案:

答案 0 :(得分:5)

我认为您需要Lodash的flow功能或Ramda的pipe

function square(n) {
  return n * n;
}
 
var addSquare = _.flow([_.add, square]);
addSquare(1, 2);
// => 9

答案 1 :(得分:1)

只需创建一个新的函数定义,如下所示:

const limitReplace = (limit: number, replaceWith: string): ((str: string) => string) => {
    return str => replaceNewLine(replaceWith)(limitSize(limit)(str));
}

用作:

const input = "Hel\nlo W\norld\n";
const limitSixReplaceSpace = limitReplace(6, " ");
const result = limitSixReplaceSpace(input); // Hel lo