UNPKG

msw

Version:

Seamless REST/GraphQL API mocking library for browser and Node.js.

10 lines (7 loc) 192 B
const MAX_LENGTH = 24 export function truncateMessage(message: string): string { if (message.length <= MAX_LENGTH) { return message } return `${message.slice(0, MAX_LENGTH)}…` }