This commit is contained in:
Kevin Jahns 2019-08-31 16:47:12 +02:00
parent c23bcb66ce
commit e78d84ee59
2 changed files with 7 additions and 2 deletions

View File

@ -186,7 +186,12 @@ position 0.
<dd></dd>
<b><code>length:number</code></b>
<dd></dd>
<b><code>forEach(function(value:object|boolean|Array|string|number|Uint8Array|Y.Type, index:number, array: Y.Array))</code></b>
<b>
<code>
forEach(function(value:object|boolean|Array|string|number|Uint8Array|Y.Type,
index:number, array: Y.Array))
</code>
</b>
<dd></dd>
<b><code>map(function(T, number, YArray):M):Array&lt;M&gt;</code></b>
<dd></dd>

View File

@ -28,7 +28,7 @@ import * as object from 'lib0/object.js'
* @param {any} b
* @return {boolean}
*/
const equalAttrs = (a, b) => a === b || (typeof a === 'object' && typeof b === 'object' && a && b && object.equalFlat(a, b))
const equalAttrs = (a, b) => a === b || (typeof a === 'object' && typeof b === 'object' && a && b && object.equalFlat(a, b))
export class ItemListPosition {
/**