Ohm-Management - Projektarbeit B-ME
You can not select more than 25 topics
Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.
123456789101112131415 |
- 'use strict'
-
- function range(from, to) {
- // TODO: make this inlined.
- const list = new Array(to - from + 1)
-
- for(let i = 0; i < list.length; ++i) {
- list[i] = from + i
- }
- return list
- }
-
- module.exports = {
- range
- }
|