电速宝智配引擎
You can not select more than 25 topics Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.

array-helper.js 242B

1234567891011
  1. module.exports = {
  2. isArray: function(value) {
  3. if (Array.isArray) {
  4. return Array.isArray(value);
  5. }
  6. // fallback for older browsers like IE 8
  7. return Object.prototype.toString.call( value ) === '[object Array]';
  8. }
  9. };