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

abs-utilities

v1.1.1

Published

A simple personal collection of utility methods, aliases and polyfills

Readme

Abs-Utilities (Abs-Utils)

npm version Install size

Introduction:

This module is a simple collection of common functions. Check out the dist/abs-utils.d.ts file for a summary of what it contains.

"If I could marry a mathematical formula, it would be proportionalRange()." -Abstractn, 2019

This collection will be expanded in the future following my personal necessities.

CDN:

Typescript: https://abstractn.github.io/lib/abs-utils.ts

Javascript (with export): https://abstractn.github.io/lib/abs-utils.js

Javascript (without export): https://abstractn.github.io/lib/abs-utils.nx.js

Browser iclusion: <script src="https://abstractn.github.io/lib/abs-utils.nx.js"></script>

Library:

  • ProportionalRangeConfig

    • oldMin: number
    • oldMax: number
    • newMin: number
    • newMax: number
    • value: number
  • proportionalRange

    • oldMin: number
    • oldMax: number
    • newMin: number
    • newMax: number
    • value: number
    • returns number
  • proportionalRange

    • config: ProportionalRangeConfig
    • returns number
  • rgbToHex

    • r: number
    • g: number
    • b: number
    • returns string | null
  • randomInt

    • min?: number, default is 0
    • max?: number, default is 1
    • returns number
  • degToRad

    • degrees: number
    • returns number
  • radToDeg

    • radians: number
    • returns number
  • getNode

    • query: string
    • context?: HTMLElement, default is document
    • returns HTMLElement | null
  • getNodes

    • query: string
    • context?: HTMLElement, default is document
    • returns Array<HTMLElement> | null
  • setStyle

    • element: HTMLElement
    • property: string (allows camel case, kebab case and style variables)
    • value: string
  • setStyles

    • element: HTMLElement
    • properties: Record<string, string> (keys allow camel case, kebab case and style variables)
  • Element.on

    • eventType: string
    • callback: EventListenerOrEventListenerObject
  • Element.off

    • eventType: string
    • callback: EventListenerOrEventListenerObject
  • Element.attr

    • attributeName: string
    • value?: string
    • returns string if value is missing
    • returns undefined if value is passed
  • deepCopy

    • src: T
    • returns T
  • createNode

    • tag: string
    • attributes?: Record<string, string>
    • content?: string | number | HTMLElement | Array<HTMLElement>
    • callback?: ((element: HTMLElement) => void
    • returns HTMLElement
  • Math.randomInt

    • min?: number, default is 0
    • max?: number, default is 1
    • returns number
  • Math.degToRad

    • degrees: number
    • returns number
  • Math.radToDeg

    • radians: number
    • returns number
  • Array.shuffle (static)

    • array: Array<T>
    • returns Array<T>
    • does not mutate original array
  • Array.shuffle (prototype)

    • mutates original array
  • Array.remove (static)

    • array: Array<T>
    • predicate: (value: T, index: number, array: Array<T>) => boolean
    • returns Array<T>
    • does not mutate original array
  • Array.remove (prototype)

    • predicate: (value: T, index: number, array: Array<T>) => boolean
    • mutates original array
  • Array.removeAll (static)

    • array: Array<T>
    • predicate: (value: T, index: number, array: Array<T>) => boolean
    • returns Array<T>
    • does not mutate original array
  • Array.removeAll (prototype)

    • predicate: (value: T, index: number, array: Array<T>) => boolean
    • mutates original array
  • Array.removeIndex (static)

    • array: Array<T>
    • index: number
    • returns Array<T>
    • does not mutate original array
  • Array.removeIndex (prototype)

    • index: number
    • mutates original array