Sha256: 1d8866b4dd6840b3993a6fc6da298aaa73b519c6542651cd2e3ed6313fed2fac
Contents?: true
Size: 644 Bytes
Versions: 24
Compression:
Stored size: 644 Bytes
Contents
declare const trimNewlines: { /** Trim from the start and end of a string. @example ```js import trimNewlines = require('trim-newlines'); trimNewlines('\nš¦\r\n'); //=> 'š¦' ``` */ (string: string): string; /** Trim from the start of a string. @example ```js import trimNewlines = require('trim-newlines'); trimNewlines.start('\nš¦\r\n'); //=> 'š¦\r\n' ``` */ start(string: string): string; /** Trim from the end of a string. @example ```js import trimNewlines = require('trim-newlines'); trimNewlines.end('\nš¦\r\n'); //=> '\nš¦' ``` */ end(string: string): string; }; export = trimNewlines;
Version data entries
24 entries across 24 versions & 1 rubygems