Add excerpts

This commit is contained in:
Angelos Chalaris
2023-04-30 20:13:41 +03:00
parent 3c6e115e62
commit 62ae1684a1
11 changed files with 11 additions and 0 deletions

View File

@ -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
---

View File

@ -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
---

View File

@ -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
---

View File

@ -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
---

View File

@ -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
---

View File

@ -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
---

View File

@ -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
---

View File

@ -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
---

View File

@ -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
---

View File

@ -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
---

View File

@ -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
---