1.0.1 • Published 3 years ago

@taejin5314/lotide v1.0.1

Weekly downloads
-
License
(ISC OR GPL-3.0)
Repository
github
Last release
3 years ago

Lotide

A mini clone of the Lodash library.

Lighthouse Labs Week1 project by Taejin Jung

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

Require it:

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

Call it:

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

Documentation

The following functions are currently implemented:

  • head(array): Returns a head value of an array (index of 0)
  • tail(array): Returns tail values of an array (index after 0)
  • middle(array): Returns middle values of an array
  • flatten(array): Returns each element of an array (Can be applied to a nested array)
  • countOnly(object): Returns a count of the key of an object
  • letterPositions(string): Returns an object that contains each count of letters
  • findKeyByValue(object, string): Returns key by using value
  • eqArrays(array, array): Returns whether both arrays are same or not
  • eqObjects(object, object): Returns whether both objects are same or not