import isPlainObject from "is-plain-object";
import invariant from "invariant";

export const isString = o => typeof o === "string";

export const isArray = Array.isArray.bind(Array);

export const isFunction = o => typeof o === "function";

export { isPlainObject, invariant };
