mpHelper.js 245 B

123456789
  1. (function(global,factory){
  2. typeof define == 'function' && define.amd && define(factory());
  3. })(this,function(){
  4. return {
  5. isNumber : function(string){
  6. return (parseFloat(string).toString() != "NaN");
  7. }
  8. }
  9. });