import isNil from "lodash/isNil";
import isUndefined from "lodash/isUndefined";
import isObject from "lodash/isObject";
import isFunction from "lodash/isFunction";
import isDate from "lodash/isDate";
import isRegExp from "lodash/isRegExp";

export default {
	isNil,
	isDate,
	isRegExp,
	isUndefined,
	isObject,
	isFunction,
};
