UNPKG

azure-kusto-data

Version:
12 lines 361 B
// 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