UNPKG

@skhemata/skhemata-form

Version:

Skhemata Form Web Component. This web component can be used as base web component when working with forms and inputs.

25 lines (19 loc) 896 B
import assertString from './util/assertString'; const int = /^(?:[-+]?(?:0|[1-9][0-9]*))$/; const intLeadingZeroes = /^[-+]?[0-9]+$/; export default function isInt(str, options) { assertString(str); options = options || {}; // Get the regex to use for testing, based on whether // leading zeroes are allowed or not. let regex = ( options.hasOwnProperty('allow_leading_zeroes') && !options.allow_leading_zeroes ? int : intLeadingZeroes ); // Check min/max/lt/gt let minCheckPassed = (!options.hasOwnProperty('min') || str >= options.min); let maxCheckPassed = (!options.hasOwnProperty('max') || str <= options.max); let ltCheckPassed = (!options.hasOwnProperty('lt') || str < options.lt); let gtCheckPassed = (!options.hasOwnProperty('gt') || str > options.gt); return regex.test(str) && minCheckPassed && maxCheckPassed && ltCheckPassed && gtCheckPassed; }