.gitignore added
[dotfiles/.git] / .config / coc / extensions / node_modules / coc-prettier / node_modules / ccount / index.js
diff --git a/.config/coc/extensions/node_modules/coc-prettier/node_modules/ccount/index.js b/.config/coc/extensions/node_modules/coc-prettier/node_modules/ccount/index.js
new file mode 100644 (file)
index 0000000..6110852
--- /dev/null
@@ -0,0 +1,22 @@
+'use strict'
+
+module.exports = ccount
+
+function ccount(source, character) {
+  var value = String(source)
+  var count = 0
+  var index
+
+  if (typeof character !== 'string') {
+    throw new Error('Expected character')
+  }
+
+  index = value.indexOf(character)
+
+  while (index !== -1) {
+    count++
+    index = value.indexOf(character, index + character.length)
+  }
+
+  return count
+}