JsFunction.withThis constructor
Returns a JsFunction that captures its 'this' binding and calls f
with the value of this passed as the first argument.
Implementation
factory JsFunction.withThis(Function f) {
var jsFunc = _convertDartFunction(f, captureThis: true);
return new JsFunction._fromJs(jsFunc);
}