types.js
A tiny (1.7kb), but essential Javascript type checking library.
Especially in non-typed scripting languages like Javascript, proper manual type checking is crucial.
Because type checking in Javascript is so confusing and contradictory sometimes, I decided to make a
definitive library for myself, with for me understandable/useful standards.
Standard Javascript (NaN !== NaN) == true
still freakes me out, I just don't like it. With types.js I can now
test NaN with: Types.isNaN(NaN)
or Types.typeof( parseInt('Not A Number!') ) === 'nan'
, both will return true.
Another one; typeof ['array']
renders 'object'
in standard JS. So if we want to know if some input
is a 'real Object', we are constantly fooled by typeof
returning 'object'
for []
, null
and /regexp/
.
With types.js the latter returns 'array'
, 'null'
and 'regexp'
respectively.
Be careful with using types.js for variables created with new Number()
or other non-literal instantiations. No
support for them, because I don't want to get 'number'
on Types.typeof( new Number(10) )
, as it actually is an
object where you can add stuff to.
Force!
For save variable instantiation/usage, or save function calls, I added force'Type'. Ideal for testing a value and setting
it (or a replacement) to a variable, in a definite type, in one statement; check it out, it's sweet! I added force to types.js
because I use it all the time and it seems to belong in here.
For use with node.js you can install with npm install types.js
Basic usage:
forceString Forces a value to be of a given type, and returns that value, a replacement, or it's literal default.
isString and notString (and the other is and not-types) are useful for single argument type checking.
allString (and the other all-types) are useful for checking if all given arguments are of a certain type.
hasString (and the other has-types) are useful for checking if one or more arguments are of a certain type.
typeof Returns a lowercase string representation of the type of the argument value, according to types.js type-definitions.
some examples:
var _= Types;
var _= require( 'types.js' );
var x;
x= _.forceString();
x= _.forceString( null, 'ok' );
x= _.forceString( null, [1, 2, 3] );
x= _.forceString(33);
x= _.forceNumber('35px');
x= _.forceNumber( true, function(){} );
x= _.forceBoolean('35px');
var Client= function( name ){
this.name= _.forceString( name, 'no name given yet' );
};
var unborn= new Client();
console.log( unborn.name );
var func= null;
_.forceFunction( func )( 'some arguments', 'for func' );
var message= _.forceFunction( func, function(args){
return 'replacement function used '+ args;
})( 'with some arguments' );
console.log( message );
x= _.isString( 'Hello types.js!' );
x= _.isString( 23456 );
x= _.isBoolean( false );
x= _.isArray( [1,2,3] );
x= _.isObject( [1,2,3] );
x= _.isObject( /myRegExp/g );
x= _.isNaN( parseInt('generate NaN') );
x= _.notNull('');
x= _.notUndefined( undefined );
x= _.isDefined( null );
x= _.allString( '', " ", 'with text' );
x= _.allString( '', ' ', 'with text', 123 );
x= _.allStringOrNumber( '', ' ', 'with text', 123 );
x= _.allObject( { key: 'nice' }, [], /regexp/ig );
x= _.allArray( [1,2,3], [{}], new RegExp('stop') );
x= _.allArray( [1,2,3], [{}], [false, true] );
x= _.hasString( 123, { value: 'nice' }, ['?'] );
x= _.hasStringOrNumber( [1,2], /reg/, 'true' )
x= _.hasFunction( 123, { value: 'nice' }, function(){} );
x= _.hasUndefined( 'render false!', 123, null );
x= _.hasUndefined( 'render true!', 123, undefined );
x= _.typeof( [1,2,3] );
x= _.typeof( null );
x= _.typeof( parseInt('generate NaN') );
x= _.typeof( new Date() );
API
Types.parseIntBase
<Number> parseIntBase= 10
Holds the Radix used by forceNumber, defaults to decimals. Can be set to valid radixes for parseInt().
Types.forceBoolean
<String> Types.forceBoolean( value, replacement )
Returns value if value is of type Boolean. Otherwise it will try to convert value to be a Boolean. If that
fails too, replacement will be tested for, or converted to, 'boolean' if possible. If that fails, the default
types.js boolean literal is returned: a Boolean false
Types.forceString, Types.forceNumber, Types.forceArray, Types.forceObject
Just like forceBoolean, only applying the type denoted by the method name. See the force'Type' literals for
the different methods below.
Types.forceFunction
<Function> Types.forceFunction( <Function> func, <Function> replacement )
Returns func if it is a Function. So you can call your function with Types.forceFunction(func)( args ). If it is
a Function, it will call and pass the given arguments.
forceFunction will not try/catch func for other failures.
If func or replacement are not of type Function, a dummy function will be called returning undefined.
Types.typeof
<String> Types.typeof( value )
Returns a lowercase string representation of the type of value, according to types.js types. See all types.js
type-definitions below.
Types.isBoolean
<Boolean> Types.isBoolean( value )
Returns true if the given argument is a Boolean true or false
Types.notBoolean
<Boolean> Types.isBoolean( value )
Returns true if the given argument is not a Boolean true or false
Types.hasBoolean
<Boolean> Types.hasBoolean( values, [value1, ..., valueN])
Returns true if any of the given arguments is a Boolean true or false
Types.allBoolean
<Boolean> Types.allBoolean( values, [value1, ..., valueN])
Returns true only if all given arguments are either a Boolean true or false
All remaining methods are equal to the last four above, except for that they differ in the type being checked. The complete
list of all these methods:
not | is | has | all |
---|
notBoolean | isBoolean | hasBoolean | allBoolean |
notString | isString | hasString | allString |
notNumber | isNumber | hasNumber | allNumber |
notStringOrNumber | isStringOrNumber | hasStringOrNumber | allStringOrNumber |
notObject | isObject | hasObject | allObject |
notArray | isArray | hasArray | allArray |
notFunction | isFunction | hasFunction | allFunction |
notRegexp | isRegexp | hasRegexp | allRegexp |
notDate | isDate | hasDate | allDate |
notNull | isNull | hasNull | allNull |
notUndefined | isUndefined | hasUndefined | allUndefined |
notDefined | isDefined | hasDefined | allDefined |
notNaN | isNaN | hasNaN | allNaN |
types.js type definitions:
'boolean', 'string', 'number', 'object', 'array', 'function', 'regexp', 'date', 'null', 'undefined', 'nan', 'unknown'
force'Type' method and default literals
format: <'Type'> force'Type'( <any type> value, <'Type'> replacement )
The literals returned by default:
forceBoolean | forceString | forceNumber | forceObject | forceArray | forceFunction |
---|
false | '' | 0 | {} | [] | function(){} |
change log
1.3.1
Added:
-
change log in the readme, more convenient overview of changes.
-
is/not/has/allDefined
Now you can: if (_.isDefined(value) )
instead of if (_.notUndefined(value) )