Icard/angular-clarity-master(work.../node_modules/lit-html/development/directives/range.js

13 lines
345 B
JavaScript
Raw Normal View History

2024-07-16 14:55:36 +00:00
/**
* @license
* Copyright 2021 Google LLC
* SPDX-License-Identifier: BSD-3-Clause
*/
export function* range(startOrEnd, end, step = 1) {
const start = end === undefined ? 0 : startOrEnd;
end ??= startOrEnd;
for (let i = start; step > 0 ? i < end : end < i; i += step) {
yield i;
}
}
//# sourceMappingURL=range.js.map