From 583745ef6a347ae07012ffac42f205ffa9706c04 Mon Sep 17 00:00:00 2001 From: Travis CI Date: Fri, 29 Dec 2017 12:19:20 +0000 Subject: [PATCH] Travis build: 530 --- README.md | 1 + docs/index.html | 1 + snippets/max.md | 1 + 3 files changed, 3 insertions(+) diff --git a/README.md b/README.md index 6acf03f2e..a0065e55e 100644 --- a/README.md +++ b/README.md @@ -4124,6 +4124,7 @@ Use `Math.max()` combined with the spread operator (`...`) to get the maximum va + const max = (...arr) => Math.max(...[].concat(...arr); diff --git a/docs/index.html b/docs/index.html index 8d103b6e5..9ee9a148f 100644 --- a/docs/index.html +++ b/docs/index.html @@ -1845,6 +1845,7 @@ Use Number() to check if the coercion holds.

+ const max = (...arr) => Math.max(...[].concat(...arr); diff --git a/snippets/max.md b/snippets/max.md index 2f89e10b1..4abb07287 100644 --- a/snippets/max.md +++ b/snippets/max.md @@ -29,6 +29,7 @@ Use `Math.max()` combined with the spread operator (`...`) to get the maximum va + const max = (...arr) => Math.max(...[].concat(...arr);