UNPKG

@tsed/json-mapper

Version:
6 lines (4 loc) 179 B
import {isFunction} from "@tsed/core"; export function getObjectProperties(obj: any): [string, any][] { return Object.entries(obj).filter(([, value]) => !isFunction(value)); }