Show More
Commit Description:
fig bugs in login report
Commit Description:
fig bugs in login report
References:
File last commit:
Show/Diff file:
Action:
node_modules/es5-ext/iterable/validate-object.js | 9 lines | 256 B | application/javascript | JavascriptLexer |
"use strict";
var isObject = require("../object/is-object")
, is = require("./is");
module.exports = function (value) {
if (is(value) && isObject(value)) return value;
throw new TypeError(value + " is not an iterable or array-like object");
};