Answers for "ts enum to array of strings"

2

typescript enum to array

// Helper
const StringIsNumber = value => isNaN(Number(value)) === false;

// Turn enum into array
function ToArray(enumme) {
    return Object.keys(enumme)
        .filter(StringIsNumber)
        .map(key => enumme[key]);
}
Posted by: Guest on August-23-2020
14

typescript enum to string

enum AnEnum {
    One = 1,
    Two = 2
}
let stringOne = AnEnum[1]; // "One"
let stringTwo = AnEnum[AnEnum.Two]; // "Two"
Posted by: Guest on March-30-2020

Code answers related to "ts enum to array of strings"

Code answers related to "TypeScript"

Browse Popular Code Answers by Language