mirror of
https://github.com/nodejs/node.git
synced 2025-05-18 19:31:09 +00:00

PR-URL: https://github.com/nodejs/io.js/pull/2286 Reviewed-By: Roman Reiss <me@silverwind.io>
17 lines
268 B
JavaScript
17 lines
268 B
JavaScript
'use strict';
|
|
|
|
var keys = require('./keys');
|
|
|
|
module.exports = function (obj) {
|
|
var error;
|
|
keys(obj).forEach(function (key) {
|
|
try {
|
|
delete this[key];
|
|
} catch (e) {
|
|
if (!error) error = e;
|
|
}
|
|
}, obj);
|
|
if (error !== undefined) throw error;
|
|
return obj;
|
|
};
|