const _shallowClone = target => {
    let a = {}
    for(let i in target) {
    	a[i] = target[i]
    }
    return a
}