UNPKG

anticaptcha2

Version:

A simple client to solve captchas using https://anti-captcha.com

16 lines (12 loc) 343 B
'use strict'; const InputField = require('./field').InputField; class TextareaField extends InputField { constructor(label, name, opts = {/*placeholder, width, rows*/}) { super(label, 'textarea', name, { placeHolder: opts.placeholder, width: opts.width, rows: opts.rows }); } } module.exports = TextareaField;