We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.
By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.
Already on GitHub? Sign in to your account
flatmap not support on some old android device
Some polyfill here using Asset Manager
Array.prototype.flat || Object.defineProperty(Array.prototype, "flat", { configurable: !0, value: function r() { var t = isNaN(arguments[0]) ? 1 : Number(arguments[0]); return t ? Array.prototype.reduce.call(this, function(a, e) { return Array.isArray(e) ? a.push.apply(a, r.call(e, t - 1)) : a.push(e), a }, []) : Array.prototype.slice.call(this) }, writable: !0 }), Array.prototype.flatMap || Object.defineProperty(Array.prototype, "flatMap", { configurable: !0, value: function(r) { return Array.prototype.map.apply(this, arguments).flat() }, writable: !0 })
The text was updated successfully, but these errors were encountered:
hgiesel
No branches or pull requests
flatmap not support on some old android device
Some polyfill here using Asset Manager
The text was updated successfully, but these errors were encountered: