//#region src/functions/toObject/toObject.d.ts /** * Converts an array of strings to an object with the same values as keys and values. * @param array The array to convert to an object. * @returns An object with the same values as keys and values. * @example * ```ts * toObject(['a', 'b']) // { a: 'a', b: 'b' } * ``` */ declare function toObject(array: readonly T[]): Record; //#endregion export { toObject as t }; //# sourceMappingURL=toObject-AMOsaxQG.d.cts.map