setItems() update

This commit is contained in:
Adam Bradley
2015-06-30 14:51:18 -05:00
parent 7ba77d119f
commit 6658f5d093
5 changed files with 88 additions and 59 deletions

View File

@ -68,6 +68,7 @@ export function defaults(dest) {
return dest;
}
export const isBoolean = val => typeof val === 'boolean';
export const isString = val => typeof val === 'string';
export const isNumber = val => typeof val === 'number';
export const isFunction = val => typeof val === 'function';