npm package discovery and stats viewer.

Discover Tips

  • General search

    [free text search, go nuts!]

  • Package details

    pkg:[package-name]

  • User packages

    @[username]

Sponsor

Optimize Toolset

I’ve always been into building performant and accessible sites, but lately I’ve been taking it extremely seriously. So much so that I’ve been building a tool to help me optimize and monitor the sites that I build to make sure that I’m making an attempt to offer the best experience to those who visit them. If you’re into performant, accessible and SEO friendly sites, you might like it too! You can check it out at Optimize Toolset.

About

Hi, 👋, I’m Ryan Hefner  and I built this site for me, and you! The goal of this site was to provide an easy way for me to check the stats on my npm packages, both for prioritizing issues and updates, and to give me a little kick in the pants to keep up on stuff.

As I was building it, I realized that I was actually using the tool to build the tool, and figured I might as well put this out there and hopefully others will find it to be a fast and useful way to search and browse npm packages as I have.

If you’re interested in other things I’m working on, follow me on Twitter or check out the open source projects I’ve been publishing on GitHub.

I am also working on a Twitter bot for this site to tweet the most popular, newest, random packages from npm. Please follow that account now and it will start sending out packages soon–ish.

Open Software & Tools

This site wouldn’t be possible without the immense generosity and tireless efforts from the people who make contributions to the world and share their work via open source initiatives. Thank you 🙏

© 2024 – Pkg Stats / Ryan Hefner

@rishadalam/lotide

v1.0.0

Published

The Lotide project is a simple and limited clone of lodash and includes various string, objects, numbers and array manipulation functions. It also incldues a few assertation functions

Downloads

2

Readme

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

Require it:

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

Call it:

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

Documentation

The following functions are currently implemented:

  • assertArraysEqual(actual, expected): Checks if two arrays are a perfect match and returns an assert message.
  • assertEqual(actual, expected): Checks if two primitive data types are a match and returns an assert message.
  • assertObjectsEqual(actual, expected): Checks if two objects are a perfect match and returns an assert message. Checks for number of keys, key names and value pairs.
  • countLetters(sentence): Takes in a sentence (as a string) and then return an object with each letter as key and a count of the number of times that letter has been used in the sentence as the value.
  • countOnly(allItems, itemsToCount): Takes in an array of items and an object of item keys with truthy or falsy values. The function will take the keys with truthy values in the object and filter out those elements and return the number of times the value appears in the array.

    • For example, countOnly[a,a,b,a,c] {a:true, b:false, f:true} will return {a:3}
  • eqArrays(arr1, arr2) : Compares two arrays for a match and returns truthy or falsy
  • eqObjects(object1, object2): Takes in two objects and returns truthy or falsy based on a perfect match. Checks for number of keys, key names and value pairs.
  • findKey(obj, callback): Takes in an object and a callback. It should scan the object and return the first key for the callback and returns a truthy value. If no key is found, it will return undefined.

    • For example, the function will return "Blue Hill" for the below:

      const OneStarHotels = findKey( { "Blue Hill": { stars: 1 }, Akaleri: { stars: 3 }, noma: { stars: 2 }, elBulli: { stars: 3 }, Ora: { stars: 2 }, Akelarre: { stars: 3 }, }, (x) => x.stars === 1 );.

  • findKeyByValue(obj, val) : Takes in an object and a value. It should scan the object and return the first key which contains the given value. If no key with that given value is found, then it should return undefined.
  • flatten(array): Takes in an array containing elements including nested arrays of elements, and return a "flattened" version of the array.

    • For example, flatten([1, 2, [3, 4], 5, [6]]) will return [ 1, 2, 3, 4, 5, 6 ].
  • head(array): Takes in an array and returns the first element of the array.
  • letterPositions(sentence): Takes in a string and returns an object with all the indices (zero-based positions) in the string where each character is found.

    • For example, for:
      letterPositions("Silly Sally")

      returns: {S: [ 0, 6 ], i: [ 1 ], l: [ 2, 3, 8, 9 ], y: [ 4, 10 ], a: [ 7 ] }

  • map(array, callback): Takes in an array and callback function which returns a new array based on the results of the callback function.
  • middle(input): Takes in an array and returns an array with only the middle element(s) of the provided array.

    For arrays with one or two elements, there is no middle, so an empty array will be returned.

    For arrays with odd number of elements, an array containing a single middle element will be returned.

    For arrays with an even number of elements, an array containing the two elements in the middle will be returned *

  • tail(array): Takes in an array and returns the "tail" of an array: everything except for the first item (head) of the provided array.
  • takeUntil(array, callback): Takes in an array and a callback and returns an array till the first instance of the callback condition.
  • without(source, itemsToRemove): Takes in a source array and a itemsToRemove array. It should return a new array with only those elements from source that are not present in the itemsToRemove array.