.gitignore added
[dotfiles/.git] / .config / coc / extensions / node_modules / coc-prettier / node_modules / get-stdin / index.js
diff --git a/.config/coc/extensions/node_modules/coc-prettier/node_modules/get-stdin/index.js b/.config/coc/extensions/node_modules/coc-prettier/node_modules/get-stdin/index.js
new file mode 100644 (file)
index 0000000..2083294
--- /dev/null
@@ -0,0 +1,52 @@
+'use strict';
+var stdin = process.stdin;
+
+module.exports = function () {
+       var ret = '';
+
+       return new Promise(function (resolve) {
+               if (stdin.isTTY) {
+                       resolve(ret);
+                       return;
+               }
+
+               stdin.setEncoding('utf8');
+
+               stdin.on('readable', function () {
+                       var chunk;
+
+                       while ((chunk = stdin.read())) {
+                               ret += chunk;
+                       }
+               });
+
+               stdin.on('end', function () {
+                       resolve(ret);
+               });
+       });
+};
+
+module.exports.buffer = function () {
+       var ret = [];
+       var len = 0;
+
+       return new Promise(function (resolve) {
+               if (stdin.isTTY) {
+                       resolve(new Buffer(''));
+                       return;
+               }
+
+               stdin.on('readable', function () {
+                       var chunk;
+
+                       while ((chunk = stdin.read())) {
+                               ret.push(chunk);
+                               len += chunk.length;
+                       }
+               });
+
+               stdin.on('end', function () {
+                       resolve(Buffer.concat(ret, len));
+               });
+       });
+};