You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
{{ message }}
This repository has been archived by the owner on Aug 14, 2022. It is now read-only.
The text was updated successfully, but these errors were encountered:
desmondCTNG
changed the title
Please push these codes if they are error free. I personally haven
Please push these codes if they are error free. It solves the Depreciation Error problem in Node 9.
Jul 16, 2021
desmondCTNG
changed the title
Please push these codes if they are error free. It solves the Depreciation Error problem in Node 9.
Please push these codes if they are error free. It solves the Deprecation Error problem in Node 9.
Jul 16, 2021
desmondCTNG
changed the title
Please push these codes if they are error free. It solves the Deprecation Error problem in Node 9.
Please push these codes if they are error free. It stops the Deprecation Warning in Node 9.
Jul 16, 2021
Sign up for freeto subscribe to this conversation on GitHub.
Already have an account?
Sign in.
Instead of forcing people to use Node 8, you can simply replace two lines in decode-texture.js to solve the problem:
return { extension: 'jpg' , buffer: new Buffer(tex.bytes) };
=>return { extension: 'jpg' , buffer: Buffer.from(tex.bytes) };
const buf = new Buffer(bytes);
=>const buf = Buffer.from(bytes);
Originally posted by @desmondCTNG in #3 (comment)
The text was updated successfully, but these errors were encountered: