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

@raphaelsiz/extarray

v1.0.0

Published

Extended Array capabilities

Downloads

1

Readme

extarray

Extended array functionality. Work in progress, but stable. Eventually there will be more functions and classes to use.

Added functions for Array and Array.prototype

Check if an array only has values of allowed type(s)

  • Array.isAllType(array,type | types) Push value if it doesn't exist or remove it if it does
  • Array.prototype.add(value)
  • Array.prototype.remove(value)
  • Array.prototype.toggle(value) Do arithmetic with vectors
  • Array.prototype.vectorAdd(otherArray)
  • Array.prototype.vectorMultiply(otherArray)

Note: vectorAdd works with strings as well (although strings like "1" + "2" will be added into "12"). vectorMultiply works with strings only if they can be parsed into numbers, and then it multiplies them normally. I recommend only using numbers with both, but you do you. Also note that vectorAdd and vectorMultiply return a new array rather than mutating the array. This means if you want to set an array to itself plus another one you'll have to do something along the lines of array = array.vectorAdd(otherArray) but you can also use both functions to create new arrays without fear of messing up your data. Docs for Array

Usage

If you only want to use the above functions and don't need the extra classes, it's really simple:

import 'extarray'
let array = [0,1,2];
Array.isAllType(array,"number") // > true
array.add(3) // > array = [0,1,2,3]
array.vectorMultiply([0,2,4,6]) // > [0,2,8,18]

Important note! This only works with static imports. That means this doesn't work in commonJS's import('extarray') function. Your package has to be a module, too. In your package.json, you can include "type": "module", and that should fix it!

New Classes

So far, I've only added Vector2 and Vector3. Both are just arrays of numbers at that specific length.

import {Vector2} from 'extarray'
let position = new Vector2(0,1) // > Vector2 [0,1]
Array.isArray(position) // > true
Vector2.isVector2(position) // > true

Docs for Vector2 Docs for Vector3