📁 File Manager Pro
v10.0.3 | PHP: 8.2.31
Server: LiteSpeed
2026-06-29 13:32:46
📂
/ (Root)
/
opt
/
alt
/
alt-nodejs14
/
root
/
usr
/
lib
/
node_modules
/
npm
/
node_modules.bundled
/
es-abstract
/
helpers
📍 /opt/alt/alt-nodejs14/root/usr/lib/node_modules/npm/node_modules.bundled/es-abstract/helpers
🔄 Refresh
✏️
Editing: assign.js
Read Only
var bind = require('function-bind'); var has = bind.call(Function.call, Object.prototype.hasOwnProperty); var $assign = Object.assign; module.exports = function assign(target, source) { if ($assign) { return $assign(target, source); } for (var key in source) { if (has(source, key)) { target[key] = source[key]; } } return target; };
💾 Save Changes
❌ Cancel