mirror of
https://github.com/unraid/api.git
synced 2026-01-18 06:30:03 -06:00
17 lines
303 B
TypeScript
17 lines
303 B
TypeScript
/*!
|
|
* Copyright 2019-2020 Lime Technology Inc. All rights reserved.
|
|
* Written by: Alexis Tyler
|
|
*/
|
|
|
|
interface Options {
|
|
/** Standard output from execa. */
|
|
stdout: string;
|
|
}
|
|
|
|
/**
|
|
* Execa helper to trim stdout.
|
|
*/
|
|
export const cleanStdout = (options: Options) => {
|
|
return options.stdout.trim();
|
|
};
|