1.0.0 • Published 2 years ago

@tristancole/lotide v1.0.0

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. It was published as part of the Week 1 learning tasks.

Usage

Install it:

npm install @tristancole/lotide

Require it:

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

Call it:

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

Documentation

The following functions are currently implemented:

  • function(eqArrays): eqArrays takes in two arrays and returns true or false, based on a perfect match.
  • function(assertEqual): assertEqual compares two values and asserts if they are equal or not.
  • function(assertArraysEqual): will take in two arrays and console.log an appropriate message to the console.
  • function(head): description returns index item 0 of an array.
  • function(tail): description slices index 0 out of an arrayy, returning what is remaining.
  • function(middle): description which will take in an array and return the middle-most element(s) of the given array.
1.0.0

2 years ago