UNPKG

identification-numbers

Version:

Provides utility methods to validate and generate various identification numbers such as NIP, REGON, PESEL, etc.

7 lines (6 loc) 185 B
exports.randomInt = function (min, max) { return Math.floor(Math.random() * (max - min + 1)) + min; }; exports.isString = function (value) { return typeof value === 'string' };