Skip to content

Instantly share code, notes, and snippets.

@DDzia
Created April 19, 2019 09:22
Show Gist options
  • Save DDzia/60838cb98a62cf34c9db9a96bb2811ac to your computer and use it in GitHub Desktop.
Save DDzia/60838cb98a62cf34c9db9a96bb2811ac to your computer and use it in GitHub Desktop.
/**
* Get values from enumeration.
*/
public static values(enumType: object) {
return EnumHelpers.toKeyValueArray(enumType).map(kv => kv.value);
}
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment