Comparing version
# Svelte changelog | ||
## 1.13.6 | ||
* Use `assign` helper instead of `Object.assign` for better performance and legacy compatibility ([#431](https://github.com/sveltejs/svelte/issues/431)) | ||
* Improved code generation ([#419](https://github.com/sveltejs/svelte/issues/419)), ([#440](https://github.com/sveltejs/svelte/issues/440)), ([#442](https://github.com/sveltejs/svelte/issues/442)) | ||
## 1.13.5 | ||
@@ -4,0 +9,0 @@ |
{ | ||
"name": "svelte", | ||
"version": "1.13.5", | ||
"version": "1.13.6", | ||
"description": "The magical disappearing UI framework", | ||
@@ -5,0 +5,0 @@ "main": "compiler/svelte.js", |
@@ -189,2 +189,11 @@ function appendNode ( node, target ) { | ||
function assign ( target ) { | ||
for ( var i = 1; i < arguments.length; i += 1 ) { | ||
var source = arguments[i]; | ||
for ( var k in source ) target[k] = source[k]; | ||
} | ||
return target; | ||
} | ||
function differs ( a, b ) { | ||
@@ -217,2 +226,2 @@ return ( a !== b ) || ( a && ( typeof a === 'object' ) || ( typeof a === 'function' ) ); | ||
export { noop, differs, dispatchObservers, appendNode, insertNode, detachNode, detachBetween, teardownEach, createElement, createSvgElement, createText, createComment, addEventListener, removeEventListener, setAttribute, setXlinkAttribute, getBindingGroupValue, get, fire, observe, observeDev, on, onDev, set, _flush, proto, protoDev }; | ||
export { noop, assign, differs, dispatchObservers, appendNode, insertNode, detachNode, detachBetween, teardownEach, createElement, createSvgElement, createText, createComment, addEventListener, removeEventListener, setAttribute, setXlinkAttribute, getBindingGroupValue, get, fire, observe, observeDev, on, onDev, set, _flush, proto, protoDev }; |
Sorry, the diff of this file is too big to display
Sorry, the diff of this file is not supported yet
1361578
0.55%11861
0.61%