Understanding `pipeArguments` and Unexpected Argument Error
How does the
Then
And got
pipeArguments thing work? TriedThen
And got
Expected 0 arguments, but got 1pipeArgumentsExpected 0 arguments, but got 1class MyClass {
pipe() {
return pipeArguments(this, arguments);
}
}// Expected 0 arguments, but got 1
new MyClass().pipe(mappingFunction)