{"version":3,"file":"values.cjs","names":[],"sources":["../../src/object/values.ts"],"sourcesContent":["/**\n * Creates an array of the own enumerable property values of object\n * @param obj - The object to query\n * @returns Returns the array of property values\n * @example\n * values({ a: 1, b: 2, c: 3 }); // [1, 2, 3]\n */\nexport function values<T extends object>(obj: T): Array<T[keyof T]> {\n  if (obj == null) {\n    return [];\n  }\n  return Object.values(obj);\n}\n"],"mappings":";;;;;;;;;AAOA,SAAgB,OAAyB,KAA2B;CAClE,IAAI,OAAO,MACT,OAAO,CAAC;CAEV,OAAO,OAAO,OAAO,GAAG;AAC1B"}