UNPKG

json-joy

Version:

Collection of libraries for building collaborative editing apps.

13 lines (12 loc) 299 B
import { xAdd } from './xAdd'; import { xRemove } from './xRemove'; import { xMove } from './xMove'; import { xStrIns } from './xStrIns'; import { xStrDel } from './xStrDel'; export const xforms = { add: xAdd, remove: xRemove, move: xMove, str_ins: xStrIns, str_del: xStrDel, };