diff --git a/snippets/bind-key.md b/snippets/bind-key.md index 327e9d262..3589e1204 100644 --- a/snippets/bind-key.md +++ b/snippets/bind-key.md @@ -3,6 +3,7 @@ title: Bind object method type: snippet tags: [function,object] cover: oven-paddle +excerpt: Creates a function that invokes a method at a key in an object, with optional additional parameters. dateModified: 2020-10-18T23:04:45+03:00 --- diff --git a/snippets/create-element.md b/snippets/create-element.md index def646f54..7eb721ba8 100644 --- a/snippets/create-element.md +++ b/snippets/create-element.md @@ -3,6 +3,7 @@ title: Create HTML element type: snippet tags: [browser] cover: flower-portrait-4 +excerpt: Creates an element from a string without appending it to the document. dateModified: 2020-10-19T18:51:03+03:00 --- diff --git a/snippets/create-event-hub.md b/snippets/create-event-hub.md index 0ffd8080b..96218d9e5 100644 --- a/snippets/create-event-hub.md +++ b/snippets/create-event-hub.md @@ -3,6 +3,7 @@ title: Create event hub type: snippet tags: [browser,event] cover: city-view +excerpt: Creates a pub/sub event hub with emit, on, and off methods. dateModified: 2020-09-15T16:28:04+03:00 --- diff --git a/snippets/debounce.md b/snippets/debounce.md index 6d5fcdbf3..0ab0d4dde 100644 --- a/snippets/debounce.md +++ b/snippets/debounce.md @@ -3,6 +3,7 @@ title: Debounce function type: snippet tags: [function] cover: solitude-beach +excerpt: Creates a debounced function that waits `ms` milliseconds before invoking the provided function again. dateModified: 2021-10-13T19:29:39+02:00 --- diff --git a/snippets/initialize-array-with-range-right.md b/snippets/initialize-array-with-range-right.md index 4305ad485..ba4131689 100644 --- a/snippets/initialize-array-with-range-right.md +++ b/snippets/initialize-array-with-range-right.md @@ -3,6 +3,7 @@ title: Initialize array with reversed range type: snippet tags: [array] cover: interior-4 +excerpt: Initializes an inclusive array with numbers in a range, reversed, using a common `step` difference. dateModified: 2020-10-20T23:02:01+03:00 --- diff --git a/snippets/initialize-array-with-range.md b/snippets/initialize-array-with-range.md index deaa349a7..92e86cdb1 100644 --- a/snippets/initialize-array-with-range.md +++ b/snippets/initialize-array-with-range.md @@ -3,6 +3,7 @@ title: Initialize array with range type: snippet tags: [array] cover: white-flower +excerpt: Initializes an inclusive array with numbers in a range, using a common `step` difference. dateModified: 2020-10-22T20:23:47+03:00 --- diff --git a/snippets/reduce-successive.md b/snippets/reduce-successive.md index d01e0f062..61e9dd6c9 100644 --- a/snippets/reduce-successive.md +++ b/snippets/reduce-successive.md @@ -3,6 +3,7 @@ title: Array of successive values type: snippet tags: [array] cover: laptop-view +excerpt: Applies a function to each element from left to right, returning an array of successively reduced values. dateModified: 2020-10-22T20:24:04+03:00 --- diff --git a/snippets/sorted-index-by.md b/snippets/sorted-index-by.md index 252b4c683..19f3c25a2 100644 --- a/snippets/sorted-index-by.md +++ b/snippets/sorted-index-by.md @@ -3,6 +3,7 @@ title: Insertion index in sorted array based on function type: snippet tags: [array,math] cover: digital-nomad-15 +excerpt: Finds the lowest insertion index to maintain array sorting order based on the provided iterator function. dateModified: 2020-10-22T20:24:30+03:00 --- diff --git a/snippets/sorted-last-index-by.md b/snippets/sorted-last-index-by.md index 51d70c790..f0742b2c4 100644 --- a/snippets/sorted-last-index-by.md +++ b/snippets/sorted-last-index-by.md @@ -3,6 +3,7 @@ title: Last insertion index in sorted array based on function type: snippet tags: [array] cover: hard-disk +excerpt: Finds the highest insertion index to maintain array sorting order based on the provided iterator function. dateModified: 2020-10-22T20:24:30+03:00 --- diff --git a/snippets/union-by.md b/snippets/union-by.md index 3cbd18013..0826eea28 100644 --- a/snippets/union-by.md +++ b/snippets/union-by.md @@ -3,6 +3,7 @@ title: Mapped array union type: snippet tags: [array] cover: lake-church +excerpt: Returns every element from both arrays that exists at least once after applying the provided function. dateModified: 2020-10-22T20:24:44+03:00 --- diff --git a/snippets/zip-with.md b/snippets/zip-with.md index d5d34e658..c02513d96 100644 --- a/snippets/zip-with.md +++ b/snippets/zip-with.md @@ -3,6 +3,7 @@ title: Group array elements based on function type: snippet tags: [array] cover: switzerland-night +excerpt: Groups elements based on position in the original arrays and combines them using a function. dateModified: 2020-11-03T21:46:13+02:00 ---