export function getValue()

in src/dataViewObjects.ts [35:48]


export function getValue<T>(
    objects: DataViewObjects,
    propertyId: DataViewObjectPropertyIdentifier,
    defaultValue?: T): T {

    if (!objects) {
        return defaultValue;
    }

    return DataViewObject.getValue(
        objects[propertyId.objectName],
        propertyId.propertyName,
        defaultValue);
}