From bc76b1169f9bdefafa5aeb06c658e768291fd4ef Mon Sep 17 00:00:00 2001 From: Chalarangelo Date: Wed, 23 Mar 2022 11:41:42 +0200 Subject: [PATCH] Add excerpts where appropriate --- snippets/converge.md | 1 + snippets/debouncePromise.md | 1 + snippets/geometricProgression.md | 1 + snippets/luhnCheck.md | 1 + snippets/runAsync.md | 1 + snippets/shank.md | 1 + 6 files changed, 6 insertions(+) diff --git a/snippets/converge.md b/snippets/converge.md index efe0ab761..53577b712 100644 --- a/snippets/converge.md +++ b/snippets/converge.md @@ -2,6 +2,7 @@ title: Converge branching functions tags: function expertise: intermediate +excerpt: Converges a list of branching functions into a single function and returns the result. firstSeen: 2018-02-07T12:23:04+02:00 lastUpdated: 2021-01-08T00:23:44+02:00 --- diff --git a/snippets/debouncePromise.md b/snippets/debouncePromise.md index 46f797152..8c167a7b3 100644 --- a/snippets/debouncePromise.md +++ b/snippets/debouncePromise.md @@ -2,6 +2,7 @@ title: Debounce promise tags: function,promise expertise: advanced +excerpt: Creates a debounced function that returns a promise. firstSeen: 2020-10-10T21:09:04+03:00 lastUpdated: 2020-10-19T18:51:03+03:00 --- diff --git a/snippets/geometricProgression.md b/snippets/geometricProgression.md index 42cc0c419..c5f71b0f2 100644 --- a/snippets/geometricProgression.md +++ b/snippets/geometricProgression.md @@ -2,6 +2,7 @@ title: Geometric progression tags: math,algorithm expertise: intermediate +excerpt: Initializes an array containing the numbers in the specified geometric progression range. firstSeen: 2018-01-03T09:36:23+02:00 lastUpdated: 2020-12-28T13:49:24+02:00 --- diff --git a/snippets/luhnCheck.md b/snippets/luhnCheck.md index 919314e08..659c6adb5 100644 --- a/snippets/luhnCheck.md +++ b/snippets/luhnCheck.md @@ -2,6 +2,7 @@ title: Luhn check tags: math,algorithm expertise: advanced +excerpt: Implements the Luhn Algorithm, used to validate a variety of identification numbers. firstSeen: 2018-01-03T11:02:35+02:00 lastUpdated: 2022-01-30T13:37:39+02:00 --- diff --git a/snippets/runAsync.md b/snippets/runAsync.md index 3933edff2..b56ea598e 100644 --- a/snippets/runAsync.md +++ b/snippets/runAsync.md @@ -2,6 +2,7 @@ title: Run function asynchronously tags: browser,function,promise expertise: advanced +excerpt: Runs a function in a separate thread by using a Web Worker. firstSeen: 2018-01-02T02:17:52+02:00 lastUpdated: 2020-10-22T20:24:30+03:00 --- diff --git a/snippets/shank.md b/snippets/shank.md index d4f1b9ac4..b8c41093a 100644 --- a/snippets/shank.md +++ b/snippets/shank.md @@ -2,6 +2,7 @@ title: Remove elements from array tags: array expertise: intermediate +excerpt: Removes an element from an array without mutating it. firstSeen: 2018-09-27T01:55:30+03:00 lastUpdated: 2020-10-22T20:24:30+03:00 ---