is-empty.js 201 B

123456
  1. "use strict";
  2. var ensureArray = require("../../object/ensure-array")
  3. , firstIndex = require("./first-index");
  4. module.exports = function () { return firstIndex.call(ensureArray(this)) === null; };