Comparing version
{ | ||
"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 [](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 @@ |
3510
10.45%54
17.39%