Extended packing and extracting library for value types (#5056)

Co-authored-by: ernestognw <ernestognw@gmail.com>
This commit is contained in:
Hadrien Croubois
2024-06-11 20:07:00 +02:00
committed by GitHub
parent d8e799db98
commit dc62599257
10 changed files with 1604 additions and 46 deletions

View File

@ -0,0 +1,5 @@
const { range } = require('../../helpers');
const SIZES = range(1, 33).filter(size => size == 1 || size == 2 || size % 4 == 0);
module.exports = { SIZES };