mirror of
https://github.com/Expand-sys/ccashfrontend
synced 2025-12-20 16:42:13 +11:00
6 lines
No EOL
206 B
JavaScript
6 lines
No EOL
206 B
JavaScript
import assertString from './util/assertString';
|
|
import isHexadecimal from './isHexadecimal';
|
|
export default function isMongoId(str) {
|
|
assertString(str);
|
|
return isHexadecimal(str) && str.length === 24;
|
|
} |