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 🙏

© 2026 – Pkg Stats / Ryan Hefner

@padma2code/lotide

v1.0.0

Published

Padma Valli's (Padma2Code) Lotide Week1 Project

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

Require it:

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

Call it:

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

Documentation

The following functions are currently implemented:

  • function1(assertEqual): This Function is to compare 2 Strings and logs the result to the console.
  • function2(assertArraysEqual): This Function is to compare 2 Arrays and logs the result to the console.
  • function3(assertObjectsEqual): This Function is to compare 2 objects and logs the result to the console.
  • function3(eqArrays): This Function is to compare 2 arrays and returns truthy or falsey.
  • function3(eqObjects): This Function is to compare 2 objects and returns truthy or falsey.
  • function3(countOnly): This Function is to count and return the number of times a string is repeated in a given array.
  • function3(countLetters): This Function is to ount and return the number of times a charecter is repeated in a given string.
  • function3(findKey): This Function is to find and return the key for a given value in an Object.
  • function3(findKeyByValue): This Function is to find and return the matching keys for a given value in an Object.
  • function3(index): This Function is to find and return the index value of a given value in an Object.
  • function3(takeUntil): This Function is to return the contents of an array until the specified condition is matched.
  • function3(letterPositions): This Function is to find and return the index values of given charecters in an array.
  • function3(loopyLightHouserefactor): This Function is to print loopy,Lighthouse, LoopLightHouse based on multiples of given numbers.
  • function3(reverse): This Function is to take multiple string cmdline arguments and returnt he reverse strings as output
  • function3(without): This Function is to look for a string in an array and returns all the items that didn't match with the string in the array .
  • function3(pig-latin): This Function is to take multiple strings and return them in piglatin.
  • function3(map): This Function is to map the given array and manipulate the elements with given logic.
  • function3(head): This Function is to return the first element in an array.
  • function3(middle): This Function is to return the middle element(s) in an array.
  • function3(tail): This Function is to return the last element in an array.