DIR : /home/kozerus/public_html/cropex/node/node_modules/ccount/index.d.ts
/home/kozerus/public_html/cropex/node/node_modules/ccount
/**
* Count how often a character (or substring) is used in a string.
*
* @param {string} value
* Value to search in.
* @param {string} character
* Character (or substring) to look for.
* @return {number}
* Number of times `character` occurred in `value`.
*/
export function ccount(value: string, character: string): number
//