Closed iparrabb closed 5 years ago
Hi, This error appears on IE11 || <, any idea? I have applied the includes polyfill without lucky.
if (!String.prototype.includes) { String.prototype.includes = function(search, start) { 'use strict'; if (typeof start !== 'number') { start = 0; } if (start + search.length > this.length) { return false; } else { return this.indexOf(search, start) !== -1; } }; }
Thanks.
This issue is closed because it does not meet our issue template. Please read it.
Hi, This error appears on IE11 || <, any idea? I have applied the includes polyfill without lucky.
Thanks.