Typescript library for splitting strings into SMS messages according to GSM-7 or UCS-2.
npm install @loltech/sms-splitterA Typescript library for splitting a message string into parts according to GSM specifications.
This package is meant for usage in Node.js. Should work in the browser when using something like webpack orrollup.
```
yarn add @loltech/sms-splitter
OR
``
npm install @loltech/sms-splitter
`typescript`
import { isMultipart, split } from '@loltech/sms-splitter';
`typescript`
function isMultipart(message: string): boolean;
Given a message string, determines whether that string needs to be split up according to GSM spec. Return the result as
a boolean.
`typescript`
function split(message: string): ISplitResult | null;
Given a message string, will determine its required encoding and split it into parts according to GSM spec.
#### Return value
If message is anything other than a string, it returns null.message
If is a string, it returns an object of the form:
`typescript`
interface ISplitResult {
encoding: ENCODING;
extended?: boolean;
parts: string[];
}
- encoding - Can be GSM-7, UCS-2, UTF-16. UCS-2 and UTF-16 are very similar, but UTF-16 can also encodeUTF-32
characters. UCS-2 basically means the string does not use characters outside theextended
BMP.
- - Only present when encoding is GSM-7. Signals the string contains GSM-7 extended characters.parts
- - An array of strings making up the resultant SMS parts.
When splitting SMS messages for transmission, it's best practice to not split up characters.
This happens both in GSM-7 (where extended characters are actually made up of two characters) andUTF-16 (where surrogate pairs are employed).Intl.breakItreator`, but that feature hasn't been
This library DOES NOT split characters.
While this is
technically correct, it's not the whole story.
As can be seen in
this particular patch comment, some
carries cannot handle messages split within character boundaries.
Unfortunately the only possible solution I found will
be to use
standardized or implemented yet.