Replace isArray helper with native Array.isArray

This commit is contained in:
Steve Gravrock
2025-11-28 08:09:51 -08:00
parent 4371081763
commit f5e9b61f73
12 changed files with 27 additions and 63 deletions

View File

@@ -77,10 +77,6 @@ getJasmineRequireObj().base = function(j$, jasmineGlobal) {
}
});
j$.private.isArray = function(value) {
return j$.private.isA('Array', value);
};
j$.private.isObject = function(value) {
return (
value !== undefined && value !== null && j$.private.isA('Object', value)