UNPKG

@zkochan/pnpm

Version:

A fast implementation of npm install

16 lines (12 loc) 308 B
module.exports = extend function extend(target) { for (var i = 1; i < arguments.length; i++) { var source = arguments[i] for (var key in source) { if (source.hasOwnProperty(key)) { target[key] = source[key] } } } return target }