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

@@ -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 {
/**