fjs-utils

1.7.3 • Public • Published

A small foot print collection of javascript utility functions written in a functional style without any external dependancies.

FJS-Utils

Build Status Coverage Status Maintainability npm version gzip-size Conventional Commits

Table of contents

  1. installation
  2. arrays
  3. functions
  4. numbers
  5. objects
  6. strings
  7. utils
  8. faq

Installation

  npm i fjs-utils

or

  yarn add fjs-utils

Usage

installation

To use the library just import it

import * as fjs from 'fjs-utils';

You can import just the pieces you want

import { functions } from 'fjs-utils';

or

import { curry } from 'fjs-utils/functions';

Utils

arrays

more
  • all - Tests each value with provided functions and returns true if all results are truthy. It's Array.prototype.every renamed
  import { all } from 'fjs-utils/arrays';
 
  const array = [true, true, true];
  console.log(all(Boolean, array)); // => true
  • any - Tests each value with provided functions and returns true if any results are truthy. It's Array.prototype.some renamed
  import { any } from 'fjs-utils/arrays';
 
  const array = [false, false, true];
  console.log(any(Boolean, array)); // => true
  • bifurcate - Seperates an array by supplied function.
  import { bifurcate } from 'fjs-utils/arrays';
 
  const array = [true, 0, 'str', false, {}, ''];
  console.log(bifurcate(Boolean, array)) // => [[true, 'str', {}], [0, false, '']]
  • chunk - Splits an array into chunks
  import { chunk } from 'fjs-utils/arrays';
 
  const array = [1, 2, 3, 4, 5, 6, 7, 8, 9, 0];
  console.log(chunk(3, array)); // => [[1, 2, 3], [4, 5, 6], [7, 8, 9], [0]]
  • countOccurences - counts the occurences of a value in an array
  import { countOccurrences } from 'fjs-utils/arrays';
 
  console.log(countOccurrences(1, [1, 2, 3, 2, 1, 1, 2, 3, 2, 1])); //=> 4
  • flatten - Flattens an array 1 level
  import { flatten } from 'fjs-utils/arrays';
 
  const array = [[1, 2, 3], [4, 5, 6], [7, 8, 9], [0]];
  console.log(flatten(array)); // => [1, 2, 3, 4, 5, 6, 7, 8, 9, 0]
  • getProp - Returns an array of values from a specified property in an array of objects
  import { getProp } from 'fjs-utils/arrays';
 
  const array = [{
    foo: 'foo',
    bar: 'bar',
  },
  {
    foo: 'foo2',
    bar: 'bar2',
  }];
  console.log(getProp('foo', array)); // => ['foo', 'foo2']
  • isArray - Returns boolean, true if input is an array
  import { isArray } from 'fjs-utils/arrays';
  console.log(isArray([1, 2])); // => true
  console.log(isArray(12)); // => false
  • mean - Calculates the mean of an array of numbers
  import { mean } from 'fjs-utils/arrays';
  console.log(mean([1, 2, 3])); // => 2
  • median - Calculates the median of an array of numbers
  import { median } from 'fjs-utils/arrays';
  console.log(median([1, 2, 3])); // => 2
  • sample - Returns random values from an array
  import { sample } from 'fjs-utils/arrays';
  const array = [1, 2, 3, 4];
  console.log(sample(1, array)); // => [2]
  console.log(sample(2, array)); // => [1, 3]
  • shuffle - Returns a new array with the order randonmized
  import { shuffle } from 'fjs-utils/arrays';
  const array = [1, 2, 3, 4, 5];
  console.log(shuffle(array)); // => [3, 1, 2, 5, 4];
  • sum - Sums an array of numbers
  import { sum } from 'fjs-utils/arrays';
  console.log(sum[1, 2, 3]) // => 6

functions

more
  • curry - Accepts a function and returns a curried function
  import { curry } from 'fjs-utils/functions';
 
  const add = (a, b) => a + b;
  const add10 = curry(add)(10);
  console.log(add10(5)); // => 15
  • curryRight - Accepts a function and returns a curried function that fills params in from right to left
  import { curryRight } from 'fjs-utils/functions';
 
  const concat = `${left}${right}`;
  const appendBar = curryRight(concat)('bar');
  console.log(appendBar('foo')); // => 'foobar'
  • identity - returns the input unchanged
  import { identity } from 'fjs-utils/functions';
  console.log(identity('foo')); // => 'foo'
  • memoize - returns a function that will memoize the arguments
  import { memoize } from 'fjs-utils/functions';
 
  const fn = (one, two) => `${one}${two}`;
  const memoizedFn = memoize(fn);
 
  console.log(memoizedFn('foo', 'bar')); // => 'foobar'
  • multi - returns a function that will return an array of results from multiple functions
  import { multi } from 'fjs-utils/functions';
 
  const maxMin = multi(Math.max, Math.min);
  console.log(maxMin(...[...Array(501).keys()])); // => [500, 0]

numbers

more
  • random - Returns a random number between min, max
  import { random } from 'fjs-utils/numbers';
  console.log(random(1, 5)); // => 2
  console.log(random(1, 5, true)); // => 2.2398217

objects

more
  • convertSnakeKeysToCamel - Converts an object's snake cased keys to camel cased
  import { convertSnakeKeysToCamel } from 'fjs-utils/objects';
 
  const obj = {
    snake_case: 'snek',
    foo: [{ bar_baz: 'something' }, { lorem_ipsum: 'latin' }],
    obj: { snake_key_again: 'right_here' },
  };
  console.log(convertSnakeKeysToCamel(obj));
  /*
  {
    snakeCase: 'snek',
    foo: [{ barBaz: 'something' }, { loremIpsum: 'latin' }],
    obj: { snakeKeyAgain: 'right_here' },
  }
  */
  • isObject - Returns true if input is an object
  import { isObject } from 'fjs-utils/objects';
 
  const obj = {};
  const array = [];
  const fn = () => {};
  const str = '';
  console.log(isObject(obj), isObject(array), isObject(fn), isObject(str)); // => true false false false
  • omit - Omits keys from an object
  import { omit } from 'fjs-utils/objects';
 
  const obj = {
    one: 1,
    two: 2,
    three: 3,
    four: 4,
    five: 5,
  };
 
  console.log(omit['one', 'two', 'three', 'four'], obj); // => { five: 5 }
  • removeEmptyStrings - Removes keys with empty strings from an object
  import { removeEmptyStrings } from 'fjs-utils/objects';
  
  const obj = {
    one: 'one',
    two: '',
    three: 'three',
    four: '',
    five: 'five',
  };
 
  console.log(removeEmptyStrings(obj));
  /*
  {
    one: 'one',
    three: 'three',
    five: 'five',
  }
  */
  • removeFromObject - Removes properties from an object based on a comparator
  import { removeFromObject } from 'fjs-utils/objects';
 
  const obj = {
    one: 1,
    two: 2,
    three: 3,
    four: 4,
    five: 5,
  };
 
  const removeGreaterThan3 = ({ val }) => val > 3;
  const removeTwo = ({ key }) => key === 'two';
  const remove = prop => removeGreaterThan3(prop) || removeTwo(prop);
 
  console.log(removeGreaterThan3, obj); // => { one: 1, three: 3 }
  • removeValueFromObject - Removes keys with specified value from an object
  import { removeValueFromObject } from 'fjs-utils/objects';
 
  const obj = {
    one: 'foo',
    two: 'bar',
    three: 'foo',
    four: 'bar',
    five: 'foo',
  };
 
  console.log( removeValueFromObject('bar', obj));
  /*
  {
    one: 'foo',
    three: 'foo',
    five: 'foo',
  }
  */
  • transformObjectKeysAndValues - transforms an object's keys and values
  import { transformObjectKeysAndValues } from 'fjs-utils/objects';
 
    const obj = {
      left1: 'left1',
      left2: 'left2',
    };
    const keyTrans = key => `${key}right`;
    const valTrans = val => `${val}right`;
 
    console.log(transformObjectKeysAndValues(obj, keyTrans, valTrans));
    /*
    {
      left1right: 'left1right',
      left2right: 'left2right',
    }
    */

strings

more
  • append - Appends strings with specified value
  import { append } from 'fjs-utils/strings';
 
  console.log(append('bar', 'foo')); // => 'foobar'
  const appendBar = append('bar');
  console.log(appendBar('foo')); // => 'foobar'
  • concat - Concatenates two strings
  import { concat } from 'fjs-utils/strings';
  console.log(concat('foo', 'bar')); // => 'foobar'
  • prepend - Prepends strings with specified value
  import { prepend } from 'fjs-utils/strings';
  console.log(prepend('foo', 'bar')); // => 'foobar'
  const prependFoo = prepend('foo');
  console.log(prependFoo('bar')); // => 'foobar'
  • snakeToCamel - Converts a snake cased string to camel cased
  import { snakeToCamel } from 'fjs-utils/strings';
 
  console.log(snakeToCamel('snake_cased_string')); // => 'snakeCasedString'

Utils

more
  • debounce - debounces a function. Third paramater can be used to allow the function to be invoked immediately
    import { debounce } from 'fjs-utils/utils';
    const fn = () => console.log('foo');
    const debouncedFn = debounce(fn, 100);
    debouncedFn();
    debouncedFn();
    await new Promise(resolve => setTimeout(resolve, 200));
    /*
      'foo'
    */
  • wait - returns a promise that resolves after n milliseconds
  import { wait } from 'fjs-utils/utils';
  const fn = async () => {
    console.log(new Date()); // => 0
    await wait(100);
    console.log(new Date()); // => 100
  };
 
  fn();

FAQ

expand
  • How is this different than lodash or ramda?
    • For one it's not the same set of functions
    • Lodash specifically puts the array or object first which limits the composability
    • This libraray has a different goal than ramda. Ramda's goal is to make functional programming easier in JS. While there are functional concepts here, that's only so it can remain external dependency free.

Package Sidebar

Install

npm i fjs-utils

Weekly Downloads

1

Version

1.7.3

License

ISC

Unpacked Size

25.2 kB

Total Files

43

Last publish

Collaborators

  • jason.matthews.dev