some deletions
[dotfiles/.git] / .config / coc / extensions / node_modules / coc-prettier / node_modules / remark-stringify / lib / visitors / blockquote.js
diff --git a/.config/coc/extensions/node_modules/coc-prettier/node_modules/remark-stringify/lib/visitors/blockquote.js b/.config/coc/extensions/node_modules/coc-prettier/node_modules/remark-stringify/lib/visitors/blockquote.js
deleted file mode 100644 (file)
index 4f2c4a0..0000000
+++ /dev/null
@@ -1,18 +0,0 @@
-'use strict';
-
-module.exports = blockquote;
-
-function blockquote(node) {
-  var values = this.block(node).split('\n');
-  var result = [];
-  var length = values.length;
-  var index = -1;
-  var value;
-
-  while (++index < length) {
-    value = values[index];
-    result[index] = (value ? ' ' : '') + value;
-  }
-
-  return '>' + result.join('\n>');
-}