azure-kusto-data
Version:
Azure Data Explorer Query SDK
12 lines • 361 B
JavaScript
// Copyright (c) Microsoft Corporation.
// Licensed under the MIT License.
export function getStringTailLowerCase(val, tailLength) {
if (tailLength <= 0) {
return "";
}
if (tailLength >= val.length) {
return val.toLowerCase();
}
return val.substring(val.length - tailLength).toLowerCase();
}
//# sourceMappingURL=utils.js.map