Sha256: e0c7cf5f382adccff664f5208926e32459e86db32ab9199d4898a58266600e0f

Contents?: true

Size: 317 Bytes

Versions: 3

Compression:

Stored size: 317 Bytes

Contents

"use strict";

exports.__esModule = true;
exports.isArray = isArray;

// Checks if an object has a property.

exports.has = has;

function isArray(obj) {
  return Object.prototype.toString.call(obj) === "[object Array]";
}

function has(obj, propName) {
  return Object.prototype.hasOwnProperty.call(obj, propName);
}

Version data entries

3 entries across 3 versions & 1 rubygems

Version Path
gulp_assets-1.0.0.pre.5 template/node_modules/babel-core/lib/acorn/src/util.js
gulp_assets-1.0.0.pre.4 template/node_modules/babel-core/lib/acorn/src/util.js
gulp_assets-1.0.0.pre.3 template/node_modules/babel-core/lib/acorn/src/util.js