From 0d2b25253bb4400672991023e008b0ab501e790d Mon Sep 17 00:00:00 2001 From: raon0211 Date: Fri, 19 Jul 2024 01:05:11 +0900 Subject: [PATCH] docs: Update docs for min & max --- docs/reference/compat/array/max.md | 4 ++++ docs/reference/compat/array/min.md | 4 ++++ 2 files changed, 8 insertions(+) diff --git a/docs/reference/compat/array/max.md b/docs/reference/compat/array/max.md index dfe84d92e..f65197c7b 100644 --- a/docs/reference/compat/array/max.md +++ b/docs/reference/compat/array/max.md @@ -1,5 +1,9 @@ # max +::: info +This function is fully compatible with lodash. You can find it in our [compatibility library](../../../compatibility.md), `es-toolkit/compat`. +::: + Finds the element in an array that has the maximum value. If the list is empty, returns `undefined`. diff --git a/docs/reference/compat/array/min.md b/docs/reference/compat/array/min.md index a53f7b85f..3ebd8db15 100644 --- a/docs/reference/compat/array/min.md +++ b/docs/reference/compat/array/min.md @@ -1,5 +1,9 @@ # min +::: info +This function is fully compatible with lodash. You can find it in our [compatibility library](../../../compatibility.md), `es-toolkit/compat`. +::: + Finds the element in an array that has the minimum value. If the list is empty, returns `undefined`.