2.0.0 • Published 12 months ago

@mikastayhungry/lotide v2.0.0

Weekly downloads
-
License
ISC
Repository
github
Last release
12 months 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 @mikastayhungry/lotide

Require it:

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

Call it:

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

Documentation

The following functions are currently implemented:

  • head(array)): return the first element of array
  • middle(array): return a middle element or elements depending on the length of array
  • tail(array): return every element of array but the first one
  • countLetters(string): return letter occurrence
  • countOnly(array, object): return count only for the designated name in object
  • findKey(object, callback): return first key of object based on value selected
  • findKeyByValue(object, value): return key based on the value within the object
  • letterPositions(string).(number): return letter positions in a string
  • map(array, callback): apply same rules to all elements in an array, and return an new array
  • takeUntil(array, callback): apply rules until parameter in callback is out of range, return the new array
  • without(array, array): return array that not included specified elements
2.0.0

12 months ago

1.0.2

1 year ago

1.0.1

1 year ago

1.0.0

1 year ago