- Build: Updae

- npm: Update devDeps
This commit is contained in:
Brett Zamir
2020-01-09 02:27:56 +08:00
parent 9fcdebac44
commit 1be01bc89a
21 changed files with 263 additions and 93 deletions

View File

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