Secure your code as it's written. Use Snyk Code to scan source code in minutes - no build needed - and fix issues immediately.
it('should work properly', () => {
(isFunction(() => {}): boolean);
(isObject({}): boolean);
(isInteger(1): boolean);
(isString(''): boolean);
(isNaN(1 / 0): boolean);
(isEmptyChildren([]): boolean);
(isPromise(Promise.resolve(1)): boolean);
(isInputEvent({}): boolean);
(getActiveElement(document): Element | null);
getIn({ a: { b: 2 } }, ['a', 'b']);
setIn({ a: { b: 2 } }, 'a', 3);
setNestedObjectValues({}, 1);
});
});