UNPKG

react-klasha

Version:

This is an reactJS library for implementing klasha payment gateway

12 lines (8 loc) 303 B
"use strict"; var isValue = require("../value/is"); // prettier-ignore var possibleTypes = { "object": true, "function": true, "undefined": true /* document.all */ }; module.exports = function (value) { if (!isValue(value)) return false; return hasOwnProperty.call(possibleTypes, typeof value); };