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

datautils

v3.1.8

Published

Some JavaScript data utilities

Downloads

24

Readme

DataUtils JS

NPM Version NPM Downloads Node.js Version Build Status Dependencies Dev Dependencies

Some JavaScript data utilities

Installation

Installation via NPM is very simple

npm install datautils

Once you've done that, you can access this using the require statement.

var datautils = require('datautils');

Documentation

Data

Data

The data methods all work in fundamentally the same way - you pass in some raw input as the first parameter and a default value as the second. If the first parameter fulfils the criteria of the method, it return that otherwise it returns the default value.

Ensures that the input is an array

Ensures the the input is a boolean (true/false). It also casts it to a boolean if the following criteria:

  • true:
    • String: (upper and lower case): Y, 1, TRUE, T, YES
    • Number: 1
    • Boolean: true
  • false:
    • String: (upper and lower case): N, 1, FALSE, F, NO
    • Number: 0
    • Boolean: false

Ensures that the input is an instance of the Date object. Can take in either a Date object or a string that matches the ISO8601 format.

Ensures that input is a floating point number. This can receive either a number or a numerical string.

Ensures that the input a function

Ensures that the input is an instance of the instance. The instance must be a function. This function can be injected into this method.

Ensures that the input is an integer. This can be either a string, or a number. In reality, this pushes it to the JavaScript Number object (which can be made to be a floating point number. However, this function ensures that value that is returned it an integer. If you pass over Number(1) or String(3.0), they are returned as Number(1) and Number(3). However, if you pass in Number(1.2) or String(2.4), the default value will be returned.

Makes sure that the input matches the given regular expression. It also forces the output to be a string, so be careful.

Ensures that the input is an object. Although this is designed to receive key/value pairs, but it will allow other objects (eg, Date). It will not allow arrays or null values however.

Ensures that the input is a string. If it is a number, this is cast to a string. If you wish to specify a series of values, this can be done by passing in some values.

Example

var values = [
    'val1', 'val2', 'val3'
];
val1 = datautils.data.setString('val1', null, values); // 'val1'
val2 = datautils.data.setString('val4', null, values); // null

Validation

The model stuff primarily all works in the same way - if it passes the test it returns true, if it fails the test or the wrong input is entered it throws an error.

Error Object

The error object is an extension of the default JavaScript Error object. It has a maximum of three parameters - the message (as the Error object has by default), value (the value passed in) and params (an array of any other paramaters passed in).

For instance, the function validation.greaterThan(8, 10); throws an error (because 8 is less than 10). err.message equals VALUE_NOT_GREATER_THAN_TARGET, err.value = 8 and err.params = [ 10 ].

Checks if the given string validates as an email address. THIS DOES NOT CHECK IF THE EMAIL IS ACTUALLY VALID!!!

This tests if the two variables are equal. If the variables are of a complex nature (eg, objects), then it will match those too.

Does a numerical test on the variable, to see if it is greater than the given value.

Does a numerical test on the variable, to see if it is greater than or equal to the given value.

Makes sure that the value matches the length.

Checks if the value is between the two lengths.

Does a numerical test on the variable, to see if it is less than the given value.

Does a numerical test on the variable, to see if it is less than or equal to the given value.

Ensures that the value is no longer than the given max length.

Ensures that the value fulfils the given minimum length.

Matches the given value against the given regular expression. It will allow either a string or an instance of the RegExp object (by either new RegExp() or /regex/).

If it's a truthy value, 0 or false, it is ok. Otherwise, it fails the test

License

MIT License