108 lines
3.6 KiB
JavaScript
108 lines
3.6 KiB
JavaScript
/*---------------------------------------------------------------------------------------------
|
|
* Copyright (c) Microsoft Corporation. All rights reserved.
|
|
* Licensed under the MIT License. See License.txt in the project root for license information.
|
|
*--------------------------------------------------------------------------------------------*/
|
|
(function (factory) {
|
|
if (typeof module === "object" && typeof module.exports === "object") {
|
|
var v = factory(require, exports);
|
|
if (v !== undefined) module.exports = v;
|
|
}
|
|
else if (typeof define === "function" && define.amd) {
|
|
define(["require", "exports"], factory);
|
|
}
|
|
})(function (require, exports) {
|
|
"use strict";
|
|
Object.defineProperty(exports, "__esModule", { value: true });
|
|
exports.convertErrorToTelemetryMsg = exports.isIterable = exports.isString = exports.isBoolean = exports.isDefined = exports.isNumber = exports.equals = void 0;
|
|
// eslint-disable-next-line @typescript-eslint/no-explicit-any, @typescript-eslint/explicit-module-boundary-types
|
|
function equals(one, other) {
|
|
if (one === other) {
|
|
return true;
|
|
}
|
|
if (one === null || one === undefined || other === null || other === undefined) {
|
|
return false;
|
|
}
|
|
if (typeof one !== typeof other) {
|
|
return false;
|
|
}
|
|
if (typeof one !== 'object') {
|
|
return false;
|
|
}
|
|
if (Array.isArray(one) !== Array.isArray(other)) {
|
|
return false;
|
|
}
|
|
let i, key;
|
|
if (Array.isArray(one)) {
|
|
if (one.length !== other.length) {
|
|
return false;
|
|
}
|
|
for (i = 0; i < one.length; i++) {
|
|
if (!equals(one[i], other[i])) {
|
|
return false;
|
|
}
|
|
}
|
|
}
|
|
else {
|
|
const oneKeys = [];
|
|
for (key in one) {
|
|
oneKeys.push(key);
|
|
}
|
|
oneKeys.sort();
|
|
const otherKeys = [];
|
|
for (key in other) {
|
|
otherKeys.push(key);
|
|
}
|
|
otherKeys.sort();
|
|
if (!equals(oneKeys, otherKeys)) {
|
|
return false;
|
|
}
|
|
for (i = 0; i < oneKeys.length; i++) {
|
|
if (!equals(one[oneKeys[i]], other[oneKeys[i]])) {
|
|
return false;
|
|
}
|
|
}
|
|
}
|
|
return true;
|
|
}
|
|
exports.equals = equals;
|
|
function isNumber(val) {
|
|
return typeof val === 'number';
|
|
}
|
|
exports.isNumber = isNumber;
|
|
// eslint-disable-next-line @typescript-eslint/ban-types
|
|
function isDefined(val) {
|
|
return typeof val !== 'undefined';
|
|
}
|
|
exports.isDefined = isDefined;
|
|
function isBoolean(val) {
|
|
return typeof val === 'boolean';
|
|
}
|
|
exports.isBoolean = isBoolean;
|
|
function isString(val) {
|
|
return typeof val === 'string';
|
|
}
|
|
exports.isString = isString;
|
|
/**
|
|
* Check that provided value is Iterable
|
|
* @param val the value to check
|
|
* @returns true if val is iterable, false otherwise
|
|
*/
|
|
function isIterable(val) {
|
|
return Symbol.iterator in Object(val);
|
|
}
|
|
exports.isIterable = isIterable;
|
|
/**
|
|
* Convert error to string witch should be sended to telemetry.
|
|
* @param err any error
|
|
*/
|
|
function convertErrorToTelemetryMsg(err) {
|
|
if (!err)
|
|
return 'null';
|
|
if (err instanceof Error) {
|
|
return err.stack ?? err.toString();
|
|
}
|
|
return err.toString();
|
|
}
|
|
exports.convertErrorToTelemetryMsg = convertErrorToTelemetryMsg;
|
|
});
|
|
//# sourceMappingURL=objects.js.map
|