Welcome to mirror list, hosted at ThFree Co, Russian Federation.

github.com/twbs/bootstrap.git - Unnamed repository; edit this file 'description' to name the repository.
summaryrefslogtreecommitdiff
diff options
context:
space:
mode:
authorXhmikosR <xhmikosr@gmail.com>2020-03-28 13:29:08 +0300
committerGitHub <noreply@github.com>2020-03-28 13:29:08 +0300
commit74afe149c48e8386c4de2bbd8fab36142227f755 (patch)
treecc1bddb6ace670de15e5fd58ecdf2fa856a05bf9 /js/dist/dom/manipulator.js
parentf761d8e801ddb972ca2a694a27d16c0244a59d94 (diff)
Dist (#29924)
Diffstat (limited to 'js/dist/dom/manipulator.js')
-rw-r--r--js/dist/dom/manipulator.js6
1 files changed, 3 insertions, 3 deletions
diff --git a/js/dist/dom/manipulator.js b/js/dist/dom/manipulator.js
index 7c15e60577..e54cd302cd 100644
--- a/js/dist/dom/manipulator.js
+++ b/js/dist/dom/manipulator.js
@@ -1,6 +1,6 @@
/*!
* Bootstrap manipulator.js v4.3.1 (https://getbootstrap.com/)
- * Copyright 2011-2019 The Bootstrap Authors (https://github.com/twbs/bootstrap/graphs/contributors)
+ * 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) {
@@ -43,13 +43,13 @@
var source = arguments[i] != null ? arguments[i] : {};
if (i % 2) {
- ownKeys(source, true).forEach(function (key) {
+ ownKeys(Object(source), true).forEach(function (key) {
_defineProperty(target, key, source[key]);
});
} else if (Object.getOwnPropertyDescriptors) {
Object.defineProperties(target, Object.getOwnPropertyDescriptors(source));
} else {
- ownKeys(source).forEach(function (key) {
+ ownKeys(Object(source)).forEach(function (key) {
Object.defineProperty(target, key, Object.getOwnPropertyDescriptor(source, key));
});
}