mirror of
https://github.com/thangisme/notes.git
synced 2024-11-01 00:27:24 -04:00
22 lines
469 B
JavaScript
22 lines
469 B
JavaScript
|
/**
|
||
|
* Gets the number of `placeholder` occurrences in `array`.
|
||
|
*
|
||
|
* @private
|
||
|
* @param {Array} array The array to inspect.
|
||
|
* @param {*} placeholder The placeholder to search for.
|
||
|
* @returns {number} Returns the placeholder count.
|
||
|
*/
|
||
|
function countHolders(array, placeholder) {
|
||
|
var length = array.length,
|
||
|
result = 0;
|
||
|
|
||
|
while (length--) {
|
||
|
if (array[length] === placeholder) {
|
||
|
++result;
|
||
|
}
|
||
|
}
|
||
|
return result;
|
||
|
}
|
||
|
|
||
|
module.exports = countHolders;
|