RocketChat/Rocket.Chat

View on GitHub
apps/meteor/server/lib/getNestedProp.ts

Summary

Maintainability
A
0 mins
Test Coverage
export const getNestedProp = (customFields: Record<string, any>, property: string): unknown => {
    try {
        return property.split('.').reduce((acc, el) => acc[el], customFields);
    } catch {
        // ignore errors
    }
};