Skip to content

Latest commit

 

History

History
27 lines (18 loc) · 575 Bytes

README.md

File metadata and controls

27 lines (18 loc) · 575 Bytes

hsc

A small package if you just needed a shorthand for the status code, including their description as JSDoc.

Resource Heavily Used

Usage

// CJS
const StatusCode = require('@jaezmien/hsc');

console.log(StatusCode.CLIENT_SUCCESS_200); // 200

// ESM
import StatusCode from '@jaezmien/hsc'

console.log(StatusCode.CLIENT_SUCCESS_200); // 200