mirror of
https://github.com/crmeb/CRMEB.git
synced 2025-12-15 04:52:50 +00:00
9 lines
245 B
JavaScript
9 lines
245 B
JavaScript
(function(global,factory){
|
|
typeof define == 'function' && define.amd && define(factory());
|
|
})(this,function(){
|
|
return {
|
|
isNumber : function(string){
|
|
return (parseFloat(string).toString() != "NaN");
|
|
}
|
|
}
|
|
}); |