Skip to content

Commit

Permalink
Add excerpts
Browse files Browse the repository at this point in the history
  • Loading branch information
Chalarangelo committed Apr 30, 2023
1 parent 3c6e115 commit 62ae168
Show file tree
Hide file tree
Showing 11 changed files with 11 additions and 0 deletions.
1 change: 1 addition & 0 deletions snippets/bind-key.md
Original file line number Diff line number Diff line change
Expand Up @@ -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
---

Expand Down
1 change: 1 addition & 0 deletions snippets/create-element.md
Original file line number Diff line number Diff line change
Expand Up @@ -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
---

Expand Down
1 change: 1 addition & 0 deletions snippets/create-event-hub.md
Original file line number Diff line number Diff line change
Expand Up @@ -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
---

Expand Down
1 change: 1 addition & 0 deletions snippets/debounce.md
Original file line number Diff line number Diff line change
Expand Up @@ -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
---

Expand Down
1 change: 1 addition & 0 deletions snippets/initialize-array-with-range-right.md
Original file line number Diff line number Diff line change
Expand Up @@ -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
---

Expand Down
1 change: 1 addition & 0 deletions snippets/initialize-array-with-range.md
Original file line number Diff line number Diff line change
Expand Up @@ -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
---

Expand Down
1 change: 1 addition & 0 deletions snippets/reduce-successive.md
Original file line number Diff line number Diff line change
Expand Up @@ -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
---

Expand Down
1 change: 1 addition & 0 deletions snippets/sorted-index-by.md
Original file line number Diff line number Diff line change
Expand Up @@ -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
---

Expand Down
1 change: 1 addition & 0 deletions snippets/sorted-last-index-by.md
Original file line number Diff line number Diff line change
Expand Up @@ -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
---

Expand Down
1 change: 1 addition & 0 deletions snippets/union-by.md
Original file line number Diff line number Diff line change
Expand Up @@ -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
---

Expand Down
1 change: 1 addition & 0 deletions snippets/zip-with.md
Original file line number Diff line number Diff line change
Expand Up @@ -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
---

Expand Down

0 comments on commit 62ae168

Please sign in to comment.