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

@nikunjjadav1234/sutr-arr

v1.2.1

Published

sutr-arr is a lightweight JavaScript array utility library inspired by Indian Sutra philosophy — providing short, powerful formulas to solve complex array operations with clarity and speed.

Readme

sutr-arr 🧵

Array logic and Date logic, written as Sutras.
Short, powerful formulas for JavaScript — inspired by Indian Sutra philosophy.

sutr-arr is a lightweight, modern JavaScript utility library that transforms array and date operations into concise, reusable helpers.
It is designed as a clean alternative to lodash’s array utilities and traditional date libraries, with a strong focus on clarity, immutability, and developer ergonomics.

Instead of long chains and configuration-heavy APIs, sutr-arr favors intent-first functions — one function for one clear idea.


✨ What it provides

🧮 Array Sutras

Clean helpers for common and advanced array operations, designed to be readable, composable, and immutable.

📅 Date Sutras

Human-friendly date utilities focused on real-world needs such as:

  • Date shortcuts (today, tomorrow, yesterday)
  • Business-day calculations
  • Safe date comparisons
  • Date ranges and age calculations

Unlike traditional date libraries, sutr-arr avoids heavy parsing, locale complexity, and chaining in favor of predictable, explicit behavior.


🕰️ Date input support

This library intentionally supports only safe and unambiguous date inputs:

  • JavaScript Date objects
  • ISO date strings (YYYY-MM-DD, YYYY-MM-DDTHH:mm:ssZ)
  • Timestamps (milliseconds)

Locale-specific or free-text date strings are not supported by design, to prevent ambiguity and timezone-related bugs.


🎯 Design philosophy

  • Intent over configuration
  • Immutability by default
  • Readable, English-like APIs
  • No guessing, no silent failures

sutr-arr complements existing libraries by focusing on what developers mean, not just what JavaScript allows.


📦 Installation

npm install @nikunjjadav1234/sutr-arr

import { SUT_ } from 'sutr-arr'

### humanSmartDiff()

```js
SUT_.getDayPhase(2026-01-06T10:00)
// → "morning"

SUT_.getDayPhase("2026-01-05T19:30");
// → "evening"