We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
There was an error while loading. Please reload this page.
1 parent f881a8a commit 569e3d4Copy full SHA for 569e3d4
util/assign.js
@@ -1,10 +1,4 @@
1
// This exists so I'm only saving it once.
2
"use strict"
3
4
-var hasOwn = require("./hasOwn")
5
-
6
-module.exports = Object.assign || function(target, source) {
7
- for (var key in source) {
8
- if (hasOwn.call(source, key)) target[key] = source[key]
9
- }
10
-}
+module.exports = Object.assign
0 commit comments