简体   繁体   中英

Chaining functions in typescript

I have some formatting functions that should be applied on some strings:

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)
}

They both return a function that can be applied on a string

How can I chain them together so that the result returns also a function that can be applied on strings?

Is there a lodash utility I'm missing?

I think you need flow function of Lodash or pipe of Ramda

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

Just create a new function definition as below:

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

Used as:

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

The technical post webpages of this site follow the CC BY-SA 4.0 protocol. If you need to reprint, please indicate the site URL or the original address.Any question please contact:yoyou2525@163.com.

 
粤ICP备18138465号  © 2020-2024 STACKOOM.COM