some deletions
[dotfiles/.git] / .config / coc / extensions / node_modules / coc-prettier / node_modules / unist-util-find-all-after / index.js
diff --git a/.config/coc/extensions/node_modules/coc-prettier/node_modules/unist-util-find-all-after/index.js b/.config/coc/extensions/node_modules/coc-prettier/node_modules/unist-util-find-all-after/index.js
deleted file mode 100644 (file)
index ac8aaf2..0000000
+++ /dev/null
@@ -1,38 +0,0 @@
-'use strict'
-
-var convert = require('unist-util-is/convert')
-
-module.exports = findAllAfter
-
-function findAllAfter(parent, index, test) {
-  var is = convert(test)
-  var results = []
-  var children
-  var child
-  var length
-
-  if (!parent || !parent.type || !parent.children) {
-    throw new Error('Expected parent node')
-  }
-
-  children = parent.children
-  length = children.length
-
-  if (index && index.type) {
-    index = children.indexOf(index)
-  }
-
-  if (isNaN(index) || index < 0 || index === Infinity) {
-    throw new Error('Expected positive finite index or child node')
-  }
-
-  while (++index < length) {
-    child = children[index]
-
-    if (is(child, index, parent)) {
-      results.push(child)
-    }
-  }
-
-  return results
-}