push-to-registry/src/util.ts
divyansh42 dae1e56fb6 Modify input format to newline
Signed-off-by: divyansh42 <diagrawa@redhat.com>
2021-02-07 19:17:04 +05:30

8 lines
439 B
TypeScript

/***************************************************************************************************
* Copyright (c) Red Hat, Inc. All rights reserved.
* Licensed under the MIT License. See LICENSE file in the project root for license information.
**************************************************************************************************/
export function splitByNewline(s: string): string[] {
return s.split(/\r?\n/);
}