bootstrap5_admin-1.0.1/js/bootstrap-select.js
js/bootstrap-select.js
// cSpell:ignore selectpicker
(function ($, Drupal, once) {
Drupal.behaviors.bootstrapSelect = {
attach: function attach(context) {
once('bootstrap-select', '.selectpicker', context).forEach(function () {
$('.selectpicker').selectpicker();
});
}
};
})(jQuery, Drupal, once);
