diff options
| author | XhmikosR <[email protected]> | 2020-05-12 19:53:07 +0300 |
|---|---|---|
| committer | XhmikosR <[email protected]> | 2020-05-12 20:44:42 +0300 |
| commit | 7a6da5e3e7ad7c749dde806546a35d4d4259d965 (patch) | |
| tree | 24f9caa0b783dd7808ba12f63316b8eb2b0896c8 /js/dist/util.js | |
| parent | 109ad5db90b156c22f5b94e2f7acb60525b8ca57 (diff) | |
| download | bootstrap-4.5.0.tar.xz bootstrap-4.5.0.zip | |
Distv4.5.0
Diffstat (limited to 'js/dist/util.js')
| -rw-r--r-- | js/dist/util.js | 14 |
1 files changed, 9 insertions, 5 deletions
diff --git a/js/dist/util.js b/js/dist/util.js index 54bd0fe68..21e8d997d 100644 --- a/js/dist/util.js +++ b/js/dist/util.js @@ -1,6 +1,6 @@ /*! - * Bootstrap util.js v4.4.1 (https://getbootstrap.com/) - * Copyright 2011-2019 The Bootstrap Authors (https://github.com/twbs/bootstrap/graphs/contributors) + * Bootstrap util.js v4.5.0 (https://getbootstrap.com/) + * Copyright 2011-2020 The Bootstrap Authors (https://github.com/twbs/bootstrap/graphs/contributors) * Licensed under MIT (https://github.com/twbs/bootstrap/blob/master/LICENSE) */ (function (global, factory) { @@ -9,11 +9,11 @@ (global = global || self, global.Util = factory(global.jQuery)); }(this, (function ($) { 'use strict'; - $ = $ && $.hasOwnProperty('default') ? $['default'] : $; + $ = $ && Object.prototype.hasOwnProperty.call($, 'default') ? $['default'] : $; /** * -------------------------------------------------------------------------- - * Bootstrap (v4.4.1): util.js + * Bootstrap (v4.5.0): util.js * Licensed under MIT (https://github.com/twbs/bootstrap/blob/master/LICENSE) * -------------------------------------------------------------------------- */ @@ -28,6 +28,10 @@ var MILLISECONDS_MULTIPLIER = 1000; // Shoutout AngusCroll (https://goo.gl/pxwQGp) function toType(obj) { + if (obj === null || typeof obj === 'undefined') { + return "" + obj; + } + return {}.toString.call(obj).match(/\s([a-z]+)/i)[1].toLowerCase(); } @@ -40,7 +44,7 @@ return event.handleObj.handler.apply(this, arguments); // eslint-disable-line prefer-rest-params } - return undefined; // eslint-disable-line no-undefined + return undefined; } }; } |
