biofriction-wp-theme/node_modules/es5-ext/object/ensure-natural-number.js

10 lines
216 B
JavaScript
Raw Permalink Normal View History

2021-10-26 14:18:09 +02:00
"use strict";
var isNatural = require("../number/is-natural");
module.exports = function (arg) {
var num = Number(arg);
if (!isNatural(num)) throw new TypeError(arg + " is not a natural number");
return num;
};