All Downloads are FREE. Search and download functionalities are using the official Maven repository.

ducks.regions.RegionResolver.ts Maven / Gradle / Ivy

The newest version!
// eslint-disable-next-line @typescript-eslint/no-extraneous-class
class RegionResolver {
    static transformedEntity(activeEntity: string) {
        switch (activeEntity) {
            case 'true':
                return true
            case 'false':
                return false
            default:
                return activeEntity
        }
    }
}

export default RegionResolver




© 2015 - 2024 Weber Informatics LLC | Privacy Policy