getValue
@tsed/core
Usage
typescript
import { getValue } from "@tsed/core";Overview
ts
function getValue<T = any>(scope: any, expression: string | undefined): T | undefined;
export function getValue<T = any>(scope: any, expression: string | undefined, defaultValue: T, separator?: string): T;
export function getValue<T = any>(expression: string | undefined, scope: any): T | undefined;
export function getValue<T = any>(expression: string | undefined, scope: any, defaultValue: T, separator?: string): T;Description
Retrieves a value from an object using a dot-separated path expression.
Supports flexible argument order (scope-first or expression-first), optional default values, and custom path separators. Can navigate nested objects and call .get() methods when available.