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

utils.mapProp.js Maven / Gradle / Ivy

There is a newer version: 7.28.3
Show newest version
import transform from 'lodash/transform'

export default function mapProp(prop) {
    return transform(
        prop,
        (result, value, key) => {
            result.push({ value: key, label: value })
        },
        [],
    )
}




© 2015 - 2025 Weber Informatics LLC | Privacy Policy