New Case Study:See how Anthropic automated 95% of dependency reviews with Socket.Learn More →

enum-for

Advanced tools

Socket logo

Install Socket

Detect and block malicious and high-risk dependencies

Install

enum-for - npm Package Compare versions

Comparing version

to
0.0.2

{
"name": "enum-for",
"version": "0.0.1",
"version": "0.0.2",
"description": "An utility library to get all values/keys of a Typescript enum",

@@ -5,0 +5,0 @@ "main": "index.js",

@@ -20,2 +20,10 @@ # enum-for [![Build Status](https://travis-ci.org/tranvansang/enum-for.svg?branch=master)](https://travis-ci.org/tranvansang/enum-for)

## Source code
The source code of the project is very simple (2 LOCs). You can copy and use it directly in your project.
```javascript
exports.getAllEnumKeys = enumType => Object.keys(enumType).filter(key => isNaN(Number(key)))
exports.getAllEnumValues = enumType => exports.getAllEnumKeys(enumType).map(key => enumType[key])
```
## Example

@@ -22,0 +30,0 @@