import dom from "hoctable/utils/dom"; import uuid from "hoctable/utils/uuid"; function replace(target : Array, source : Array) : Array { target.length = 0; for(let i = 0, c = source.length; i < c; i++) { target.push(source[i]); } return target; } function extend(a : Object, b : Object) : Object { return { ...a, ...b }; } export default { dom, replace, uuid, extend };