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 🙏

© 2025 – Pkg Stats / Ryan Hefner

@akb2/types-tools

v1.1.1-2

Published

Extends tools & types for TypeScript

Downloads

99

Readme

@akb2/types-tools

A lightweight TypeScript utility library providing common type helpers and data conversion functions. Designed for consistent and predictable handling of primitive types, arrays, and objects.

Installation

npm install @akb2/types-tools

Overview

This package provides a set of strongly typed utility functions and generic type definitions for working with various data types. It’s intended for use in TypeScript projects that require safe type conversions, validation, and lightweight functional helpers.

Functions

isDefined(value)

Determines whether a value is neither null nor undefined.

isDefined(null);        // false
isDefined(undefined);   // false
isDefined(0);           // true
isDefined("");          // true
isDefined(false);       // true
isDefined(NaN);         // true

anyToFloat(value, defaultValue = 0, precision = -1)

Converts any value to a floating-point number, with optional rounding.

  • precision = -1 → preserves the number of decimals from the input.
anyToFloat(null);                       // 0
anyToFloat(undefined);                  // 0
anyToFloat("", 56);                     // 56
anyToFloat("42");                       // 42
anyToFloat("3.141592653589793", 0, 5);  // 3.14159

anyToInt(value, defaultValue = 0)

Converts any value to an integer. Falls back to defaultValue if conversion fails.

anyToInt(null);                    // 0
anyToInt(undefined);               // 0
anyToInt("", 56);                  // 56
anyToInt("42");                    // 42
anyToInt("3.141592653589793", 0);  // 3

anyToString(value, defaultTitle = "")

Converts any value to a string. Returns defaultTitle if value is null or undefined.

anyToString(null);                        // ""
anyToString(undefined, "Default title");  // "Default title"
anyToString(NaN);                         // "NaN"
anyToString(false, "not true");           // "false"
anyToString(3.141592653589793);           // "3.141592653589793"

anyToArray(value)

Ensures the input is an array. If the value is already an array, it’s returned as-is. If it’s a single value — it’s wrapped in an array. If it’s null or undefined — returns an empty array.

anyToArray(null);            // []
anyToArray(undefined);       // []
anyToArray([]);              // []
anyToArray(["a", "b"]);      // ["a", "b"]
anyToArray("String value");  // ["String value"]

anyToBoolean(value)

Converts a value to boolean based on predefined truthy values: "true", "on", "enabled", "1", 1, and true.

anyToBoolean("true");        // true
anyToBoolean("on");          // true
anyToBoolean("enabled");     // true
anyToBoolean("1");           // true
anyToBoolean(1);             // true
anyToBoolean(true);          // true
anyToBoolean(null);          // false
anyToBoolean("false");       // false
anyToBoolean(false);         // false
anyToBoolean("Any string");  // false

createArray(length, getItem?)

Creates an array of the specified length. Optionally fills it using a callback function.

createArray(5);                       // [0, 1, 2, 3, 4]
createArray(6, i => i * 2);           // [0, 2, 4, 6, 8, 10]
createArray(0);                       // []
createArray(4, i => "Item " + i);     // [Item 0, Item 1, Item 2, Item 3]
createArray(4, () => "item");         // [item, item, item, item]

Types

CustomObjectKey<K, V>

Generic object with string, number, or symbol keys.

type CustomObjectKey<K, V> = Record<string | number | symbol, V>;

CustomObject<V>

Generic string-keyed object.

type CustomObject<V> = Record<string, V>;

SimpleObject

A simple string-object mapping.

type SimpleObject = Record<string, string>;

MultiArray<T>

Recursive array type allowing nested arrays of any depth.

type MultiArray<T> = T[] | MultiArray<T>[];

MultiObject<V>

Recursive object type allowing deeply nested key-value pairs.

type MultiObject<V> = { [key: string]: V | MultiObject<V> };

Delta

A numeric delta value: -1, 0, or 1.

type Delta = -1 | 0 | 1;

Example Usage

import { anyToFloat, anyToArray, anyToBoolean, createArray } from "@akb2/types-tools";

const num = anyToFloat("3.14159", 0, 2); // 3.14
const arr = anyToArray("a");             // ["a"]
const flag = anyToBoolean("on");         // true
const seq = createArray(3, i => i + 1);  // [1, 2, 3]

🧾 License

MIT © 2025 Andrei Kobelev (@akb2)