'use strict'; function searchFormHelper(options = {}) { const config = this.config; const className = options.class || 'search-form'; const text = options.hasOwnProperty('text') ? options.text : 'Search'; const button = options.button; return `
`; } module.exports = searchFormHelper;