Skip to content

Instantly share code, notes, and snippets.

View jherax's full-sized avatar
:atom:
Performance focused

David Rivera jherax

:atom:
Performance focused
View GitHub Profile
@jherax
jherax / stringify.js
Created October 14, 2016 21:52
Converts a JavaScript value to a JSON string
// This is a reference to JSON.stringify and provides a polyfill for old browsers.
// stringify serializes an object, array or primitive value and return it as JSON.
var stringify = (function() {
var _PRIMITIVE, _OPEN, _CLOSE;
if (window.JSON && typeof JSON.stringify === "function")
return JSON.stringify;
_PRIMITIVE = /string|number|boolean|null/;
_OPEN = {
@jherax
jherax / arrayFilterFactory.1.ts
Last active February 20, 2025 05:05
Filters an array of objects with multiple match-criteria.
type FilterOperator = 'AND' | 'OR';
type FiltersBy<T> = {
[K in keyof T]?: (value: T[K]) => boolean;
};
/**
* Factory function that creates a specialized function to filter
* arrays, by validating all filters (AND operator),
* or validating just one of the filters (OR operator).
* @param operator Method to validate all filters: AND, OR
@jherax
jherax / formatDate.js
Last active May 30, 2020 15:38
Changes the format of a string-date
/**
* Changes the format of a string-date.
*
* @param {Object | String} options: it can be a String with the date, or an Object with the following properties:
* - {String} date: the entry date to change the format
* - {String} inputFormat: the format of the entry date
* - {String} outputFormat: the format of the output date
* @return {String}
*/
const formatDate = (() => {
@jherax
jherax / repeatedValues.js
Last active May 30, 2020 15:39
Gets an array of repeated elements between two arrays
/**
* Gets all repeated values between two arrays
*
* @param {Array} array1: array to compare
* @param {Array} array2: array to compare
* @return {Array}
*/
function repeatedValues(array1, array2) {
return array1.reduce((repeated, value) => {
if (~array2.indexOf(value) && !~repeated.indexOf(value)) {
@jherax
jherax / randomNumbers.js
Last active May 30, 2020 15:39
Generates an array of unique values given a range
/**
* Returns a random integer between min and max
*
* @export
* @param {Number} min: minimum value (inclusive)
* @param {Number} max: maximum value (inclusive)
* @return {Number}
*/
function randomInt(min, max) {
return Math.floor(Math.random() * (1 + max - min)) + min;
@jherax
jherax / flatten-es6.js
Last active May 30, 2020 15:39
Merges (flattens) all inner arrays into one-level depth array
/**
* Merges all inner arrays into one-level depth array.
*
* @param {Array} array: the array to be flattened
* @return {Array}
*/
const flatten = array => array.reduce(
(flattened, cv) => flattened.concat(Array.isArray(cv) ? flatten(cv) : cv),
[] // initial value of flattened array
);
@jherax
jherax / sumValues.js
Last active May 30, 2020 15:40
Sums all the values in an array by reducing it
/**
* Sums all the values in an array by reducing it.
*
* @param {Array} array: the collection to iterate
* @param {String | Number} prop: (optional) property name or array index
* @return {Number}
*/
function sumValues(array, prop) {
if (!array || !array.length) return 0;
if ((/string|number/).test(typeof prop)) {
@jherax
jherax / array-sort-by.1.ts
Last active July 19, 2024 00:12
Sorts an array with multiple ordering criteria (Schwartzian transform)
/**
* Sorts an array of objects In-Place,
* sorting by multiple fields sequentially.
*
* @description This function is meant to be used
* with arrays of objects, AND when you need to set
* multiple sorting criteria. For other cases it is
* recommended to use the native method `array.sort(callback)`
* since for simple cases this function is more expensive
* in time and memory.
@jherax
jherax / storage-available.js
Last active May 30, 2020 15:40
Detect availability of Web Storage
/**
* Checks whether a storage mechanism is available.
* @param {String} storageType: it can be "localStorage", "sessionStorage" or any global object that implements Web Storage interface.
* @return {Boolean}
*/
function storageAvailable(storageType) {
var storage = window[storageType];
var data = '__proxy-storage__';
try {
storage.setItem(data, data);
@jherax
jherax / getValueByKey.js
Last active May 30, 2020 15:41
Gets the first value associated to an object's property
/**
* Gets the first value associated to an object's property.
* Can go recursively through objects and arrays.
*
* @param {Object | Array} obj: the object or array to look for the property/index value
* @param {String | Number} key: the object's property name or array index
* @return {Any}
*/
function getValueByKey(obj, key) {
let value;