yargs 8.0.0 → 9.0.1

This diff represents the content of publicly available package versions that have been released to one of the supported registries. The information contained in this diff is provided for informational purposes only and reflects changes between package versions as they appear in their respective public registries.
package/lib/assign.js DELETED
@@ -1,15 +0,0 @@
1
- // lazy Object.assign logic that only works for merging
2
- // two objects; eventually we should replace this with Object.assign.
3
- module.exports = function assign (defaults, configuration) {
4
- var o = {}
5
- configuration = configuration || {}
6
-
7
- Object.keys(defaults).forEach(function (k) {
8
- o[k] = defaults[k]
9
- })
10
- Object.keys(configuration).forEach(function (k) {
11
- o[k] = configuration[k]
12
- })
13
-
14
- return o
15
- }