Welcome to mirror list, hosted at ThFree Co, Russian Federation.

github.com/fourtyone11/origin-hugo-theme.git - Unnamed repository; edit this file 'description' to name the repository.
summaryrefslogtreecommitdiff
diff options
context:
space:
mode:
Diffstat (limited to 'assets/node_modules/trim-newlines/index.d.ts')
-rw-r--r--assets/node_modules/trim-newlines/index.d.ts42
1 files changed, 0 insertions, 42 deletions
diff --git a/assets/node_modules/trim-newlines/index.d.ts b/assets/node_modules/trim-newlines/index.d.ts
deleted file mode 100644
index 4185720..0000000
--- a/assets/node_modules/trim-newlines/index.d.ts
+++ /dev/null
@@ -1,42 +0,0 @@
-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;