— Any suggestions on how to run JavaScript on third party website for specific no of times
— Or Violentmonkey for chrome
— Sorry, spam removed and reported.
— Made my compose a tiny one
—
const compose = (initialValue, ...funcs) =>
funcs.reduce((value, func) => func(value), initialValue);
Message permanent page
— The reduce
doesn't really make it much tinier, but no assignment!!!
—
const compose = (...funcs) =>
initialValue =>
funcs.reduce((value, func) =>
func(value), initialValue);
Message permanent page