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

@daeinc/array

v0.6.1

Published

Array utilities

Downloads

171

Readme

@daeinc/array

Array utilities.

Installation

npm i @daeinc/array

then,

import { fillAndMap, ... } from "@daeinc/array";

Functions

accumulate

const accumulate: (arr: number[], precision?: number) => number[];

Takes in a number array and returns a new array with values accumulated. For example, the input array [1, 2, 3, 4] will return [1, 3, 6, 10]. It also takes an optional parameter precision(default=4) to compensate for float rounding error. The original values are used while summing, but the return values will be rounded.

addToArray

const addToArray: <T>(
  arr: T[],
  entry: T,
  newArrayLen: number,
  mode?: "first" | "last"
) => T[];

Adds a new element to array in-place while limiting how many to keep history. The mode first will insert at the beginning of the array.

fillAndMap

const fillAndMap: <T>(n: number, fn: (el: null, idx: number) => T) => T[];

Creates a new array with given length and maps values

getNonZeroIndices

const getNonZeroIndices: (arr: number[]) => number[];

Check for elements with non-zero values and return indices.

interpolateArray

const interpolateArray: (
  arrStart: number[],
  arrTarget: number[],
  t: number
) => number[];

Interpolates between two 1-dimensional arrays of same size.

isAllOne

const isAllOne: (arr: number[]) => boolean;

Returns true if all elements of input array is 1.

isAllZero

const isAllZero: (arr: number[]) => boolean;

Returns true if all elements of input array is 0.

isAnyOne

const isAnyOne: (arr: number[]) => boolean;

Returns true if any element of input array is 1.

isAnyZero

const isAnyZero: (arr: number[]) => boolean;

Returns true if any element of input array is 0.

objectToArray

const objectToArray: <T>(
  obj: {
    [key: string]: T;
  },
  keys: string[]
) => T[];

Convert object key-value pairs into simple array of values. Only included keys will be converted. The order is preserved.

This function can be useful when converting objects with {x, y} to [x, y], for example.

unwrapArrayOfObjects

const unwrapArrayOfObjects: <T>(
  arr: {
    [key: string]: T;
  }[],
  objKey: string
) => T[];

A helper function to get object values inside an array. All objects must have same keys present. For example, when the input array is [ {name: val1}, {name: val2} ], calling unwrapArrayOfObjects(arr, "name") will return [val1, val2].

To dos

  • test

License

MIT