In https://developer.mozilla.org/en-US/docs/Web/API/Navigator/share it is not required to add text or title. But when using this polyfill we get an error invalid params.
|
if (!data.title || typeof data.title !== 'string' || !data.text || typeof data.text !== 'string') { |
Looks like this check shouldn't be here.