Skip to content
Snippets Groups Projects
Commit f64a7206 authored by Guillaume Chau's avatar Guillaume Chau
Browse files

fix(assign): remove debugger

parent d8f30083
No related branches found
No related tags found
No related merge requests found
export function assign (to, from) {
debugger
for (const key in from) {
if (Object.prototype.hasOwnProperty.call(from, key)) {
if (typeof from[key] === 'object' && to[key]) {
......
0% Loading or .
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment