indiana jones and the toolbar crusade

This commit is contained in:
Adam Bradley
2015-05-19 21:59:49 -05:00
parent b0e48d1709
commit 76e84bfaac
8 changed files with 61 additions and 31 deletions

View File

@ -73,6 +73,7 @@ export const isNumber = val => typeof val === 'number';
export const isFunction = val => typeof val === 'function';
export const isDefined = val => typeof val !== 'undefined';
export const isUndefined = val => typeof val === 'undefined';
export const isBlank = val => val === undefined || val === null;
export const isObject = val => typeof val === 'object';
export const isArray = Array.isArray;