Open
Description
options = util._extend(defaults, options || {});
should be changed to use Object.assign:
Object.assign(defaults, options || {});
PR: #15
Metadata
Metadata
Assignees
Labels
No labels
options = util._extend(defaults, options || {});
should be changed to use Object.assign:
Object.assign(defaults, options || {});
PR: #15