UNPKG

abolish

Version:

A javascript object validator.

7 lines (6 loc) 165 B
"use strict"; module.exports = { name: "alphaNumeric", error: ":param is not AlphaNumeric.", validator: (str) => new RegExp(/^[a-z0-9]+$/i).test(str) };