mirror of
https://github.com/freeCodeCamp/freeCodeCamp.git
synced 2026-05-25 10:01:30 -04:00
9 lines
202 B
JavaScript
9 lines
202 B
JavaScript
"use strict";
|
|
|
|
var ensureArray = require("../../object/ensure-array")
|
|
, firstIndex = require("./first-index");
|
|
|
|
module.exports = function () {
|
|
return firstIndex.call(ensureArray(this)) === null;
|
|
};
|