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

@osmova/js-utils

v1.3.0

Published

JavaScript/TypeScript utility functions

Readme

JS Utils

Lightweight TS/JS utility lib with common helper functions.

Installation

npm install js-utils

or

yarn add js-utils

API Reference

Numbers

| Function | Description | Example | |----------|-------------|---------| | formatCurrency(value, currency?, locale?) | Formats number as currency with locale support | formatCurrency(1234.56)"1 234,56 €" | | formatNumber(value, options?) | Formats number with locale-specific separators | formatNumber(1234.56, {decimals: 2})"1 234,56" | | formatPercent(value, options?) | Formats number as percentage | formatPercent(0.1556)"15,56 %" | | clamp(value, min, max) | Clamps number between min and max values | clamp(150, 0, 100)100 | | randomInt(min, max) | Generates random integer between min and max (inclusive) | randomInt(1, 10)7 |

Arrays

| Function | Description | Example | |----------|-------------|---------| | chunk(array, size) | Splits array into chunks of specified size | chunk([1,2,3,4,5], 2)[[1,2], [3,4], [5]] | | uniq(array) | Removes duplicate values from array | uniq([1,2,2,3])[1,2,3] | | unique(array) | Alias for uniq | unique([1,2,2,3])[1,2,3] | | compact(array) | Removes falsy values from array | compact([0,1,false,2,'',3])[1,2,3] | | sortBy(array, iteratee, order?) | Sorts array by property or function | sortBy([{age:30},{age:20}], 'age')[{age:20},{age:30}] | | range(start, end?, step?) | Creates array of numbers from start to end | range(5)[0,1,2,3,4] |

Strings

| Function | Description | Example | |----------|-------------|---------| | capitalize(str) | Capitalizes first letter | capitalize('hello')"Hello" | | camelize(str, options?) | Converts to camelCase | camelize('hello-world')"helloWorld" | | camelToSnakeCase(str) | Converts camelCase to snake_case | camelToSnakeCase('helloWorld')"hello_world" | | snakeToCamelCase(str) | Converts snake_case to camelCase | snakeToCamelCase('hello_world')"helloWorld" | | humanize(str) | Converts string to human-readable format | humanize('firstName')"First Name" | | slugify(str) | Creates URL-friendly slug | slugify('Hello World!')"hello_world" | | basename(path, sep?) | Gets filename from path | basename('/path/to/file.txt')"file.txt" | | stripExtension(str) | Removes file extension | stripExtension('file.txt')"file" | | isValidURL(str, opts?) | Validates URL format | isValidURL('https://example.com')true | | nl2br(str, replaceMode?, isXhtml?) | Converts newlines to HTML breaks | nl2br('line1\nline2')"line1<br>line2" | | getStringBetween(str, start, end) | Extracts string between delimiters | getStringBetween('a[b]c', '[', ']')"b" | | truncate(str, length, options?) | Truncates string to specified length | truncate('Hello World', 5)"Hello..." | | isEmail(str) | Validates email format | isEmail('[email protected]')true | | rgb2hex(rgb) | Converts RGB to hex color | rgb2hex('rgb(255, 0, 0)')"#ff0000" | | composeURL(...parts) | Joins URL parts | composeURL('api', 'users', '1')"api/users/1" | | generatePassword(opts?) | Generates secure password | generatePassword({length: 16})"aB3$kL9..." |

Objects

| Function | Description | Example | |----------|-------------|---------| | isObject(item) | Checks if value is object | isObject({})true | | isEmpty(value, opts?) | Checks if value is empty | isEmpty([])true | | isNumeric(value) | Checks if value is numeric | isNumeric('123')true | | softMerge(base, values, options?) | Shallow merge objects | softMerge({a: 1}, {b: 2}){a: 1, b: 2} | | deepMerge(...objects) | Deep merge multiple objects | deepMerge({a: {x: 1}}, {a: {y: 2}}){a: {x: 1, y: 2}} | | objectFilter(obj, predicate) | Filters object properties | objectFilter({a: 1, b: 2}, v => v > 1){b: 2} | | groupBy(array, keys) | Groups array by property/properties | groupBy([{type: 'A'}, {type: 'B'}], 'type') | | valueByIndex(object, index) | Gets value by numeric index | valueByIndex({a: 1, b: 2}, 0)1 | | indexByKey(object, key) | Gets index of key in object | indexByKey({a: 1, b: 2}, 'b')1 | | keyByValue(object, value) | Gets key by value | keyByValue({a: 1, b: 2}, 2)'b' | | removeItemOnce(array, value) | Removes first occurrence from array | removeItemOnce([1, 2, 1], 1)[2, 1] | | removeUnsetValues(obj, options?) | Removes null/undefined values | removeUnsetValues({a: 1, b: null}){a: 1} | | objectToFormData(obj, params?) | Converts object to FormData | objectToFormData({name: 'John'})FormData | | diff(obj1, obj2, opts?) | Compares two objects | diff({a: 1}, {a: 2}){a: {from: 1, to: 2}} | | clone(obj, options?) | Shallow/deep clone object | clone({a: {b: 1}}){a: {b: 1}} | | containsFiles(input) | Checks if input contains File/Blob instances | containsFiles({avatar: new File(...)})true | | deepClone(obj) | Deep clone object | deepClone({a: {b: 1}}){a: {b: 1}} | | deepFind(input, predicate) | Recursively finds first matching value | deepFind({a: {b: 1}}, v => v === 1)1 | | deepSome(input, predicate) | Recursively checks if any value matches | deepSome([1, [2, [3]]], v => v === 3)true | | flattenObject(obj, prefix?, result?, options?) | Flattens nested object | flattenObject({a: {b: 1}}){'a.b': 1} | | getByPath(obj, path, defaultValue?) | Gets value by dot notation path | getByPath({a: {b: 1}}, 'a.b')1 | | isset(target, options?) | Checks if value is set (not null/undefined) | isset({a: 1})true | | toFormData(input, options?) | Converts input to FormData | toFormData({name: 'John'})FormData | | pick(obj, keys) | Creates new object with only specified keys | pick({a:1,b:2,c:3}, ['a','c']){a:1,c:3} | | omit(obj, keys) | Creates new object excluding specified keys | omit({a:1,b:2,c:3}, ['b']){a:1,c:3} |

Dates

| Function | Description | Example | |----------|-------------|---------| | parseDate(input) | Parses various date formats | parseDate('2023-01-01')Date | | parsePeriod(period) | Parses period strings | parsePeriod('2023-01'){start: Date, end: Date} |

Async

| Function | Description | Example | |----------|-------------|---------| | sleep(ms) | Promise-based delay | await sleep(1000) | | retry(fn, maxAttempts?, baseDelay?) | Retries function with exponential backoff | await retry(() => fetch('/api'), 3, 1000) | | promiseAllLimit(promises, limit) | Execute promises with concurrency limit | await promiseAllLimit([p1, p2, p3], 2) | | withTimeout(promise, timeoutMs, timeoutMessage?) | Adds timeout to promise | await withTimeout(fetch('/api'), 5000) |

Browser

| Function | Description | Example | |----------|-------------|---------| | downloadBlob(blob, filename, options?) | Downloads a Blob as a file in browser | downloadBlob(csvBlob, 'data.csv') | | downloadUrl(url, filename?, options?) | Downloads a file from URL | downloadUrl('https://example.com/file.pdf', 'doc.pdf') | | openBlob(blob, options?) | Opens Blob in new browser tab | openBlob(pdfBlob) | | handleBlobDownload(blob, filename, options?) | Download or open Blob based on options | handleBlobDownload(blob, 'file.pdf', {download: true}) | | dataUrlToBlob(dataUrl) | Converts data URL to Blob | dataUrlToBlob('data:text/plain;base64,...') |

Functions

| Function | Description | Example | |----------|-------------|---------| | debounce(func, delay, options?) | Debounces function execution with optional immediate mode | debounce(() => console.log('hi'), 300) | | throttle(func, delay, options?) | Throttles function execution to limit frequency | throttle(() => console.log('scroll'), 1000) | | loadExternalScript(src, opts?) | Dynamically loads external scripts (browser only) | await loadExternalScript('https://cdn.example.com/lib.js') | | genUuid(options?) | Generates UUID with version support (v1 or v4) | genUuid({version: 4})"550e8400-e29b-41d4-a716-446655440000" |

Validation

| Function | Description | Example | |----------|-------------|---------| | parseLanguageCode(code, options?) | Extracts language code from locale | parseLanguageCode('en-US')'en' | | parseBool(value) | Parses boolean from various formats | parseBool('1')true, parseBool(0)false | | isValidCss(prop, val) | Validates CSS property and value | isValidCss('color', '#ff0000')true | | isValidHex(color) | Validates hex color format | isValidHex('#ff0000')true | | isValidColor(color) | Validates color format (hex, named, rgb, hsl) | isValidColor('red')true |

Testing

Run tests using the following commands:

# Run Node.js tests
yarn test:node

# Run browser tests (automated with Puppeteer)
yarn test:browser

# Run all tests
yarn test:all