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
No description provided.
The text was updated successfully, but these errors were encountered:
I have the same problem.
Sorry, something went wrong.
I tried it, as long as the following code is commented out, it can work normally.
This is new package after commenting out the code
npm i @wmvm__/nem-library
can you tell me why the following code is added?
// polyfill for TypedArray.prototype.slice() // Uint8Array.prototype.slice = function(start, end) { // var len = this.length; // var relativeStart = start; // var k = (relativeStart < 0) ? max(len + relativeStart, 0) : Math.min(relativeStart, len); // var relativeEnd = (end === undefined) ? len : end; // var final = (relativeEnd < 0) ? max(len + relativeEnd, 0) : Math.min(relativeEnd, len); // var count = final - k; // var c = this.constructor; // var a = new c(count); // var n = 0; // while (k < final) { // a[n] = JSON.parse(JSON.stringify(this[k])); // k++; // n++; // } // return a; // } // // // Float64Array.prototype.slice = function(start, end) { // var len = this.length; // var relativeStart = start; // var k = (relativeStart < 0) ? max(len + relativeStart, 0) : Math.min(relativeStart, len); // var relativeEnd = (end === undefined) ? len : end; // var final = (relativeEnd < 0) ? max(len + relativeEnd, 0) : Math.min(relativeEnd, len); // var count = final - k; // var c = this.constructor; // var a = new c(count); // var n = 0; // while (k < final) { // a[n] = JSON.parse(JSON.stringify(this[k])); // k++; // n++; // } // return a; // }
No branches or pull requests
No description provided.
The text was updated successfully, but these errors were encountered: