UNPKG

react-klasha

Version:

This is an reactJS library for implementing klasha payment gateway

10 lines (7 loc) 215 B
"use strict"; var isNaturalNumber = require("./is-natural-number") , isValue = require("./is-value"); module.exports = function (arg) { if (!isValue(arg)) return false; return isNaturalNumber(arg); };