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

angular-types

v0.2.0

Published

AngularJS introspection utilities

Downloads

87

Readme

angular-types

AngularJS introspection utilities

Overview

AngularJS ships with various functions to check types, such as angular.isNumber(), angular.isUndefined(), and angular.isElement(). This extension adds many functions to AngularJS' builtins, including a general-purpose type-checking function and a cloning function.

This is particularly useful if you want the type-checking functionality of Lo-Dash or Underscore, but without the libraries themselves. Many of these functions were derived from Lo-Dash implementations.

Type-Checking Functions

Each of these functions accept a value and return a boolean.

  • isNull() / isNotNull()
  • isBoolean() / isNotBoolean()
  • isNaN() / isNotNaN()
  • isFinite() / isNotFinite()
  • isInfinite() / isNotInfinite()
  • isArguments() / isNotArguments()
  • isRegExp() / isNotRegExp()
  • isEmpty() / isNotEmpty()
  • isInteger() / isNotInteger()
  • isFloat() / isNotFloat()
  • isObjectish() / isNotObjectish() (returns true if the value is not null and may contain properties)

In addition, the negation of the AngularJS built-ins are provided:

  • isNotUndefined()
  • isNotArray()
  • isNotDate()
  • isNotElement()
  • isNotObject()
  • isNotString()
  • isNotFunction()
  • isNotNumber()

type()

The type() function will accept a value and return one of the following strings:

null, string, array, date, regexp, arguments, boolean, number, undefined, function, element, object

An element is considered to be a DOM node, jqLite object, or jQuery object.

clone()

The clone() function will return a deep clone of some value. This differs from angular.copy() in the following ways:

  • Simply returns the cloned value; does not accept a destination parameter.
  • Works on DOM nodes, jqLite elements or jQuery objects.
  • If a nested value implements a clone() function, that function will be called. This is useful for complex nested objects.
  • Calls angular.copy() internally so your $$hashKeys are not befouled.
  • Accepts an optional second Object parameter, extra, which can be extended onto the clone. This is useful, for example, if you have a unique identifier in an object, and wish to re-generate it.

Usage (Browser)

In the browser, if not using AMD, the functions are attached to the angular object as to not further pollute the global scope.

var foo = {
  bar: 1,
  baz: function() {
    return this.bar + 1;
  }
};

angular.isInteger(foo.bar);           // true
angular.type(foo.bar);                // 'number'
angular.isNotFunction(foo.baz);       // false
angular.type(foo.baz);                // 'function'

// example of using second parameter
angular.clone(foo, {bar: 2}).baz();   // 3

Usage (CommonJS/NodeJS)

In a NodeJS context, require() the angular-types module.

var types = require('angular-types'),
  quux = 1;

types.isInteger(quux);

Usage (AMD/RequireJS)

Using RequireJS, just require types.

define(['/path/to/types'], function(types) {
  var quux = 1;
  types.isInteger(quux);
});

Installation

If using in NodeJS (a la Browserify):

npm install angular-types

Otherwise, use Bower:

bower install angular-types

Author

Christopher Hiller

License

Copyright © 2014 Decipher, Inc. Licensed MIT