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

scootloops

v1.2.1

Published

A collection of loops to use easily in your code.

Downloads

75

Readme

scootloops

Build Status

scootloops is a JavaScript library designed to simplify common looping and filtering operations. It provides a set of intuitive functions that can handle tasks such as looping through a range of numbers, filtering an array of objects based on specific criteria, or transforming an array with a mapping function.

Installation

To install scootloops as a dependency in your project, run the following command:

npm install scootloops

Usage

Import the library in your code:

import { upLoop } from 'scootloops';

Functions

upLoop

Loops through a range of numbers in ascending order, from a starting number up to an ending number (exclusive), and invokes a callback function for each number in the range.

function upLoop(start, end, callback)

Parameters:

  • start (Number): The starting number of the range.
  • end (Number): The ending number of the range (exclusive).
  • callback (Function): A function to be called for each number in the range.

Example:

// print numbers from 1 to 5
upLoop(1, 6, (i) => console.log(i));

downLoop

Loops through a range of numbers in descending order, from a starting number down to an ending number (exclusive), and invokes a callback function for each number in the range.

function downLoop(start, end, callback)

Parameters:

  • start (Number): The starting number of the range.
  • end (Number): The ending number of the range (exclusive).
  • callback (Function): A function to be called for each number in the range.

Example:

// print numbers from 5 to 1
downLoop(5, 0, (i) => console.log(i));

forEach

Loops through an array and invokes a callback function for each element that matches a specific value.

function forEach(array, data, callback)

Parameters:

  • array (Array): The array to loop through.
  • data (Any): The value to match against each element in the array.
  • callback (Function): A function to be called for each matching element in the array.

Example:

// print the value of the first element in the array that matches 3
const myArray = [1, 2, 3, 4, 5];
forEach(myArray, 3, (element) => console.log(element));

mapIt

Loops through an array and applies a callback function to each element in the array, returning a new array with the results.

function mapIt(array, callback)

Parameters:

  • array (Array): The array to loop through.
  • callback (Function): A function to be called for each element in the array.

Example:

// double each element in the array
const myArray = [1, 2, 3, 4, 5];
const doubledArray = mapIt(myArray, (element) => element * 2);
console.log(doubledArray); // [2, 4, 6, 8, 10]

reduceIt

Reduces an array to a single value by applying a callback function to each element in the array.

function reduceIt(array, initialValue)

or

function reduceIt(array)

Note - If no initial value is specified then the first initial value will default to 0. reduceIt can be called without the inital value argument.

Parameters:

  • array (Array): The array to reduce.
  • initialValue (Any): The initial value to use in the reduction.

Example:

// add all the elements in the array
const myArray = [1, 2, 3, 4, 5];
const sum = reduceIt(myArray);
console.log(sum); // 15

filterIt

Filters an array based on specific conditions using a string that specifies a property and operator to filter by.

function filterIt(array, condition, value)

Parameters:

  • array (Array): The array to filter.
  • condition (String): A string that specifies a property and operator to filter by, in the format "propertyName.operator".
  • value (Any): The value to use in the filtering operation.

Example:

// filter an array of objects to include only those with an age greater than 30
const myArray = [
	{ name: 'John', age: 25 },
	{ name: 'Jane', age: 35 },
	{ name: 'Bob', age: 40 },
];
const filteredArray = filterIt(myArray, 'age.greaterThan', 30);
console.log(filteredArray); // [{ name: "Jane", age: 35 }, { name: "Bob", age: 40 }]

Operators for filterIt

The filterIt function allows you to filter an array based on specific conditions using a string that specifies a property and operator to filter by. Here is a list of all the valid operators for the filterIt function and what they do:

  • 'even' - Returns true if the element is an even number.
  • 'odd' - Returns true if the element is an odd number.
  • 'greaterThan' - Returns true if the element is greater than the given value.
  • 'lessThan' - Returns true if the element is less than the given value.
  • 'startsWith' - Returns true if the element starts with the given value.
  • 'endsWith' - Returns true if the element ends with the given value.
  • 'exactMatch' - Returns true if the element (or the property specified by the propName argument) is an exact match to the given value.
  • 'contains' - Returns true if the element contains the given value.
  • 'camelCase' - Returns true if the element is a string in camelCase format.
  • 'isObject' - Returns true if the element is an object (but not an array or null).
  • 'isClass' - Returns true if the element is a function.
  • 'isArray' - Returns true if the element is an array.
  • 'isNumber' - Returns true if the element is a number.
  • 'isString' - Returns true if the element is a string.

Note - For operators that take a value (such as 'greaterThan' and 'lessThan'), you need to provide a third argument to the filterIt function that specifies the value to use in the filtering operation.

Contributing

Contributions to scootloops are welcome! Feel free to open a pull request on the repository.

License

scootloops is licensed under the MIT License