chore: remove useless statement that was a typo (#4846)

This commit is contained in:
Tom Jenkinson 2020-12-29 16:58:09 +00:00 committed by GitHub
parent 722db85e1c
commit d08f8487c4
No known key found for this signature in database
GPG key ID: 4AEE18F83AFDEB23

View file

@ -111,7 +111,7 @@ export class JSHandle<T = any> {
}
async _evaluateExpression(expression: string, isFunction: boolean, returnByValue: boolean, arg: any) {
const value = await evaluateExpression(this._context, returnByValue, expression, isFunction, this, arg);1;
const value = await evaluateExpression(this._context, returnByValue, expression, isFunction, this, arg);
await this._context.doSlowMo();
return value;
}