- Build: Update underscore copy

- npm: Update devDep (Jamilih)
This commit is contained in:
Brett Zamir
2020-01-06 16:01:21 +08:00
parent 2810d8e699
commit 22978edcb6
6 changed files with 16 additions and 52 deletions

View File

@@ -68,13 +68,13 @@ function _objectSpread2(target) {
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));
});
}
@@ -686,7 +686,10 @@ function _appendJMLOrText(node) {
/**
* @private
* @static
function _DOMfromJMLOrString (childNodeJML) {
*/
/**
* function _DOMfromJMLOrString (childNodeJML) {
if (typeof childNodeJML === 'string') {
return doc.createTextNode(childNodeJML);
}

File diff suppressed because one or more lines are too long

File diff suppressed because one or more lines are too long