Skip to content

Commit

Permalink
Bump @babel/core from 7.12.10 to 7.13.10
Browse files Browse the repository at this point in the history
Bumps [@babel/core](https://github.com/babel/babel/tree/HEAD/packages/babel-core) from 7.12.10 to 7.13.10.
- [Release notes](https://github.com/babel/babel/releases)
- [Changelog](https://github.com/babel/babel/blob/main/CHANGELOG.md)
- [Commits](https://github.com/babel/babel/commits/v7.13.10/packages/babel-core)

Signed-off-by: dependabot-preview[bot] <support@dependabot.com>
  • Loading branch information
dependabot-preview[bot] authored and deivid-rodriguez committed Mar 11, 2021
1 parent c8b9c96 commit 9ee0946
Show file tree
Hide file tree
Showing 2 changed files with 58 additions and 196 deletions.
9 changes: 8 additions & 1 deletion app/assets/javascripts/active_admin/base.js
Expand Up @@ -471,7 +471,14 @@
function _inheritsLoose(subClass, superClass) {
subClass.prototype = Object.create(superClass.prototype);
subClass.prototype.constructor = subClass;
subClass.__proto__ = superClass;
_setPrototypeOf(subClass, superClass);
}
function _setPrototypeOf(o, p) {
_setPrototypeOf = Object.setPrototypeOf || function _setPrototypeOf(o, p) {
o.__proto__ = p;
return o;
};
return _setPrototypeOf(o, p);
}
var TableCheckboxToggler = function(_CheckboxToggler) {
_inheritsLoose(TableCheckboxToggler, _CheckboxToggler);
Expand Down

0 comments on commit 9ee0946

Please sign in to comment.