1.0.0 • Published 1 year ago

@yishan/lotide v1.0.0

Weekly downloads
-
License
ISC
Repository
github
Last release
1 year 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 @yishan/lotide

Require it:

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

Call it:

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

Documentation

The following functions are currently implemented:

  • function(head): find the first element of an array
  • function(tail): find the 2nd till end of all the element
  • function(middle): find middle element(s) of an array
  • function(assertEqual): check whether they are equal
  • function(assertArrayEqual): check whether 2 arrays are equal
  • function(assertObjectsEqual): check whether 2 objects are equal
  • function(countLetters): count the number of each word
  • function(countOnly): count only the words that required
  • function(eqArrays): check whether 2 arrays are the same
  • function(eqObjects): check whether 2 objects are the same
  • function(findKey): find the key
  • function(findKeyByValue): find the key using the object value
  • function(letterPositions): find the position of the letter
  • function(map): our own way of map function
  • function(takeUntil): take an element from an array until some condiction happen
  • function(without): return value that not with something
1.0.0

1 year ago