mirror of
https://github.com/samsonjs/mit-license.git
synced 2026-04-18 13:25:47 +00:00
7 lines
140 B
JavaScript
7 lines
140 B
JavaScript
export default function isDomainIdLike(value) {
|
|
if (typeof value !== 'string') {
|
|
return false
|
|
}
|
|
|
|
return /^[\w-_]+$/.test(value)
|
|
}
|