Why Gemfury? Push, build, and install  RubyGems npm packages Python packages Maven artifacts PHP packages Go Modules Debian packages RPM packages NuGet packages

Repository URL to install this package:

Details    
@skava/modules / ___dist / chain-able / src / deps / is / unsignedInteger.js
Size: Mime:
"use strict";

const matchUnsigned = require("../regexp/matchUnsigned");
/**
 * @TODO use `test` util
 * @param  {number | *} x value to test with regexp
 * @return {boolean} x isUnsignedInteger
 *
 * @see regexp/matchUnsigned
 */


module.exports = function isUnsignedInteger(x) {
  return matchUnsigned.test(x);
};