main
Last change
on this file was d24f17c, checked in by Aleksandar Panovski <apano77@…>, 15 months ago |
Initial commit
|
-
Property mode
set to
100644
|
File size:
304 bytes
|
Line | |
---|
1 | 'use strict';
|
---|
2 | var defineBuiltIn = require('../internals/define-built-in');
|
---|
3 |
|
---|
4 | module.exports = function (target, src, options) {
|
---|
5 | for (var key in src) {
|
---|
6 | if (options && options.unsafe && target[key]) target[key] = src[key];
|
---|
7 | else defineBuiltIn(target, key, src[key], options);
|
---|
8 | } return target;
|
---|
9 | };
|
---|
Note:
See
TracBrowser
for help on using the repository browser.