1.0.0 • Published 6 years ago

@rjblee/lotide v1.0.0

Weekly downloads
1
License
ISC
Repository
github
Last release
6 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 @rjblee/lotide

Require it:

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

Call it:

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

Documentation

The following functions are currently implemented:

  • function1(assertEqual): compares if two strings or numbers are identical
  • function2(head): returns the first item (head) in the array
  • function3(tail): returns the "tail" of an array: everything except for the first item (head) of the provided array
  • function4(eqArrays): takes in two arrays and returns true or false, based on a perfect match
  • function5(assertArraysEqual): take in two arrays and console.log an appropriate message to the console
  • function6(...): description
  • function7(...): description
  • function8(...): description
  • function9(...): description
  • function10(...): description
  • function11(...): description
  • function12(...): description
  • function13(...): description
  • function14(...): description
1.0.0

6 years ago