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 🙏

© 2024 – Pkg Stats / Ryan Hefner

s-is

v1.4.16

Published

A simple way to ensure the correctness of the target data.

Downloads

15

Readme

Reason

My eyes feel pain when i see:

if ( x+'' === x ) { ... } // if that string
if ( x*1 === x ) { ... } // if that number
... // and many others

NPM version License

s-is

Let me introduce a simple way to ensure the correctness of the target data. As I see it.

installation for Node.js

npm i s-is --save

installation for Browser

bower i s-is --save

In javascript definition of data types associated with some difficulties. Due to the fact that the original methods do not always work as expected. We are forced to turn to non-standard decisions. Not always, these decisions are correct, and even rarer - code still readable. If we are interested in conditional of 10 data types.And we want them correctly and to determine.

NaN, null, undefined, infinity, number, string, boolean, function, array, object

Example

var is = require('s-is');

is.array([]);      // => true
is.array({});      // => false
is('Array', []);   // => true

is.nan('Hello !');       // => false
is('NaN','Hello !');     // => false
is('NaN','Hello !' - 2); // => true
is.nan(NaN);             // => true 

Note - This approach is implemented for all the previously identified 10 of types data.

ES6

It gives us a lot of benefits and expands our capabilities. And also adds surprises.

// try it
typeof Symbol() == 'symbol'; // => true
// but
typeof ( new Promise(new Function) ) == 'object'; // => true
// or
typeof (class test {}) == 'function'; // => true

typeof

In connection with such innovations was established method of determining the 10 data types, plus all the innovations.

var is = require('s-is');

is.typeof( {} );               // => "object" 
is.typeof( [] );               // => "array" 
is.typeof( NaN );              // => "nan"
is.typeof( Infinity );         // => "infinity"
is.typeof( null );             // => "null" 
is.typeof( 5 );                // => "number"
is.typeof( '5' );              // => "string"
is.typeof( true );             // => "boolean"
is.typeof( undefined );        // => "undefined"
is.typeof( function () {} );   // => "function"

// just more example
is.typeof( Symbol() );         // => "symbol"
is.typeof( process );          // => "object"
is.typeof( new function Test () {} ); // => "object" 
is.typeof( new class test {} );// => "object"
is.typeof( class test {} );    // => "function"

Helpers

And in the end, we frequently need to define some specific objects. This applies mainly to proven technologies.

var is = require('s-is');

// date
is.date( new Date() );    // => true
is('date', new Date() );  // => true
is('date', (new Date()).getDate() );  // => false

// promise
var p = new Promise(new Function);
is.promise( p );                       // => true
is('promise', p );                     // => true
is.promise( {} );                      // => false
is('promise', {then: new Function} );  // => true
// isn't native
is._object( {} );                      // => true
is._object( new function Test () {} ); // => true
is._object( new class test {} );       // => true
is('_object',  window );               // => false
is('_object', process );               // => false
is('_object', new Promise(new Function) );// => false

// arguments
(function ( x ) {
    console.log(
        '\n is.argument', is.argument(arguments),
        '\n is.empty', is.empty(arguments),
        '\n arguments', arguments
    );
})(1);
(function ( x ) {
    console.log(
        '\n is.argument', is.argument(arguments),
        '\n is.empty', is.empty(arguments),
        '\n arguments', arguments
    );
})();

API documentation

Table of results that generates a test script module.termainal

Data types Helpers Strict mode