X-Git-Url: https://git.piment-noir.org/?a=blobdiff_plain;ds=sidebyside;f=src%2Futils.ts;h=164a2aca5eeeec3ae86b9bfcdeeb72d872c32cb7;hb=3c653a0342204eae4943cfdef432e9b01dafc0d0;hp=176d2c4f875fb2b3fc695ad419a8398d12467bb5;hpb=7684583561a1bd274b3f3d7d869735256aa77afa;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 &&