SlowBuffer to Buffer.allocUnsafeSlow Codemod
This codemod migrates deprecated SlowBuffer usage to Buffer.allocUnsafeSlow() to handle Node.js DEP0030.
What it does
This codemod transforms:
- SlowBuffer constructor calls to Buffer.allocUnsafeSlow()
- Direct SlowBuffer calls to Buffer.allocUnsafeSlow()
- Import/require statements be synced with new function
Example
Before:
javascript
After:
javascript