README
ts-enum-extractor
Library to help you extract a enum variables or keys.
Installation
To install ts-enum-extractor, use npm:
npm install ts-enum-extractor
Usage
enum DIRECTION {
LEFT = 1,
RIGHT = 2,
UP = 3,
DOWN = 4
}
// to get the keys of the enums
console.log(enumExtractor.keys(DIRECTION))
// to get the values of the enums
console.log(enumExtractor.values(DIRECTION))