1.0.1 • Published 2 years ago

@ryankwok/lotide v1.0.1

Weekly downloads
-
License
ISC
Repository
github
Last release
2 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 @ryankwok/lotide

Require it:

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

Call it:

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

Documentation

The following functions are currently implemented:

  • head(...): return first element of array
  • tail(...): return array minus first element
  • middle(...): returns middle element/s of an array
  • eqArray(...): Boolean if 2 arrays are equal
  • findKey(...): return key within object for which a callback matches a truthy value
  • findKeyByValue(...): return key within object that matches value
  • assertArraysEqual(...): return if 2 arrays are equal
  • assertEqual(...): return to compare two values
  • assertObjectsEqual(...): return to compare 2 objects are equal to expected
  • eqObjects(...): compare 2 objects
  • countLetters(...)return number of letters in string
  • countOnly(...): return number of instances of string contain in array
  • flatten(...): return array removing nested arrays
  • map(...): return new array using callback function
  • reverseString(...): returns a string in reversed order
  • takeUntil(...): returns array for elements until callback returns truthy
  • without(...): return a subset of a given array, removing unwanted elements
1.0.1

2 years ago

1.0.0

2 years ago