@joeykishiuchi/lotide

1.0.1 • Public • Published

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 @josephkishiuchi/lotide

Require it:

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

Call it:

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

Documentation

The following functions are currently implemented:

  • head(array): returns the value of the first element of a given array
  • tail(array): returns an new array of a given array excluding the first element
  • middle(array): returns an array of the middle value(s)
  • flatten(array): flattens a given array and single level deep and returns a new array
  • findKey(object, callback): returns the key of an object for which a callbac function is truthy
  • findKeyByValue(object, value): returns the key of an object given its value
  • countOnly(array, values): returns a count of array elements as an object only mentioned in values
  • countLetters(string): returns a count of each unique character in a string as an object
  • letterPositions(string): returns the positions of each unique character in a string as an object
  • map(array, callback): Iterates through a given array and performs the callback function when it returns truthy
  • takeUntil(array, callback): Returns an array starting from the first element until the callback returns truthy
  • without(array, values): removes values from a given array and returns new array
  • eqArrays(arr1, arr2): compares two arrays recursively and returns true if they are identical
  • ewObjects (obj1, obj2): compares two objects recursively and returns true if they are identical

Readme

Keywords

Package Sidebar

Install

npm i @joeykishiuchi/lotide

Weekly Downloads

0

Version

1.0.1

License

ISC

Unpacked Size

19.8 kB

Total Files

36

Last publish

Collaborators

  • joeykishiuchi