1.0.4 • Published 3 years ago

ts-enum-extractor v1.0.4

Weekly downloads
91
License
ISC
Repository
github
Last release
3 years ago

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))