cerializr
Version:
(de)serialization made easy with ES7/Typescript annotations (decorators)
16 lines (14 loc) • 342 B
text/typescript
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,
};