UNPKG

@andrewdonelson/byte-enum

Version:

A high-performance, memory-optimized enum implementation for TypeScript

11 lines (10 loc) 340 B
/** * ByteEnum - Memory-Efficient TypeScript Enum Utility * * A high-performance, memory-optimized enum implementation with * type safety and runtime utility methods. * * @license MIT * File: src/index.ts */ export { createByteEnum, createCharEnum, createAlphaNumEnum, TinyByteEnum, TinyCharEnum, TinyEnumValue } from './byteEnum';