kopia lustrzana https://github.com/c9/core
8 wiersze
155 B
JavaScript
8 wiersze
155 B
JavaScript
![]() |
"use strict";
|
||
|
|
||
|
module.exports = function isZuoraId(value){
|
||
|
if (/^\d+$/.test(value))
|
||
|
return false;
|
||
|
|
||
|
return /^[a-z0-9]{32}$/.test(value);
|
||
|
};
|