UNPKG

react-klasha

Version:

This is an reactJS library for implementing klasha payment gateway

11 lines (9 loc) 345 B
'use strict'; var fails = require('../internals/fails'); module.exports = function (METHOD_NAME, argument) { var method = [][METHOD_NAME]; return !!method && fails(function () { // eslint-disable-next-line no-useless-call,no-throw-literal -- required for testing method.call(null, argument || function () { throw 1; }, 1); }); };