# enums **Repository Path**: mirrors_node-modules/enums ## Basic Information - **Project Name**: enums - **Description**: No description available - **Primary Language**: Unknown - **License**: Not specified - **Default Branch**: master - **Homepage**: None - **GVP Project**: No ## Statistics - **Stars**: 0 - **Forks**: 0 - **Created**: 2020-08-19 - **Last Updated**: 2025-09-13 ## Categories & Tags **Categories**: Uncategorized **Tags**: None ## README # Enums ## Usage ```js var status = new Enums([ { name: 'CLOSED', code: '1', message: 'Shop close' }, { name: 'OPENED', code: '2', message: 'Shop open' } ]); console.log(status.CLOSED); console.log(status.OPENED); ```