UNPKG

@leismore/insert_separator

Version:

A JavaScript function that converts a string into a series of fixed-length string chunks divided by a given separator.

14 lines (13 loc) 370 B
/** * ISError is the Error class for this project. * Refer to @leismore/lmerror <https://www.npmjs.com/package/@leismore/lmerror> * * Code Message * 1 invalid_text * 2 invalid_size * 3 invalid_separator */ import { LMError } from '@leismore/lmerror'; declare class ISError extends LMError { } export { ISError };