DefinitelyTyped/types/newline-remove/index.d.ts
2018-02-16 01:05:31 +01:00

12 lines
364 B
TypeScript

// Type definitions for newline-remove 1.0
// Project: https://github.com/yoshuawuyts/newline-remove
// Definitions by: OpenByteDev <https://github.com/OpenByteDev>
// Definitions: https://github.com/DefinitelyTyped/DefinitelyTyped
/**
* Strip all newlines from the given value
*/
declare function removeNewlines(val: string): string;
export = removeNewlines;