Blame view

node_modules/copy-webpack-plugin/dist/utils/isObject.js 201 Bytes
aaac7fed   liuqimichale   add
1
2
3
4
5
6
7
8
9
  'use strict';
  
  Object.defineProperty(exports, "__esModule", {
    value: true
  });
  
  exports.default = function (val) {
    return Object.prototype.toString.call(val) === '[object Object]' ? true : false;
  };