@tbmini/eureka-client-ts
Version:
--- id: eureka-client-ts ---
43 lines • 1.48 kB
JavaScript
;
/** @format */
var __read = (this && this.__read) || function (o, n) {
var m = typeof Symbol === "function" && o[Symbol.iterator];
if (!m) return o;
var i = m.call(o), r, ar = [], e;
try {
while ((n === void 0 || n-- > 0) && !(r = i.next()).done) ar.push(r.value);
}
catch (error) { e = { error: error }; }
finally {
try {
if (r && !r.done && (m = i["return"])) m.call(i);
}
finally { if (e) throw e.error; }
}
return ar;
};
var __spreadArray = (this && this.__spreadArray) || function (to, from, pack) {
if (pack || arguments.length === 2) for (var i = 0, l = from.length, ar; i < l; i++) {
if (ar || !(i in from)) {
if (!ar) ar = Array.prototype.slice.call(from, 0, i);
ar[i] = from[i];
}
}
return to.concat(ar || Array.prototype.slice.call(from));
};
Object.defineProperty(exports, "__esModule", { value: true });
exports.random = exports.jj = exports.checkType = void 0;
function checkType(o, type) {
return Object.prototype.toString.call(o) === '[object ' + (type || 'Object') + ']';
}
exports.checkType = checkType;
function jj(arr, arr1) {
return __spreadArray([], __read(new Set(arr.filter(function (v) { return arr1.indexOf(v) !== -1; }))), false);
}
exports.jj = jj;
function random(n, m) {
var c = m - n + 1;
return Math.floor(Math.random() * c + n);
}
exports.random = random;
//# sourceMappingURL=utils.js.map