Buckets:

imerfanrajabee's picture
download
raw
551 Bytes
"use strict";
Object.defineProperty(exports, "__esModule", { value: true });
exports.assertDeprecated = assertDeprecated;
const deprecations = new Set();
/**
* Asserts that some condition is true, and if not, prints a warning about it being deprecated.
* The message is printed only once.
*/
function assertDeprecated(check, name, message) {
if (!check && !deprecations.has(name)) {
// eslint-disable-next-line no-console
console.warn(`[concurrently] ${name} is deprecated. ${message}`);
deprecations.add(name);
}
}

Xet Storage Details

Size:
551 Bytes
·
Xet hash:
2522f3c700f6ed447e6087e65ae283e29580ee513a33513c056623bbac7b069b

Xet efficiently stores files, intelligently splitting them into unique chunks and accelerating uploads and downloads. More info.