array-buffer-byte-length Codemod
Introduction
This codemod replaces the use of the array-buffer-byte-length library with the native byteLength property of ArrayBuffer instances. This transformation helps reduce dependencies and enhances performance by leveraging built-in JavaScript features.
Before
ts
After
ts