7 lines
135 B
TypeScript
7 lines
135 B
TypeScript
export class Utils
|
|
{
|
|
static StringToBuffer(str: string): Buffer
|
|
{
|
|
return Buffer.from(str + '\0', 'utf8');
|
|
}
|
|
} |