1.0.0 • Published 5 years ago

@praneethabc/lotide v1.0.0

Weekly downloads
2
License
ISC
Repository
github
Last release
5 years ago

Lotide

A mini clone of the Lodash library.

Purpose

BEWARE: This library was published for learning purposes. It is not intended for use in production-grade software.

This project was created and published by me as part of my learnings at Lighthouse Labs.

Usage

Install it:

npm install @praneethabc/lotide

Require it:

const _ = require('@praneethabc/lotide');

Call it:

const results = _.tail([1, 2, 3]) // => [2, 3]

Documentation

The following functions are currently implemented:

  • head(...) :removes the first element of array
  • tail(...) :removes the last element of array
  • middle(...) :returns the middle element of arrary
  • assertArrayEqual(...) :test function to check if 2 arrays are equal
  • assertEqual(...) : test function to check if 2 given values are equal
  • assertObjectsEqual(...) : to check if 2 objects are equal
  • countLetters(...) :counting letters of a given string
  • countOnly(...) : gives the count of specified items from an object
  • eqArrays(...) : comparing if 2 arrays are equal
  • findKey(...) : finding required key from given object
  • findKeyByValue(...) :finding the key of a given value of a object
  • flatten(...) : to flatten nested arrays.
  • letterPosition(...) : to find the position of a letter in a given string
  • map(...) : gives an array with first letters of each element of given array
  • takeUntill(...) : executing a calllabck and getting a new array untill we get the condition is satisfied
  • without(...) : removing a given element from the array and returning the result