# range **Repository Path**: mirrors_defunctzombie/range ## Basic Information - **Project Name**: range - **Description**: Return a range of integers - **Primary Language**: Unknown - **License**: Not specified - **Default Branch**: master - **Homepage**: None - **GVP Project**: No ## Statistics - **Stars**: 0 - **Forks**: 0 - **Created**: 2020-09-24 - **Last Updated**: 2026-02-22 ## Categories & Tags **Categories**: Uncategorized **Tags**: None ## README # range Return a range of integers ## Installation $ component install component/range ## API Exclusive range: ```js range(5, 10); // => [5,6,7,8,9] ``` Inclusive range (truthy value): ```js range(5, 10, true); range(5, 10, 'inclusive'); // => [5,6,7,8,9,10] ``` ## License MIT