Skip to content

Commit 51e85a5

Browse files
author
Andrea Giammarchi
committed
using ungap
1 parent e668950 commit 51e85a5

File tree

4 files changed

+7
-2734
lines changed

4 files changed

+7
-2734
lines changed

.gitignore

Lines changed: 2 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,3 +1,4 @@
11
.DS_Store
22
node_modules/
3-
coverage/
3+
coverage/
4+
package-lock.json

index.js

Lines changed: 4 additions & 4 deletions
Original file line numberDiff line numberDiff line change
@@ -2,11 +2,11 @@ var domdiff = (function () {
22
'use strict';
33

44
/*! (c) Andrea Giammarchi - ISC */
5-
var window = null || /* istanbul ignore next */{};
5+
var self = null || /* istanbul ignore next */{};
66
try {
7-
window.Map = Map;
7+
self.Map = Map;
88
} catch (Map) {
9-
window.Map = function Map() {
9+
self.Map = function Map() {
1010
var i = 0;
1111
var k = [];
1212
var v = [];
@@ -36,7 +36,7 @@ try {
3636
}
3737
};
3838
}
39-
var Map$1 = window.Map;
39+
var Map$1 = self.Map;
4040

4141
var append = function append(get, parent, children, start, end, before) {
4242
if (end - start < 2) parent.insertBefore(get(children[start], 1), before);else {

0 commit comments

Comments
 (0)