UNPKG

msw

Version:

Seamless REST/GraphQL API mocking library for browser and Node.js.

10 lines 243 B
import { isObject } from './isObject.mjs'; function isHandlerKind(kind) { return (input) => { return isObject(input) && "kind" in input && input.kind === kind; }; } export { isHandlerKind }; //# sourceMappingURL=isHandlerKind.mjs.map