X-Git-Url: https://git.piment-noir.org/?a=blobdiff_plain;f=src%2Futils.ts;h=164a2aca5eeeec3ae86b9bfcdeeb72d872c32cb7;hb=dab8c377b70fc962ec217f2aeb719842f9f94cd6;hp=176d2c4f875fb2b3fc695ad419a8398d12467bb5;hpb=c6f42dd6037d12056294ff89be8ebb2fb66b1c8e;p=poolifier.git diff --git a/src/utils.ts b/src/utils.ts index 176d2c4f..164a2aca 100644 --- a/src/utils.ts +++ b/src/utils.ts @@ -36,6 +36,12 @@ export const median = (dataSet: number[]): number => { ) } +/** + * Is the given object a plain object? + * + * @param obj - The object to check. + * @returns `true` if the given object is a plain object, `false` otherwise. + */ export const isPlainObject = (obj: unknown): boolean => typeof obj === 'object' && obj !== null &&