markdown-sd
A npm pacakge of markdown
A npm pacakge of markdown
using dot path to access nested properties
dot-finder is using powerful dot notation to get values in JSON object
use for one-sport company
An array of 256 programming languages
Cloning labels from source repository to destination repository. Period.
Deep and shallow clone.
Binary search -based indexOf for sorted arrays.
Binary search -based indexOf for sorted arrays.
Find the array index of where to add an element to keep it sorted.
Remove all duplicate elements in a sorted array, leaving only uniques.
Swap array elements in place. Runtime: O(1)
Iterate an array in reverse.
Retrieve all elements in provided indexes array.
Returns true if the element exists in the array
Return the index of the first element of an array where the callback returns true. Returns -1 if none do.
Returns all indexes at which an element is found.
Sorting by insertion - Look for bigger numbers on the left side. Runtime: O(n^2). It starts from the 2nd element, and it tries to find any element (to the left) that could be bigger than the current index. It will move all the elements that are bigger and
Determine whether an array is empty
Return the last element of an array where the callback returns true.