1.0.0 • Published 5 years ago
@dav_he123/lotide v1.0.0
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 @dav_he123/lotide
Require it:
const _ = require('@dav_he/lotide');
Call it:
const results = _.tail([1, 2, 3]) // => [2, 3]
Documentation
The following functions are currently implemented:
- middle: obtains an array, then sorts it and returns the values located in the middle, if an even number of elements is present it will return the middle
- head: obtains an array and returns the first value in the array
- tail: obtains an array and returns the last value in the array
- eqArrays: obtains two arrays are given, it compares them and returns true if both arrays are the same
- eqObjects: obtains an array, then sorts it and returns the values in it
- countOnly: obtains a value and an array, then returns the number of times the value occurs
- countLetters: obtains a string and counts the number of times each letter occurs
- assertEqual: obtains and compares two arrays and returns true if the same, it is a test case
- assertArraysEqual: obtains and compares two arrays and returns true if the same
- assertObjectsEqual: obtains and compares 2 objects and returns true if the same, it is a test case
1.0.0
5 years ago