UNPKG

@n3okill/utils

Version:
9 lines (8 loc) 277 B
/** * Check if the number of occurrences of the 'open' string are the same of ths 'close' string in the input string * @param input * @param open * @param close * @returns */ export declare function balancedCounter(input: string, open?: string, close?: string): boolean;