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

javascript-plus

v0.0.5

Published

Adds new features to javascript.

Downloads

1

Readme

Javascript+

Adds new features to javascript.

How to install

npm install javascript-plus

Documentation

Strict

All functions have a strict parameter that defaults to false. When set to true the function will throw errors when any of conditions relating to the item are met.

  • Array does not contain relevant type
  • Array is empty

However, when set to false most errors will be skipped. Some errors, like _TypeError_s where an option does not have the valid type, will still be thrown.

Arrays

Array.sum(abs: boolean = false, strict: boolean = false): number

Sums all numeric contents of an array either using absolute values or naturally.

abs

When set to true, converts all numbers to their absolute value before adding. When set to false or left blank, numbers are added naturally.

Array.mean(abs: boolean = false, strict: boolean = false): number

Finds the mean of all numeric contents of an array either using absolute values or naturally.

abs

When set to true, converts all numbers to their absolute value before finding the mean. When set to false or left blank, numbers are added naturally.

Array.deviate(of: number, abs: boolean = false, strict: boolean = false): number

of

Deviates based off of's value. If set to 0, for example, the function will return the mean.

abs

When set to true, converts all numbers to their absolute value before finding the deviation. When set to false or left blank, numbers are deviated naturally.

Array.query(type: queryType, is: any, strict: boolean): any[]

Queries the array for all objects that return true when compared to is with type

QueryType

Type refrenced in documentation that is any of "===", "exists", "typeof", "true", ">=","<=", ">", "<", "!==", "!exists", "!typeof", "false"

exists (-!exsits)

If contents are returned when value?? is run

typeof (-!typeof)

Equivalent to typeof value === is

true (-false)

If value is true when converted to boolean

All others use operator as shown

Group options exist on all specified array types

Use Array.group{Function capitalized at start}({group you want to query}, {function options})

Array.getGroup(group: string | symbol | number, strict?: boolean): any[];

Gets each member of a group and returns them.

Group

What group to look at

Dates

Date.getMonthString(intl: string, strict: boolean): number

Not finished. Converts month to english string (uses Date.getMonth).

Functions

Function.if(onFalse?: any, ...values: any): any

Returns values is function called with values return true. Returns onFalse otherwise.

Function.ifNot(onTruth?: any, ...values: any): any

Returns values is function called with values return false. Returns onTruth otherwise.