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.

9 lines (6 loc) 209 B
import assertString from './util/assertString'; import isHexadecimal from './isHexadecimal'; export default function isMongoId(str) { assertString(str); return isHexadecimal(str) && str.length === 24; }